]> git.ipfire.org Git - people/ms/u-boot.git/blob - CHANGELOG
MCF5271-only: Added a weak board_reset function to allow custom reset
[people/ms/u-boot.git] / CHANGELOG
1 commit f9476902b789b0481b9df49af88d6ca94fb16fa0
2 Author: Peter Tyser <ptyser@xes-inc.com>
3 Date: Tue Dec 15 12:10:47 2009 -0600
4
5 mpc85xx, mpc86xx: Fix gd->cpu pointer after relocation
6
7 The gd->cpu pointer is set to an address located in flash when the
8 probecpu() function is called while U-Boot is executing from flash.
9 This pointer needs to be updated to point to an address in RAM after
10 relocation has occurred otherwise Linux may not be able to boot due to
11 "fdt board" crashing if flash has been erased or changed.
12
13 This bug was introduced in commit
14 a0e2066f392782730f0398095e583c87812d97f2.
15
16 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17 Reported-by: Ed Swarthout <Ed.Swarthout@freescale.com>
18 Tested-by: Kumar Gala <galak@kernel.crashing.org>
19 Tested on MPC8527DS.
20 Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
21
22 commit 3363a34b9eeda9783afcbbed5cdd738926d1f4bf
23 Author: Peter Tyser <ptyser@xes-inc.com>
24 Date: Sun Dec 13 17:58:34 2009 -0600
25
26 MVBLUE: Remove CONFIG_CMD_IRQ
27
28 Neither the MVBLUE nor its underlying architecture implement the
29 do_irqinfo() function which is required when CONFIG_CMD_IRQ is defined.
30 This change fixes the following MVBLUE compiler error:
31
32 -> ./MAKEALL MVBLUE
33 Configuring for MVBLUE board...
34 common/libcommon.a(cmd_irq.o):(.u_boot_cmd+0x24): undefined reference to `do_irqinfo'
35 make: *** [u-boot] Error 1
36
37 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
38 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
39
40 commit 18e8ad60ee87431c01cc2686985b60cc54f5dd3b
41 Author: Detlev Zundel <dzu@denx.de>
42 Date: Mon Dec 14 17:54:40 2009 +0100
43
44 imx27lite: Reenable MTD support on NOR flash.
45
46 The support for this was silently dropped by a configuration
47 split during the merge of the imx27lite board support in commit
48 864aa034f3a0e10ce710e8bbda171df3cab59414 (cmd_mtdparts: Move to common
49 handling of FLASH devices via MTD layer).
50
51 Signed-off-by: Detlev Zundel <dzu@denx.de>
52
53 commit f4cfe42758192d09f8375e384cc000aa70d97029
54 Author: Stefan Roese <sr@denx.de>
55 Date: Wed Dec 9 09:01:43 2009 +0100
56
57 nand: Fix access to last block in NAND devices
58
59 Currently, the last block of NAND devices can't be accessed. This patch
60 fixes this issue by correcting the boundary checking (off-by-one error).
61
62 Signed-off-by: Stefan Roese <sr@denx.de>
63 Cc: Scott Wood <scottwood@freescale.com>
64 Cc: Wolfgang Denk <wd@denx.de>
65
66 commit 3b887ca8ce72cc12129183538f6e828db13f4867
67 Author: Peter Korsgaard <jacmet@sunsite.dk>
68 Date: Tue Dec 8 22:20:34 2009 +0100
69
70 mpc83xx: boot time regression, move LCRR setup back to cpu_init_f
71
72 Commit c7190f02 (retain POR values of non-configured ACR, SPCR, SCCR,
73 and LCRR bitfields) moved the LCRR assignment to after relocation
74 to RAM because of the potential problem with changing the local bus
75 clock while executing from flash.
76
77 This change unfortunately adversely affects the boot time, as running
78 all code up to cpu_init_r can cause significant slowdown.
79
80 E.G. on a 8347 board a bootup time increase of ~600ms has been observed:
81
82 0.020 CPU: e300c1, MPC8347_PBGA_EA, Rev: 3.0 at 400 MHz, CSB: 266.667 MHz
83 0.168 RS: 232
84 0.172 I2C: ready
85 0.176 DRAM: 64 MB
86 1.236 FLASH: 32 MB
87
88 Versus:
89
90 0.016 CPU: e300c1, MPC8347_PBGA_EA, Rev: 3.0 at 400 MHz, CSB: 266.667 MHz
91 0.092 RS: 232
92 0.092 I2C: ready
93 0.096 DRAM: 64 MB
94 0.644 FLASH: 32 MB
95
96 So far no boards have needed the late LCRR setup, so simply revert it
97 for now - If it is needed at a later time, those boards can either do
98 their own final LCRR setup in board code (E.G. in board_early_init_r),
99 or we can introduce a CONFIG_SYS_LCRR_LATE config option to only do
100 the setup in cpu_init_r.
101
102 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
103 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
104
105 commit 386118a896554b13f14ad0f82356276988f7de82
106 Author: Michal Simek <monstr@monstr.eu>
107 Date: Tue Dec 8 09:12:49 2009 +0100
108
109 microblaze: Correct ffs regression for Microblaze
110
111 We are using generic implementation of ffs. This should
112 be part of Simon's commit 0413cfecea350000eab5e591a0965c3e3ee0ff00
113
114 Here is warning message which this patch removes.
115
116 In file included from /tmp/u-boot-microblaze/include/common.h:38,
117 from cmd_mtdparts.c:87:
118 /tmp/u-boot-microblaze/include/linux/bitops.h:123:1: warning: "ffs" redefined
119 In file included from /tmp/u-boot-microblaze/include/linux/bitops.h:110,
120 from /tmp/u-boot-microblaze/include/common.h:38,
121 from cmd_mtdparts.c:87:
122 /tmp/u-boot-microblaze/include/asm/bitops.h:269:1:
123 warning: this is the location of the previous definition
124
125 Signed-off-by: Michal Simek <monstr@monstr.eu>
126
127 commit 8fe7b29f9811322931f0192a56431edcf819d6b9
128 Author: Graeme Smecher <graeme.smecher@mail.mcgill.ca>
129 Date: Mon Dec 7 08:09:57 2009 -0800
130
131 microblaze: Stop stack clobbering in microblaze-generic.
132
133 A typo caused the stack and malloc regions to overlap, which prevented
134 mem_malloc_init() from returning. This commit makes the memory layout match
135 the example described in include/configs/microblaze-generic.h
136
137 Signed-off-by: Graeme Smecher <graeme.smecher@mail.mcgill.ca>
138 Signed-off-by: Michal Simek <monstr@monstr.eu>
139
140 commit 0fc52948bda0734431cb528ee4fd82f1dec8c7b5
141 Author: Wolfgang Denk <wd@denx.de>
142 Date: Mon Dec 7 23:14:13 2009 +0100
143
144 Update CHANGELOG, prepare -rc2
145
146 Signed-off-by: Wolfgang Denk <wd@denx.de>
147
148 commit f2352877cb2daac88115192fb09991a2397d0b27
149 Author: Peter Tyser <ptyser@xes-inc.com>
150 Date: Sun Dec 6 23:58:28 2009 -0600
151
152 MAKEALL: Fix return value
153
154 Previously MAKEALL would always return a value of 0, even if 1 or more
155 boards did not compile. This change causes MAKEALL to return 0 if all
156 boards were able to build, otherwise 1.
157
158 This change also requires changing the script interpreter from sh to
159 bash to support bash's PIPESTATUS variable.
160
161 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
162
163 commit fbc1c8f6f6c972524197829c56dd8f2f5da0200a
164 Author: Peter Tyser <ptyser@xes-inc.com>
165 Date: Sun Dec 6 01:33:24 2009 -0600
166
167 tools/mkimage: Remove duplicate line of code
168
169 Recent commits 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e and
170 6a590c5f5fd12cdd27f3153522acfac3854590e7 both fixed the same bug in the
171 same manner. Unfortunately git was "smart" enough to merge both changes
172 which resulted in some duplicate code.
173
174 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
175
176 Reordered code and comment a bit.
177
178 Signed-off-by: Wolfgang Denk <wd@denx.de>
179
180 commit df002fa6b9cd475909ede35bf95b803c2289c6a4
181 Author: Heiko Schocher <hs@denx.de>
182 Date: Sat Dec 5 11:59:51 2009 +0100
183
184 i2c: fix dangling comment in do_i2c_mw()
185
186 commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b deleted some unused
187 code in do_i2c_mw(), but missed to also remove the respective
188 commment. This patch fixes this.
189
190 Signed-off-by: Heiko Schocher <hs@denx.de>
191
192 commit f8450829f921cf10667af98a8d08edfa3d998f04
193 Author: Heiko Schocher <hs@denx.de>
194 Date: Tue Dec 1 19:30:47 2009 +0100
195
196 52xx, manroland: add fdt_fixup_memory() in ft_board_setup()
197
198 To update the real memory size in the memory node on the
199 uc101 and mucmc52 boards call fdt_fixup_memory() in
200 ft_board_setup().
201
202 Signed-off-by: Heiko Schocher <hs@denx.de>
203
204 commit 0ec81db20294efdad2454a753e79f1fe244a43ca
205 Author: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
206 Date: Tue Dec 1 14:05:55 2009 +0100
207
208 Fix computation in nand_util.c:get_len_incl_bad
209
210 Depending on offset, flash size and the number of bad blocks,
211 get_len_incl_bad may return a too small value which may lead to:
212
213 1) If there are no bad blocks, nand_{read,write}_skip_bad chooses the
214 bad block aware read/write code. This may hurt performance, but does
215 not have any adverse effects.
216
217 2) If there are bad blocks, the nand_{read,write}_skip_bad may choose
218 the bad block unaware read/write code (if len_incl_bad == *length)
219 which leads to corrupted data.
220
221 Signed-off-by: Daniel Hobi <daniel.hobi@schmid-telecom.ch>
222
223 commit aabb8cb0818e285aeed0cfaf243635997e07554d
224 Author: Evan Samanas <esamanas@xes-inc.com>
225 Date: Mon Nov 9 20:08:36 2009 -0600
226
227 nfs: NfsTimeout() updates
228
229 - NfsTimeout() does not correctly update the NFS timeout value which
230 results in NfsTimeout() only being called once in certain situations.
231 This can result in the 'nfs' command hanging indefinetly. For
232 example, the command:
233
234 nfs 192.168.0.1:/home/user/file
235
236 will not exit until ctrl-c is pressed if 192.168.0.1 does not have an
237 NFS server running.
238
239 This issue is resolved by reinitializting the NFS timeout value inside
240 NfsTimeout() when a timeout occurs.
241
242 - Make the 'nfs' command print the 'T' character when a timeout occurs.
243 Previously there was no indication that timeouts were occuring.
244
245 - Mimic the 'tftpboot' command and when a download fails print "Retry
246 count exceeded; starting again", and restart the download taking the
247 'netretry' environment variable into account.
248
249 Signed-off-by: Evan Samanas <esamanas@xes-inc.com>
250 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
251
252 Tested on TQM8xxL.
253
254 Tested by: Wolfgang Denk <wd@denx.de>
255
256 Tested on MPC8527DS.
257
258 Tested by: Ed Swarthout <Ed.Swarthout@freescale.com>
259
260 commit 224c90d1060bf1a83cbf33ca51d060b9d19e0294
261 Author: Peter Tyser <ptyser@xes-inc.com>
262 Date: Wed Nov 18 19:08:59 2009 -0600
263
264 bootm: Fix help message's sub-command ordering
265
266 The help message for the 'bootm' command listed the 'cmdline' and 'bdt'
267 sub-commands in the wrong order which resulted in the error below when
268 following the 'help' command's instructions:
269
270 "Trying to execute a command out of order"
271
272 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
273
274 commit a93c92cddaedd5f0720e0da15c6664f7a688b582
275 Author: Robert P. J. Day <rpjday@crashcourse.ca>
276 Date: Tue Nov 17 07:30:23 2009 -0500
277
278 help: Correct syntax of nandecc help output.
279
280 "nandecc" help output should not reproduce the command name, nor have
281 a trailing newline.
282
283 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
284
285 commit c2fff331a32ceca837d76eb7827d6340da270d52
286 Author: Mike Rapoport <mike@compulab.co.il>
287 Date: Wed Nov 11 10:03:03 2009 +0200
288
289 smc911x: update SMC911X related configuration description
290
291 Since commit 736fead8fdbf8a8407048bebc373cd551d01ec98 "Convert SMC911X
292 Ethernet driver to CONFIG_NET_MULTI API" SMC911X configration options
293 are called CONFIG_SMC911X rather than CONFIG_DRIVER_SMC911X. Update
294 README to reflect that change.
295
296 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
297
298 commit 45b6b65c6bf06a589ef3123192af94b0381db27b
299 Author: Mike Rapoport <mike@compulab.co.il>
300 Date: Wed Nov 11 10:03:09 2009 +0200
301
302 smc911x: fix typo in smc911x_handle_mac_address name
303
304 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
305
306 commit f64ef9bb995687e24e0b61b52316f4eaa97c3bbc
307 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
308 Date: Thu Nov 19 02:47:28 2009 -0600
309
310 fix nfs symlink name corruption
311
312 An off by one error may cause nfs readlink lookup fail if
313 nfs_path_buff has non-zero data from a previous use.
314
315 Loading: *** ERROR: File lookup fail
316
317 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
318
319 commit e8fac25e83426fdf461c66aa8a2530ec28ec536e
320 Author: Wolfgang Denk <wd@denx.de>
321 Date: Mon Dec 7 21:06:40 2009 +0100
322
323 at91sam9261ek.c: fix minor coding style issue.
324
325 Signed-off-by: Wolfgang Denk <wd@denx.de>
326
327 commit 4713010adf5beda87410d637ebfc58db0db9a9db
328 Author: Wolfgang Denk <wd@denx.de>
329 Date: Sun Dec 6 01:21:28 2009 +0100
330
331 trab: fix warning: implicit declaration of function 'disable_vfd'
332
333 Signed-off-by: Wolfgang Denk <wd@denx.de>
334
335 commit a9f99ab44b473fb394169ba365f8b4380f981584
336 Author: Wolfgang Denk <wd@denx.de>
337 Date: Sun Dec 6 00:53:18 2009 +0100
338
339 zlib.c: avoid build conflicts for cradle board
340
341 Commit dce3d79710 updated the zlib code to v0.95; this caused
342 conflicts when building for the "cradle" board, because the (pretty
343 generic) preprocessor variable "OFF" was used in multiple files.
344 Make sure to avoid further conflicts by #undef'ing it in zlib.c
345 before redefining it.
346
347 Signed-off-by: Wolfgang Denk <wd@denx.de>
348 cc: Giuseppe Condorelli <giuseppe.condorelli@st.com>
349 cc: Angelo Castello <angelo.castello@st.com>
350 cc: Alessandro Rubini <rubini-list@gnudd.com>
351
352 commit 8cbf4e4f17121d732e78764f0ba317c9a1838ea6
353 Author: Wolfgang Denk <wd@denx.de>
354 Date: Sun Dec 6 00:26:19 2009 +0100
355
356 Fix out-of-tree building of "apollon" board.
357
358 Signed-off-by: Wolfgang Denk <wd@denx.de>
359
360 commit f68ab43de67f59925542efb6bcec30f4a84fe695
361 Author: Mike Frysinger <vapier@gentoo.org>
362 Date: Fri Dec 4 05:35:15 2009 -0500
363
364 lzma: ignore unset filesizes
365
366 The Linux kernel build system changed how it compresses things with LZMA
367 such that the header no longer contains the filesize (it is instead set to
368 all F's). So if we get a LZMA image that has -1 for the 64bit field,
369 let's just assume that the decompressed size is unknown and continue on.
370
371 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
372
373 commit cccfc2ab77877dbdd2abe26b28d4c1f467feb0c0
374 Author: Detlev Zundel <dzu@denx.de>
375 Date: Tue Dec 1 17:16:19 2009 +0100
376
377 README: Rearrange paragraphs to regain linear arrangement.
378
379 Two later additions to the Configuration Option section unfortunately
380 split the description of Show boot progress and the list of its call outs.
381
382 Signed-off-by: Detlev Zundel <dzu@denx.de>
383
384 commit c81296c16fd9d12422c9968cc0f1d9bf440a7d88
385 Author: Peter Tyser <ptyser@xes-inc.com>
386 Date: Tue Nov 24 16:42:10 2009 -0600
387
388 tools/mkimage: Print FIT image contents after creation
389
390 Previously, there was no indication to the user that a FIT image was
391 successfully created after executing mkimage. For example:
392
393 $ mkimage -f uImage.its uImage.itb
394 DTC: dts->dtb on file "uImage.its"
395
396 Adding some additional output after creating a FIT image lets the user
397 know exactly what is contained in their image, eg:
398
399 $ mkimage -f uImage.its uImage.itb
400 DTC: dts->dtb on file "uImage.its"
401 FIT description: Linux kernel 2.6.32-rc7-00201-g7550d6f-dirty
402 Created: Tue Nov 24 15:43:01 2009
403 Image 0 (kernel@1)
404 Description: Linux Kernel 2.6.32-rc7-00201-g7550d6f-dirty
405 Type: Kernel Image
406 Compression: gzip compressed
407 Data Size: 2707311 Bytes = 2643.86 kB = 2.58 MB
408 Architecture: PowerPC
409 OS: Linux
410 Load Address: 0x00000000
411 Entry Point: 0x00000000
412 Hash algo: crc32
413 Hash value: efe0798b
414 Hash algo: sha1
415 Hash value: ecafba8c95684f2c8fec67e33c41ec88df1534d7
416 Image 1 (fdt@1)
417 Description: Flattened Device Tree blob
418 Type: Flat Device Tree
419 Compression: uncompressed
420 Data Size: 12288 Bytes = 12.00 kB = 0.01 MB
421 Architecture: PowerPC
422 Hash algo: crc32
423 Hash value: a5cab676
424 Hash algo: sha1
425 Hash value: 168722b13e305283cfd6603dfe8248cc329adea6
426 Default Configuration: 'config@1'
427 Configuration 0 (config@1)
428 Description: Default Linux kernel
429 Kernel: kernel@1
430 FDT: fdt@1
431
432 This brings the behavior of creating a FIT image in line with creating a
433 standard uImage, which also prints out the uImage contents after
434 creation.
435
436 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
437
438 commit 8e1c89663cc8796b85588910046e03b388a7597c
439 Author: Peter Tyser <ptyser@xes-inc.com>
440 Date: Tue Nov 24 16:42:09 2009 -0600
441
442 tools/fit_image.c: Remove unused fit_set_header()
443
444 The FIT fit_set_header() function was copied from the standard uImage's
445 image_set_header() function during mkimage reorganization. However, the
446 fit_set_header() function is not used since FIT images use a standard
447 device tree blob header.
448
449 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
450
451 commit 1a99de2cb4d08eb3bf9fb3f60a9d533150de8c0e
452 Author: Peter Tyser <ptyser@xes-inc.com>
453 Date: Tue Nov 24 16:42:08 2009 -0600
454
455 tools/mkimage: Assume FDT image type for FIT images
456
457 When building a Flattened Image Tree (FIT) the image type needs to be
458 "flat_dt". Commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5 introduced a
459 regression which caused the user to need to specify the "-T flat_dt"
460 parameter on the command line when building a FIT image. The "-T
461 flat_dt" parameter should not be needed and is at odds with the current
462 FIT image documentation.
463
464 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
465
466 commit 270737acca21f3939f814de5dcf350a1c3d80d83
467 Author: Michael Brandt <Michael.Brandt@emsyso.de>
468 Date: Sun Nov 22 14:13:27 2009 +0100
469
470 EXT2FS: fix inode size for ext2fs rev#0
471
472 extfs.c assumes that there is always a valid inode_size field in the
473 superblock. But this is not true for ext2fs rev 0. Such ext2fs images
474 are for instance generated by genext2fs. Symptoms on ARM machines are
475 messages like: "raise: Signal # 8 caught"; on PowerPC "ext2ls" will
476 print nothing.
477 This fix checks for rev 0 and uses then 128 bytes as inode size.
478
479 Signed-off-by: Michael Brandt <Michael.Brandt@emsyso.de>
480 Tested on: TQM5200S
481 Tested-by: Wolfgang Denk <wd@denx.de>
482 Signed-off-by: Wolfgang Denk <wd@denx.de>
483
484 commit bcb324d68f7955c1136dafc944eb55db8ebaa601
485 Author: Robert P. J. Day <rpjday@crashcourse.ca>
486 Date: Thu Nov 19 11:00:28 2009 -0500
487
488 Remove superfluous preprocessor tests from some cmd_*.c files.
489
490 A small number of common/cmd_*.c files contain preprocessor tests that
491 are apparently superfluous since those same tests are used in the
492 Makefile to control the compilation of those files. Those tests are
493 clearly redundant as long as they surround the entirety of the source
494 in those files.
495
496 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
497
498 commit ad53226156fa64b6d04c0d1d6e91e09979cbea15
499 Author: Robert P. J. Day <rpjday@crashcourse.ca>
500 Date: Tue Nov 17 01:59:29 2009 -0500
501
502 README: Update the list of directories.
503
504 Bring the directory listing more into line with current content.
505
506 Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
507
508 commit bd3784df94bfeca43fbf34094df9cb1bd3ecca3b
509 Author: Pratap Chandu <pratap.rrke@gmail.com>
510 Date: Thu Nov 12 19:28:25 2009 +0530
511
512 Removes dead code in the file common/cmd_i2c.c
513
514 There is some dead code enclosed by #if 0 .... #endif in the file
515 common/cmd_i2c.c
516 This patch removes the dead code.
517
518 Signed-off-by: Pratap Chandu <pratap.rrke@gmail.com>
519
520 commit 64a480601a5614b441de692ae15a62c51e0bb381
521 Author: Mike Frysinger <vapier@gentoo.org>
522 Date: Wed Nov 11 17:51:56 2009 -0500
523
524 smc91111_eeprom: drop CONFIG stub protection
525
526 Since the Makefile now controls the compilation of this, there is no need
527 for CONFIG checking nor the stub function.
528
529 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
530
531 commit f3a7bddc06c927c36a1a99a97131299479ef207a
532 Author: Magnus Lilja <lilja.magnus@gmail.com>
533 Date: Wed Nov 11 19:56:58 2009 +0100
534
535 RTC: Fix return code in MC13783 RTC driver.
536
537 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
538
539 commit d52e3e0176a74c30549251e16c5c00a363c544d2
540 Author: Magnus Lilja <lilja.magnus@gmail.com>
541 Date: Wed Nov 11 19:56:36 2009 +0100
542
543 cmd_date: Fix spelling in error message.
544
545 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
546
547 commit c253122395753abb9e531d8906c5265dc8803fb1
548 Author: Peter Tyser <ptyser@xes-inc.com>
549 Date: Wed Nov 11 10:36:28 2009 -0600
550
551 Move do_irqinfo() to common/cmd_irq.c
552
553 cmd_irq.c is a much better home and it is already conditionally
554 compiled based on CONFIG_CMD_IRQ.
555
556 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
557
558 commit a5dd4dc64fe68e549c5ffcf6a048281b5ba94752
559 Author: Peter Tyser <ptyser@xes-inc.com>
560 Date: Wed Nov 11 10:36:19 2009 -0600
561
562 cmd_license: Remove unneeded #ifdef CONFIG_CMD_LICENSE
563
564 cmd_license is already conditionally compiled at the Makefile-level.
565
566 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
567
568 commit 06015146a15adc7455440c491d543f6a8091551d
569 Author: Peter Tyser <ptyser@xes-inc.com>
570 Date: Mon Nov 9 15:18:52 2009 -0600
571
572 m41t11: Remove unused functions
573
574 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
575
576 commit 9ef78511cda39987e5fc10febf386fd19f58ecf7
577 Author: Peter Tyser <ptyser@xes-inc.com>
578 Date: Mon Nov 9 15:17:50 2009 -0600
579
580 circbuf: Move to lib_generic and conditionally compile
581
582 circbuf could be used as a generic library and is only currently
583 needed when CONFIG_USB_TTY is defined.
584
585 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
586
587 commit 604f7ce55ad74694ef8743ad2e99933dc0265e46
588 Author: Sanjeev Premi <premi@ti.com>
589 Date: Mon Nov 9 22:43:00 2009 +0530
590
591 Fix build failure in examples/standalone
592
593 Some versions of 'make' do not handle trailing white-spaces
594 properly. Trailing spaces in ELF causes a 'fake' source to
595 be added to the variable COBJS; leading to build failure
596 (listed below). The problem was found with GNU Make 3.80.
597
598 Using text-function 'strip' as a workaround for the problem.
599
600 make[1]: Entering directory `/home/sanjeev/u-boot/examples/standalone'
601 arm-none-linux-gnueabi-gcc -g -Os -fno-common -ffixed-r8 -msoft-float
602 -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanjeev/u-boot/include
603 -fno-builtin -ffreestanding -nostdinc -isystem /opt/codesourcery/2009q1-
604 203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/include -pipe -DCONFIG_
605 ARM -D__ARM__ -marm -mabi=aapcs-linux -mno-thumb-interwork -march=armv5
606 -Wall -Wstrict-prototypes -fno-stack-protector -g -Os -fno-common -ff
607 ixed-r8 -msoft-float -D__KERNEL__ -DTEXT_BASE=0x80e80000 -I/home/sanje
608 ev/u-boot/include -fno-builtin -ffreestanding -nostdinc -isystem /opt/co
609 desourcery/2009q1-203/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/includ
610 e -pipe -DCONFIG_ARM -D__ARM__ -marm -mabi=aapcs-linux -mno-thumb-inte
611 rwork -march=armv5 -I.. -Bstatic -T u-boot.lds -Ttext 0x80e80000 -o .c
612 arm-none-linux-gnueabi-gcc: no input files
613 make[1]: *** [.c] Error 1
614 make[1]: Leaving directory `/home/sanjeev/u-boot/examples/standalone'
615 make: *** [examples/standalone] Error 2
616 premi #
617
618 Signed-off-by: Sanjeev Premi <premi@ti.com>
619
620 Fixed typo (s/ElF/ELF/).
621 Signed-off-by: Wolfgang Denk <wd@denx.de>
622
623 commit af860962b544ddf323c4ff68454f00d31e44df0a
624 Author: Becky Bruce <beckyb@kernel.crashing.org>
625 Date: Wed Nov 4 18:30:08 2009 -0600
626
627 85xx: Remove unused CONFIG_ASSUME_AMD_FLASH from config files
628
629 A bunch of the 85xx boards have this cruft in them - it's not used
630 anywhere. Delete it.
631
632 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
633
634 commit deec1fbd4f704dded2e668bb9e368631981ea139
635 Author: Wolfgang Denk <wd@denx.de>
636 Date: Wed Dec 2 22:26:30 2009 +0100
637
638 MAINTAINERS: update responsible for MPC85xx/86xx
639
640 Signed-off-by: Wolfgang Denk <wd@denx.de>
641 Cc: Kumar Gala <galak@kernel.crashing.org>
642 Cc: Becky Bruce <beckyb@kernel.crashing.org>
643
644 commit 824d82997fbcf28e49081d36fdd5d3be1b92b03d
645 Author: Ira W. Snyder <iws@ovro.caltech.edu>
646 Date: Wed Nov 4 13:37:59 2009 -0800
647
648 Fix example FIT image source files
649
650 The example FIT image source files do not compile with the latest dtc and
651 mkimage. The following error message is produced:
652
653 DTC: dts->dtb on file "kernel.its"
654 Error: kernel.its 7:0 - 1:0 syntax error
655 FATAL ERROR: Unable to parse input tree
656 ./mkimage: Can't read kernel.itb.tmp: Invalid argument
657
658 The FIT image source files are missing the "/dts-v1/;" directive at the
659 beginning of the file. Add the directive to the examples.
660
661 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
662
663 commit fd66066ee3ce15c2966feb9b2be0f0d51a95db48
664 Author: Mike Frysinger <vapier@gentoo.org>
665 Date: Wed Nov 4 16:13:19 2009 -0500
666
667 img2srec: use standard types
668
669 The img2srec code creates a lot of typedefs with common names. These
670 easily clash with system headers that include these typedefs (like mingw).
671
672 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
673
674 commit 8204e068110e8abe5db9c3b7df9971b58cda8f26
675 Author: Mike Frysinger <vapier@gentoo.org>
676 Date: Wed Nov 4 16:03:25 2009 -0500
677
678 tools: gitignore *.exe binaries
679
680 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
681
682 commit 425d3b666eee5c58fdb82fb894a535dd71782a05
683 Author: Peter Tyser <ptyser@xes-inc.com>
684 Date: Tue Nov 3 23:31:07 2009 -0600
685
686 ppc: Move conditional compilation of kgdb.c to Makefile
687
688 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
689
690 commit e06ab6546b332acc55ac4e7c31338662328b0fb3
691 Author: Mike Frysinger <vapier@gentoo.org>
692 Date: Tue Nov 3 11:36:39 2009 -0500
693
694 spi_flash.h: pull in linux/types.h for u## types
695
696 commit 0008555f4d57c15ad86ee735861ca0d783042f61
697 Author: Mike Frysinger <vapier@gentoo.org>
698 Date: Tue Nov 3 11:36:26 2009 -0500
699
700 bootm: mark local boot_os[] table static
701
702 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
703
704 commit a8fa379d47f06c7d3ed75c8fb26ae43ee38e1fd7
705 Author: Nishanth Menon <nm@ti.com>
706 Date: Mon Nov 2 09:40:18 2009 -0600
707
708 mkconfig: deny messed up ARCH definition
709
710 Refuse to setup a platform if the command line ARCH= is not the same
711 as the one required for the board. This prevents any user with
712 prehistoric aliases from messing up their builds.
713
714 Reported in thread:
715 http://old.nabble.com/-U-Boot--Build-breaks-on-some-OMAP3-configs-to26132721.html
716
717 Inputs from: Mike Frysinger and Wolfgang Denk:
718 http://lists.denx.de/pipermail/u-boot/2009-November/063642.html
719
720 Cc: Wolfgang Denk <wd@denx.de>
721 Cc: Mike Frysinger <vapier@gentoo.org>
722 Cc: Anand Gadiyar <gadiyar@ti.com>
723 Cc: Dirk Behme <dirk.behme@googlemail.com>
724 Signed-off-by: Nishanth Menon <nm@ti.com>
725
726 commit 67b96e87da1b84660fa1e5b78cc760246d116814
727 Author: Remy Bohmer <linux@bohmer.net>
728 Date: Wed Oct 28 22:13:39 2009 +0100
729
730 Repair the 'netretry=once' option.
731
732 'netretry = once' does the same as 'netretry = yes', because it is not stored
733 when it was tried once.
734
735 Signed-off-by: Remy Bohmer <linux@bohmer.net>
736 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
737
738 commit b25e38fc36e13fa8037fa4d37fe909d1d6e6f372
739 Author: Remy Bohmer <linux@bohmer.net>
740 Date: Thu Oct 29 14:24:22 2009 +0100
741
742 Repair build fail in case CONFIG_PPC=n and CONFIG_FIT=y
743
744 Signed-off-by: Remy Bohmer <linux@bohmer.net>
745
746 commit 01826abc02ce160501534788e63629ccbe31b05c
747 Author: Grazvydas Ignotas <notasas@gmail.com>
748 Date: Thu Nov 12 11:46:07 2009 +0200
749
750 OMAP3: pandora: fix booting without serial attached
751
752 When the board is booted without serial cable attached (which
753 is how most of them will be used) UART RX is left floating and
754 sometimes picks noise, which interrupts countdown and enters
755 U-Boot prompt instead of booting the kernel.
756
757 Fix this by setting up internal pullup on UART RX pin. This
758 does not prevent serial from working as the internal pullup
759 is weak.
760
761 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
762
763 commit 41dfd8a60324243dbe2dc313a607910824a68aa7
764 Author: Remy Bohmer <linux@bohmer.net>
765 Date: Wed Oct 28 22:13:37 2009 +0100
766
767 Add support for CS2 dataflash for Atmel-SPI.
768
769 The only missing chipselect line support is CS2, and I need it on
770 CS2...
771
772 Signed-off-by: Remy Bohmer <linux@bohmer.net>
773
774 commit faf36c1437c95e4a86835633d9801c5f6396a3c7
775 Author: Remy Bohmer <linux@bohmer.net>
776 Date: Wed Oct 28 22:13:36 2009 +0100
777
778 Fix mingw tools build
779
780 mkimage does not build due to missing strtok_r() and getline() implementation
781
782 Signed-off-by: Remy Bohmer <linux@bohmer.net>
783
784 commit 6a590c5f5fd12cdd27f3153522acfac3854590e7
785 Author: Remy Bohmer <linux@bohmer.net>
786 Date: Wed Oct 28 22:13:35 2009 +0100
787
788 Building of FIT images does not work.
789
790 The type is not set for generation of the FIT images, resulting
791 in no images being created without printing or returning an error
792
793 Signed-off-by: Remy Bohmer <linux@bohmer.net>
794
795 commit 0a7691e820e33b23f61c6ea0ef6fa72099d1a6ae
796 Author: Renato Andreola <renato.andreola@imagos.it>
797 Date: Mon Nov 23 16:45:14 2009 -0500
798
799 Nios2: do_boom_linux(): kernel gunzip input data integrity problem due to
800 missing cache flush.
801
802 Added instruction and data caches flush.
803
804 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
805
806 commit de03825386eaedb5e17261dd87cde86e9a764ba9
807 Author: Scott McNutt <smcnutt@psyent.com>
808 Date: Mon Nov 23 16:29:40 2009 -0500
809
810 Nios2: Fix compiler warnings in lib_nios2/board.c (unused variables)
811
812 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
813
814 commit 57baa379cf2f67df89a5c6052767fd25daff20bd
815 Author: Scott McNutt <smcnutt@psyent.com>
816 Date: Mon Nov 23 15:54:25 2009 -0500
817
818 Nios2/Nios: Remove unnecessary (residual) linker Nios command scripts from
819 the standalone examples.
820
821 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
822
823 commit fcffb680e77fcb48598d4a9944dbe2d4503170e0
824 Author: Mike Frysinger <vapier@gentoo.org>
825 Date: Wed Oct 14 19:28:03 2009 -0400
826
827 sf: fix stmicro offset setup while erasing
828
829 Reported-by: Peter Gombos <gombos@protecta.hu>
830 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
831
832 commit d394a7795027d96ca55799df40bd5c4a13dbeebe
833 Author: Jason McMullan <mcmullan@netapp.com>
834 Date: Fri Oct 9 17:12:23 2009 -0400
835
836 sf: new driver for Winbond W25X16/32/64 devices
837
838 Signed-off-by: Jason McMullan <jason.mcmullan@gmail.com>
839 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
840
841 commit cada315100c88894b85972a91309a6f2413966b6
842 Author: Marcel Ziswiler <marcel@ziswiler.com>
843 Date: Thu Oct 1 23:55:17 2009 +0200
844
845 mpc8260: move FDT memory node fixup into common CPU code.
846
847 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
848 Tested-by: Heiko Schocher <hs@denx.de>
849
850 commit f2cea405f83da46b72098ea874fb3eefe185d312
851 Author: Po-Yu Chuang <ratbert.chuang@gmail.com>
852 Date: Wed Sep 23 15:52:35 2009 +0800
853
854 Add driver for FTRTC010 real time clock
855
856 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
857
858 Edited commit message.
859 Signed-off-by: Wolfgang Denk <wd@denx.de>
860
861 commit c0356a88011330646e960dfac8a2c909bede3304
862 Author: Mark Jackson <mpfj-list@mimc.co.uk>
863 Date: Mon Aug 17 16:42:52 2009 +0100
864
865 MIMC200: set default fbmem value
866
867 This patch adds a default bootargs "fbmem" value to the
868 CONFIG_BOOTARGS string for the MIMC200 board.
869
870 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
871
872 commit 3ffc0d61bad7d986e344ce7062b37c5c8f04fb0e
873 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
874 Date: Tue Oct 27 19:58:09 2009 +0100
875
876 ppc4xx: Initialize magnetic coupler on VOM405 boards
877
878 This patch fixes an ugly behavior of the IL712 magnetic coupler
879 as used on VOM405. These parts will remember their last state
880 over a power cycle which might cause unwanted behavior.
881
882 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
883 Signed-off-by: Stefan Roese <sr@denx.de>
884
885 commit be0db3e3141c6c6b4e232b51091f35a284cc54e5
886 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
887 Date: Mon Oct 26 09:58:45 2009 +0100
888
889 ppc4xx: Initialize magnetic couplers in PLU405
890
891 This patch fixes an ugly behavior of the IL712 magnetic couplers
892 as used on PLU405. These parts will remember their last state
893 over a power cycle which might cause unwanted behavior.
894
895 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
896 Signed-off-by: Stefan Roese <sr@denx.de>
897
898 commit 067f54c66acd469870ef6946e1591bfcc02de1b3
899 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
900 Date: Mon Oct 26 09:55:40 2009 +0100
901
902 Add minimal SJA1000 header for basic CAN mode
903
904 This patch is in preparation for the upcoming PLU405 board fix.
905
906 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
907 Signed-off-by: Stefan Roese <sr@denx.de>
908
909 commit cdbdbe65f5f006cba208accee5a126c659d4b867
910 Author: Kumar Gala <galak@kernel.crashing.org>
911 Date: Fri Nov 13 08:52:21 2009 -0600
912
913 ppc/85xx: Fix how we determine the number of CAM entries
914
915 We were incorrectly use the max CAM size as the number of entries in
916 the array for setting up the addrmap. We should be using the NENTRY
917 field which is the low 12-bits of TLB1CFG.
918
919 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
920
921 commit fbd47b6753b08162436d9ccad1e63c8d43ede54c
922 Author: Mike Rapoport <mike@compulab.co.il>
923 Date: Thu Nov 12 15:35:08 2009 +0200
924
925 smc911x: make smc911x_initialize return correct value
926
927 Make smc911x_initialize return -1 on error and number of interfaces
928 detected otherwise.
929
930 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
931 Acked-by: Mike Frysinger <vapier@gentoo.org>
932 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
933
934 commit c44efcf97b335dcef7d014f65b7d3094e79adb13
935 Author: Mike Frysinger <vapier@gentoo.org>
936 Date: Thu Nov 12 22:26:02 2009 -0500
937
938 smc911x_eeprom: fix building after smc911x overhaul
939
940 When the smc911x driver was converted to NET_MULTI, the smc911x eeprom was
941 missed. The config option needed updating as well as overhauling of the
942 rergister read/write functions.
943
944 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
945 Tested-by: Mike Rapoport <mike.rapoport@gmail.com>
946 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
947
948 commit 3ad95deb30ac73bd57e966d321215a17d3236f9f
949 Author: Dave Liu <daveliu@freescale.com>
950 Date: Thu Nov 12 07:26:37 2009 +0800
951
952 fsl-ddr: Fix the chip-select interleaving issue
953
954 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
955 introduced one new bug to chip-select interleaving.
956
957 Single DDR controller also can do the chip-select
958 interleaving if there is dual-rank or qual-rank DIMMs.
959
960 Signed-off-by: Dave Liu <daveliu@freescale.com>
961 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
962
963 commit 651ef90fa6ca824c8e581aeef9e04bbbe7f7e9ce
964 Author: javier Martin <javier.martin@vista-silicon.com>
965 Date: Thu Oct 29 08:22:43 2009 +0100
966
967 mxc_fec: avoid free() calls to already freed pointers.
968
969 Sometimes, inside NetLoop, eth_halt() is called before eth_init() has
970 been called. This is harmless except for free() calls to pointers
971 which have not been allocated yet.
972
973 This patch initializes those pointers to NULL and allocates them only
974 the first time. This way we can get rid of free calls in halt callback.
975
976 This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
977
978 Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
979 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
980
981 commit e8f1546a88b4ade6a910c4a7958a774ee1b40023
982 Author: javier Martin <javier.martin@vista-silicon.com>
983 Date: Thu Oct 29 08:18:34 2009 +0100
984
985 mxc_fec: fix some erroneous PHY accesses.
986
987 This patch fixes erroneous access to the ethernet PHY which broke the driver.
988 1. Selector field in the auto-negotiation register must be 0x00001 for
989 using 802.3, not 0x00000 which is reseved.
990 2. Access to the PHY address specified by CONFIG_FEC_MXC_PHYADDR, not
991 0x0 fixed address.
992
993 This has been tested in i.MX27 Litekit board and eldk-4.2 toolchains.
994
995 Now using proper defines for auto-negotiation register.
996
997 Signed-off-by: Javier Martin <javier.martin@vista-silicon.com>
998 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
999
1000 commit f865fcbbb35851e75fee9c3a3fa8e0f71d9e6463
1001 Author: Ron Lee <ron@debian.org>
1002 Date: Wed Aug 5 20:14:01 2009 +0200
1003
1004 ARM Don't inline weak symbols
1005
1006 ------------------------------------------------------------------------
1007
1008 GCC 4.4 complains about this now.
1009
1010 Signed-off-by: Ron Lee <ron@debian.org>
1011
1012 commit d14c7ec2b51fb92c4a5218b299b772c3d186510d
1013 Author: Ben Warren <biggerbadderben@gmail.com>
1014 Date: Mon Nov 9 13:09:57 2009 -0800
1015
1016 Fix SMC91111 regression: lpd7a40x build failures
1017
1018 Both lpd7a400 and lpd7a404 failed to compile because they had
1019 CONFIG_SMC_USE_IOFUNCS defined:
1020
1021 examples/standalone/smc91111_eeprom.c:388: undefined reference to `SMC_outw'
1022
1023 Also removed an orphaned paren in lpd7a404.h
1024
1025 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1026
1027 commit 1031ae960ce6ce8332190278a06e2d72c2b2793e
1028 Author: Ben Warren <biggerbadderben@gmail.com>
1029 Date: Mon Nov 9 14:01:08 2009 -0800
1030
1031 SMC91111: Clean up SMC_inx macros on xsengine and xaeniax
1032
1033 This patch fixes the following warnings:
1034
1035 Configuring for xaeniax board...
1036 smc91111_eeprom.c: In function 'print_macaddr':
1037 smc91111_eeprom.c:278: warning: suggest parentheses around + or - in operand of &
1038 smc91111_eeprom.c:281: warning: suggest parentheses around + or - in operand of &
1039 ...
1040 Configuring for xsengine board...
1041 smc91111_eeprom.c: In function 'print_macaddr':
1042 smc91111_eeprom.c:278: warning: suggest parentheses around + or - inside shift
1043 smc91111_eeprom.c:281: warning: suggest parentheses around + or - inside shift
1044
1045 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1046
1047 commit 830c7b6722c6a9762411bf52a7bf2fae4dc71dab
1048 Author: Ben Warren <biggerbadderben@gmail.com>
1049 Date: Mon Nov 9 11:43:18 2009 -0800
1050
1051 Fix CS8900 regression on impa7 board
1052
1053 The following error was seen on impa7 board, due to its use of a 32-bit bus
1054 on CS8900.
1055 cs8900.c:137:37: error: macro "get_reg_init_bus" passed 2 arguments, but takes just 1
1056
1057 This patch gives the macro the correct number of arguments
1058
1059 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1060
1061 commit e5c5d9e0834bacf1c4787fa76cc4e369f2597cf5
1062 Author: Mike Frysinger <vapier@gentoo.org>
1063 Date: Sun Nov 1 22:39:56 2009 -0500
1064
1065 clarify eth driver halt/recv steps
1066
1067 The dev->halt() func can be called at any time, and the dev->recv() func
1068 does not need to use NetRxPackets[] when calling NetReceive().
1069
1070 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1071 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1072
1073 commit 497ab0eec5e1e2dfccc141a4485cd6b940e1424a
1074 Author: Hui.Tang <zetalabs@gmail.com>
1075 Date: Thu Nov 5 09:58:44 2009 +0800
1076
1077 Fix cs8900 dev->priv not init issue
1078
1079 Ensure all CS8900 data structures are assigned before accessing device
1080
1081 Signed-off-by: Hui.Tang <zetalabs@gmail.com>
1082 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1083
1084 commit 4fe5193d464ecdac26ddc71b1351be5b86bbff29
1085 Author: Stefan Roese <sr@denx.de>
1086 Date: Tue Nov 3 14:34:45 2009 +0100
1087
1088 ppc4xx: 44x_spd_ddr2.c: Fix register macro ECCCR -> ECCES (SDRAM_ECCES)
1089
1090 This error only appears when DEBUG is enabled in this driver. That's why
1091 it went unnoticed till now.
1092
1093 Signed-off-by: Stefan Roese <sr@denx.de>
1094
1095 commit 916ed9444d3ab7b5cd6312557005f2a764a8baf7
1096 Author: Stefan Roese <sr@denx.de>
1097 Date: Thu Oct 29 18:37:45 2009 +0100
1098
1099 ppc4xx: Canyonlands: Change EBC bus config to drive always (no high-z)
1100
1101 This patch fixes a problem only seen very occasionally on Canyonlands.
1102 The NOR flash interface (CFI driver) doesn't work reliably in all cases.
1103 Erasing and/or programming sometimes doesn't work. Sometimes with
1104 an error message, like "flash not erased" when trying to program an
1105 area that should have just been erased. And sometimes without any error
1106 messages. As mentioned above, this problem was only seen rarely and with
1107 some PLL configuration (CPU speed, EBC speed).
1108
1109 Now I spotted this problem a few times, when running my Canyonlands with
1110 the following setup (chip_config):
1111
1112 1000-nor - NOR CPU:1000 PLB: 200 OPB: 100 EBC: 100
1113
1114 Changing the EBC configuration to not release the bus into high
1115 impedance state inbetween the transfers (ATC, DTC and CTC bits set to 1
1116 in EBC0_CFG) seems to fix this problem. I haven't seen any failure
1117 anymore with this patch applied.
1118
1119 Signed-off-by: Stefan Roese <sr@denx.de>
1120 Cc: David Mitchell <dmitchell@amcc.com>
1121 Cc: Jeff Mann <MannJ@embeddedplanet.com>
1122
1123 commit 25793f76bf9a7be59c9415ef0f78d034e8d53dae
1124 Author: Remy Bohmer <linux@bohmer.net>
1125 Date: Thu Oct 29 12:29:37 2009 +0100
1126
1127 ARM: Use Linux version for unaligned access code
1128
1129 The asm-arm/unaligned.h includes linux/unaligned/access_ok.h
1130 This file is unsafe to be used on ARM, since it does an unaligned memory
1131 accesses which fails on ARM.
1132
1133 Lookin at Linux the basic difference seems to be the header
1134 "include/asm-arm/unaligned.h". The Linux version of "unaligned.h"
1135 does *not* include "access_ok.h" at all. It includes "le_byteshift.h"
1136 and "be_byteshift.h" instead.
1137
1138 Signed-off-by: Remy Bohmer <linux@bohmer.net>
1139 Signed-off-by: Stefan Roese <sr@denx.de>
1140 --
1141 include/asm-arm/unaligned.h | 3 -
1142 include/linux/unaligned/be_byteshift.h | 70 +++++++++++++++++++++++++++++++++
1143 include/linux/unaligned/le_byteshift.h | 70 +++++++++++++++++++++++++++++++++
1144 3 files changed, 142 insertions(+), 1 deletion(-)
1145 create mode 100644 include/linux/unaligned/be_byteshift.h
1146 create mode 100644 include/linux/unaligned/le_byteshift.h
1147
1148 commit 6d6e7c53d5c75e5e24841c5506f4ed9d82adee09
1149 Author: Kumar Gala <galak@kernel.crashing.org>
1150 Date: Wed Nov 4 18:02:10 2009 -0600
1151
1152 ppc/85xx: Fix inclusion of 83xx immap in 85xx builds
1153
1154 The nand_boot_fsl_elbc.c is shared between 83xx & 85xx however we should
1155 not be including the immap_83xx.h when building 85xx. We can just get
1156 this all from common.h
1157
1158 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1159
1160 commit 107b579c75256212d4bf8b99ee8d68e0078f3646
1161 Author: Becky Bruce <beckyb@kernel.crashing.org>
1162 Date: Wed Nov 4 17:34:04 2009 -0600
1163
1164 86xx: Remove redundant code in initdram
1165
1166 The same code exists both inside an #ifdef and outside of it.
1167 Remove the extra code for all the 86xx boards.
1168
1169 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1170 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1171
1172 commit 715d8f7608f77c93f1807a032644893fd5b6d08b
1173 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
1174 Date: Mon Nov 2 09:05:49 2009 -0600
1175
1176 fsl_pci_init_port end-point initialization is broken
1177
1178 commit 70ed869e broke fsl pcie end-point initialization.
1179 Returning 0 is not correct. The function must return the first free
1180 bus number for the next controller.
1181
1182 fsl_pci_init() must still be called and a bus allocated even if the
1183 controller is an end-point.
1184
1185 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
1186 Acked-by: Vivek Mahajan <vivek.mahajan@freescale.com>
1187 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1188
1189 commit 01471d538fb163f472a769f21267d7676c91267c
1190 Author: Kumar Gala <galak@kernel.crashing.org>
1191 Date: Wed Nov 4 01:29:04 2009 -0600
1192
1193 Revert "ppc/85xx/pci: fsl_pci_init: pcie agent mode support"
1194
1195 This reverts commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc.
1196
1197 There isn't any need to modify the API for fsl_pci_init_port to pass the
1198 status of host/agent(end-point) status. We can determine that
1199 internally to fsl_pci_init_port. Revert the patch that makes the API
1200 change.
1201
1202 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1203
1204 commit ff88229549e08fdd3f9127c1cc4db11a3576250f
1205 Author: Dave Liu <daveliu@freescale.com>
1206 Date: Sat Oct 31 07:59:55 2009 +0800
1207
1208 ppc/85xx: Fix misc L2 cache enabling bug
1209
1210 We need loop-check the flash clear lock and enable bit for L2 cache.
1211
1212 Signed-off-by: Dave Liu <daveliu@freescale.com>
1213 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1214
1215 commit 59434fe243962758742af5cb8e2ced976e17c302
1216 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1217 Date: Fri Oct 30 10:16:27 2009 +0900
1218
1219 sh: Update lowlevel_init.S of espt-giga
1220
1221 There was the point that did not use write macro.
1222 Change to write macro.
1223
1224 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1225
1226 commit f1cae1969d9e971fb72827a5731ce7e752464aa2
1227 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1228 Date: Fri Oct 30 10:01:25 2009 +0900
1229
1230 sh: Move some defs to convince 'pcrel too far'
1231
1232 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1233 Signed-off-by: Takashi Yoshii <yoshii.takashi@gmail.com>
1234
1235 commit 0f9eaf4b323ea0ca95944b84c7465b81ba575514
1236 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1237 Date: Thu Oct 15 13:36:34 2009 +0900
1238
1239 sh: Remove malloc_bin_reloc from lib_sh, lib_nios2 and lib_nios.
1240
1241 By "arm/microblaze/nios/nios2/sh: Remove relocation fixups"
1242 (commit: 0630535e2d062dd73c1ceca5c6125c86d1127a49", doesn't need
1243 malloc_bin_reloc function. This commit remove this.
1244
1245 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
1246
1247 commit 0775437293a6963cb21244dfae6978cbf67c6bfe
1248 Author: Ben Warren <biggerbadderben@gmail.com>
1249 Date: Wed Oct 21 21:53:39 2009 -0700
1250
1251 Fix DM9000 MAC address handling
1252
1253 Proper behavior is to pull MAC address from NVRAM in the initialization() an
1254 stuff it in dev->address, then program the device from dev->address in
1255 the init() function.
1256
1257 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1258
1259 commit 98d92d8c9f4021629a45261ad5ec3f3595f3a27a
1260 Author: Wolfgang Denk <wd@denx.de>
1261 Date: Wed Oct 28 22:07:56 2009 +0100
1262
1263 sbc8349: fix incorrect comment
1264
1265 The comment for the BR0_PRELIM port size initialization incorrectly
1266 stated 32 bit, while it's actually 16 bit. The code is correct.
1267
1268 Reported-by: Guenter Koellner <guenter.koellner@nsn.com>
1269 Signed-off-by: Wolfgang Denk <wd@denx.de>
1270
1271 commit a38f85e180a30b6225808828ded1017b1a5418c6
1272 Author: Sandeep Paulraj <s-paulraj@ti.com>
1273 Date: Wed Oct 28 11:05:03 2009 -0400
1274
1275 Fix Compliation warning for TNY-A9260 and TNY-A9G20
1276
1277 The patch fixes a compilation warning by defining
1278 CONFIG_SYS_64BIT_VSPRINTF in the config file
1279
1280 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1281
1282 commit 264e42ee54f1d322805d9068168fd362b413fd09
1283 Author: Sandeep Paulraj <s-paulraj@ti.com>
1284 Date: Wed Oct 28 11:04:53 2009 -0400
1285
1286 Fix Compliation warning for SBC35-A9G20 board
1287
1288 The patch fixes a compilation warning by defining
1289 CONFIG_SYS_64BIT_VSPRINTF in the config file
1290
1291 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1292
1293 commit 353462f6ff9769091fb644d44d8025f20a4192d9
1294 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
1295 Date: Wed Oct 28 09:37:33 2009 -0500
1296
1297 galaxy5200: Add default environment variables
1298
1299 Extend bootdelay to 10 seconds. Set boot retry time to 120 seconds and use
1300 reset to retry. Define default bootcommand and bootargs for production.
1301
1302 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
1303
1304 commit fa36ae790eb10ce70935f9a78f07703719dca422
1305 Author: Stefan Roese <sr@denx.de>
1306 Date: Tue Oct 27 15:15:55 2009 +0100
1307
1308 cfi: Add weak default function for flash_cmd_reset()
1309
1310 Currently the CFI driver issues both AMD and Intel reset commands.
1311 This is because the driver doesn't know yet which chips are connected.
1312 This dual reset seems to cause problems with the M29W128G chips as
1313 reported by Richard Retanubun. This patch now introduces a weak default
1314 function for the CFI reset command, still with both resets. This can
1315 be overridden by a board specific version if necessary.
1316
1317 Signed-off-by: Stefan Roese <sr@denx.de>
1318 Cc: Richard Retanubun <RichardRetanubun@ruggedcom.com>
1319
1320 commit 4946775c6db52dba28f72ba3525764b54f1d4593
1321 Author: Wolfgang Denk <wd@denx.de>
1322 Date: Wed Oct 28 00:49:47 2009 +0100
1323
1324 Coding Style cleanup; update CHANGELOG, prepare -rc1
1325
1326 Signed-off-by: Wolfgang Denk <wd@denx.de>
1327
1328 commit 246c69225c7b962d5c93e92282b78ca9fc5fefee
1329 Author: Peter Tyser <ptyser@xes-inc.com>
1330 Date: Sun Oct 25 15:12:56 2009 -0500
1331
1332 Add 'editenv' command
1333
1334 The editenv command can be used to edit an environment variable.
1335 Editing an environment variable is useful when one wants to tweak an
1336 existing variable, for example fix a typo or change the baudrate in the
1337 'bootargs' environment variable.
1338
1339 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1340
1341 commit b0fa8e50632a628766db23f5c884ec63f1469552
1342 Author: Peter Tyser <ptyser@xes-inc.com>
1343 Date: Sun Oct 25 15:12:55 2009 -0500
1344
1345 setenv(): Delete 0-length environment variables
1346
1347 Previously setenv() would only delete an environment variable if it
1348 was passed a NULL string pointer as a value. It should also delete an
1349 environment variable when it encounters a valid string pointer of
1350 0-length.
1351
1352 This change/fix is generally useful and is necessary for the upcoming
1353 "editenv" command.
1354
1355 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1356
1357 commit ecc5500ee487170d8af6ff893fd1e0082380a01a
1358 Author: Peter Tyser <ptyser@xes-inc.com>
1359 Date: Sun Oct 25 15:12:54 2009 -0500
1360
1361 readline(): Add ability to modify a string buffer
1362
1363 If the 'buf' parameter is a non-0-length string, its contents will be
1364 edited. Previously, the initial contents of 'buf' were ignored and the
1365 user entered its contents from scratch.
1366
1367 This change is necessary to support the upcoming "editenv" command but
1368 could also be used for future commands which require a user to modify
1369 an existing string.
1370
1371 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1372
1373 commit f923943843cd617d681387e7fe81a48060cc6401
1374 Author: Peter Tyser <ptyser@xes-inc.com>
1375 Date: Sun Oct 25 15:12:53 2009 -0500
1376
1377 cread_line(): Remove unused variables
1378
1379 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1380
1381 commit e491a71e578e93bd3b2f8f20d8ef8f111c98010d
1382 Author: Peter Tyser <ptyser@xes-inc.com>
1383 Date: Sun Oct 25 15:12:52 2009 -0500
1384
1385 Check for NULL prompt in readline_into_buffer()
1386
1387 Previously, passing readline() or readline_into_buffer() a NULL 'prompt'
1388 parameter would result in puts() printing garbage when
1389 CONFIG_CMDLINE_EDITING was enabled.
1390
1391 Note that no board currently triggers this bug. Enabling
1392 CONFIG_CMDLINE_EDITING on some boards (eg bab7xx) would result in
1393 the bug appearing. This change is only intended to prevent someone
1394 from running into this issue in the future.
1395
1396 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1397
1398 commit 16d1c10783660f3fdbc3c19141f42f3b0d1834d3
1399 Author: Wolfgang Denk <wd@denx.de>
1400 Date: Sun Oct 25 23:00:09 2009 +0100
1401
1402 drivers/net/phy/miiphybb.c: fix warning: no newline at end of file
1403
1404 Add missing newline.
1405
1406 Signed-off-by: Wolfgang Denk <wd@denx.de>
1407 Cc: Luigi Mantellini <luigi.mantellini@idf-hit.com>
1408 Cc: Ben Warren <biggerbadderben@gmail.com>
1409
1410 commit a747a7f31059b9069e97c78bba5496409c33aa05
1411 Author: Wolfgang Denk <wd@denx.de>
1412 Date: Tue Oct 27 00:03:32 2009 +0100
1413
1414 Revert "env: only build env_embedded and envcrc when needed"
1415
1416 Breaks building on many boards, and no really clean fix available yet.
1417
1418 This reverts commit 6dab6add2d8ee80905234b326abc3de11be1d178.
1419
1420 commit 3fca80375981fe83d4674a0267183b469a1ea7ff
1421 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1422 Date: Thu Oct 15 17:47:16 2009 +0400
1423
1424 mpc85xx: Configure QE USB for MPC8569E-MDS boards
1425
1426 Setup QE pin multiplexing for USB function, configure needed BCSRs
1427 and add some fdt fixups.
1428
1429 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1430 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1431
1432 commit 14809b6c21c89dd65abaf3fea7627fb5ea0f78a3
1433 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1434 Date: Thu Oct 15 17:47:13 2009 +0400
1435
1436 mpc85xx: Configure QE UART for MPC8569E-MDS boards
1437
1438 To make QE UART usable by Linux we should setup pin multiplexing
1439 and turn UCC2 Ethernet node into UCC2 QE UART node.
1440
1441 Also, QE UART is mutually exclusive with UART0, so we can't enable
1442 it if eSDHC is in 4-bits mode on pilot boards, or if it's a prototype
1443 board with eSDHC in 1- or 4-bits mode.
1444
1445 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1446 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1447
1448 commit 70d665b1d230b9575a647948e8db3da1e6743e5c
1449 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1450 Date: Thu Oct 15 17:47:11 2009 +0400
1451
1452 mpc85xx: Setup QE pinmux for SPI Flash on MPC8569E-MDS boards
1453
1454 SPI Flash (M25P40) is connected to the SPI1 bus, we need a few
1455 qe_iop entries to actually enable SPI1 on these boards.
1456
1457 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1458 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1459
1460 commit 65dec3b4599a17e83ec69dfd059e4ea1e795ef37
1461 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1462 Date: Thu Oct 15 17:47:09 2009 +0400
1463
1464 mpc85xx: Setup SRIO memory region LAW for MPC8569E-MDS boards
1465
1466 This patch sets memory window for Serial RapidIO on MPC8569E-MDS
1467 boards.
1468
1469 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1470 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1471
1472 commit a29155e12286cc5ec2df72c1cab28e3659bfdad5
1473 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1474 Date: Thu Oct 15 17:47:08 2009 +0400
1475
1476 mpc85xx: Add eLBC NAND support for MPC8569E-MDS boards
1477
1478 Simply add some defines, and adjust TLBe setup to include some
1479 space for eLBC NAND.
1480
1481 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1482 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1483
1484 commit 7f52ed5ef1b490da282ace3316be381a6abf96a5
1485 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1486 Date: Thu Oct 15 17:47:06 2009 +0400
1487
1488 mpc85xx: Add eSDHC support for MPC8569E-MDS boards
1489
1490 eSDHC is mutually exlusive with UART0 (in 4-bits mode) and I2C2
1491 (in 1-bit mode). When eSDHC is used, we should switch u-boot console to
1492 UART1, and make the proper device-tree fixups.
1493
1494 Because of an erratum in prototype boards it is impossible to use eSDHC
1495 without disabling UART0 (which makes it quite easy to 'brick' the board
1496 by simply issung 'setenv hwconfig esdhc', and not able to interact with
1497 U-Boot anylonger).
1498
1499 So, but default we assume that the board is a prototype, which is a most
1500 safe assumption. There is no way to determine board revision from a
1501 register, so we use hwconfig.
1502
1503 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1504 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1505
1506 commit 48618126f78f05042dae428811809b594f747eb9
1507 Author: Peter Tyser <ptyser@xes-inc.com>
1508 Date: Fri Oct 23 15:55:48 2009 -0500
1509
1510 xpedite5370: Enable multi-core support
1511
1512 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1513 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1514
1515 commit 5ccd29c3679b3669b0bde5c501c1aa0f325a7acb
1516 Author: Peter Tyser <ptyser@xes-inc.com>
1517 Date: Fri Oct 23 15:55:47 2009 -0500
1518
1519 85xx: MP Boot Page Translation update
1520
1521 This change has 3 goals:
1522 - Have secondary cores be released into spin loops at their 'true'
1523 address in SDRAM. Previously, secondary cores were put into spin
1524 loops in the 0xfffffxxx address range which required that boot page
1525 translation was always enabled while cores were in their spin loops.
1526
1527 - Allow the TLB window that the primary core uses to access the
1528 secondary cores boot page to be placed at any address. Previously, a
1529 TLB window at 0xfffff000 was always used to access the seconary cores'
1530 boot page. This TLB address requirement overlapped with other
1531 peripherals on some boards (eg XPedite5370). By default, the boot
1532 page TLB will still use the 0xfffffxxx address range, but this can be
1533 overridden on a board-by-board basis by defining a custom
1534 CONFIG_BPTR_VIRT_ADDR. Note that the TLB used to map the boot page
1535 remains in use while U-Boot executes. Previously it was only
1536 temporarily used, then restored to its initial value.
1537
1538 - Allow Boot Page Translation to be disabled on bootup. Previously,
1539 Boot Page Translation was always left enabled after secondary cores
1540 were brought out of reset. This caused the 0xfffffxxx address range
1541 to somewhat "magically" be translated to an address in SDRAM. Some
1542 boards may not want this oddity in their memory map, so defining
1543 CONFIG_MPC8xxx_DISABLE_BPTR will turn off Boot Page Translation after
1544 the secondary cores are initialized.
1545
1546 These changes are only applicable to 85xx boards with CONFIG_MP defined.
1547
1548 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1549 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1550
1551 commit 70ed869ea5f6b1d13d7b140c83ec0dcd8a127ddc
1552 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
1553 Date: Tue Oct 27 12:18:55 2009 +0530
1554
1555 ppc/85xx/pci: fsl_pci_init: pcie agent mode support
1556
1557 Originally written by Jason Jin and Mingkai Hu for mpc8536.
1558
1559 When QorIQ based board is configured as a PCIe agent, then unlock/enable
1560 inbound PCI configuration cycles and init a 4K inbound memory window;
1561 so that a PCIe host can access the PCIe agents SDRAM at address 0x0
1562
1563 * Supported in fsl_pci_init_port() after adding pcie_ep as a param
1564 * Revamped copyright in drivers/pci/fsl_pci_init.c
1565 * Mods in 85xx based board specific pci init after this change
1566
1567 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
1568 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1569
1570 commit 273a28ad9ef59dcfcd4c056ec1f61f1e0896cfaa
1571 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1572 Date: Tue Oct 27 09:36:38 2009 +0530
1573
1574 85xx/p1_p2_rdb: Fixing DDR configuration for 800MHz data rate
1575
1576 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1577 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1578
1579 commit 924024c396761c267b948f38d78e9905f2036501
1580 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1581 Date: Tue Oct 27 09:26:55 2009 +0530
1582
1583 85xx/p1_p2rdb: Fix crash while configuring 32 bit DDR i/f for P1020RDB.
1584
1585 The data being modified was in NOR flash which caused the crash.
1586
1587 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
1588 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1589
1590 commit 2c0c58b92dbb68007061bdc0edd23bdf142efebf
1591 Author: Sergey Mironov <ierton@gmail.com>
1592 Date: Wed Sep 23 16:47:38 2009 +0400
1593
1594 Fix bug in jumptable call stubs for SPARC.
1595
1596 Signed-off-by: Sergey Mironov <ierton@gmail.com>
1597 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
1598
1599 commit 3e303f748cf57fb23e8ec95ab7eac0074be50e2b
1600 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1601 Date: Thu Oct 15 17:47:04 2009 +0400
1602
1603 fdt_support: Add multi-serial support for stdout fixup
1604
1605 Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX
1606 constant. With multi-serial support, the CONS_INDEX may no longer
1607 represent actual console, so we should try to extract port number
1608 from the current stdio device name instead of always hard-coding the
1609 constant value.
1610
1611 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1612 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
1613 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1614
1615 commit da0e5f7ee828f246d85997486fff308837069453
1616 Author: Leon Woestenberg <leon.woestenberg@gmail.com>
1617 Date: Mon Oct 26 10:03:32 2009 +0100
1618
1619 ppc/85xx: Fix crashes due to generation of SPE instruction
1620
1621 U-Boot crashed on the last instruction:
1622
1623 int parse_stream_outer(struct in_str *inp, int flag)
1624 {
1625 effa4784: 94 21 ff 38 stwu r1,-200(r1)
1626 effa4788: 7c 08 02 a6 mflr r0
1627 effa478c: 42 9f 00 05 bcl- 20,4*cr7+so,effa4790 <parse_stream_outer+0xc>
1628 effa4790: 7d 80 00 26 mfcr r12
1629 effa4794: 13 c1 b3 21 evstdd r30,176(r1)
1630
1631 ...which is a SPE instruction, although -mno-spe was used.
1632
1633 tmp/cross/ppce500v2/bin/powerpc-angstrom-linux-gnuspe-gcc --version
1634 powerpc-angstrom-linux-gnuspe-gcc (GCC) 4.3.3
1635
1636 Seems to be a known issue (since 2008-04?!)
1637
1638 Googled some, turns out this patch/workaround works for me on MPC8536DS.
1639
1640 See http://gcc.gnu.org/ml/gcc-patches/2008-04/msg00311.html for more info
1641
1642 Signed-off-by: Leon Woestenberg <leon@sidebranch.com>
1643 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1644
1645 commit 654ea1f3184235694306ddc5874baa27ad3018fe
1646 Author: Dave Liu <daveliu@freescale.com>
1647 Date: Thu Oct 22 00:10:23 2009 -0500
1648
1649 ppc/85xx: Make L2 support more robust
1650
1651 According the user manual, we need loop-check the L2 enable bit set.
1652
1653 Signed-off-by: Dave Liu <daveliu@freescale.com>
1654 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1655
1656 commit 613ad28c3da4c7fc6336ef9d94993b25a5d0586e
1657 Author: Kumar Gala <galak@kernel.crashing.org>
1658 Date: Mon Oct 26 21:21:25 2009 -0500
1659
1660 ppc/85xx: Fix compiler warning in nand_spl/.../p1_p2_rdb/nand_boot.c
1661
1662 nand_boot.c: In function 'board_init_f':
1663 nand_boot.c:44: warning: 'sys_clk' may be used uninitialized in this function
1664
1665 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1666
1667 commit e8967d96a0e8d09d91a3b7bd292746996dd8e7ac
1668 Author: Kumar Gala <galak@kernel.crashing.org>
1669 Date: Mon Oct 26 21:18:33 2009 -0500
1670
1671 ppc/85xx: Fix building NAND_SPL out of tree
1672
1673 We need to source files to exist in the O=<FOO> nand_spl dir when
1674 we build out of tree.
1675
1676 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1677
1678 commit f3ee25859e3920ee7c7cc519a3e6f60d70d7a53f
1679 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
1680 Date: Fri Oct 23 10:52:38 2009 +0200
1681
1682 License cleanup: Fix license header for some esd display configurations
1683
1684 These files were autogenerated by EPSON configuration tools.
1685 This patch replaces the autogenerated file headers by the GPL
1686 license notice.
1687
1688 This change is done with the explicit permission
1689 of Epson Research & Development / IC Software Development.
1690
1691 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
1692
1693 commit 4166ee58d30ada7b298b9c941067f0341c2dccbe
1694 Author: Mike Frysinger <vapier@gentoo.org>
1695 Date: Fri Oct 9 17:12:44 2009 -0400
1696
1697 sf: add GPL-2 license info
1698
1699 Some of the new spi flash files were missing explicit license lines.
1700
1701 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1702 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
1703
1704 commit d535a493004fb701f131b132402a7704f9c9342d
1705 Author: Kumar Gala <galak@kernel.crashing.org>
1706 Date: Wed Oct 21 23:29:51 2009 -0500
1707
1708 fdt: Fix fdt padding issue for initrd mem_rsv
1709
1710 Its possible that we end up with a device tree that happens to be a
1711 particular size that after we call fdt_resize() we don't have any
1712 space left for the initrd mem_rsv.
1713
1714 Fix this be adding a second mem_rsv into the size calculation. We
1715 had one to cover the fdt itself and we have the potential of adding
1716 a second for the initrd.
1717
1718 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1719 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
1720
1721 commit 4bc3d2afb380e78fdbb9c501d9a8da6d59eb178e
1722 Author: Steve Sakoman <sakoman@gmail.com>
1723 Date: Tue Oct 20 18:21:18 2009 +0200
1724
1725 ARM: OMAP3: Refactors the SM911x driver
1726
1727 Move the test up in the function to not hang on systems without ethernet.
1728
1729 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
1730 Acked-by: Ben Warren <biggerbadderben@gmail.com>
1731
1732 commit f3807374787e4394efb767e2e8527887f57e51b8
1733 Author: Minkyu Kang <mk7.kang@samsung.com>
1734 Date: Thu Oct 15 11:19:15 2009 +0900
1735
1736 s5pc1xx: SMDKC100: fix compile warnings
1737
1738 fix the following compile warnings
1739 warning: dereferencing type-punned pointer will break strict-aliasing rules
1740
1741 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
1742
1743 commit 8003c361deec3ee651451662efd05352f1abdd40
1744 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
1745 Date: Tue Oct 6 08:44:22 2009 +0200
1746
1747 arm926ejs: 8-byte align stack to avoid LDRD/STRD problems
1748
1749 U-boot for Marvell Kirkwood boards no longer work after the EABI changes
1750 introduced in commit f772acf8a584067033eff1e231fcd1fb3a00d3d9. This
1751 turns out to be caused by a stack alignment issue. The armv5te
1752 instructions ldrd/strd instructions require 8-byte alignment to work
1753 properly (otherwise undefined behavior).
1754
1755 Tested on an OpenRD base board, where both printouts and ubifs stuff now
1756 works.
1757
1758 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
1759
1760 commit e63e5904b48528f3f3cc98317df6fc62fab25bf9
1761 Author: Tom Rix <Tom.Rix@windriver.com>
1762 Date: Sat Oct 17 12:41:06 2009 -0500
1763
1764 TI OMAP3 SDP3430: Initial Support
1765
1766 Start of support of
1767 Texas Instruments Software Development Platform(SDP)
1768 for OMAP3430 - SDP3430
1769
1770 Highlights of this platform are:
1771 Flash Memory devices:
1772 Sibley NOR, Micron 8bit NAND and OneNAND
1773 Connectivity:
1774 3 UARTs and expanded 4 UART ports + IrDA
1775 Ethernet, USB
1776 Other peripherals:
1777 TWL5030 PMIC+Audio+Keypad
1778 VGA display
1779 Expansion ports:
1780 Memory devices plugin boards (PISMO)
1781 Connectivity board for GPS,WLAN etc.
1782 Completely configurable boot sequence and device mapping
1783 etc.
1784
1785 Support default jumpering and:
1786 - UART1/ttyS0 console(legacy sdp3430 u-boot)
1787 - UART3/ttyS2 console (matching other boards,
1788 and SDP HW docs)
1789 - Ethernet
1790 - mmc0
1791 - NOR boot
1792
1793 Currently the UART1 is enabled by default. for
1794 compatibility with other OMAP3 u-boot platforms,
1795 enable the #define of CONSOLE_J9.
1796
1797 Conflicts:
1798
1799 Makefile
1800
1801 Fixed the conflict with smdkc100_config by moving omap_sdp3430_config
1802 to it is alphabetically sorted location above zoom1.
1803
1804 Signed-off-by: David Brownell <david-b@pacbell.net>
1805 Signed-off-by: Nishanth Menon <nm@ti.com>
1806 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
1807
1808 commit a4474ff8629be5f28aefb8a9f48d4411d62fb0d2
1809 Author: Sandeep Paulraj <s-paulraj@ti.com>
1810 Date: Tue Oct 13 19:35:11 2009 -0400
1811
1812 TI DaVinci: Adding Copyright for DM365 EVM
1813
1814 Forgot to add Copyright while submitting the patch.
1815 This patch adds the copyright.
1816
1817 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1818
1819 commit 11b0102218bbb50ac5c04f1521f2a22ed4e90cf1
1820 Author: Sandeep Paulraj <s-paulraj@ti.com>
1821 Date: Tue Oct 13 12:32:32 2009 -0400
1822
1823 TI DaVinci: Fix DM6467 EVM Compilation Warning
1824
1825 Due to new TI boards being added to U-Boot, the hardware.h
1826 is getting very messy. The warning being fixed is due to
1827 the EMIF addresses being redefined.
1828
1829 The long term solution(after 2009.11) to this is to
1830 have SOC specific header files.
1831
1832 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1833
1834 commit fac1ef4ba685606bf28349d18e050ea08b50e669
1835 Author: Sandeep Paulraj <s-paulraj@ti.com>
1836 Date: Tue Oct 13 12:01:52 2009 -0400
1837
1838 TI DaVinci: DM355 Leopard: Fix compilation warning
1839
1840 We get a compliation warning when we enable the NAND driver
1841 for DM355 leopard. The waring we get is that we have
1842 an implicit declaration of davinci_nand_init.
1843
1844 It is fixed by including the asm/arch/nand_defs.h header file
1845
1846 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
1847
1848 commit f8a812aa656bc34622303a26fa5003d19c34aeed
1849 Author: Nishanth Menon <nm@ti.com>
1850 Date: Tue Oct 13 12:49:55 2009 -0400
1851
1852 TI OMAP3: make gpmc_config as const
1853
1854 gpmc_config should not be a variant as it is board specific
1855 hence make it a const parameter
1856
1857 Fixes issues identified by Dirk:
1858 - build issue for zoom2
1859 - warnings for all other OMAP3 platforms using nand/onenand etc
1860
1861 Signed-off-by: Nishanth Menon <nm@ti.com>
1862
1863 commit cfc25874624a328f53ad59b1206e2103f2e62d74
1864 Author: Stefan Roese <sr@denx.de>
1865 Date: Mon Oct 19 16:19:36 2009 +0200
1866
1867 ppc4xx: Sequoia: Add chip_config command
1868
1869 This patch removes the Sequoia "bootstrap" command and replaces it
1870 with the now common command "chip_config".
1871
1872 Please note that the patches with the dynamic PCI sync clock
1873 configuration have to be applied, before this one should go in.
1874 This is because Sequoia has 2 different bootstrap EEPROMs, and
1875 the old bootstrap command configured different values depending
1876 on the detected PCI async clock (33 vs. 66MHz). With the PCI sync
1877 clock patches, this is not necessary anymore. The PCI sync clock
1878 will be configured correctly on-the-fly now.
1879
1880 Signed-off-by: Stefan Roese <sr@denx.de>
1881
1882 commit c85b58397030e25e146ccf5085c86221c40c53b3
1883 Author: Stefan Roese <sr@denx.de>
1884 Date: Mon Oct 19 14:14:08 2009 +0200
1885
1886 ppc4xx: Yosemite/Yellowstone: Check and reconfigure the PCI sync clock
1887
1888 This patch now uses the 440EP(x)/GR(x) function to check and dynamically
1889 reconfigure the PCI sync clock.
1890
1891 Signed-off-by: Stefan Roese <sr@denx.de>
1892
1893 commit 23c51a2d6393cd3be9eb62cb42d92138ff6db8a9
1894 Author: Stefan Roese <sr@denx.de>
1895 Date: Mon Oct 19 14:10:50 2009 +0200
1896
1897 ppc4xx: Sequoia/Rainer: Check and reconfigure the PCI sync clock
1898
1899 This patch now uses the 440EP(x)/GR(x) function to check and dynamically
1900 reconfigure the PCI sync clock.
1901
1902 Signed-off-by: Stefan Roese <sr@denx.de>
1903
1904 commit 08c6a2628478ace808b3767db17e4148cac5a7fb
1905 Author: Stefan Roese <sr@denx.de>
1906 Date: Mon Oct 19 14:44:11 2009 +0200
1907
1908 ppc4xx: Print PCI synchronous clock frequency upon bootup
1909
1910 Some 4xx variants (e.g. 440EP(x)/GR(x)) have an internal
1911 synchronous PCI clock. Knowledge about the currently configured
1912 value might be helpful. So let's print it out upon bootup.
1913
1914 Signed-off-by: Stefan Roese <sr@denx.de>
1915
1916 commit 5e47f9535f53fd4cc05f32fb6166870f976fbb4e
1917 Author: Stefan Roese <sr@denx.de>
1918 Date: Mon Oct 19 14:06:23 2009 +0200
1919
1920 ppc4xx: Add function to check and dynamically change PCI sync clock
1921
1922 PPC440EP(x)/PPC440GR(x):
1923 In asynchronous PCI mode, the synchronous PCI clock must meet
1924 certain requirements. The following equation describes the
1925 relationship that must be maintained between the asynchronous PCI
1926 clock and synchronous PCI clock. Select an appropriate PCI:PLB
1927 ratio to maintain the relationship:
1928
1929 AsyncPCIClk - 1MHz <= SyncPCIclock <= (2 * AsyncPCIClk) - 1MHz
1930
1931 This patch now adds a function to check and reconfigure the sync
1932 PCI clock to meet this requirement. This is in preparation for
1933 some AMCC boards (Sequoia/Rainier and Yosemite/Yellowstone) using this
1934 function to not violate the PCI clocking rules.
1935
1936 Signed-off-by: Stefan Roese <sr@denx.de>
1937
1938 commit 92b8964bed0d1b779d9e26be4e16755b5c635415
1939 Author: Stefan Roese <sr@denx.de>
1940 Date: Fri Oct 16 10:01:09 2009 +0200
1941
1942 ppc4xx: Update flash size in reg property of the NOR flash node
1943
1944 Till now only the ranges in the ebc node are updated with the values
1945 currently configured in the PPC4xx EBC controller. With this patch now
1946 the NOR flash size is updated in the device tree blob as well. This is
1947 done by scanning the compatible nodes "cfi-flash" and "jedec-flash"
1948 for the correct chip select number.
1949
1950 This size fixup is enabled for all AMCC eval board right now. Other
1951 4xx boards may want to enable it as well, if this problem with multiple
1952 NOR FLASH sizes exists.
1953
1954 Signed-off-by: Stefan Roese <sr@denx.de>
1955 Cc: Wolfgang Denk <wd@denx.de>
1956
1957 commit 30d45c0d3ea2231f9131276ea113595959a0720e
1958 Author: Stefan Roese <sr@denx.de>
1959 Date: Wed Oct 21 11:59:52 2009 +0200
1960
1961 fdt: Add fdt_fixup_nor_flash_size() to fixup NOR FLASH size in dtb
1962
1963 This function can be used to update the size in the "reg" property
1964 of the NOR FLASH device nodes. This is necessary for boards with
1965 non-fixed NOR FLASH sizes.
1966
1967 Signed-off-by: Stefan Roese <sr@denx.de>
1968 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
1969 Acked-by: Wolfgang Denk <wd@denx.de>
1970
1971 commit 76706cb86b1c76954ff5353db6757ab99cfd95fb
1972 Author: Wolfgang Denk <wd@denx.de>
1973 Date: Tue Oct 20 23:12:13 2009 +0200
1974
1975 cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
1976
1977 strcpy() was iused with the target address being a pointer to a
1978 constant string, which potentially is read-only. Use a (writable)
1979 array of characters instead.
1980
1981 Signed-off-by: Wolfgang Denk <wd@denx.de>
1982 Signed-off-by: Stefan Roese <sr@denx.de>
1983
1984 commit 0e1ac981194aa0d92eff0934442cec48a4f57834
1985 Author: Wolfgang Denk <wd@denx.de>
1986 Date: Tue Oct 20 23:07:04 2009 +0200
1987
1988 cpu/ppc4xx/fdt.c: avoid strcpy() to constant string
1989
1990 strcpy() was iused with the target address being a pointer to a
1991 constant string, which potentially is read-only. Use a (writable)
1992 array of characters instead.
1993
1994 Signed-off-by: Wolfgang Denk <wd@denx.de>
1995
1996 commit c55096c084308c08bf8891c190f90bdc3a232394
1997 Author: Daniel Mack <daniel@caiaq.de>
1998 Date: Wed Apr 8 13:23:38 2009 +0200
1999
2000 smc911x: add support for LAN9220
2001
2002 Signed-off-by: Daniel Mack <daniel@caiaq.de>
2003 Cc: Sascha Hauer <s.hauer@pengutronix.de>
2004 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2005
2006 commit f67066b6b0740b826ed862615c5ab022aaf4779a
2007 Author: Mike Frysinger <vapier@gentoo.org>
2008 Date: Sun Oct 18 20:43:14 2009 -0400
2009
2010 envcrc: check return value of fwrite()
2011
2012 Newer toolchains will often complain about unchecked fwrite():
2013 envcrc.c:117: warning: ignoring return value of `fwrite´, declared
2014 with attribute warn_unused_result
2015
2016 So check the return value to silence the warnings.
2017
2018 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2019
2020 commit efd988ebaa241bab265b1511052350207cb7aaa0
2021 Author: Wolfgang Denk <wd@denx.de>
2022 Date: Mon Oct 19 09:18:57 2009 +0200
2023
2024 mcc200: fix build error
2025
2026 Fix compile error:
2027 include/configs/mcc200.h:401:6: error: #elif with no expression
2028
2029 Signed-off-by: Wolfgang Denk <wd@denx.de>
2030
2031 commit 4e0539d2696992a5e32643a0c831e870cfe9a036
2032 Author: Nishanth Menon <nm@ti.com>
2033 Date: Tue Oct 13 12:47:39 2009 -0400
2034
2035 OMAP3: fix warnings when NAND/ONENAND is not used
2036
2037 Fix build warnings by putting specific used variables
2038 under required #ifdefs for removing:
2039 mem.c:227: warning: unused variable 'f_sec'
2040 mem.c:226: warning: unused variable 'f_off'
2041 mem.c:225: warning: unused variable 'size'
2042 mem.c:224: warning: unused variable 'base'
2043 mem.c:222: warning: unused variable 'gpmc_config'
2044
2045 Signed-off-by: Nishanth Menon <nm@ti.com>
2046
2047 commit 73db0c71da365a2d101878ae3aeb8ff3545a1828
2048 Author: Nishanth Menon <nm@ti.com>
2049 Date: Tue Oct 13 12:47:24 2009 -0400
2050
2051 OMAP3: export enable_gpmc_cs_config to board files
2052
2053 Export enable_gpmc_cs_config into common header to
2054 prevent warning:
2055
2056 warning: implicit declaration of function 'enable_gpmc_cs_config'
2057
2058 Signed-off-by: Nishanth Menon <nm@ti.com>
2059
2060 commit 96a27c6dc29abf11740632ecd8ccab607b209c5d
2061 Author: Tom Rix <Tom.Rix@windriver.com>
2062 Date: Mon Oct 12 12:07:40 2009 -0400
2063
2064 Zoom2 Fix serial gpmc setup
2065
2066 The offset to the chip select is incorrect.
2067
2068 The change 187af954cf7958c24efcf0fd62289bbdb4f1f24e,
2069
2070 omap3: embedd gpmc_cs into gpmc config struct
2071
2072 introduced a problem with the serial gpmc setup.
2073
2074 This patch reverts the chip select to its previous value.
2075
2076 The symptoms of this problem are that the Zoom2
2077 currently hangs.
2078
2079 This was run tested on Zoom2.
2080
2081 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2082
2083 commit 64d945abe8cffbacdaeca5f63b9b84f895d2d9ab
2084 Author: Sandeep Paulraj <s-paulraj@ti.com>
2085 Date: Sun Oct 11 09:10:27 2009 -0400
2086
2087 TI DaVinci Sonata: Add Config option for 64 bit Support
2088
2089 Adding the CONFIG_SYS_64BIT_VSPRINTF fot the DM644x based Sonata
2090 Without this option enabled while performing NAND operations we will get
2091 wrong diagnostic messages.
2092 Example if the MTD NAND driver find a bad block while erasing from
2093 a certain address, it will say bad block skipped at 0x00000000.
2094
2095 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2096
2097 commit 54aa603d2ce1d9374a1f5c6336362037ad2d8b51
2098 Author: Sandeep Paulraj <s-paulraj@ti.com>
2099 Date: Sun Oct 11 09:14:58 2009 -0400
2100
2101 TI DaVinci DVEVM: Add Config option for 64 bit Support
2102
2103 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DVEVM config.
2104 Without this option enabled while performing NAND operations we will get
2105 wrong diagnostic messages.
2106 Example if the MTD NAND driver find a bad block while erasing from
2107 a certain address, it will say bad block skipped at 0x00000000.
2108
2109 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2110
2111 commit b8d0aa0c78b8c0fa51acada3c486b81085924b53
2112 Author: Sandeep Paulraj <s-paulraj@ti.com>
2113 Date: Sat Oct 10 10:19:20 2009 -0400
2114
2115 TI DaVinci DM365: Add Config option for 64 bit Support
2116
2117 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM365 EVM config.
2118 Without this option enabled while performing NAND operations we will get
2119 wrong diagnostic messages.
2120 Example if the MTD NAND driver find a bad block while erasing from
2121 a certain address, it will say bad block skipped at 0x00000000.
2122
2123 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2124
2125 commit 86a725b9c8b829c217be90e590f3ca2c91fa1dca
2126 Author: Sandeep Paulraj <s-paulraj@ti.com>
2127 Date: Sat Oct 10 10:18:46 2009 -0400
2128
2129 TI DaVinci DM355: Add Config option for 64 bit Support
2130
2131 Adding the CONFIG_SYS_64BIT_VSPRINTF in the DM355 EVM config.
2132 Without this option enabled while performing NAND operations we will get
2133 wrong diagnostic messages.
2134 Example if the MTD NAND driver find a bad block while erasing from
2135 a certain address, it will say bad block skipped at 0x00000000.
2136
2137 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2138
2139 commit 9c44ddccb6602f620fc037974f3e4468ad8a7c0c
2140 Author: Sandeep Paulraj <s-paulraj@ti.com>
2141 Date: Wed Sep 9 11:50:40 2009 -0400
2142
2143 TI: OMAP3: Remove SZ_xx references
2144
2145 This patch removes dependency on the sizes.h header file
2146 and removes all references to SZ_xx.
2147
2148 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2149
2150 commit 13d2cb988ff07addce6e10ab2cb8965a9dd23c63
2151 Author: Steve Sakoman <sakoman@gmail.com>
2152 Date: Sat Oct 10 14:29:37 2009 -0400
2153
2154 OMAP3: Update Overo and Beagle environment
2155
2156 Update default environment to support new kernel DSS2 subsystem and
2157 simplify rootfs type and location changes.
2158
2159 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
2160 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
2161
2162 commit c73607c5525c6957c815e64f7e865fdd3baffe98
2163 Author: Sandeep Paulraj <s-paulraj@ti.com>
2164 Date: Sat Oct 10 13:46:26 2009 -0400
2165
2166 TI DaVinci: Maintainer for DM355 and DM365 EVM
2167
2168 Adding entries to the MAINTAINERS directory for the
2169 DM355 and DM365 EVM.
2170
2171 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2172
2173 commit 5df65cf56aeef9fdeab83a259c37aa7d23836dd3
2174 Author: Sandeep Paulraj <s-paulraj@ti.com>
2175 Date: Sat Oct 10 13:37:10 2009 -0400
2176
2177 TI: DaVinci: DM355 Leopard board support
2178
2179 This patch adds support for the leopard board which is
2180 based on the DM355 SOC.
2181
2182 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2183
2184 commit 6ab176d7091d21960a1bd89fcb7fd87b9e91aca1
2185 Author: Sandeep Paulraj <s-paulraj@ti.com>
2186 Date: Sat Oct 10 12:00:47 2009 -0400
2187
2188 TI DaVinci DM646x: Adding initial support for DM6467 EVM
2189
2190 This patch adds the initial support for DM6467 EVM.
2191 Other features like NET and NAND support will be added as follow up patches.
2192
2193 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2194
2195 commit d884f64a7b8482f6c9688600e0a4731fa5678e0c
2196 Author: Sandeep Paulraj <s-paulraj@ti.com>
2197 Date: Thu Oct 1 20:22:09 2009 -0400
2198
2199 TI DaVinci DM365: Fix Compilation warning for DM365 EVM
2200
2201 This patch fixes a compilation warning while compiling
2202 the DM365 EVM.
2203
2204 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2205
2206 commit 6fe5e87be4b944edf428835210056e020c8bb794
2207 Author: Sandeep Paulraj <s-paulraj@ti.com>
2208 Date: Thu Oct 1 20:21:13 2009 -0400
2209
2210 TI DaVinci DM355: Fix Compilation warning for DM355 EVM
2211
2212 This patch fixes a compilation warning while compiling
2213 the DM355 EVM.
2214
2215 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2216
2217 commit 513bbe1b1720682e6de0aba2d9db5e60f3a428bb
2218 Author: Eric Benard <eric@eukrea.com>
2219 Date: Mon Oct 12 10:15:39 2009 +0200
2220
2221 AT91 CPUAT91 Fix compiler warning
2222
2223 This change fixes the compiler warning
2224
2225 main.c: In function 'abortboot':
2226 main.c:122: warning: too few arguments for format
2227
2228 Signed-off-by: Eric Benard <eric@eukrea.com>
2229 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2230
2231 commit b1e81f701d044eee3884202b127d5d1f0668bdb9
2232 Author: Eric Benard <eric@eukrea.com>
2233 Date: Mon Oct 12 10:15:40 2009 +0200
2234
2235 AT91 CPU9260 CPU9G20 Fix compile warnings
2236
2237 This change fixes the compiler warning
2238
2239 nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF
2240 for correct output!
2241
2242 Signed-off-by: Eric Benard <eric@eukrea.com>
2243 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2244
2245 commit 94d50c527a3cedb6a41fbe6773256cdd1855317f
2246 Author: Eric Benard <eric@eukrea.com>
2247 Date: Mon Oct 12 10:08:20 2009 +0200
2248
2249 AT91 CPU9260 Fix machine ID when using a CPU9G20.
2250
2251 Signed-off-by: Eric Benard <eric@eukrea.com>
2252 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2253
2254 commit 8c0a92c8f4cf399e873c2611939f3617983785a9
2255 Author: Alessandro Rubini <rubini@unipv.it>
2256 Date: Sat Oct 10 11:51:26 2009 +0200
2257
2258 lcd: remove '#if 0' 32-bit scroll, now memcpy does it
2259
2260 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2261 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2262
2263 commit e3ea948d4588e7efddbf0ee92147d93f827d7cea
2264 Author: Alessandro Rubini <rubini@unipv.it>
2265 Date: Sat Oct 10 11:51:16 2009 +0200
2266
2267 lib_generic memset: fill one word at a time if possible
2268
2269 If the destination is aligned, fill ulong values until possible.
2270 Then fill remaining part by byte.
2271
2272 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2273 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2274 Acked-by: Mike Frysinger <vapier@gentoo.org>
2275
2276 commit ecd830b863e5c6ac5d804d3b3a92453a98d526fc
2277 Author: Alessandro Rubini <rubini@unipv.it>
2278 Date: Sat Oct 10 11:51:05 2009 +0200
2279
2280 lib_generic memcpy: copy one word at a time if possible
2281
2282 If source and destination are aligned, this copies ulong values
2283 until possible, trailing part is copied by byte. Thanks for the details
2284 to Wolfgang Denk, Mike Frysinger, Peter Tyser, Chris Moore.
2285
2286 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2287 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2288 Acked-by: Mike Frysinger <vapier@gentoo.org>
2289
2290 commit 9c5586aa19bbedf290d2a663813404d2db87dfa5
2291 Author: Alessandro Rubini <rubini@unipv.it>
2292 Date: Thu Oct 8 14:29:14 2009 +0200
2293
2294 setenv: do console redirection even if previously unset
2295
2296 If "stdout" is not previously set, doing "setenv stdout lcd" had no
2297 effect, since console redirection only worked if the environment
2298 variable was already set; the second time you run setenv it worked.
2299 Most default environments lack stdin/out/err definitions, so I'm sure
2300 I'm not alone with this problem.
2301
2302 This patch simply moves a block of code out of a conditional, to do
2303 the same work even if the variable was previously unset.
2304
2305 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
2306 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
2307
2308 commit c9ee39972a7758e883b73c6c0e3c3a14cd5b2f43
2309 Author: Martha Stan <mmarx@silicontkx.com>
2310 Date: Wed Oct 7 04:38:46 2009 -0400
2311
2312 mpc512x: fix System Clock Control constants for USB1 & USB2
2313
2314 Signer-off-by: Martha Stan <mmarx@silicontkx.com>
2315
2316 commit 87b22b7787f397fc3daad570d711e478b1a7d253
2317 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
2318 Date: Fri Oct 2 18:18:33 2009 -0400
2319
2320 mem_mtest: fix error reporting, allow escape with ^C
2321
2322 The basic memtest function tries to watch for ^C after each
2323 pattern pass as an escape mechanism, but if things are horribly
2324 wrong, we'll be stuck in an inner loop flooding the console with
2325 error messages and never check for ^C. To make matters worse,
2326 if the user waits for all the error messages to complete, we
2327 then incorrectly report the test passed without errors.
2328
2329 Adding a check for ^C after any error is printed will give
2330 the end user an escape mechanism from a console flood without
2331 slowing down the overall test speed on a slow processor.
2332
2333 Also, the more extensive memtest quit after just a single error,
2334 which is inconsistent with the normal memtest, and not useful if
2335 if you are doing dynamic environmental impact testing, such as
2336 heating/cooling etc.
2337
2338 Both tests now track the error count and report it properly
2339 at test completion.
2340
2341 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2342 Acked-by: Mike Frysinger <vapier@gentoo.org>
2343
2344 commit 9f4a420663419dc13f08a0ce65b93033c6172c69
2345 Author: Mike Frysinger <vapier@gentoo.org>
2346 Date: Thu Oct 1 12:11:54 2009 -0400
2347
2348 new default shortcut to config & build a board
2349
2350 The majority of the time that I build things in U-Boot, I want to just
2351 build for the board. I don't make board config tweaks after selecting the
2352 board. So add a new pattern rule that allows people to combine two steps
2353 in one go:
2354 `make foo_config && make` => `make foo`
2355
2356 This shouldn't conflict with any existing make rules as the pattern rule
2357 is used only the rule doesn't already exist.
2358
2359 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2360
2361 commit 6dab6add2d8ee80905234b326abc3de11be1d178
2362 Author: Mike Frysinger <vapier@gentoo.org>
2363 Date: Wed Sep 30 15:29:58 2009 -0400
2364
2365 env: only build env_embedded and envcrc when needed
2366
2367 The env code is protected by the ENV_IS_EMBEDDED define, so attempting to
2368 compile the code when this isn't defined is pointless. Now that the env
2369 headers have unified around CONFIG_ENV_IS_EMBEDDED, convert the build
2370 system to only build the env objects when this is enabled. And now that
2371 the env code is conditionally compiled, we can drop the source code checks.
2372
2373 For people who want to extract the environment manually, add a new option
2374 CONFIG_BUILD_ENVCRC that only enables the envcrc utility.
2375
2376 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2377
2378 commit 78f4ca7976748159080c9d920d5eb542d1b32d4f
2379 Author: Daniel Mack <daniel@caiaq.de>
2380 Date: Mon Sep 28 11:40:38 2009 +0200
2381
2382 part_dos: check status flags of partitions
2383
2384 Only read partitions which have 0x00 or 0x80 set in their status field.
2385 All others are invalid.
2386
2387 Signed-off-by: Daniel Mack <daniel@caiaq.de>
2388
2389 commit 45def0ab9d1dedcd2a73939aad8373f760498762
2390 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
2391 Date: Fri Sep 25 17:47:43 2009 -0500
2392
2393 galaxy5200: change cs1 configuration
2394
2395 Correct the chip select configuration for the nand flash chip select.
2396
2397 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
2398
2399 commit 7936b51165b519a16ecf3db302fb88df8b8b3b3d
2400 Author: Niklaus Giger <niklaus.giger@netstal.com>
2401 Date: Wed Sep 23 08:12:14 2009 +0200
2402
2403 Cleanup: use constant
2404
2405 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
2406
2407 commit 7120c888101952b7e61b9e54bb42370904aa0e68
2408 Author: Kim Phillips <kim.phillips@freescale.com>
2409 Date: Mon Oct 12 11:06:19 2009 -0500
2410
2411 mpc83xx: mpc8313 - handle erratum IPIC1 (TSEC IRQ number swappage)
2412
2413 mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
2414 h/w (see AN3545). The base device tree in use has rev. 1 ID numbers,
2415 so if on Rev. 2 (and higher) h/w, we fix them up here.
2416
2417 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2418 Reviewed-by: Roland Lezuo <roland.lezuo@chello.at>
2419
2420 commit 91525c67153fcf2c19b2fc8d9c6376ac1a019f52
2421 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
2422 Date: Mon Oct 12 23:55:39 2009 +0400
2423
2424 mpc85xx: Fix booting on various boards
2425
2426 commit 0e870980a64584a591af775bb9c9fe9450124df9 ("8xxx: Removed
2427 CONFIG_NUM_CPUS from 85xx/86xx") breaks U-Boot on various boards,
2428 namely the ones that call get_sys_info() from board_early_init_f().
2429
2430 get_sys_info() calls cpu_numcores(), which depends on probecpu()
2431 being called before. But probecpu() is called after board_early_init_f(),
2432 and so cpu_numcores() returns random values, which in turn crashes
2433 get_sys_info().
2434
2435 To fix the issue we place probecpu() before board_early_init_f()
2436 in an initialization sequence.
2437
2438 Booting on the following boards should be revived now:
2439 mpc8540ads
2440 mpc8541cds
2441 mpc8548cds
2442 mpc8555cds
2443 mpc8560ads
2444 mpc8568mds
2445 mpc8569mds
2446 and maybe more.
2447
2448 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
2449 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2450
2451 commit 26df6aa9916443077139f8f008fbc5f414ba05e5
2452 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
2453 Date: Fri Oct 2 18:48:07 2009 -0400
2454
2455 mpc86xx: delete unused MPC86xx_DDR_SDRAM_CLK_CNTL define
2456
2457 This is an orphaned legacy leftover that is just polluting
2458 the config file namespace.
2459
2460 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2461 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2462
2463 commit fad15096e3b34927444ba5f6133742d40d78a425
2464 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
2465 Date: Thu Oct 8 13:33:29 2009 +0530
2466
2467 ppc/P1_P2_RDB: On-chip BootROM support
2468
2469 On Chip BootROM support for P1 and P2 series RDB platforms.
2470
2471 This patch is derived from latest On Chip BootROM support on MPC8536DS
2472
2473 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
2474 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2475
2476 commit f7780ec977e545b83bc5068e0957d640f1d98f13
2477 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
2478 Date: Thu Oct 8 13:33:18 2009 +0530
2479
2480 ppc/P1_P2_RDB: NAND Boot Support
2481
2482 NAND Boot support for P1 and P2 series RDB platforms.
2483
2484 This patch is derived from NAND Boot support on MPC8536DS.
2485
2486 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
2487 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2488
2489 commit d11823ca3cb551814ffcd926402c8bcf3a7eff35
2490 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
2491 Date: Wed Oct 7 16:34:28 2009 -0400
2492
2493 mpc8xxx: improve LAW error messages when setting up DDR
2494
2495 When setting up the LAWs for the DDR, if there was an error,
2496 you got the not-so-helpful error text "ERROR" and nothing
2497 else. Not only is it non-informative, but it is also
2498 pretty frustrating trying to grep for "ERROR" in the source.
2499
2500 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2501 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2502
2503 commit a9946e3fc7089ddc6b7711a44e07a6b0827b79a7
2504 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
2505 Date: Wed Sep 30 16:12:31 2009 -0400
2506
2507 sbc8641d: fix LAW so board doesn't hang on DDR init
2508
2509 All versions between now and since this commit:
2510
2511 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
2512 MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
2513
2514 will fail to allow the SBC8641D to get past DDR init, because the
2515 LAW config was overlapping. Eventually this board will do SPD
2516 EEPROM config, but for now this gets the board working again.
2517
2518 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2519 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2520
2521 commit 3d1988ab47cc0e265272967e07d747ec600a44c9
2522 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2523 Date: Sat Oct 10 13:34:09 2009 +0900
2524
2525 Clean-up of s3c24x0 nand driver
2526
2527 This patch re-formats the arm920t s3c24x0 nand driver in preparation for changes
2528 to add support for the Embest SBC2440-II Board.
2529
2530 The changes are as follows:
2531 - re-indent the code using Lindent
2532 - make sure register layouts are defined using a C struct
2533 - replace the upper-case typedef'ed C struct names with lower case
2534 non-typedef'ed ones
2535 - make sure registers are accessed using the proper accessor functions
2536 - run checkpatch.pl and fix any error reports
2537
2538 It assumes the following patch has been applied first:
2539 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
2540 - patches 1/4, 2/4 and 3/4 of this series
2541
2542 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
2543 any s3c2400 or s3c2410 boards but need this patch applying before I can submit
2544 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
2545 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
2546 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
2547 errors were found.
2548
2549 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2550 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2551
2552 commit eb0ae7f549b7142826a8bcdd2dc945fac9c36349
2553 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2554 Date: Sat Oct 10 13:33:11 2009 +0900
2555
2556 Clean-up of s3c24x0 drivers excluding nand driver
2557
2558 This patch re-formats the arm920t s3c24x0 driver files, excluding the nand
2559 driver, in preparation for changes to add support for the Embest SBC2440-II Board.
2560
2561 The changes are as follows:
2562 - re-indent the code using Lindent
2563 - make sure register layouts are defined using a C struct
2564 - replace the upper-case typedef'ed C struct names with lower case
2565 non-typedef'ed ones
2566 - make sure registers are accessed using the proper accessor functions
2567 - run checkpatch.pl and fix any error reports
2568
2569 It assumes the following patch has been applied first:
2570 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
2571 - patches 1/4 and 2/4 of this series
2572
2573 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
2574 any s3c2400 or s3c2410 boards but need this patch applying before I can submit
2575 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
2576 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
2577 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
2578 errors were found.
2579
2580 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2581 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2582
2583 commit 8250d0bae84229abea397f6b474b3556b0f04e80
2584 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2585 Date: Sat Oct 10 13:32:01 2009 +0900
2586
2587 Clean-up of s3c24x0 header files
2588
2589 This patch re-formats the arm920t s3c24x0 header files in preparation for
2590 changes to add support for the Embest SBC2440-II Board.
2591
2592 The changes are as follows:
2593 - re-indent the code using Lindent
2594 - make sure register layouts are defined using a C struct
2595 - replace the upper-case typedef'ed C struct names with lower case
2596 non-typedef'ed ones
2597 - make sure registers are accessed using the proper accessor functions
2598 - run checkpatch.pl and fix any error reports
2599
2600 It assumes the following patch has been applied first:
2601 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
2602 - patch 1/4 of this series
2603
2604 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
2605 any s3c2400 or s3c2410 boards but need this patch applying before I can submit
2606 patches for the SBC2440-II Board. Also, temporarily modified sbc2410x, smdk2400,
2607 smdk2410 and trab configs to use the mtd nand driver (which isn't used by any
2608 board at the moment), ran MAKEALL for all ARM9 targets and no new warnings or
2609 errors were found.
2610
2611 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2612 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2613
2614 commit d67cce2dda3a40c3bd90a6c6e129fbb26dd4cfab
2615 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2616 Date: Sat Oct 10 13:30:22 2009 +0900
2617
2618 Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code
2619
2620 This patch re-formats the code in cpu/arm920t and cpu/arm920t/23c24x0 in
2621 preparation for changes to add support for the Embest SBC2440-II Board.
2622
2623 The changes are as follows:
2624 - re-indent the code using Lindent
2625 - make sure register layouts are defined using a C struct
2626 - replace the upper-case typedef'ed C struct names with lower case
2627 non-typedef'ed ones
2628 - make sure registers are accessed using the proper accessor functions
2629 - run checkpatch.pl and fix any error reports
2630
2631 It assumes the following patch has been applied first:
2632 - [U-Boot][PATCH-ARM] CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards, 05/09/2009
2633
2634 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't have
2635 any s3c2400 or s3c2410 boards but need this patch applying before I can submit
2636 patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets and no
2637 new warnings or errors were found.
2638
2639 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
2640 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2641
2642 commit cd85662b345c0c2248fd7637f65bb2fbb4d53dd9
2643 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
2644 Date: Sun Sep 6 00:33:13 2009 +0900
2645
2646 CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards
2647
2648 This sets CONFIG_SYS_HZ to 1000 for all boards that use the s3c2400 and
2649 s3c2410 cpu's which fixes various problems such as the timeouts in tftp being
2650 too short.
2651
2652 Tested on an Embest SBC2440-II Board with local u-boot patches as I don't
2653 have any s3c2400 or s3c2410 boards but need this patch applying before I can
2654 submit patches for the SBC2440-II Board. Also, ran MAKEALL for all ARM9 targets
2655 and no new warnings or errors were found.
2656
2657 It was originally submitted on 21/06/2009 but didn't get into the 2009.08
2658 release, and Jean-Pierre made one comment on the original patch (see
2659 http://lists.denx.de/pipermail/u-boot/2009-July/055470.html). I've made two
2660 changes to the original patch:
2661 - it's been re-based to the current release
2662 - I've re-named get_timer_raw() to get_ticks() in response to Jean-Pierre's comment
2663
2664 This affects the sbc2410, smdk2400, smdk2410 and trab boards. I've copied it
2665 directly to the maintainers of all except the sbc2410 which doesn't have an
2666 entry in MAINTAINERS.
2667
2668 Signed-off-by: Kevin Morfitt <kmorfitt@aselaptop-1.localdomain>
2669 Tested-by: Wolfgang Denk <wd@denx.de>
2670 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2671
2672 commit 8bc4ee9e8213abe4031ea1720aa02fa98d4402ad
2673 Author: Minkyu Kang <mk7.kang@samsung.com>
2674 Date: Thu Oct 1 17:20:40 2009 +0900
2675
2676 s5pc1xx: add support SMDKC100 board
2677
2678 Adds new board SMDKC100 that uses s5pc100 SoC
2679
2680 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2681 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
2682
2683 commit dd2c9e6a3b67c8ff56694e515e6e3c7baddd8f52
2684 Author: Minkyu Kang <mk7.kang@samsung.com>
2685 Date: Thu Oct 1 17:20:28 2009 +0900
2686
2687 s5pc1xx: support serial driver
2688
2689 This patch includes the serial driver for s5pc1xx.
2690 s5pc1xx uart driver needs own register setting and clock configuration.
2691 So, need to special driver.
2692
2693 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2694
2695 commit 4678d674f0cacc983dca7f6b9933cd8291c9797c
2696 Author: Minkyu Kang <mk7.kang@samsung.com>
2697 Date: Thu Oct 1 17:20:08 2009 +0900
2698
2699 s5pc1xx: support onenand driver
2700
2701 This patch includes the onenand driver for s5pc100
2702
2703 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2704 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2705
2706 commit 399e5ae0d0b2eb4663fc5784201968c07d45afac
2707 Author: Minkyu Kang <mk7.kang@samsung.com>
2708 Date: Thu Oct 1 17:20:01 2009 +0900
2709
2710 s5pc1xx: support Samsung s5pc1xx SoC
2711
2712 This patch adds support for the Samsung s5pc100 and s5pc110
2713 SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor.
2714
2715 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
2716 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
2717
2718 commit d087d19a994e741f0ce526124be117c90be482ae
2719 Author: Mike Frysinger <vapier@gentoo.org>
2720 Date: Tue Oct 13 21:58:26 2009 -0400
2721
2722 Blackfin: drop MAC display at boot
2723
2724 The default Blackfin boot would display the MAC address for the first NIC,
2725 but this relies on the environment. The current net multi stack no longer
2726 writes the default hardware settings to the environment, so most of the
2727 time the display shows all zeros. This can be pretty confusing and really
2728 doesn't add anything useful, so just drop it.
2729
2730 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2731
2732 commit 1f003cf4738a199d99c818124784058526d2d40e
2733 Author: Mike Frysinger <vapier@gentoo.org>
2734 Date: Fri Oct 9 02:24:33 2009 -0400
2735
2736 Blackfin: reset watchdog in udelay()
2737
2738 All arches apparently should reset the watchdog in their udelay loop as
2739 noted on the mailing list recently:
2740
2741 > A comment in flash_status_check() suggests that udelay() is
2742 > expected to reset the watchdog, but I can't find any architecture
2743 > where it does.
2744
2745 If this is missing in other architectures, it should be fixed at the
2746 root cause, i. e. in udelay() or in the respective support routines.
2747
2748 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2749
2750 commit 370ec734557d0b0f266e6d0953229ee12cae5edd
2751 Author: Mike Frysinger <vapier@gentoo.org>
2752 Date: Fri Oct 9 02:22:11 2009 -0400
2753
2754 Blackfin: Remove relocation fixups
2755
2756 Blackfin pieces like commit 0630535e2d062dd73c1ceca5c6125c86d1127a49.
2757
2758 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2759
2760 commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0
2761 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
2762 Date: Tue Sep 29 08:03:12 2009 +0200
2763
2764 at91: Update MEESC board support
2765
2766 This patch implements several updates:
2767 -disable CONFIG_ENV_OVERWRITE
2768 -add new hardware style variants and set the arch numbers appropriate
2769 -pass the serial# and hardware revision to the kernel
2770 -removed unused macros from include/configs/meesc.h
2771 -fixed multiline comment style
2772
2773 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
2774
2775 commit 9df20ce211576aa7ac75710dcd8d0a6236abfd70
2776 Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
2777 Date: Thu Oct 1 19:41:50 2009 +0530
2778
2779 arm: Correct build with CONFIG_SYS_HUSH_PARSER set
2780
2781 FLAG_PARSE_SEMICOLON is not defined without hush.h, so include that.
2782
2783 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
2784 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2785
2786 commit df3826262c0efd2baec4df23d44b3942af98f5a7
2787 Author: Olof Johansson <olof@lixom.net>
2788 Date: Tue Sep 29 10:22:45 2009 -0400
2789
2790 TI: OMAP3: Overo Tobi ethernet support
2791
2792 Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded
2793 over tftp.
2794
2795 This also refactors the smc911x driver to allow for detecting when the
2796 chip is missing. I.e. the detect_chip() function is called earlier and
2797 will abort gracefully when the Chip ID read returns all 1's.
2798
2799 Signed-off-by: Olof Johansson <olof@lixom.net>
2800 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
2801 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2802
2803 commit 2a6cc97b91997ae485312ac91ffbcea6a89b663a
2804 Author: Olof Johansson <olof@lixom.net>
2805 Date: Tue Sep 29 10:21:29 2009 -0400
2806
2807 SMC911X: Add chip auto detection
2808
2809 Refactor the smc911x driver to allow for detecting when the chip is missing.
2810 I.e. the detect_chip() function is called earlier and will abort gracefully
2811 when the Chip ID read returns all 1's.
2812
2813 Signed-off-by: Olof Johansson <olof@lixom.net>
2814 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
2815 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2816
2817 commit 0297ec7e2a4039b8a28346f52f3ccca4db1ddc62
2818 Author: Tom Rix <Tom.Rix@windriver.com>
2819 Date: Tue Sep 29 10:19:49 2009 -0400
2820
2821 TI OMAP3 Use arm init sequence to initialize i2c
2822
2823 This changes fixes an early i2c error.
2824
2825 It appears that I2C is working because once a read or write
2826 error is detected, the omap24xx_i2c driver calls i2c_init
2827 inside its error handling check.
2828
2829 While it is ok to attempt error handling this way, the boards
2830 must not depend on this side effect to initialize it's i2c.
2831
2832 Instead of explicitly calling i2c_init for every board, use
2833 the generic arm initialization in lib_arm/board.c. By defining
2834 the config variable CONFIG_HARD_I2C, the omap3 i2c initialization
2835 is included in the init_sequence table.
2836
2837 Run tested on Beagle.
2838 Compile tested on the omap3's
2839
2840 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2841 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
2842
2843 commit 4df30f3bb7285b2c962713a5c693c16fd90885e0
2844 Author: Sandeep Paulraj <s-paulraj@ti.com>
2845 Date: Tue Sep 29 09:43:04 2009 -0400
2846
2847 TI: DaVinci DM365: Enabling network Support on DM365 EVM
2848
2849 This patch enables EMAC on the DM365 EVM.
2850
2851 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2852 Acked-by: Tom Rix <Tom.Rix@windriver.com>
2853
2854 commit 00e1665a3cf956e09ac2ce86ef6ec459f6bfb33c
2855 Author: Sandeep Paulraj <s-paulraj@ti.com>
2856 Date: Tue Sep 29 10:02:38 2009 -0400
2857
2858 TI: DaVinci: GPIO header file and definitions
2859
2860 Some DaVinci SOC's use GPIOs to enable EMAC and DM9000.
2861 This patch adds some definitions for GPIO registers and also adds
2862 structures for GPIO.
2863 A separate header file is being added so that in future we
2864 can have a DaVinci GPIO driver similer to OMAP.
2865
2866 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2867 Acked-by: Tom Rix <Tom.Rix@windriver.com>
2868
2869 commit 95ae803afbdd9f673c94b992ea624a10d252afc2
2870 Author: Sandeep Paulraj <s-paulraj@ti.com>
2871 Date: Fri Sep 18 17:30:05 2009 -0400
2872
2873 TI: DaVinci DM646x: Update flag used to represent DM646x SOC's
2874
2875 In the DaVinci specific code, we use both CONFIG_SOC_DM646X and
2876 CONFIG_SOC_DM646x to represent DM646x specific code.
2877 This patch changes occurrences of CONFIG_SOC_DM646x to
2878 CONFIG_SOC_DM646X. This is because for DM644x series of SOCs we use
2879 the flag CONFIG_SOC_DM644X. We want some uniformity.
2880
2881 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2882 Acked-by: Tom Rix <Tom.Rix@windriver.com>
2883
2884 commit fc9165fdb3b021aa8ff02417692220fe9344072b
2885 Author: Olof Johansson <olof@lixom.net>
2886 Date: Mon Sep 28 08:19:30 2009 -0400
2887
2888 OMAP3: Clean up whitespace in mux configs
2889
2890 Switch from space-based indentation to tab-based in mux configs, as pointed
2891 out by WD at:
2892
2893 http://lists.denx.de/pipermail/u-boot/2009-September/061241.html
2894
2895 Nothing but whitespace changes in this patch (diff -w gives no output).
2896
2897 Signed-off-by: Olof Johansson <olof@lixom.net>
2898
2899 commit 9de0212bd7c4c82a7e8c2a2c8714f8c7abc57d08
2900 Author: Dirk Behme <dirk.behme@googlemail.com>
2901 Date: Mon Sep 28 08:17:50 2009 -0400
2902
2903 OMAP3 MMC: Fix warning dereferencing type-punned pointer
2904
2905 Fix warning
2906 Dereferencing type-punned pointer will break strict-aliasing rules
2907
2908 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
2909 CC: Steve Sakoman <sakoman@gmail.com>
2910 Acked-by: Tom Rix <Tom.Rix@windriver.com>
2911
2912 commit e92daeb5c2050438402b87c7d614e8a13c294348
2913 Author: Simon Kagstrom <[simon.kagstrom@netinsight.net]>
2914 Date: Tue Sep 22 04:01:01 2009 +0530
2915
2916 Support for the OpenRD base board
2917
2918 The implementation is borrowed from the sheevaplug board and the Marvell
2919 1.1.4 code. Unsupported (or untested) is the SD card, PCIe and SATA.
2920
2921 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
2922
2923 commit a62e78fc444c67f958be48891bef3dab0e9eb285
2924 Author: Prafulla Wadaskar <prafulla@marvell.com>
2925 Date: Mon Sep 21 20:15:17 2009 +0530
2926
2927 Kirkwood: mv88f6281gtw_ge: Add kwbimage build support
2928
2929 This patch adds kwbimage configuration file
2930 (used by mkimage utility)
2931 to support u-boot.kwb target on mv88f6281gtw_ge board.
2932
2933 To create Kirkwood boot image to be flashed on SPI Flash,
2934 additional parameter u-boot.kwb need to be passed during make.
2935
2936 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2937
2938 commit 5bc7cbc15b1890682c0b279f708914518bd25f8d
2939 Author: Prafulla Wadaskar <prafulla@marvell.com>
2940 Date: Mon Sep 21 18:23:11 2009 +0530
2941
2942 Kirkwood: rd6281a: Add kwbimage build support
2943
2944 This patch adds kwbimage configuration file
2945 (used by mkimage utility)
2946 to support u-boot.kwb target on rd6281a platform.
2947
2948 To create Kirkwood boot image to be flashed on NAND,
2949 additional parameter u-boot.kwb need to be passed during make.
2950
2951 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
2952
2953 commit 23b80982a02a43bf4ead91574c9d6f1b647ccc8f
2954 Author: Tom Rix <Tom.Rix@windriver.com>
2955 Date: Sun Sep 27 11:10:09 2009 -0500
2956
2957 Add support for Eukrea CPU9260/CPU9G20 SBC
2958
2959 these boards are built around Atmel's AT91SAM9260/9G20 and have
2960 up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND
2961 and include a 10/100 Ethernet PHY in RMII mode.
2962
2963 Signed-off-by: Eric Benard <eric@eukrea.com>
2964 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2965
2966 commit d8380c9d35e88759c96e68a03738446ca0cb292f
2967 Author: Tom Rix <Tom.Rix@windriver.com>
2968 Date: Sun Sep 27 07:47:24 2009 -0500
2969
2970 Add support for Eukrea CPUAT91 SBC
2971
2972 CPUAT91 is built around Atmel's AT91RM9200 and has up to 16MB of NOR
2973 flash, up to 128MB of SDRAM, and includes a Micrel KS8721 PHY in RMII
2974 mode.
2975
2976 Signed-off-by: Eric Benard <eric@eukrea.com>
2977 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
2978
2979 commit eb95aa15e644c29b01832703aa4964fe419170f0
2980 Author: Sandeep Paulraj <s-paulraj@ti.com>
2981 Date: Mon Sep 14 14:57:47 2009 -0400
2982
2983 TI: DaVinci DM365: Minor config cleanup
2984
2985 The DM365 config was using the 'CONFIG_CMD_SAVEENV' flag.
2986 This is already included when we include the
2987 config_cmd_default.h header file. So this flag is removed.
2988 Also another flag to enable NAND functions was being
2989 enabled incorrectly.
2990
2991 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
2992
2993 commit 5d783c1ffd691ffdadbc2c2f796c41481b7cdce7
2994 Author: Sandeep Paulraj <s-paulraj@ti.com>
2995 Date: Mon Sep 14 15:03:06 2009 -0400
2996
2997 TI DaVinci DM365: Removing header file which does not exist
2998
2999 The DaVinci DM365 EVM board specific code was including a header file
3000 which does not exist. So removing this header file.
3001
3002 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3003
3004 commit 409ec37bd8ae8822d276e77419d899571891b191
3005 Author: Sandeep Paulraj <s-paulraj@ti.com>
3006 Date: Tue Sep 8 18:08:06 2009 -0400
3007
3008 TI DaVinci: DM355: Config Cleanup and Update
3009
3010 This patch does the following
3011 1) Enables the NAND driver which is now available.
3012 2) Enables the 'CONFIG_MTD_DEVICE' as without this the
3013 compilation will fail
3014 3) We now have a safe place to store environment and defines
3015 an offset where this can be stored. This offset value is such that it is after
3016 the location where U-Boot is flashed using TI flash utilities.
3017 4) Enables Bootdelay
3018 5) Increases malloc() arena size. Manufacturers are coming out with
3019 NAND with large blocks sizes of upto 1 MiB. It has been noticed that
3020 as the block size of the NAND used is increased, if this particular
3021 value is not increased, the NAND driver will output out of memory
3022 errors.
3023
3024 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3025
3026 commit 7908c97a106765ad8816bf2271a5bf315728b274
3027 Author: Sandeep Paulraj <s-paulraj@ti.com>
3028 Date: Tue Sep 8 11:37:39 2009 -0400
3029
3030 TI DaVinci: DM646x: Initial Support for DM646x SOC
3031
3032 DM646x is an SOC from TI which has both an ARM and a DSP.
3033 There are multiple variants of the SOC mainly dealing with different
3034 core speeds.
3035 This patch adds the initial framework for the DM646x SOC.
3036
3037 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3038
3039 commit 5d0f53624c24eaf82d58368a6a5b8476392dd5c7
3040 Author: Sandeep Paulraj <s-paulraj@ti.com>
3041 Date: Wed Sep 9 15:26:00 2009 -0400
3042
3043 TI DaVinci: DM6446: Fix Compilation error in NAND mode
3044
3045 The Default mode that is built for the Davinci DVEVM happens
3046 to be the NOR mode.
3047 When we want to build for the NAND mode, we get a compilation
3048 error. This is overcome by defining the CONFIG_MTD_DEVICE
3049 flag in the NAND mode.
3050 The image built for NAND mode was successfully tested on the
3051 DaVinci DM6446 EVM.
3052
3053 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3054
3055 commit 7a2aa8b68120f333ed2edc33475ca195810d6cb1
3056 Author: Tom Rix <Tom.Rix@windriver.com>
3057 Date: Thu Sep 10 15:27:57 2009 -0400
3058
3059 OMAP3 Move cache routine to cache.S
3060
3061 v7_flush_dcache_all, because it depends on omap ROM code is not
3062 generic. Rename the function to 'invalidate_dcache' and move it
3063 to the omap cpu directory.
3064
3065 Collect the other omap cache routines l2_cache_enable and
3066 l2_cache_disable with invalide_dcache into cache.S. This
3067 means removing the old cache.c file that contained l2_cache_enable
3068 and l2_cache_disable.
3069
3070 The conversion from cache.c to cache.S was done most through
3071 disassembling the uboot binary. The only significant change was
3072 to change the comparision for the return of get_cpu_rev from
3073
3074 cmp r0, #0
3075 beq earlier_than_label
3076
3077 Which was lost information to
3078
3079 cmp r0, #CPU_3XX_ES20
3080 blt earlier_than_label
3081
3082 The paths through the enable routine were verified by
3083 adding an infinite loop and seeing the hang. Then
3084 removing the infinite loop and seeing it continue.
3085
3086 The disable routine is similar enough that it was not
3087 tested with this method.
3088
3089 Run tested by cold booting from nand on beagle and zoom1.
3090 Compile tested on MAKEALL arm.
3091
3092 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
3093
3094 commit a16df2c11188297eca43cf6080c70fb69b960232
3095 Author: Sandeep Paulraj <s-paulraj@ti.com>
3096 Date: Tue Sep 8 17:09:52 2009 -0400
3097
3098 TI DaVinci: Remove references to SZ_xx
3099
3100 This patch removes the asm/sizes.h header file from being
3101 included in the DaVinci SOC configs.
3102 References to SZ_xx have been replaced by appropriate
3103 bit shifted values.
3104
3105 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3106 Acked-by: Wolfgang Denk <wd@denx.de>
3107
3108 commit 285870f75378aca41c5063e4358ad93bf3014fd8
3109 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
3110 Date: Thu Oct 9 01:27:18 2008 -0500
3111
3112 Leave x86emu op code tables in default section
3113
3114 Forcing the tables into got2 caused extra relocation when using -mrelocatable.
3115 This patch requires any board defining CONFIG_BIOSEMU to use -mrelocatable.
3116
3117 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
3118 Acked-by: Jin Zhengxiong <Jason.Jin@freescale.com>
3119
3120 commit be2254423b86572841aa70ff05d20933d1b49823
3121 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3122 Date: Sat Oct 10 12:42:22 2009 +0200
3123
3124 Update all board to support new bbmiiphy driver (with multibus support)
3125
3126 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3127 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3128
3129 commit 310cecb8ccdbc8a9be580e75b2fd362179d78535
3130 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3131 Date: Sat Oct 10 12:42:21 2009 +0200
3132
3133 Add bb_miiphy_init call before any ethernet bring-up code.
3134
3135 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3136 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3137
3138 commit 4ba31ab33ac824635fcb49ac609070a9ebcab7f0
3139 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3140 Date: Sat Oct 10 12:42:20 2009 +0200
3141
3142 Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses.
3143
3144 This feature is useful when your board uses different mii buses for different
3145 phys and all (or a part) of these buses are implemented via bit-banging mode.
3146
3147 The driver requires that the following macros should be defined into the board
3148 configuration file:
3149
3150 CONFIG_BITBANGMII - Enable the miiphybb driver
3151 CONFIG_BITBANGMII_MULTI - Enable the multi bus support
3152
3153 If the CONFIG_BITBANGMII_MULTI is not defined, the board's config file needs
3154 to define at least the following macros:
3155
3156 MII_INIT - Generic code to enable the MII bus (optional)
3157 MDIO_DECLARE - Declaration needed to access to the MDIO pin (optional)
3158 MDIO_ACTIVE - Activate the MDIO pin as out pin
3159 MDIO_TRISTATE - Activate the MDIO pin as input/tristate pin
3160 MDIO_READ - Read the MDIO pin
3161 MDIO(v) - Write v on the MDIO pin
3162 MDC_DECLARE - Declaration needed to access to the MDC pin (optional)
3163 MDC(v) - Write v on the MDC pin
3164
3165 The previous macros make the driver compatible with the previous version
3166 (that didn't support the multi-bus).
3167
3168 When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill
3169 the bb_miiphy_buses[] array with a record for each required bus and declare
3170 the bb_miiphy_buses_num variable with the number of mii buses.
3171 The record (struct bb_miiphy_bus) has the following fields/callbacks (see
3172 miiphy.h for details):
3173
3174 char name[] - The symbolic name that must be equal to the MII bus
3175 registered name
3176 int (*init)() - Initialization function called at startup time (just
3177 before the Ethernet initialization)
3178 int (*mdio_active)() - Activate the MDIO pin as output
3179 int (*mdio_tristate)() - Activate the MDIO pin as input/tristate pin
3180 int (*set_mdio)() - Write the MDIO pin
3181 int (*get_mdio)() - Read the MDIO pin
3182 int (*set_mdc)() - Write the MDC pin
3183 int (*delay)() - Delay function
3184 void *priv - Private data used by board specific code
3185
3186 The board code will look like:
3187
3188 struct bb_miiphy_bus bb_miiphy_buses[] = {
3189 { .name = miibus#1, .init = b1_init, .mdio_active = b1_mdio_active, ... },
3190 { .name = miibus#2, .init = b2_init, .mdio_active = b2_mdio_active, ... },
3191 ...
3192 int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) /
3193 sizeof(bb_miiphy_buses[0]);
3194
3195 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3196 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3197
3198 commit efaf6f1bf6ebdd8f16b0d0c2960abe8d06f95af4
3199 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
3200 Date: Fri Oct 2 18:54:20 2009 -0400
3201
3202 mpc83xx: cosmetic comment update relating to SPD EEPROM
3203
3204 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76 did the big
3205 rename of CFG_ macros to CONFIG_SYS macros. But it missed
3206 a couple of instances within comments.
3207
3208 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
3209 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3210
3211 commit afc3ba0fc4195624e79e21244380ed7cc2fd6969
3212 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3213 Date: Thu Oct 8 02:03:51 2009 +0200
3214
3215 relocation: Do not relocate NULL pointers.
3216
3217 NULL is an absolute value and should not be relocated.
3218 After this correction code like:
3219 void weak_fun(void) __attribute__((weak));
3220 printf("weak_fun:%p\n", weak_fun);
3221 will still print null after relocation.
3222
3223 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3224
3225 commit 3beb40c2473f0dd373231c723d88c51e46ad96f7
3226 Author: Peter Tyser <ptyser@xes-inc.com>
3227 Date: Wed Oct 7 11:45:00 2009 -0500
3228
3229 85xx: Ensure BSS segment isn't linked at address 0
3230
3231 When U-Boot is relocated from flash to RAM pointers are modified
3232 accordingly. However, pointers initialzed with NULL values should not
3233 be modified so that they maintain their intended NULL value. If the
3234 BSS segment is linked at address 0 its address will not be
3235 updated as necessary during relocation.
3236
3237 This is a temporary workaround. The end goal is to add support to
3238 U-Boot to dynamically locate the BSS at an arbitrary address at
3239 runtime. When the ability to fixup the BSS inteligently is
3240 added, this workaround can be removed and the 85xx link script
3241 can put the BSS at a fixed address at link time.
3242
3243 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3244
3245 commit 95c44ec485b46ffb43dbdaa299f1491a500fdadf
3246 Author: Detlev Zundel <dzu@denx.de>
3247 Date: Wed Oct 7 16:38:05 2009 +0200
3248
3249 tqm5200: Correct comment and code in post_hotkeys_pressed.
3250
3251 This fixes the code and the comment according to the original intent of
3252 doing an intensive memory test when PSC6_3 is pulled low on the STK52xx.
3253 Notably PORT_CONFIG will be overridden with this correct code now,
3254 so beware.
3255
3256 The original code only worked by coincidence depending on the PORT_CONFIG
3257 setting from the header file. The new code was tested to ensure that the
3258 (undocumented) memory test still works on the STK52x.
3259
3260 Signed-off-by: Detlev Zundel <dzu@denx.de>
3261 CC: Martin Krause <Martin.Krause@tqs.de>
3262
3263 Minor white-space cleanup.
3264 Signed-off-by: Wolfgang Denk <wd@denx.de>
3265
3266 commit da01f53404f99db185d196867af79371725d4683
3267 Author: Wolfgang Denk <wd@denx.de>
3268 Date: Sun Oct 4 22:56:08 2009 +0200
3269
3270 mpc512x: fix fixed_sdram() init code.
3271
3272 Commit 054197ba and later fixes used an array to initialize some of
3273 the MDDRC parameters; however, the use of an array turned out to be a
3274 bad idea as it was not possible to correlate structure entries to
3275 array indices in readable and reliable way. Now we use a struct
3276 instead, which makes this self-explanatory.
3277
3278 Signed-off-by: Wolfgang Denk <wd@denx.de>
3279
3280 commit dbcc357166bed20df13450e93a501f30b197efd1
3281 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
3282 Date: Sun Oct 4 20:04:22 2009 +0200
3283
3284 ppc4xx: respect 80-chars per line in ppc*.h files
3285
3286 After running checkstyle.pl on the three previous patches I noted that in
3287 the *.h files there were a lot of long lines. This patch solves this problem.
3288
3289 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
3290 Signed-off-by: Stefan Roese <sr@denx.de>
3291
3292 commit 78d2a641371ec71cc3786b167a318c7b115fbb90
3293 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
3294 Date: Sun Oct 4 20:04:21 2009 +0200
3295
3296 ppc4xx: Rework cmd reginfo
3297
3298 The command "reginfo" got an overhaul for the ppc4xx. It dumps all the
3299 relevant HW configuration registers (address, symbolic name, content).
3300 This allows to easily detect errors in *.h files and changes in the HW
3301 configuration.
3302
3303 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
3304 Signed-off-by: Stefan Roese <sr@denx.de>
3305
3306 commit ddc922ff2c20ae0b7f9ce2df1ac28143e2f325bd
3307 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
3308 Date: Sun Oct 4 20:04:20 2009 +0200
3309
3310 ppc_4xx: Apply new HW register names
3311
3312 Modify all existing *.c files to use the new register names
3313 as seen in the AMCC manuals.
3314
3315 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
3316 Signed-off-by: Stefan Roese <sr@denx.de>
3317
3318 commit f80e61dcfe53fa3a5936659883415c9bd1b5a3d9
3319 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
3320 Date: Sun Oct 4 20:04:19 2009 +0200
3321
3322 ppc4xx: Cleanup some HW register names
3323
3324 Here you find all the changes in the include directory for new register names
3325 and adapting other ones to the names used by AMCC in their manuals, e.g.
3326 For 440EPx/GRPPC440EPx/GRX, Revision 1.15 – September 22, 2008
3327 For PPC405GP Embedded Processor, Revision 1.02 – March 22, 2006
3328
3329 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
3330 Signed-off-by: Stefan Roese <sr@denx.de>
3331
3332 commit 56f14818f66c68a8b9e45925f29ceb974405ad48
3333 Author: Stefan Roese <sr@denx.de>
3334 Date: Tue Oct 6 07:21:08 2009 +0200
3335
3336 ppc4xx: Add PPC405EX(r) Rev D support
3337
3338 Unfortunately some Rev D PPC405EX/405EXr PVR's are identical with older
3339 405EX(r) parts. Here a list:
3340
3341 0x12911475 - 405EX Rev D with Security *and* 405EX Rev A/B witout Sec
3342 0x12911473 - 405EX Rev D without Security *and* 405EXr Rev A/B with Sec
3343
3344 Since there are only a few older parts in the field, this patch now
3345 changes the PVR's above to represent the new Rev D versions.
3346
3347 Signed-off-by: Stefan Roese <sr@denx.de>
3348 Cc: Phong Vo" <pvo@amcc.com>
3349
3350 commit 06dfaeef52a5f773ae4292432e3c74ff52ead316
3351 Author: Stefan Roese <sr@denx.de>
3352 Date: Fri Oct 2 14:35:16 2009 +0200
3353
3354 ppc4xx: Fix msg "initialization as root-complex failed" upon PCIe scan
3355
3356 This message is printed upon PCIe bus scan, not only upon error, but also
3357 if no PCIe device is detected at all. Since this is not an error, let's
3358 remove this message in this case. We already have the message
3359 "link is not up." if there is no PCIe device present.
3360
3361 Signed-off-by: Stefan Roese <sr@denx.de>
3362 Acked-by: Wolfgang Denk <wd@denx.de>
3363
3364 commit 54f5f056aa1daa3e39bad1c5c3fb43a72cdb9e84
3365 Author: Mike Nuss <mike@terascala.com>
3366 Date: Mon Oct 5 12:33:28 2009 -0400
3367
3368 PPC4xx: Denali core: Fix incorrect DDR row bits
3369
3370 The SPD detection code for the Denali memory controller used on some
3371 ppc4xx
3372 processors incorrectly encodes DDR0_42. With certain memory
3373 configurations,
3374 this can cause the bootwrapper to incorrectly calculate the installed
3375 memory
3376 size, because the number of row bits is wrong. This patch fixes that
3377 encoding.
3378
3379 Signed-off-by: Mike Nuss <mike@terascala.com>
3380 Signed-off-by: Stefan Roese <sr@denx.de>
3381
3382 commit 99dbd4efd6d5ecc37d7e8f28b20d9be8c83055c7
3383 Author: Ben Warren <biggerbadderben@gmail.com>
3384 Date: Mon Oct 5 00:02:51 2009 -0700
3385
3386 Add information about return values of xxx_eth_register() in documentation
3387
3388 As discussed on mailing list, <0 indicates failure, >=0 indicates number
3389 of interfaces found.
3390
3391 Also added blurb about private data
3392
3393 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3394
3395 commit 1f1e774ec6242d4ea34e5cff57232deb5bb587e0
3396 Author: Mike Frysinger <vapier@gentoo.org>
3397 Date: Wed Sep 9 14:41:22 2009 -0400
3398
3399 document network driver framework
3400
3401 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3402 Acked-by: Wolfgang Denk <wd@denx.de>
3403 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3404
3405 commit aba8237257dd15b0e76cc517f0e741c0908ee0b9
3406 Author: Prafulla Wadaskar <prafulla@marvell.com>
3407 Date: Wed Sep 9 15:59:19 2009 +0530
3408
3409 net: kirkwood_egiga.c: fixed build warning
3410
3411 if link up detection code is disabled through config option, it gives build warning.
3412 This patch fixes the same
3413
3414 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3415 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3416
3417 commit 7194ab809532eeca3e2ee5dc12017cb901cc5842
3418 Author: Ben Warren <biggerbadderben@gmail.com>
3419 Date: Sun Oct 4 22:37:03 2009 -0700
3420
3421 Convert SMC91111 Ethernet driver to CONFIG_NET_MULTI API
3422
3423 All in-tree boards that use this controller have CONFIG_NET_MULTI
3424 added
3425 Also:
3426 - changed CONFIG_DRIVER_SMC91111 to CONFIG_SMC91111
3427 - cleaned up line lengths
3428 - modified all boards that override weak function in this driver
3429 - modified all eeprom standalone apps to work with new driver
3430 - updated blackfin standalone EEPROM app after testing
3431
3432 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3433 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3434
3435 commit 32e7f239dda8638377edb0d3e7ac269cabbafbe6
3436 Author: Prafulla Wadaskar <prafulla@marvell.com>
3437 Date: Mon Sep 21 20:28:18 2009 +0530
3438
3439 net: phy: mv88e61xx.c : fixed build warning
3440
3441 following build warning was observed
3442
3443 mv88e61xx.c: In function ‘mv88e61xx_busychk’:
3444 mv88e61xx.c:208: warning: dereferencing type-punned pointer will break strict-aliasing rules
3445
3446 This patch fixes the same
3447 Patch tested for rd6281a board build
3448
3449 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
3450 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3451
3452 commit c0b46d8ead3c6c5b569c83544fd71b9d73356869
3453 Author: James Clough <james@rtetc.com>
3454 Date: Thu Sep 10 09:11:50 2009 +0200
3455
3456 net: Fix problem with 405EZ ethernet interrupt
3457
3458 On 405EZ the RX-/TX-interrupts are coalesced into one IRQ bit in the
3459 UIC. We need to acknowledge the RX-/TX-interrupts in the
3460 SDR0_ICINTSTAT reg as well.
3461
3462 This problem was introduced with commit
3463 d1631fe1 [ppc4xx: Consolidate PPC4xx UIC defines]
3464
3465 Signed-off-by: James Clough <james@rtetc.com>
3466 Signed-off-by: Stefan Roese <sr@denx.de>
3467 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3468
3469 commit 91b469c95faf92435e3d5d78292ba78075a3c5ca
3470 Author: Mike Frysinger <vapier@gentoo.org>
3471 Date: Wed Sep 2 04:18:55 2009 -0400
3472
3473 net: add random_port() prototype
3474
3475 The random_port() is meant to be used by other net code, but without a
3476 prototype, we get fun warnings like:
3477 dns.c: In function 'DnsSend':
3478 dns.c:89: warning: implicit declaration of function 'random_port'
3479
3480 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3481 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3482
3483 commit 3469424cb6d939c7aedf1e0efdec44a797c0a18c
3484 Author: Peter Tyser <ptyser@xes-inc.com>
3485 Date: Mon Sep 21 11:20:37 2009 -0500
3486
3487 ppc: Remove reloc_off field from global_data structure
3488
3489 Now that proper relocation is supported, the reloc_off field is no longer
3490 necessary.
3491
3492 Note that the location of the standalone application jump table pointer
3493 in the global data structure is affected by this change, breaking
3494 execution of standalone applications compiled for previous versions of
3495 U-Boot.
3496
3497 We therefore increment XF_VERSION to 6
3498
3499 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3500 Signed-off-by: Wolfgang Denk <wd@denx.de>
3501
3502 commit 0630535e2d062dd73c1ceca5c6125c86d1127a49
3503 Author: Peter Tyser <ptyser@xes-inc.com>
3504 Date: Tue Sep 22 09:27:55 2009 -0500
3505
3506 arm/microblaze/nios/nios2/sh: Remove relocation fixups
3507
3508 These architectures don't need relocation fixups, so reduce their
3509 codesize a bit by defining CONFIG_RELOC_FIXUP_WORKS.
3510
3511 Also remove the reloc_off field from their global data structures
3512 as it is no longer needed.
3513
3514 Note that the location of the standalone application jump table pointer
3515 in the global data structure is affected by this change, breaking
3516 execution of standalone applications compiled for previous versions of
3517 U-Boot. We will therefore increment XF_VERSION in the next commit,
3518 which also touches this area.
3519
3520 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3521 Signed-off-by: Wolfgang Denk <wd@denx.de>
3522
3523 commit 521af04d853361b49344b61892eb0618f9f713c5
3524 Author: Peter Tyser <ptyser@xes-inc.com>
3525 Date: Mon Sep 21 11:20:36 2009 -0500
3526
3527 Conditionally perform common relocation fixups
3528
3529 Add #ifdefs where necessary to not perform relocation fixups. This
3530 allows boards/architectures which support relocation to trim a decent
3531 chunk of code.
3532
3533 Note that this patch doesn't add #ifdefs to architecture-specific code
3534 which does not support relocation.
3535
3536 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3537
3538 commit 3cbcfa70b116df1bbdc90ba31c61adcaec058a8a
3539 Author: Peter Tyser <ptyser@xes-inc.com>
3540 Date: Mon Sep 21 11:20:35 2009 -0500
3541
3542 p3mx: Remove serial relocation fixups
3543
3544 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3545
3546 commit 80f73b92a19129854876ec3f1aef531a09e86d2d
3547 Author: Peter Tyser <ptyser@xes-inc.com>
3548 Date: Mon Sep 21 11:20:34 2009 -0500
3549
3550 lwmon, lwmon5: Remove sysmon POST relocation fixups
3551
3552 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3553
3554 commit 331ab60c4a418c39e5b1a05d4648a4155d0ad13e
3555 Author: Peter Tyser <ptyser@xes-inc.com>
3556 Date: Mon Sep 21 11:20:33 2009 -0500
3557
3558 mpl: Remove memory test relocation fixups
3559
3560 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3561
3562 commit 6385b28116f775da4771b768ba9bf93c3aaaf26e
3563 Author: Peter Tyser <ptyser@xes-inc.com>
3564 Date: Mon Sep 21 11:20:32 2009 -0500
3565
3566 fpga: Remove relocation fixups
3567
3568 PPC boards are the only users of the current FPGA code which is littered
3569 with manual relocation fixups. Now that proper relocation is supported
3570 for PPC boards, remove FPGA manual relocation.
3571
3572 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3573
3574 commit cd1011db80287eef933d1599b74cff1116c93134
3575 Author: Peter Tyser <ptyser@xes-inc.com>
3576 Date: Mon Sep 21 11:20:31 2009 -0500
3577
3578 tsec: Remove PHY command relocation fixups
3579
3580 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3581
3582 commit b5650c5d8c99100144d8e4e9af910405f857bb7a
3583 Author: Peter Tyser <ptyser@xes-inc.com>
3584 Date: Mon Sep 21 11:20:30 2009 -0500
3585
3586 ppc: Remove board-specific command table relocation fixups
3587
3588 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3589
3590 commit e6b05e774d7ce1641613cdeffb69c1d48139a869
3591 Author: Peter Tyser <ptyser@xes-inc.com>
3592 Date: Mon Sep 21 11:20:29 2009 -0500
3593
3594 ppc: Remove extable relocation fixups
3595
3596 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3597
3598 commit b32a894011b1436758905fa10e6a03b8539c43c9
3599 Author: Peter Tyser <ptyser@xes-inc.com>
3600 Date: Mon Sep 21 11:20:28 2009 -0500
3601
3602 ppc: Remove pci config table pointer relocation fixups
3603
3604 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3605
3606 commit a0e2066f392782730f0398095e583c87812d97f2
3607 Author: Peter Tyser <ptyser@xes-inc.com>
3608 Date: Mon Sep 21 11:20:27 2009 -0500
3609
3610 ppc: Remove board.c relocation fixups
3611
3612 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3613
3614 commit 244615197469dd6fe75ae082f38424b97c79aeaf
3615 Author: Peter Tyser <ptyser@xes-inc.com>
3616 Date: Mon Sep 21 11:20:26 2009 -0500
3617
3618 ppc: Check for compilers that don't support relocation
3619
3620 Certain ppc compilers are known not to generate the .fixup section
3621 properly. The .fixup section is necessary to create a relocatable
3622 U-Boot image. A basic check for the existence of the .fixup section
3623 should hopefully catch the majority of broken compilers which don't
3624 support relocation.
3625
3626 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3627
3628 commit 858290178f222d998b6425d85cf06822467918f3
3629 Author: Peter Tyser <ptyser@xes-inc.com>
3630 Date: Mon Sep 21 11:20:25 2009 -0500
3631
3632 ppc: Enable full relocation to RAM
3633
3634 The following changes allow U-Boot to fully relocate from flash to
3635 RAM:
3636 - Remove linker scripts' .fixup sections from the .text section
3637 - Add -mrelocatable to PLATFORM_RELFLAGS for all boards
3638 - Define CONFIG_RELOC_FIXUP_WORKS for all boards
3639
3640 Previously, U-Boot would partially relocate, but statically initialized
3641 pointers needed to be manually relocated.
3642
3643 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3644
3645 commit 3b4bd2d75c4b3c1a4570f47ffaaed66f56a78ff4
3646 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
3647 Date: Wed Sep 30 11:55:04 2009 +0200
3648
3649 ppc4xx: Add SDRAM detection for PMC440 boards
3650
3651 This patch adds support to detect the amount of DDR2 SDRAM
3652 on PMC440 modules. Detection is done by probing through
3653 a list of available and supported hardware configurations
3654 from 1GByte down to 256MB.
3655
3656 The static TLB entry is replaced by dynamically created entries.
3657
3658 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
3659 Signed-off-by: Stefan Roese <sr@denx.de>
3660
3661 commit fb95169e39f2d03270bed552d27bbb02627a443e
3662 Author: Stefan Roese <sr@denx.de>
3663 Date: Mon Sep 28 17:33:45 2009 +0200
3664
3665 ppc4xx: Merge PPC4xx DDR and DDR2 ECC handling
3666
3667 This patch merges the ECC handling (ECC parity byte writing) into one
3668 file (ecc.c) for all PPC4xx SDRAM controllers except for PPC440EPx/GRx.
3669 This exception is because only those PPC's use the completely different
3670 Denali SDRAM controller core.
3671
3672 Previously we had two routines to generate/write the ECC parity bytes.
3673 With this patch we now only have one core function left.
3674
3675 Tested on Kilauea (no ECC) and Katmai (with and without ECC).
3676
3677 Signed-off-by: Stefan Roese <sr@denx.de>
3678 Cc: Felix Radensky <felix@embedded-sol.com>
3679 Cc: Grant Erickson <gerickson@nuovations.com>
3680 Cc: Pieter Voorthuijsen <pv@prodrive.nl>
3681
3682 commit d24bd2517a2b847f773453eab0ee5b1c8ebc74ba
3683 Author: Felix Radensky <felix@embedded-sol.com>
3684 Date: Sun Sep 27 23:56:12 2009 +0200
3685
3686 ppc4xx: Reorganize DDR2 ECC handling
3687
3688 Reorganize DDR2 ECC handling to use common code for
3689 SPD DIMMs and soldered SDRAM. Also, use common code
3690 to display SDRAM info (ECC, CAS latency) for SPD and
3691 soldered SDRAM variants.
3692
3693 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
3694 Signed-off-by: Stefan Roese <sr@denx.de>
3695
3696 commit 46a887949e11d2cddb91e17ca47e73341d71a379
3697 Author: Mike Frysinger <vapier@gentoo.org>
3698 Date: Wed Sep 30 03:09:16 2009 -0400
3699
3700 Blackfin: update default console= settings
3701
3702 The Linux kernel has changed the way it numbers serial ports, so update
3703 the default command line to match it.
3704
3705 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3706
3707 commit 4c5f307d58604dea001cccf388aa077a902ab0a5
3708 Author: Mike Frysinger <vapier@gentoo.org>
3709 Date: Mon Sep 21 18:04:49 2009 -0400
3710
3711 Blackfin: bf533-ezkit: update env location
3712
3713 The u-boot image has outgrown the current space and overflowed into the
3714 env sector. So move the env to the next available sector (we've already
3715 allocated the first few sectors anyways for u-boot).
3716
3717 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3718
3719 commit 24b17d8a3c3a4b9ceaf6363ebe0021011b0b8bd8
3720 Author: Kumar Gala <galak@kernel.crashing.org>
3721 Date: Wed Sep 30 08:39:44 2009 -0500
3722
3723 ppc/85xx: get_law_entry isn't used in CONFIG_NAND_SPL
3724
3725 Don't include get_law_entry as part of the NAND_SPL build since the
3726 code isnt used.
3727
3728 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3729
3730 commit 693a048d8ac191181f5b9adbff642d3f1bbd479f
3731 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3732 Date: Wed Sep 23 15:20:39 2009 +0800
3733
3734 Add README.mpc8536ds
3735
3736 Add boot from NAND/eSDHC/eSPI description
3737
3738 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3739 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3740
3741 commit e40ac4870c6e72302044e98338322f45c34435bd
3742 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3743 Date: Wed Sep 23 15:20:38 2009 +0800
3744
3745 On-chip ROM boot: MPC8536DS support
3746
3747 The MPC8536E is capable of booting from the on-chip ROM - boot from
3748 eSDHC and boot from eSPI. When power on, the porcessor excutes the
3749 ROM code to initialize the eSPI/eSDHC controller, and loads the mian
3750 U-Boot image from the memory device that interfaced to the controller,
3751 such as the SDCard or SPI EEPROM, to the target memory, e.g. SDRAM or
3752 L2SRAM, then boot from it.
3753
3754 The memory device should contain a specific data structure with control
3755 word and config word at the fixed address. The config word direct the
3756 process how to config the memory device, and the control word direct
3757 the processor where to find the image on the memory device, or where
3758 copy the main image to. The user can use any method to store the data
3759 structure to the memory device, only if store it on the assigned address.
3760
3761 The on-chip ROM code will map the whole 4GB address space by setting
3762 entry0 in the TLB1, so the main image need to switch to Address space 1
3763 to disable this mapping and map the address space again.
3764
3765 This patch implements loading the mian U-Boot image into L2SRAM, so
3766 the image can configure the system memory by using SPD EEPROM.
3767
3768 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3769 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3770
3771 commit 9a1a0aedbbd56f901bfbc124f18ec6d9dcefe282
3772 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3773 Date: Wed Sep 23 15:20:37 2009 +0800
3774
3775 NAND boot: MPC8536DS support
3776
3777 MPC8536E can support booting from NAND flash which uses the
3778 image u-boot-nand.bin. This image contains two parts: a 4K
3779 NAND loader and a main U-Boot image. The former is appended
3780 to the latter to produce u-boot-nand.bin. The 4K NAND loader
3781 includes the corresponding nand_spl directory, along with the
3782 code twisted by CONFIG_NAND_SPL. The main U-Boot image just
3783 like a general U-Boot image except the parts that included by
3784 CONFIG_SYS_RAMBOOT.
3785
3786 When power on, eLBC will automatically load from bank 0 the
3787 4K NAND loader into the FCM buffer RAM where CPU can execute
3788 the boot code directly. In the first stage, the NAND loader
3789 copies itself to RAM or L2SRAM to free up the FCM buffer RAM,
3790 then loads the main image from NAND flash to RAM or L2SRAM
3791 and boot from it.
3792
3793 This patch implements the NAND loader to load the main image
3794 into L2SRAM, so the main image can configure the RAM by using
3795 SPD EEPROM. In the first stage, the NAND loader copies itself
3796 to the second to last 4K address space, and uses the last 4K
3797 address space as the initial RAM for stack.
3798
3799 Obviously, the size of L2SRAM shouldn't be less than the size
3800 of the image used. If so, the workaround is to generate another
3801 image that includes the code to configure the RAM by SPD and
3802 load it to L2SRAM first, then relocate the main image to RAM
3803 to boot up.
3804
3805 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3806 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3807
3808 commit 07355700523203c5f72018712cf0d93683f255c8
3809 Author: Mingkai Hu <Mingkai.hu@freescale.com>
3810 Date: Wed Sep 23 15:19:32 2009 +0800
3811
3812 mpc8536: fix board config file line length
3813
3814 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
3815 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3816
3817 commit dd9ca98f2600000e5c2744735040100b770650e7
3818 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
3819 Date: Fri Sep 25 11:14:11 2009 -0400
3820
3821 sbc8548: reclaim wasted sector in boot flash
3822
3823 By nature of being based off the MPC8548CDS board, this
3824 board inherited an ENV_SIZE setting of 256k. But since
3825 it has a smaller flash device (8MB soldered on), it has
3826 a native sector size of 128k, and hence the ENV_SIZE was
3827 causing 2 sectors to be used for the environment.
3828
3829 By removing the unused sector, we can push TEXT_BASE up
3830 closer to the end of address space and reclaim that
3831 sector for any other application. This also fixes the
3832 mismatch between TEXT_BASE and MONITOR_LEN reported by
3833 Kumar earlier.
3834
3835 Since this board also supports the ability to boot off
3836 the 64MB SODIMM flash, this change is forward looking
3837 with that in mind; i.e. the settings for MONITOR_LEN
3838 and ENV_SIZE will work when the 512k sectors of the
3839 SODIMM flash are used for alternate boot in the future.
3840
3841 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
3842 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3843
3844 commit 8280912e0657e96a7b7d8da7003656d62b0fd109
3845 Author: Kumar Gala <galak@kernel.crashing.org>
3846 Date: Mon Sep 28 21:38:00 2009 -0500
3847
3848 ppc/85xx: Clean up immap_85xx.h
3849
3850 * Converted all white space to tabs
3851 * Converted all types to u8/u16/u32
3852 * Reduce lines to fit in 80 columns
3853 * Renamed MPC85xx_{Q,B}MAN -> FSL_CORENET_{Q,B}MAN
3854
3855 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
3856
3857 commit d44e9c1736283f0abc5d3c5d28cfea8480c93a79
3858 Author: Scott Wood <scottwood@freescale.com>
3859 Date: Mon Sep 28 16:33:18 2009 -0500
3860
3861 NAND: davinci: Fix warnings when 4-bit ECC not used
3862
3863 I accidentally left v2 of "NAND: DaVinci:Adding 4 BIT ECC support"
3864 applied when I pushed the tree last merge window, and missed these fixes
3865 which were in v3 of that patch.
3866
3867 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
3868 Signed-off-by: Scott Wood <scottwood@freescale.com>
3869
3870 commit ca6189db484882798f2a35a476c07e618e21f6d3
3871 Author: Kyungmin Park <kmpark@infradead.org>
3872 Date: Tue Sep 22 09:05:00 2009 +0900
3873
3874 Refactor OneNAND IPL code
3875
3876 Refactoring the OneNAND IPL code
3877
3878 and some minor fixed:
3879 - Remove unnecessary header file
3880 - Fix wrong access at read interrupt
3881 - The recent OneNAND has 4KiB pagesize
3882
3883 Also Board can override OneNAND IPL image
3884
3885 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
3886
3887 commit a05e3f9a084fc8951d87745b3a91df246432df7d
3888 Author: Shinya Kuribayashi <skuribay@pobox.com>
3889 Date: Sat Sep 12 18:01:40 2009 +0900
3890
3891 MIPS: VCT: Remove read_spareram reference
3892
3893 The commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29 (OneNAND: Remove
3894 unused read_spareram and add unlock_all as kernel does) forgot to remove
3895 a local reference to read_spareram in board/micronas/vct/ebi_onenand.c,
3896 which causes the following build failure when configured with OneNAND:
3897
3898 ebi_onenand.c: In function 'onenand_board_init':
3899 ebi_onenand.c:196: error: 'struct onenand_chip' has no member named 'read_spareram'
3900 make[1]: *** [ebi_onenand.o] Error 1
3901 make[1]: *** Waiting for unfinished jobs....
3902 make: *** [board/micronas/vct/libvct.a] Error 2
3903
3904 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
3905 Acked-by: Stefan Roese <sr@denx.de>
3906 Cc: Kyungmin Park <kyungmin.park@samsung.com>
3907 Signed-off-by: Scott Wood <scottwood@freescale.com>
3908
3909 commit ef37c6835eac66206a9c7c11f0c7186f5d64bf91
3910 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
3911 Date: Fri Sep 25 14:05:57 2009 +0200
3912
3913 ubifs: Correct dereferencing of files-after-symlinks
3914
3915 Files in directories which are symlinked to were not dereferenced
3916 correctly in last commit. E.g., with a symlink
3917
3918 /boot/lnk -> /boot/real_dir
3919
3920 loading
3921
3922 /boot/lnk/uImage
3923
3924 will fail. This patch fixes that by simply seeing to it that the target
3925 base directory has a slash after it.
3926
3927 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
3928 Signed-off-by: Stefan Roese <sr@denx.de>
3929
3930 commit b306db2f1bf561b5823a655c677fe28cfad80cfb
3931 Author: Stefan Roese <sr@denx.de>
3932 Date: Thu Sep 24 14:10:30 2009 +0200
3933
3934 ppc4xx: Remove mtsdram0() marcos and use common mtsdram() instead
3935
3936 Additionally some whitespace coding style fixes.
3937
3938 Signed-off-by: Stefan Roese <sr@denx.de>
3939
3940 commit 95b602bab5fec2fffab07a01ea3947c70d1bacc1
3941 Author: Stefan Roese <sr@denx.de>
3942 Date: Thu Sep 24 13:59:57 2009 +0200
3943
3944 ppc4xx: Convert PPC4xx SDRAM defines from lower case to upper case
3945
3946 The latest PPC4xx register cleanup patch missed some SDRAM defines.
3947 This patch now changes lower case UIC defines to upper case. Also
3948 some names are changed to match the naming in the IBM/AMCC users
3949 manuals (e.g. mem_mcopt1 -> SDRAM0_CFG).
3950
3951 Signed-off-by: Stefan Roese <sr@denx.de>
3952
3953 commit 952e7760bfc5b0e3b142b9ce34e7fbb7d008c900
3954 Author: Stefan Roese <sr@denx.de>
3955 Date: Thu Sep 24 09:55:50 2009 +0200
3956
3957 ppc4xx: Convert PPC4xx UIC defines from lower case to upper case
3958
3959 The latest PPC4xx register cleanup patch missed the UIC defines.
3960 This patch now changes lower case UIC defines to upper case.
3961
3962 Signed-off-by: Stefan Roese <sr@denx.de>
3963
3964 commit d1c9e5b37901b53ffc1ce3f08ec8ed61bfd557b6
3965 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3966 Date: Tue Sep 22 13:40:44 2009 +0200
3967
3968 fsl_i2c: Do not generate STOP after read.
3969
3970 __i2c_read always ends with a STOP condition thereby releasing
3971 the bus. It is cleaner to do the STOP magic in i2c_read(), like
3972 i2c_write() does. This may also help future multimaster systems which
3973 wants to hold on to the bus until all transactions are finished.
3974
3975 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3976
3977 commit 99404202127346b9e91503bbd69deafa18c980c4
3978 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3979 Date: Thu Sep 17 11:07:17 2009 +0200
3980
3981 fsl_i2c: Impl. AN2919, rev 5 to calculate FDR/DFSR
3982
3983 The latest AN2919 has changed the way FDR/DFSR should be calculated.
3984 Update the driver according to spec. However, Condition 2
3985 is not accounted for as it is not clear how to do so.
3986
3987 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3988 Acked-by: Wolfgang Grandegger <wg@grandegger.com>
3989
3990 commit d01ee4db9302cfccaa5c548a1c4e873b415681a0
3991 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
3992 Date: Thu Sep 17 11:07:16 2009 +0200
3993
3994 fsl_i2c: Add CONFIG_FSL_I2C_CUSTOM_{DFSR/FDR}
3995
3996 Some boards need a higher DFSR value than the spec currently
3997 recommends so give these boards the means to define there own.
3998
3999 For completeness, add CONFIG_FSL_I2C_CUSTOM_FDR too.
4000
4001 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
4002
4003 commit 21f4cbb77299788e2b06c9b0f48cf20a5ab00d4a
4004 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
4005 Date: Thu Sep 17 11:07:15 2009 +0200
4006
4007 fsl_i2c: Wait for STOP condition to propagate
4008
4009 After issuing a STOP one must wait until the STOP has completed
4010 on the bus before doing something new to the controller.
4011
4012 Also add an extra read of SR as the manual mentions doing that
4013 is a good idea.
4014
4015 Remove surplus write of CR just before a write, isn't required and
4016 could potentially disturb the I2C bus.
4017
4018 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
4019
4020 commit c7190f028fa950d4d36b6d0b4bb3fc72602ec54c
4021 Author: Kim Phillips <kim.phillips@freescale.com>
4022 Date: Fri Sep 25 18:19:44 2009 -0500
4023
4024 mpc83xx: retain POR values of non-configured ACR, SPCR, SCCR, and LCRR bitfields
4025
4026 some LCRR bits are not documented throughout the 83xx family RMs.
4027 New board porters copying similar board configurations might omit
4028 setting e.g., DBYP since it was not documented in their SoC's RM.
4029
4030 Prevent them bricking their board by retaining power on reset values
4031 in bit fields that the board porter doesn't explicitly configure
4032 via CONFIG_SYS_<registername>_<bitfield> assignments in the board
4033 config file.
4034
4035 also move LCRR assignment to cpu_init_r[am] to help ensure no
4036 transactions are being executed via the local bus while CLKDIV is being
4037 modified.
4038
4039 also start to use i/o accessors.
4040
4041 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4042
4043 commit 00ec0ff549b8cb6fb6d40e275aeb5a460642a3bd
4044 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4045 Date: Mon Sep 21 17:44:51 2009 -0400
4046
4047 sbc8349: tidy up Makefile to use new configuration script.
4048
4049 Commit 804d83a5 allows us to move all the configuration
4050 variation tweaks out of the top level Makefile and down
4051 into the board config header. This takes advantage of
4052 that for the sbc8349 board.
4053
4054 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4055 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4056
4057 commit da6eea0f48c24a318e6de69d6bca0bb5ab70572b
4058 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4059 Date: Wed Sep 16 23:22:08 2009 +0400
4060
4061 mpc83xx: mpc8360emds: Add QE USB device tree fixups
4062
4063 With this patch we can change QE USB mode without need to hand-edit
4064 the device tree.
4065
4066 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4067 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4068
4069 commit 89da44ce3fe1638312d71cb3add8c6a6d2c7c1f3
4070 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4071 Date: Wed Sep 16 23:21:59 2009 +0400
4072
4073 mpc83xx: mpc8360emds: Use RGMII-ID mode, add workarounds for rev. 2.1 CPUs
4074
4075 This patch fixes various ethernet issues with gigabit links handling
4076 in U-Boot. The workarounds originally implemented by Kim Phillips for
4077 Linux kernel.
4078
4079 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4080 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4081
4082 commit 034477bb31948d698d18b84bc0834c3e25a14d04
4083 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4084 Date: Wed Sep 16 23:21:57 2009 +0400
4085
4086 mpc83xx: mpc8360emds: Don't use LBC SDRAM when DDR is available
4087
4088 Since commit 5c2ff323a94e27e481f70c44838d43fcd844dd46 ("mpc8360emds:
4089 rework LBC SDRAM setup"), LBC SDRAM is available for use in Linux.
4090
4091 Though, it appears that QE Ethernet in Gigabit mode can't transmit
4092 large packets when it tries to work with a data in LBC SDRAM (memtest
4093 didn't discover any issues, is LBC SDRAM just too slow?).
4094
4095 With this patch we can still use the board without DDR memory, but
4096 if DDR is available, we don't use LBC SDRAM.
4097
4098 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4099 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4100
4101 commit d77c779bc23596aa3693d1c5c4d5b6e1072f93f2
4102 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4103 Date: Wed Sep 16 23:21:55 2009 +0400
4104
4105 net: uec: Fix uccf.h and uec.h headers to include headers they depend on
4106
4107 Headers should include headers containing prototypes and defines they
4108 depend on, don't assume that they're included by somebody else.
4109
4110 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4111 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4112
4113 commit 6185f80c311cc3bdef2f8d5096c61e40ca6f48b2
4114 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4115 Date: Wed Sep 16 23:21:53 2009 +0400
4116
4117 net: uec_phy: Implement TXID and RXID RGMII modes for Marvell PHYs
4118
4119 This will be needed for MPC8360E-MDS boards with rev. 2.1 CPUs.
4120
4121 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4122 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4123
4124 commit 984f10baac8ef6032df52f135943d6b0bc96f724
4125 Author: Wolfgang Denk <wd@denx.de>
4126 Date: Fri Sep 25 14:16:00 2009 +0200
4127
4128 mpc5121ads: fix breakage introduced when reordering elpida_mddrc_config[]
4129
4130 Signed-off-by: Wolfgang Denk <wd@denx.de>
4131
4132 commit 6e748ea004473cce99fbde6382dd580c10ffdb60
4133 Author: Ken MacLeod <ken@bitsko.slc.ut.us>
4134 Date: Fri Sep 11 15:16:18 2009 -0500
4135
4136 cmd_fdt.c: fix parse of byte streams and strings
4137
4138 Commit 4abd844d8e extended the fdt command parser to handle property
4139 strings which are split across multiple arguments but it was broken for
4140 byte streams and strings.
4141
4142 Byte stream parsing:
4143
4144 * Fixes where it would terminate early or go into an endless loop.
4145
4146 * Fixes a 0x00 being inserted into the data if there is a space after
4147 '[' or a separate argument.
4148
4149 * Fixes dereferencing the argument pointer after the last argument.
4150
4151 * Checks for bad characters.
4152
4153 String parsing:
4154
4155 * Treat multiple arguments as a string list. This fixes an issue where
4156 only the last argument was stored.
4157
4158 Signed-off-by: Ken MacLeod <ken@bitsko.slc.ut.us>
4159
4160 commit 3887c3fbdbbe6bbb4df60ed415c8e1ab9fe56b5e
4161 Author: Heiko Schocher <hs@denx.de>
4162 Date: Wed Sep 23 07:56:08 2009 +0200
4163
4164 mucmc52, uc101: delete ata@3a00 node, if no CF card is detected
4165
4166 U-Boot can detect if an IDE device is present or not.
4167 If not, and this new config option is activated, U-Boot
4168 removes the ATA node from the DTS before booting Linux,
4169 so the Linux IDE driver does not probe the device and
4170 crash. This is needed for buggy hardware (uc101) where
4171 no pull down resistor is connected to the signal IDE5V_DD7.
4172
4173 Signed-off-by: Heiko Schocher <hs@denx.de>
4174
4175 commit 7f625fc6d3ba8f890e843ac01717804c2462ed53
4176 Author: Heiko Schocher <hs@denx.de>
4177 Date: Wed Sep 23 07:56:04 2009 +0200
4178
4179 mpc5200, mucmc52, uc101: config cleanup
4180
4181 - As these boards are similiar, collect common config options
4182 in manroland/common.h and manroland/mpc52xx-common.h
4183 for mpc5200 specific common options for this manufacturer.
4184 - add OF support
4185 - update default environment
4186
4187 Signed-off-by: Heiko Schocher <hs@denx.de>
4188
4189 Minor edit of commit message.
4190
4191 Signed-off-by: Wolfgang Denk <wd@denx.de>
4192
4193 commit 9d142ea8f787882ab732fa531a34db091bfa363d
4194 Author: Wolfgang Denk <wd@denx.de>
4195 Date: Fri Sep 25 00:57:49 2009 +0200
4196
4197 Fix "ppc/85xx: Clean up use of LAWAR defines" breakage
4198
4199 Commit 002741ae86 modified include/asm-ppc/mmu.h such that the LAWAR_
4200 defines were only enabled for the 83xx platform, but they are also
4201 needed on MPC512x system. Enabling these for E300 systems seems thus
4202 more appropriate.
4203
4204 Signed-off-by: Wolfgang Denk <wd@denx.de>
4205
4206 commit a5aa3998ab6408a6ac738a3ce8005e647b9465f8
4207 Author: Martha M Stan <mmarx@silicontkx.com>
4208 Date: Mon Sep 21 14:08:00 2009 -0400
4209
4210 Add Elpida Memory Configuration to mpc5121ads Boards
4211
4212 Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
4213
4214 Minor coding style cleanup.
4215
4216 Signed-off-by: Wolfgang Denk <wd@denx.de>
4217
4218 commit 054197ba8ee5ef1e41694df58531b6e53ec43f2d
4219 Author: Martha M Stan <mmarx@silicontkx.com>
4220 Date: Mon Sep 21 14:07:14 2009 -0400
4221
4222 mpc512x: Streamlined fixed_sdram() init sequence.
4223
4224 Signed-off-by: Martha M Stan <mmarx@silicontkx.com>
4225
4226 Minor cleanup:
4227
4228 Re-ordered default_mddrc_config[] to have matching indices.
4229
4230 This allows to use the same index "N" for source and target fields;
4231 before, we had code like this
4232
4233 out_be32(&im->mddrc.ddr_time_config2, mddrc_config[3]);
4234
4235 which always looked like a copy & paste error because 2 != 3.
4236
4237 Also, use NULL when meaning a null pointer.
4238
4239 Signed-off-by: Wolfgang Denk <wd@denx.de>
4240
4241 commit 39aaca1f66a0e5b1204b0789f6c0097938c00ad1
4242 Author: Kumar Gala <galak@kernel.crashing.org>
4243 Date: Thu Mar 19 02:46:19 2009 -0500
4244
4245 ppc/p4080: Determine various chip frequencies on CoreNet platforms
4246
4247 The means to determine the core, bus, and DDR frequencies are completely
4248 new on CoreNet style platforms. Additionally on p4080 we can have
4249 different frequencies for FMAN and PME IP blocks. We need to keep track
4250 of the FMAN & PME frequencies since they are used for time stamping
4251 capabilities inside each block.
4252
4253 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4254
4255 commit 3c2a67eec8a0facc865b400caca52e7f6b7adf01
4256 Author: Kumar Gala <galak@kernel.crashing.org>
4257 Date: Thu Sep 17 01:52:37 2009 -0500
4258
4259 ppc/p4080: Handle timebase enabling and frequency reporting
4260
4261 On CoreNet style platforms the timebase frequency is the bus frequency
4262 defined by 16 (on PQ3 it is divide by 8). Also on the CoreNet platforms
4263 the core not longer controls the enabling of the timebase. We now need
4264 to enable the boot core's timebase via CCSR register writes.
4265
4266 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4267
4268 commit 7e4259bba4c56536760e42d32dacfb3233f216fd
4269 Author: Kumar Gala <galak@kernel.crashing.org>
4270 Date: Thu Mar 19 02:39:17 2009 -0500
4271
4272 ppc/p4080: Add various p4080 related defines (and p4040)
4273
4274 There are various locations that we have chip specific info:
4275
4276 * Makefile for which ddr code to build
4277 * Added p4080 & p4040 to cpu_type_list and SVR list
4278 * Added number of LAWs for p4080
4279 * Set CONFIG_MAX_CPUS to 8 for p4080
4280
4281 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4282
4283 commit 39a7e7fd538cdf49e7e8a2f0634ea5e15e12b4ec
4284 Author: Kumar Gala <galak@kernel.crashing.org>
4285 Date: Thu Sep 17 01:44:39 2009 -0500
4286
4287 ppc/p4080: CoreNet platfrom style secondary core release
4288
4289 The CoreNet platform style of bringing secondary cores out of reset is
4290 a bit different that the PQ3 style. Mostly the registers that we use
4291 to setup boot translation, enable time bases, and boot release the cores
4292 have moved around.
4293
4294 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4295
4296 commit a880cf3e0e1c220d780eccd0b101170c4499485d
4297 Author: Kumar Gala <galak@kernel.crashing.org>
4298 Date: Thu Sep 17 01:44:00 2009 -0500
4299
4300 ppc/p4080: CoreNet platfrom style CCSRBAR setting
4301
4302 On CoreNet based platforms the CCSRBAR address is split between an high &
4303 low register and we no longer shift the address.
4304
4305 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4306 Signed-off-by: Scott Wood <scottwood@freescale.com>
4307
4308 commit 418ec8584343f04048e2cc7ee96b6b29be54ad97
4309 Author: Kumar Gala <galak@kernel.crashing.org>
4310 Date: Thu Mar 19 02:32:23 2009 -0500
4311
4312 ppc/p4080: Add support for CoreNet style platform LAWs
4313
4314 On CoreNet based platforms the LAW address is split between an high &
4315 low register and we no longer shift the address. Also, the target IDs
4316 on CoreNet platforms have been completely re-assigned.
4317
4318 Additionally, added a new find_law() API to which LAW an address hits in.
4319 This is need for the CoreNet style boot release code since it will need
4320 to determine what the target ID should be set to for boot window
4321 translation.
4322
4323 Finally, enamed LAWAR_EN to LAW_EN and moved to header so we can use
4324 it elsewhere.
4325
4326 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4327
4328 commit 01df521217957d77d53c2d570183eded7030938f
4329 Author: Kumar Gala <galak@kernel.crashing.org>
4330 Date: Wed Sep 16 09:43:12 2009 -0500
4331
4332 ppc/p4080: Add p4080 platform immap definitions
4333
4334 The p4080 SoC has a significant amount of commonality with the 85xx/PQ3
4335 platform. We reuse the 85xx immap and just add new definitions for
4336 local access and global utils. The global utils is now broken into
4337 global utils, clocking and run control/power management.
4338
4339 The offsets from CCSR for a number of blocks have also changed. We
4340 introduce the CONFIG_FSL_CORENET define to distinquish the PQ3 style of
4341 platform from the new p4080 platform. We don't use QoirQ as there are
4342 products (like p2020) that are PQ3 based platforms but have the QoirQ
4343 name.
4344
4345 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4346
4347 commit 25bacf7a2b096496e2c58f2de4e5b2bce8fba038
4348 Author: Kumar Gala <galak@kernel.crashing.org>
4349 Date: Tue Sep 22 15:45:44 2009 -0500
4350
4351 ppc/85xx: Fix enabling of L2 cache
4352
4353 We need to flash invalidate the locks in addition to the cache
4354 before we enable.
4355
4356 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4357
4358 commit cb0ff65c619efacdc0ba69aa8ee6ede7dd364a38
4359 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
4360 Date: Tue Sep 22 12:48:27 2009 +0530
4361
4362 85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ
4363
4364 The code assumed names where just numbers and always prefixed 'mpc'.
4365 However newer QorIQ don't follow the mpc naming scheme.
4366
4367 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
4368 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4369
4370 commit 234a89d911ce28e46372f555d7c14e28424f2b0d
4371 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4372 Date: Tue Sep 22 14:53:21 2009 +0800
4373
4374 ppc/85xx: add cpu init config file for boot from NAND
4375
4376 When boot from NAND, the NAND flash must be connected to br/or0.
4377 Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to
4378 it.
4379
4380 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4381 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4382
4383 commit 266139b88b43ae1d87abb5f5431e6f57b801795f
4384 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4385 Date: Tue Sep 22 14:53:34 2009 +0800
4386
4387 immap_85xx: add porpllsr's plat ratio definition
4388
4389 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4390 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4391
4392 commit 098bcbae3172d73d24ca8ba196328d901eed4132
4393 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4394 Date: Tue Sep 22 14:53:10 2009 +0800
4395
4396 ppc/85xx: add ld script file for boot from NAND
4397
4398 The first stage 4K image uses a seperate ld script file to
4399 generate 4K image. This patch moves it to the cpu/mpc85xx/*
4400 to make it avaliable for 85xx platform.
4401
4402 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4403 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4404
4405 commit 8439f05cfd8cbb38485376a34d9fe297ba262737
4406 Author: Peter Tyser <ptyser@xes-inc.com>
4407 Date: Mon Sep 21 23:09:28 2009 -0500
4408
4409 mpc8610hpcd: Use common 86xx fdt fixup code
4410
4411 Using the common 86xx fdt fixups removes some board-specific code and
4412 should make the mpc8610hpcd easier to maintain in the long run.
4413
4414 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4415 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4416
4417 commit 928435d11b898870415910efff87a4d6399cecb8
4418 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4419 Date: Mon Sep 21 17:19:17 2009 -0400
4420
4421 sbc85x0: tidy up Makefile to use new configuration script.
4422
4423 Commit 804d83a5 allows us to move all the configuration
4424 variation tweaks out of the top level Makefile and down
4425 into the boards config header. This takes advantage of
4426 that for the sbc8540/sbc8560 boards.
4427
4428 There were a couple of cheezy comments pointing at incorrect
4429 files, or files that don't exist, so I've cleaned those up too.
4430
4431 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4432 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4433
4434 commit 2738bc8df65ec905094d83f62f87fed123a03b9c
4435 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4436 Date: Sun Sep 20 20:36:06 2009 -0400
4437
4438 sbc8548: allow enabling PCI via a make config option
4439
4440 Prior to this commit, to enable PCI, you had to go manually
4441 edit the board config header, and if you had 33MHz PCI, you
4442 had to manually change CONFIG_SYS_NS16550_CLK too, which was
4443 not real user friendly,
4444
4445 This adds the typical PCI and clock speed make targets to the
4446 toplevel Makefile in accordance with what is being done with
4447 other boards (i.e. using the "-t" to mkconfig).
4448
4449 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4450 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4451
4452 commit fdc7eb90b504daa020f290604d50da8f7cb70d8a
4453 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4454 Date: Sun Sep 20 20:36:05 2009 -0400
4455
4456 sbc8548: update PCI/PCI-e support code
4457
4458 The PCI/PCI-e support for the sbc8548 was based on an earlier
4459 version of what the MPC8548CDS board was using, and in its
4460 current state it won't even compile. This re-syncs it to match
4461 the latest codebase and makes use of the new shared PCI functions
4462 to reduce board duplication.
4463
4464 It borrows from the MPC8568MDS, in that it pulls the PCI-e I/O
4465 back to 0xe280_0000 (where PCI2 would be on MPC8548CDS), and
4466 similarly it coalesces the PCI and PCI-e mem into one single TLB.
4467
4468 Both PCI-x and PCI-e have been tested with intel e1000 cards
4469 under linux (with an accompanying dts change in place)
4470
4471 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4472 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4473
4474 commit a8b3e90f798e0cca5f11c912f9d0823a1c5b6c24
4475 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4476 Date: Sun Sep 20 20:36:01 2009 -0400
4477
4478 fsl_pci: create a SET_STD_PCI_INFO() helper wrapper
4479
4480 Recycle the recently added PCI-e wrapper used to reduce board
4481 duplication of code by creating a similar version for plain PCI.
4482
4483 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4484 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4485
4486 commit 11d5a629f8a40f9d7cffc74e58f4e3ed258e56ab
4487 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4488 Date: Sun Sep 20 20:36:04 2009 -0400
4489
4490 sbc8548: correct local bus SDRAM size from 64M to 128M
4491
4492 The size of the LB SDRAM on this board is 128MB, spanning CS3
4493 and CS4. It was previously only being configured for 64MB on
4494 CS3, since that was what the original codebase of the MPC8548CDS
4495 had. In addition to setting up BR4/OR4, this also adds the TLB
4496 entry for the second half of the SDRAM.
4497
4498 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4499 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4500
4501 commit 0c7e4d45d9fb3c9e503ee93d50572d346dae150e
4502 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4503 Date: Sun Sep 20 20:36:03 2009 -0400
4504
4505 sbc8548: use I/O accessors
4506
4507 Sweep throught the board specific file and replace the various
4508 register proddings with the equivalent I/O accessors.
4509
4510 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4511 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4512
4513 commit fc38eb98ff226f2c53eecbee033a6ab7619473dc
4514 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4515 Date: Sun Sep 20 20:36:02 2009 -0400
4516
4517 sbc8548: remove eTSEC3/4 voltage hack
4518
4519 With only eTSEC1 and 2 being brought out to RJ-45 connectors, we
4520 aren't interested in the eTSEC3/4 voltage hack on this board
4521
4522 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4523 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4524
4525 commit 9b3ba24f18900633a394416cc056c44a1a6eb754
4526 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4527 Date: Fri Sep 18 19:08:41 2009 -0400
4528
4529 sbc8548: enable access to second bank of flash
4530
4531 The sbc8548 has a 64MB SODIMM flash module off of CS6 that
4532 previously wasn't enumerated by u-boot. There were already
4533 BR6/OR6 settings for it [used by cpu_init_f()] but there
4534 was no TLB entry and it wasn't in the list of flash banks
4535 reported to u-boot.
4536
4537 The location of the 64MB flash is "pulled back" 8MB from
4538 a 64MB boundary, in order to allow address space for the
4539 8MB boot flash that is at the end of 32 bit address space.
4540 This means creating two 4MB TLB entries for the 8MB chunk,
4541 and then expanding the original boot flash entry to 64MB
4542 in order to cover the 8MB boot flash and the remainder
4543 (56MB) of the user flash.
4544
4545 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4546 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4547
4548 commit ded58f4153923dfff16d2f96495bd7acf1f7e10e
4549 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4550 Date: Wed Sep 23 17:30:57 2009 -0400
4551
4552 sbc8548: cosmetic line re-wrap
4553
4554 Fix the extra long lines to be consistent with u-boot coding style.
4555 No functional change here.
4556
4557 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4558
4559 commit 2c40acd3525b75db3fcd3f5a5bd40445679b5547
4560 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4561 Date: Fri Sep 18 19:08:40 2009 -0400
4562
4563 sbc8548: get_clock_freq is not valid for this board
4564
4565 The get_clock_freq() comes from freescale/common/cadmus.c and is
4566 only valid for the CDS based 85xx reference platforms. It would
4567 be nice if we could read the 33 vs. 66MHz status somehow, but in
4568 the meantime, tie it to CONFIG_SYS_CLK_FREQ like all the other
4569 non-CDS boards do.
4570
4571 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4572 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4573
4574 commit 7b1f1399e876587e0a268a5a471dd444bfbc3114
4575 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4576 Date: Fri Sep 18 19:08:39 2009 -0400
4577
4578 sbc8548: delete unused MPC8548CDS info carried over from port
4579
4580 There are a couple defines and PCI bridge quirks related to the PCI
4581 backplane of the MPC8548CDS that have no meaning in the context of
4582 the port to the sbc8548 board, so delete them.
4583
4584 Also, the form factor of the sbc8548 is a standalone board with a
4585 single PCI-X and a single PCI-e slot. That pretty much guarantees
4586 that it will never be a PCI agent itself, so the host/agent and root
4587 complex/end node distinctions have been removed.
4588
4589 Similarly, since there is no physical connector mapping to PCI2, so
4590 all references of PCI2 in the board support files have been removed
4591 as well.
4592
4593 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4594 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4595
4596 commit 94ca091456d5c3040ddd6351c80cf3e74393f9be
4597 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4598 Date: Fri Sep 18 19:08:44 2009 -0400
4599
4600 sbc8548: enable use of PCI network cards
4601
4602 Create a board_eth_init to allow a place to hook in
4603 the PCI ethernet init after all the eTSEC are up
4604 and configured.
4605
4606 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4607 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4608
4609 commit 82b7725b6d46d9ad2b962b4cdfa896bd5ee32fb5
4610 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
4611 Date: Sat Sep 19 17:50:17 2009 +0530
4612
4613 ppc/85xx: 32bit DDR changes for P1020/P1011
4614
4615 The P1020/P1011 SOCs support max 32bit DDR width as opposed to P2020/P2010
4616 where max DDR data width supported is 64bit.
4617
4618 As a next step the DDR data width initialization would be made more dynamic
4619 with more flexibility from the board perspective and user choice.
4620 Going forward we would also remove the hardcodings for platforms with onboard
4621 memories and try to use the FSL SPD code for DDR initialization.
4622
4623 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
4624 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4625
4626 commit bd42bbb858dde713f023fc2e4f512ec174a1a8d2
4627 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
4628 Date: Fri Sep 18 19:08:46 2009 -0400
4629
4630 sbc8548: replace README with completely new document
4631
4632 The previous README.sbc8548 was pretty much content-free. Replace
4633 it with something that actually gives the end user some relevant
4634 hardware details, and also lists the u-boot configuration choices.
4635
4636 Also in the cosmetic department, fix the bogus line in the Makefile
4637 that was carried over from the SBC8560 Makefile, and the typo in
4638 the sbc8548.c copyright.
4639
4640 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
4641 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4642
4643 commit 002741ae862c1c7e3dad89d020e392e6add1c05d
4644 Author: Kumar Gala <galak@kernel.crashing.org>
4645 Date: Sat Sep 19 11:20:54 2009 -0500
4646
4647 ppc/85xx: Clean up use of LAWAR defines
4648
4649 On 85xx platforms we shouldn't be using any LAWAR_* defines
4650 but using the LAW_* ones provided by fsl-law.h. Rename any such
4651 uses and limit the LAWAR_ to the 83xx platform as the only user so
4652 we will get compile errors in the future.
4653
4654 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4655
4656 commit f61dae7c9dc526410faec15ce352b11fc36a560b
4657 Author: Kumar Gala <galak@kernel.crashing.org>
4658 Date: Thu Sep 3 10:20:09 2009 -0500
4659
4660 ppc/85xx: Clean up mpc8572DS PCI setup code
4661
4662 Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4663 board ports, use IO accessors and clean up printing of status info.
4664
4665 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4666
4667 commit 4958af8735207640181c4423e41b24ee7418361a
4668 Author: Kumar Gala <galak@kernel.crashing.org>
4669 Date: Thu Sep 3 09:42:01 2009 -0500
4670
4671 ppc/85xx: Clean up p2020ds PCI setup code
4672
4673 Use new fsl_pci_init_port() that reduces amount of duplicated code in the
4674 board ports, use IO accessors and clean up printing of status info.
4675
4676 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4677
4678 commit 93a83872c707891bad22f7776d79a650c870601f
4679 Author: Kumar Gala <galak@kernel.crashing.org>
4680 Date: Thu Sep 3 10:09:04 2009 -0500
4681
4682 ppc/85xx: Clean up p1_p2_rdb PCI setup
4683
4684 General code cleanup to use in/out IO accessors as well as making
4685 the code that prints out info sane between board and generic fsl pci
4686 code.
4687
4688 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4689
4690 commit 62ca21c442e18fec118ec83e183d64ea49966ce7
4691 Author: Kumar Gala <galak@kernel.crashing.org>
4692 Date: Thu Sep 10 16:31:53 2009 -0500
4693
4694 ppc/85xx: Simplify the top makefile for P1_P2_RDB boards
4695
4696 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4697
4698 commit a0f9e0e0f06033807de0ae017ad4d9cf5ddff84b
4699 Author: Kumar Gala <galak@kernel.crashing.org>
4700 Date: Thu Sep 10 16:26:37 2009 -0500
4701
4702 ppc/85xx: Simplify the top makefile for 36-bit config for P2020DS
4703
4704 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4705
4706 commit f9edcc10e6cb497dd7dcbaf691cfd1859abae27a
4707 Author: Kumar Gala <galak@kernel.crashing.org>
4708 Date: Thu Sep 10 16:23:45 2009 -0500
4709
4710 ppc/85xx: Simplify the top makefile for 36-bit config for MPC8572DS
4711
4712 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4713
4714 commit 0e905ac28b1e039d74e63232293972bff6b5a0ce
4715 Author: Mingkai Hu <Mingkai.hu@freescale.com>
4716 Date: Fri Sep 18 11:45:09 2009 +0800
4717
4718 ppc/85xx: simplify the top makefile for 36-bit config for mpc8536ds
4719
4720 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
4721 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4722
4723 commit 202d94875c98b7b573f136c4f353609758ed9733
4724 Author: Kumar Gala <galak@kernel.crashing.org>
4725 Date: Tue Sep 15 22:21:58 2009 -0500
4726
4727 ppc/85xx: Fix LCRR_CLKDIV defines
4728
4729 For some reason the CLKDIV field varies between SoC in how it interprets
4730 the bit values.
4731
4732 All 83xx and early (e500v1) PQ3 devices support:
4733 clk/2: CLKDIV = 2
4734 clk/4: CLKDIV = 4
4735 clk/8: CLKDIV = 8
4736
4737 Newer PQ3 (e500v2) and MPC86xx support:
4738 clk/4: CLKDIV = 2
4739 clk/8: CLKDIV = 4
4740 clk/16: CLKDIV = 8
4741
4742 Ensure that the MPC86xx and MPC85xx still get the same behavior and make
4743 the defines reflect their logical view (not the value of the field).
4744
4745 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4746 Acked-by: Peter Tyser <ptyser@xes-inc.com>
4747
4748 commit 55f786d8ba8ce58a81428536da34a2192b9bad9f
4749 Author: Peter Tyser <ptyser@xes-inc.com>
4750 Date: Mon Sep 21 12:04:33 2009 -0500
4751
4752 MAKEALL: Use POSIX math
4753
4754 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4755
4756 commit 40a28f0885e62b6607e12ed6baa6284927f5263e
4757 Author: Peter Tyser <ptyser@xes-inc.com>
4758 Date: Mon Sep 21 12:04:32 2009 -0500
4759
4760 MAKEALL: Add summary information
4761
4762 This change adds some basic summary information to the MAKEALL script.
4763 The summary information includes how many boards were compiled, how many
4764 boards had compile warnings or errors, and which specific boards had
4765 compile warnings or errors.
4766
4767 This information is useful when doing compile testing to quickly
4768 determine which boards are broken.
4769
4770 As a side benefit, no empty $BOARD.ERR files are generated by MAKEALL.
4771 Previously, each board had a corresponding $BOARD.ERR file, even if the
4772 board compiled cleanly.
4773
4774 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4775
4776 commit 71ce9bd7f551e44c4ddb4c985c095da6d3452d79
4777 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
4778 Date: Mon Sep 21 11:05:55 2009 -0500
4779
4780 galaxy5200: enable version environment variable
4781
4782 Add version environment variable configuration to the galaxy5200
4783 board header file.
4784
4785 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
4786
4787 Edited commit message.
4788
4789 Signed-off-by: Wolfgang Denk <wd@denx.de>
4790
4791 commit c569ad6e1e8768a0fec513ffc156412240b7eb35
4792 Author: Werner Pfister <werner.pfister@intercontrol.de>
4793 Date: Mon Sep 21 14:49:56 2009 +0200
4794
4795 digsy_mtc: Add TCR register value for RTC (DS1339)
4796
4797 Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
4798 Signed-off-by: Detlev Zundel <dzu@denx.de>
4799
4800 commit b0078c8792badd81aed51b7eabe85e960036361c
4801 Author: Werner Pfister <werner.pfister@intercontrol.de>
4802 Date: Mon Sep 21 14:49:55 2009 +0200
4803
4804 rtc/ds1337.c: Allow to set TCR register
4805
4806 This is needed to correctly start the charging of an attached capacitor
4807 or battery.
4808
4809 Signed-off-by: Werner Pfister <werner.pfister@intercontrol.de>
4810 Signed-off-by: Detlev Zundel <dzu@denx.de>
4811
4812 commit 9d7952e4c636b8c99289a44dbe28c6f93c43b9f7
4813 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
4814 Date: Tue Sep 15 09:53:29 2009 +0200
4815
4816 ubifs: Add support for looking up directory and relative symlinks
4817
4818 This patch adds support for resolving symlinks to directories as well as
4819 relative symlinks. Symlinks are now always resolved during file lookup,
4820 so the load stage no longer needs to special-case them.
4821
4822 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
4823 Signed-off-by: Stefan Roese <sr@denx.de>
4824
4825 commit fcdb36b85ac033c09a9762a0a14808f7cb2ed54c
4826 Author: Rupjyoti Sarmah <rsarmah@amcc.com>
4827 Date: Mon Sep 21 11:26:19 2009 -0700
4828
4829 ppc4xx: Fix PCIE PLL lock on 440SPe Yucca board
4830
4831 u-boot reports a PCIE PLL lock error at boot time on Yucca board, and
4832 left PCIe nonfunctional. This is fixed by making u-boot function
4833 ppc4xx_init_pcie() to wait 300 uS after negating reset before the
4834 first check of the PLL lock.
4835
4836 Signed-off-by: Rupjyoti Sarmah <rsarmah@amcc.com>
4837 Signed-off-by: Stefan Roese <sr@denx.de>
4838
4839 commit 91d599044caac4a8c228115b16cf3b073f902080
4840 Author: Dirk Eibach <eibach@gdsys.de>
4841 Date: Mon Sep 21 13:27:14 2009 +0200
4842
4843 ppc4xx: Make DDR2 timing for intip more robust
4844
4845 DDR2 timing for intip was on the edge for some of the available chips
4846 for this board. Now it is verfied to work with all of them.
4847
4848 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
4849 Signed-off-by: Stefan Roese <sr@denx.de>
4850
4851 commit 184a3a27f5cd2c64666f74df94c86b94c4383ef8
4852 Author: Wolfgang Denk <wd@denx.de>
4853 Date: Tue Sep 15 00:26:02 2009 +0200
4854
4855 board/linkstation/ide.c: Fix compile warning
4856
4857 Fix warning: ide.c:60: warning: dereferencing type-punned pointer will
4858 break strict-aliasing rules
4859
4860 Signed-off-by: Wolfgang Denk <wd@denx.de>
4861 Cc: Guennadi Liakhovetski <lg@denx.de>
4862
4863 commit 004eca0c9ba328de457d5dc9ef8805639dfef893
4864 Author: Peter Tyser <ptyser@xes-inc.com>
4865 Date: Wed Sep 16 22:03:08 2009 -0500
4866
4867 ppc: Clean up calling of phy_reset() during init
4868
4869 Remove board-specific #ifdefs for calling phy_reset() during
4870 initializtion
4871
4872 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4873
4874 commit 3a8f28d0a6d9f8505017680233064c13e4587174
4875 Author: Peter Tyser <ptyser@xes-inc.com>
4876 Date: Wed Sep 16 22:03:07 2009 -0500
4877
4878 ppc: Clean up calling of misc_init_r() during init
4879
4880 Remove board-specific #ifdefs for calling misc_init_r() during
4881 initializtion
4882
4883 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4884 Acked-by: Heiko Schocher <hs@denx.de>
4885
4886 commit 3202d33169df04da5cf3dea8c5ab0a902b90ecaa
4887 Author: Peter Tyser <ptyser@xes-inc.com>
4888 Date: Wed Sep 16 21:38:10 2009 -0500
4889
4890 Remove deprecated 'autoscr' command/variables
4891
4892 The more standard 'source' command provides identical functionality to
4893 the autoscr command.
4894
4895 Environment variable names/values on the MVBC_P, MVBML7, kmeter1,
4896 mgcoge, and km8xx boards are updated to no longer refernce 'autoscr'.
4897
4898 The 'autoscript' and 'autoscript_uname' environment variables are
4899 also removed.
4900
4901 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4902 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
4903 Acked-by: Heiko Schocher <hs@denx.de>
4904
4905 commit d3f4941874a20d8a390a36ba71335ae1db2f9ba0
4906 Author: Paul Gibson <paul.gibson2074@gmail.com>
4907 Date: Wed Sep 16 10:05:00 2009 +1000
4908
4909 mpc512x. Micron nand flash needs a reset before a read command is issued.
4910
4911 Micron nand flash needs a reset before a read command is issued.
4912 The current mpc5121_nfc driver ignores the reset command.
4913
4914 commit b55ae40249545eabb9d6bfb850b1400a32561b1f
4915 Author: Marcel Ziswiler <marcel@ziswiler.com>
4916 Date: Wed Sep 9 21:18:41 2009 +0200
4917
4918 FDT: remove obsolete OF_CPU and OF_SOC macros.
4919
4920 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
4921 Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
4922 Acked-by: Heiko Schocher <hs@denx.de>
4923
4924 commit 3b6a9267f0de7b85d387fa4123d0b58379363447
4925 Author: Wolfgang Denk <wd@denx.de>
4926 Date: Tue Sep 15 00:09:21 2009 +0200
4927
4928 board/flagadm/flash.c: fix compile warning
4929
4930 Fix warning: flash.c:531: warning: dereferencing type-punned pointer
4931 will break strict-aliasing rules
4932
4933 Signed-off-by: Wolfgang Denk <wd@denx.de>
4934 Cc: Kári Davíðsson <kd@flaga.is>
4935
4936 commit 0413cfecea350000eab5e591a0965c3e3ee0ff00
4937 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
4938 Date: Thu Sep 17 15:15:52 2009 +0200
4939
4940 Correct ffs/fls regression for PowerPC etc
4941
4942 Commits
4943
4944 02f99901ed1c9d828e3ea117f94ce2264bf8389e
4945 52d61227b66d4099b39c8309ab37cb67ee09a405
4946
4947 introduced a regression where platform-specific ffs/fls implementations
4948 were defined away. This patch corrects that by using PLATFORM_xxx
4949 instead of the name itself.
4950
4951 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
4952 Acked-by: Kumar Gala <galak@kernel.crashing.org>
4953 Acked-by: Stefan Roese <sr@denx.de>
4954
4955 commit e67af44d0167d8237dd2c2ddf8e301d19ca12914
4956 Author: Stefan Roese <sr@denx.de>
4957 Date: Mon Sep 14 11:13:34 2009 +0200
4958
4959 ppc4xx: Consolidate get_OPB_freq()
4960
4961 All 4xx variants had their own, mostly identical get_OPB_freq()
4962 function. Some variants even only had the OPB frequency calculated
4963 in this routine and not supplied the sys_info.freqOPB variable
4964 correctly (e.g. 405EZ). This resulted in incorrect OPB values passed
4965 via the FDT to Linux.
4966
4967 This patch now removes all those copies and only uses one function
4968 for all 4xx variants (except for IOP480 which doesn't have an OPB).
4969
4970 Signed-off-by: Stefan Roese <sr@denx.de>
4971
4972 commit 84a45d33c2cc261dbd5411f7c2ad45f6003025b6
4973 Author: Stefan Roese <sr@denx.de>
4974 Date: Fri Sep 11 17:09:45 2009 +0200
4975
4976 ppc4xx: Enable commands for FDT enabled Linux booting on AMCC Acadia
4977
4978 Acadia still used the "old" arch/ppc bootm commands for booting
4979 Linux images without FDT. This patch now enables these fdt-aware
4980 boot commands for Acadia as well.
4981
4982 Signed-off-by: Stefan Roese <sr@denx.de>
4983
4984 commit 95a4a593b577b6e2f1da2d4b0f5ec86975c33413
4985 Author: Stefan Roese <sr@denx.de>
4986 Date: Fri Sep 11 17:07:55 2009 +0200
4987
4988 ppc4xx: Fix 405EZ uart base baud calculation
4989
4990 With this fix, Linux correctly configures the baudrate when booting
4991 with FDT passed from U-Boot to Linux.
4992
4993 Signed-off-by: Stefan Roese <sr@denx.de>
4994
4995 commit 15fba3279b56333bdb65ead366f82c945ed320d1
4996 Author: Kumar Gala <galak@kernel.crashing.org>
4997 Date: Fri Sep 11 15:28:41 2009 -0500
4998
4999 ppc/85xx: Disable all async interrupt sources when we boot
5000
5001 We should make sure to clear MSR[ME, CE, DE] when we boot an OS image
5002 since we have changed the exception vectors and the OSes vectors might
5003 not be setup we should avoid async interrupts at all costs.
5004
5005 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5006
5007 commit 9f00409a9d04cf533305531da32437130802f3a3
5008 Author: Kumar Gala <galak@kernel.crashing.org>
5009 Date: Fri Sep 11 13:52:45 2009 -0500
5010
5011 ppc/85xx: Split out cpu_init_early into its own file for NAND_SPL
5012
5013 By pulling out cpu_init_early we can build just it and not all of
5014 cpu_init for NAND_SPL.
5015
5016 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5017
5018 commit 0456dbf3475d0aec42873a967ac97ed81f376119
5019 Author: Kumar Gala <galak@kernel.crashing.org>
5020 Date: Fri Sep 11 13:41:49 2009 -0500
5021
5022 ppc/85xx: Change cpu_init_early_f so we can use with NAND SPL
5023
5024 Use write_tlb and don't use memset so we can use the same code for
5025 cpu_init_early_f between NAND SPL and not.
5026
5027 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5028
5029 commit 6e1385d5f8d137e741dfef02465d7dc328040ad7
5030 Author: Mingkai Hu <Mingkai.hu@freescale.com>
5031 Date: Fri Sep 11 10:53:08 2009 +0800
5032
5033 NAND boot: change NAND loader's relocate SP to CONFIG param
5034
5035 So that we can set the NAND loader's relocate stack pointer
5036 to the value other than the relocate address + 0x10000.
5037
5038 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
5039 Acked-by: Kim Phillips <kim.phillips@freescale.com>
5040 Acked-by: Scott Wood <scottwood@freescale.com>
5041 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5042
5043 commit 7da53351d817c6d77364cfde922891f37d0e5ed8
5044 Author: Mingkai Hu <Mingkai.hu@freescale.com>
5045 Date: Fri Sep 11 14:19:10 2009 +0800
5046
5047 ppc/85xx: add boot from NAND/eSDHC/eSPI support
5048
5049 The MPC8536E is capable of booting form NAND/eSDHC/eSPI, this patch
5050 implements these three bootup methods in a unified way - all of these
5051 use the general cpu/mpc85xx/start.S, and load the main image to L2SRAM
5052 which lets us use the SPD to initialize the SDRAM.
5053
5054 For all three bootup methods, the bootup process can be divided into two
5055 stages: the first stage will initialize the corresponding controller,
5056 configure the L2SRAM, then copy the second stage image to L2SRAM and
5057 jump to it. The second stage image is just like the general U-Boot image
5058 to configure all the hardware and boot up to U-Boot command line.
5059
5060 When boot from NAND, the eLBC controller will first load the first stage
5061 image to internal 4K RAM buffer because it's also stored on the NAND
5062 flash. The first stage image, also call 4K NAND loader, will initialize
5063 the L2SRAM, load the second stage image to L2SRAM and jump to it. The 4K
5064 NAND loader's code comes from the corresponding nand_spl directory, along
5065 with the code twisted by CONFIG_NAND_SPL.
5066
5067 When boot from eSDHC/eSPI, there's no such a first stage image because
5068 the CPU ROM code does the same work. It will initialize the L2SRAM
5069 according to the config addr/word pairs on the fixed address and
5070 initialize the eSDHC/eSPI controller, then load the second stage image
5071 to L2SRAM and jump to it.
5072
5073 The macro CONFIG_SYS_RAMBOOT is used to control the code to produce the
5074 second stage image for all different bootup methods. It's set in the
5075 board config file when one of the bootup methods above is selected.
5076
5077 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
5078 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5079
5080 commit b2eec281a811bb52941f61203d8fe35256b3582c
5081 Author: Kumar Gala <galak@kernel.crashing.org>
5082 Date: Fri Sep 11 12:32:01 2009 -0500
5083
5084 ppc/85xx: Move code around to prep for NAND_SPL
5085
5086 If we move some of the functions in tlb.c around we need less
5087 ifdefs. The first stage loader just needs invalidate_tlb and
5088 init_tlbs.
5089
5090 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5091
5092 commit 206af3527c05e520e28d38a48a1d15433e34675d
5093 Author: Kumar Gala <galak@kernel.crashing.org>
5094 Date: Fri Sep 11 11:30:30 2009 -0500
5095
5096 ppc/85xx: Repack tlb_table to save space
5097
5098 We can pack the initial tlb_table in MAS register format and use
5099 write_tlb to set things up. This savings can be helpful for NAND
5100 style first stage boot loaders.
5101
5102 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5103
5104 commit d30f9043539d372cf66406bc2f21bb8c20e67009
5105 Author: Kumar Gala <galak@kernel.crashing.org>
5106 Date: Fri Sep 11 11:27:00 2009 -0500
5107
5108 ppc/85xx: Introduce low level write_tlb function
5109
5110 Factor out the code we use to actually write a tlb entry.
5111
5112 set_tlb is a logical view of the TLB while write_tlb is a low level
5113 matching the MAS registers.
5114
5115 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5116
5117 commit 0ead6f2ed7cf4e1f70dab5b529ad121e38359485
5118 Author: Roy Zang <tie-fei.zang@freescale.com>
5119 Date: Thu Sep 10 14:44:48 2009 +0800
5120
5121 ppc/85xx: Enable usb ehci support for p2020ds board
5122
5123 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
5124 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5125
5126 commit 6d8565a1ed5acb01bad4a4cd74a93be5f7fb7f7c
5127 Author: Kumar Gala <galak@kernel.crashing.org>
5128 Date: Thu Sep 10 14:54:55 2009 -0500
5129
5130 ppc/8xxx: Misc DDR related fixes
5131
5132 * Fix setting of ESDMODE (MR1) register - the bit shifting was wrong
5133 * Fix the format string to match size in a debug print
5134
5135 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5136
5137 commit 3e3c9c157b89eab2dc2f897899b1b95cd70c1a58
5138 Author: Scott Wood <scottwood@freescale.com>
5139 Date: Thu Aug 20 17:45:00 2009 -0500
5140
5141 ppc/85xx: Remove some bogus code from external interrupt handler.
5142
5143 Skipping the interrupted instruction will accomplish nothing other
5144 than turning a spurious interrupt into a crash.
5145
5146 External interrupts are not machine checks, so don't count them as such.
5147
5148 Signed-off-by: Scott Wood <scottwood@freescale.com>
5149
5150 commit dcc87dd58db466caa2d66755c5ec9455edf42fe8
5151 Author: Scott Wood <scottwood@freescale.com>
5152 Date: Thu Aug 20 17:45:05 2009 -0500
5153
5154 ppc/85xx: Ensure that MAS8 is zero when writing TLB entries.
5155
5156 Its reset value is random, and we sometimes read uninitialized TLB
5157 arrays. Make sure that we don't retain MAS8 from reading such an entry
5158 if the VF bit in MAS8 is set, attempts to use the mapping will trap.
5159
5160 Signed-off-by: Scott Wood <scottwood@freescale.com>
5161
5162 commit 1b72dbecca2d7ad7a21c92d80227daa2d8ec5a57
5163 Author: Scott Wood <scottwood@freescale.com>
5164 Date: Thu Aug 20 17:44:20 2009 -0500
5165
5166 ppc/85xx: Don't enable interrupts before we're ready
5167
5168 We cannot handle any exceptions while running in AS1, as the exceptions
5169 will transition back to AS0 without a valid mapping.
5170
5171 Signed-off-by: Scott Wood <scottwood@freescale.com>
5172
5173 commit 3ca55bce9c8bf00df06a20487fafc16fa2f8084b
5174 Author: Marcel Ziswiler <marcel@ziswiler.com>
5175 Date: Fri Sep 11 07:50:33 2009 -0400
5176
5177 mpc8260: remove Ethernet node fixup to use generic FDT code.
5178
5179 Remove Ethernet node fixup from mgcoge and muas3001 boards and modify its
5180 configs for the common mpc8260 code to use generic Ethernet fixup.
5181
5182 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
5183 Tested-by: Heiko Schocher <hs@denx.de>
5184
5185 commit 1c20e4a9fbc531e2149ae061e8583f5fad82f163
5186 Author: Mike Frysinger <vapier@gentoo.org>
5187 Date: Wed Sep 9 12:20:21 2009 -0400
5188
5189 tools/netconsole: use ncb automatically if available
5190
5191 The standard netcat, while ubiquitous, doesn't handle broadcast udp packets
5192 properly. The local ncb util does however. So if ncb can be located in
5193 the standard locations, automatically use that instead.
5194
5195 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5196
5197 commit 770931805d292908a57a3d2c5f9a4fcde888b5a2
5198 Author: Mike Frysinger <vapier@gentoo.org>
5199 Date: Wed Sep 9 12:20:20 2009 -0400
5200
5201 tools/netconsole: make a bit more robust
5202
5203 The netcat utility likes to exit when it receives an empty packet (as it
5204 thinks this means EOF). This can easily occur when working with command
5205 line editing as this behavior will be triggered when using backspace. Or
5206 with tabs and command line completion. So create two netcat processes -
5207 one to only listen (and put it into a loop), and one to do the sending.
5208 Once the user quits the transmitting netcat, the listening one will be
5209 killed automatically.
5210
5211 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5212
5213 commit a6e19d69f63c14b7672c65ca4b014621c6fd0201
5214 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5215 Date: Mon Aug 24 09:10:16 2009 +0200
5216
5217 arm: Define test_and_set_bit and test_and_clear bit for ARM
5218
5219 Needed for (e.g.) ubifs support to work.
5220
5221 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5222
5223 commit 52d61227b66d4099b39c8309ab37cb67ee09a405
5224 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5225 Date: Mon Aug 24 09:10:12 2009 +0200
5226
5227 Define ffs/fls for all architectures
5228
5229 UBIFS requires fls(), which is not defined for arm (and some other
5230 architectures) and this patch adds it. The implementation is taken from
5231 Linux and is generic. ffs() is also defined for those that miss it.
5232
5233 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5234
5235 commit 4b15de08fe4d2c9d12a3764394731018a763216b
5236 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5237 Date: Mon Aug 24 09:10:03 2009 +0200
5238
5239 arm: Make arm bitops endianness-independent
5240
5241 Bring over the bitop implementations from the Linux
5242 include/asm-generic/bitops/non-atomic.h to provide
5243 endianness-independence.
5244
5245 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5246
5247 commit 02f99901ed1c9d828e3ea117f94ce2264bf8389e
5248 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
5249 Date: Mon Aug 24 09:09:50 2009 +0200
5250
5251 Move __set/clear_bit from ubifs.h to bitops.h
5252
5253 __set_bit and __clear_bit are defined in ubifs.h as well as in
5254 asm/include/bitops.h for some architectures. This patch moves
5255 the generic implementation to include/linux/bitops.h and uses
5256 that unless it's defined by the architecture.
5257
5258 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
5259
5260 commit 557555fe0b82940ba7cc69f81d31d6ef4d4933b4
5261 Author: Mike Frysinger <vapier@gentoo.org>
5262 Date: Fri Sep 4 19:54:45 2009 -0400
5263
5264 standalone: convert to kbuild style
5265
5266 Clean up the arch/cpu/board/config checks as well as redundant setting of
5267 srec/bin variables by using the kbuild VAR-$(...) style.
5268
5269 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5270
5271 commit 804d83a563c47b55e1f14f5de3b6e9d7e2a7ef5e
5272 Author: Wolfgang Denk <wd@denx.de>
5273 Date: Tue Sep 15 22:12:31 2009 +0200
5274
5275 mkconfig: split the board make target to multiple config targets
5276
5277 To simplify the top level makefile it useful to be able to parse
5278 the top level makefile target to multiple individual target, then
5279 put them to the config.h, leave the board config file to handle
5280 the different targets.
5281
5282 Note that this method uses the '_'(underline) as the delimiter when
5283 splits the board make target.
5284
5285 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
5286
5287 This also reverts commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f.
5288
5289 Signed-off-by: Wolfgang Denk <wd@denx.de>
5290
5291 commit ceb2d57c2205db5bbd868577f756c74a2568160c
5292 Author: Wolfgang Denk <wd@denx.de>
5293 Date: Tue Sep 15 21:13:27 2009 +0200
5294
5295 kwbimage.c: Fix compile warning when building on 64 bit systems (again)
5296
5297 Commit 51003b89 attempted to fix a build problem on 64 bit systems,
5298 but just turned it into a build problem on 32 bit systems (silly me).
5299
5300 Now do the Right Thing (TM) and use a "%zu" printf format.
5301
5302 Also fix spelling error.
5303
5304 Signed-off-by: Wolfgang Denk <wd@denx.de>
5305
5306 commit 6c7bc91fb3dba186d3398a1653f6db236510ffa7
5307 Author: Wolfgang Denk <wd@denx.de>
5308 Date: Fri Sep 11 11:30:34 2009 +0200
5309
5310 board/amcc/common/flash.c: Fix compile warning
5311
5312 Fix warning: ../common/flash.c:917: warning: dereferencing type-punned
5313 pointer will break strict-aliasing rules
5314
5315 Signed-off-by: Wolfgang Denk <wd@denx.de>
5316 Cc: Stefan Roese <sr@denx.de>
5317 Acked-by: Stefan Roese <sr@denx.de>
5318
5319 commit 70fb809c563c340538264d2a9436135e74c38bfe
5320 Author: Wolfgang Denk <wd@denx.de>
5321 Date: Fri Sep 11 11:47:07 2009 +0200
5322
5323 board/amcc/yucca/flash.c: Fix compile warning
5324
5325 Fix warning: flash.c:919: warning: dereferencing type-punned pointer
5326 will break strict-aliasing rules
5327
5328 Signed-off-by: Wolfgang Denk <wd@denx.de>
5329 Cc: Stefan Roese <sr@denx.de>
5330 Acked-by: Stefan Roese <sr@denx.de>
5331
5332 commit 030ec52f8cc83015f968db30208f4bd07feffa6c
5333 Author: Wolfgang Denk <wd@denx.de>
5334 Date: Fri Sep 11 11:44:39 2009 +0200
5335
5336 board/amcc/taihu/flash.c: Fix compile warning
5337
5338 Fix warnings:
5339 flash.c: In function 'write_word_1':
5340 flash.c:696: warning: dereferencing type-punned pointer will break strict-aliasing rules
5341 flash.c: In function 'write_word_2':
5342 flash.c:1044: warning: dereferencing type-punned pointer will break strict-aliasing rules
5343
5344 Signed-off-by: Wolfgang Denk <wd@denx.de>
5345 Cc: Stefan Roese <sr@denx.de>
5346 Acked-by: Stefan Roese <sr@denx.de>
5347
5348 commit 0fd3d902d920f3e60f88530c33f1ae7581260951
5349 Author: Wolfgang Denk <wd@denx.de>
5350 Date: Fri Sep 11 11:37:20 2009 +0200
5351
5352 board/etin/debris/phantom.c: Fix compile error
5353
5354 Fix build problem caused by commit e84aba13: "Replace BCD2BIN and
5355 BIN2BCD macros with inline functions"
5356
5357 phantom.c:163: error: redefinition of 'bcd2bin'
5358 /home/wd/git/u-boot/work/include/bcd.h:16: error: previous definition of 'bcd2bin' was here
5359 phantom.c:168: error: redefinition of 'bin2bcd'
5360 /home/wd/git/u-boot/work/include/bcd.h:21: error: previous definition of 'bin2bcd' was here
5361
5362 Signed-off-by: Wolfgang Denk <wd@denx.de>
5363 Cc: Sangmoon Kim <dogoil@etinsys.com>
5364
5365 commit 5168801f4b71c2f8dcd92a80cfcfda84246e67fe
5366 Author: Wolfgang Denk <wd@denx.de>
5367 Date: Fri Sep 11 11:28:21 2009 +0200
5368
5369 board/dave/common/flash.c: fix compile warning
5370
5371 Fix warning: ../common/flash.c:668: warning: dereferencing type-punned
5372 pointer will break strict-aliasing rules
5373
5374 Signed-off-by: Wolfgang Denk <wd@denx.de>
5375 Cc: Andrea Marson <andrea.marson@dave-tech.it>
5376
5377 commit 97138fc48091f2b063c4e32f36d05854b9d113fb
5378 Author: Wolfgang Denk <wd@denx.de>
5379 Date: Fri Sep 11 11:15:31 2009 +0200
5380
5381 board/esd/cpci750/ide.c: fix compile warning
5382
5383 Fix warning: ide.c:54: warning: dereferencing type-punned pointer will
5384 break strict-aliasing rules
5385
5386 Signed-off-by: Wolfgang Denk <wd@denx.de>
5387 Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5388 Cc: Stefan Roese <sr@denx.de>
5389 Acked-by: Stefan Roese <sr@denx.de>
5390
5391 commit ba73060cf4163bd5eb1711020126e2f7f62d363e
5392 Author: Wolfgang Denk <wd@denx.de>
5393 Date: Fri Sep 11 10:13:26 2009 +0200
5394
5395 board/esd/common/flash.c: Fix compile warning
5396
5397 Fix warning: ../common/flash.c:635: warning: dereferencing type-punned
5398 pointer will break strict-aliasing rules
5399
5400 Signed-off-by: Wolfgang Denk <wd@denx.de>
5401 Cc: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5402 Cc: Stefan Roese <sr@denx.de>
5403 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5404 Acked-by: Stefan Roese <sr@denx.de>
5405
5406 commit 2d6d9f0848e952ea33c658dfba335685a2725b8b
5407 Author: Wolfgang Denk <wd@denx.de>
5408 Date: Fri Sep 11 09:36:31 2009 +0200
5409
5410 sk98lin: fix compile warnings
5411
5412 Fix warnings:
5413 skge.c: In function 'BoardInitMem':
5414 skge.c:1389: warning: dereferencing type-punned pointer will break strict-aliasing rules
5415 skge.c:1390: warning: dereferencing type-punned pointer will break strict-aliasing rules
5416 skge.c:1391: warning: dereferencing type-punned pointer will break strict-aliasing rules
5417 skgesirq.c: In function 'SkGePortCheckUpXmac':
5418 skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
5419 skgesirq.c:1301: warning: dereferencing type-punned pointer will break strict-aliasing rules
5420 skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
5421 skgesirq.c:1398: warning: dereferencing type-punned pointer will break strict-aliasing rules
5422 skrlmt.c: In function 'SkRlmtInit':
5423 skrlmt.c:661: warning: dereferencing type-punned pointer will break strict-aliasing rules
5424 skxmac2.c: In function 'SkMacPromiscMode':
5425 skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
5426 skxmac2.c:753: warning: dereferencing type-punned pointer will break strict-aliasing rules
5427 skxmac2.c: In function 'SkMacHashing':
5428 skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
5429 skxmac2.c:803: warning: dereferencing type-punned pointer will break strict-aliasing rules
5430 skxmac2.c: In function 'SkMacFlushTxFifo':
5431 skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
5432 skxmac2.c:1115: warning: dereferencing type-punned pointer will break strict-aliasing rules
5433 skxmac2.c: In function 'SkMacFlushRxFifo':
5434 skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
5435 skxmac2.c:1145: warning: dereferencing type-punned pointer will break strict-aliasing rules
5436 skxmac2.c: In function 'SkXmInitPauseMd':
5437 skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
5438 skxmac2.c:1987: warning: dereferencing type-punned pointer will break strict-aliasing rules
5439 skxmac2.c: In function 'SkXmOverflowStatus':
5440 skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
5441 skxmac2.c:4236: warning: dereferencing type-punned pointer will break strict-aliasing rules
5442 skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
5443 skxmac2.c:4242: warning: dereferencing type-punned pointer will break strict-aliasing rules
5444
5445 Signed-off-by: Wolfgang Denk <wd@denx.de>
5446 Cc: Ben Warren <biggerbadderben@gmail.com>
5447
5448 commit 3708e4cdb1f1d3d5128cf87be040d7e6b85f60dd
5449 Author: Wolfgang Denk <wd@denx.de>
5450 Date: Fri Sep 11 09:13:58 2009 +0200
5451
5452 drivers/net/natsemi.c: fix compile warning
5453
5454 Fix warning: natsemi.c:757: warning: dereferencing type-punned pointer
5455 will break strict-aliasing rules
5456
5457 Signed-off-by: Wolfgang Denk <wd@denx.de>
5458 Cc: Ben Warren <biggerbadderben@gmail.com>
5459
5460 commit 78d19a398778a58d7b40b0c78e026515271b1a84
5461 Author: Michal Simek <monstr@monstr.eu>
5462 Date: Mon Sep 7 09:08:02 2009 +0200
5463
5464 net: emaclite: Cleanup license to be GPL compatible
5465
5466 Signed-off-by: Stephen Neuendorffer <stephen.neuendorffer@xilinx.com>
5467 Signed-off-by: Michal Simek <monstr@monstr.eu>
5468
5469 commit 0900bee9ab9818439b2d1298fa8909a88f74ec0d
5470 Author: Michal Simek <monstr@monstr.eu>
5471 Date: Fri Aug 14 13:41:17 2009 +0200
5472
5473 microblaze: Enable hush parser
5474
5475 With Hush parser is possible to change command line in dtb
5476
5477 Signed-off-by: Michal Simek <monstr@monstr.eu>
5478
5479 commit 13916abf996b127b681ddc26664c236ded28ba7f
5480 Author: Michal Simek <monstr@monstr.eu>
5481 Date: Thu Aug 20 22:44:02 2009 +0200
5482
5483 microblaze: Remove AtmarkTechno Suzaku board
5484
5485 Users should use microblaze-generic platform.
5486 This platform is longer not supported.
5487
5488 Signed-off-by: Michal Simek <monstr@monstr.eu>
5489
5490 commit 3ceba1d45d007144d10368f91ff9e36f3b5f39a1
5491 Author: Michal Simek <monstr@monstr.eu>
5492 Date: Thu Aug 20 22:36:20 2009 +0200
5493
5494 net: Remove old Xilinx Emac driver
5495
5496 Signed-off-by: Michal Simek <monstr@monstr.eu>
5497
5498 commit 2fddd44464d02e0f3ade06dabe0e165835fa61f0
5499 Author: Michal Simek <monstr@monstr.eu>
5500 Date: Wed Aug 19 08:10:08 2009 +0200
5501
5502 microblaze: Short size of global data and fix malloc size
5503
5504 If is full malloc area global, data are rewrite because
5505 there was bad size of malloc area.
5506
5507 Signed-off-by: Michal Simek <monstr@monstr.eu>
5508
5509 commit aedb4683097d3e5de8833f4a9e34664d3d2bd077
5510 Author: Michal Simek <monstr@monstr.eu>
5511 Date: Fri Aug 14 17:02:35 2009 +0200
5512
5513 microblaze: Add sbss, scommon and COMMON symbols for clearing
5514
5515 Signed-off-by: Michal Simek <monstr@monstr.eu>
5516
5517 commit 4c1883670acbf1cc83c04df1876235c3aedde128
5518 Author: Dirk Eibach <eibach@gdsys.de>
5519 Date: Wed Sep 9 12:36:07 2009 +0200
5520
5521 ppc4xx: Rename compactcenter to intip
5522
5523 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
5524 Signed-off-by: Stefan Roese <sr@denx.de>
5525
5526 commit d1c3b27525b664e8c4db6bb173eed51bfc8220de
5527 Author: Stefan Roese <sr@denx.de>
5528 Date: Wed Sep 9 16:25:29 2009 +0200
5529
5530 ppc4xx: Big cleanup of PPC4xx defines
5531
5532 This patch cleans up multiple issues of the 4xx register (mostly
5533 DCR, SDR, CPR, etc) definitions:
5534
5535 - Change lower case defines to upper case (plb4_acr -> PLB4_ACR)
5536 - Change the defines to better match the names from the
5537 user's manuals (e.g. cprpllc -> CPR0_PLLC)
5538 - Removal of some unused defines
5539
5540 Please test this patch intensive on your PPC4xx platform. Even though
5541 I tried not to break anything and tested successfully on multiple
5542 4xx AMCC platforms, testing on custom platforms is recommended.
5543
5544 Signed-off-by: Stefan Roese <sr@denx.de>
5545
5546 commit d8d8724be06df43772162dc344ae20dfa814dc72
5547 Author: Wolfgang Denk <wd@denx.de>
5548 Date: Fri Sep 11 09:05:32 2009 +0200
5549
5550 net/bootp.c: fix compile warning
5551
5552 Fix warning: bootp.c:695: warning: dereferencing type-punned pointer
5553 will break strict-aliasing rules
5554
5555 Signed-off-by: Wolfgang Denk <wd@denx.de>
5556 Cc: Ben Warren <biggerbadderben@gmail.com>
5557
5558 commit 51003b89816848cbe86a8fe48f970ba8b14005f5
5559 Author: Wolfgang Denk <wd@denx.de>
5560 Date: Fri Sep 11 08:58:11 2009 +0200
5561
5562 kwbimage.c: Fix compile warning when building on 64 bit systems
5563
5564 Fix this warning when building on 64 bit systems:
5565 tools/kwbimage.c: In function 'kwbimage_checksum32':
5566 tools/kwbimage.c:135: warning: format '%d' expects type 'int',
5567 but argument 4 has type 'long unsigned int'
5568
5569 Signed-off-by: Wolfgang Denk <wd@denx.de>
5570 Cc: Prafulla Wadaskar <prafulla@marvell.com>
5571
5572 commit e7963772eb78a6aa1fa65063d64eab3a8626daac
5573 Author: Marcel Ziswiler <marcel@ziswiler.com>
5574 Date: Wed Sep 9 21:11:18 2009 +0200
5575
5576 muas3001: remove BRG clock node fixup to use common mpc8260 code.
5577
5578 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
5579 Acked-by: Heiko Schocher <hs@denx.de>
5580
5581 commit c7c1dbbf7159b38f3302b845dd97d28a543ff91b
5582 Author: Marcel Ziswiler <marcel@ziswiler.com>
5583 Date: Wed Sep 9 21:09:00 2009 +0200
5584
5585 r7780mp: fix typo in Ethernet chip model number comment.
5586
5587 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
5588
5589 commit 45f89f340b4d8aa099fd022260dcb13cf3321b61
5590 Author: Marcel Ziswiler <marcel@ziswiler.com>
5591 Date: Wed Sep 9 21:22:08 2009 +0200
5592
5593 ep8248: add support for device tree and secondary Ethernet interface.
5594
5595 Signed-off-by: Marcel Ziswiler <marcel.ziswiler@noser.com>
5596
5597 commit aa0c7a86cd236b8193218a09e1365c8991bb5ddc
5598 Author: Prafulla Wadaskar <prafulla@marvell.com>
5599 Date: Mon Sep 7 15:05:02 2009 +0530
5600
5601 mkimage: Add Kirkwood Boot Image support (kwbimage)
5602
5603 This patch adds support for "kwbimage" (Kirkwood Boot Image)
5604 image types to the mkimage code.
5605
5606 For details refer to docs/README.kwbimage
5607
5608 This patch is tested with Sheevaplug board
5609
5610 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5611 Acked-by: Ron Lee <ron@debian.org>
5612
5613 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5614
5615 commit 7809fbb9aafd60e3a6e5dfe456ae30b93ac61338
5616 Author: Prafulla Wadaskar <prafulla@marvell.com>
5617 Date: Mon Sep 7 14:59:09 2009 +0530
5618
5619 Kirkwood: Sheevaplug: Add kwimage configuration file
5620
5621 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5622
5623 commit b029dddc9ae958b1ccf875649f52c6db396a742d
5624 Author: Prafulla Wadaskar <prafulla@marvell.com>
5625 Date: Mon Sep 7 14:59:08 2009 +0530
5626
5627 mkimage: Make table_entry code global
5628
5629 - make get_table_entry_id() global
5630 - make get_table_entry_name() global
5631 - move struct table_entry to image.h
5632
5633 Currently this code is used by image.c only.
5634
5635 This patch makes this API global so it can be used by other parts of
5636 code, too.
5637
5638 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5639 Acked-by: Ron Lee <ron.debian.org>
5640
5641 Edit comments and commit message.
5642
5643 Signed-off-by: Wolfgang Denk <wd@denx.de>
5644
5645 commit f666dea8ab215c76c3c2a077ad299f90dd1ace7c
5646 Author: Prafulla Wadaskar <prafulla@marvell.com>
5647 Date: Mon Sep 7 14:59:07 2009 +0530
5648
5649 mkimage: Make genimg_print_size() global
5650
5651 Currently it is used by image.c only, but the the function can be
5652 used to support additional mkimage types like for example kwbimage,
5653 so make this function globally visible.
5654
5655 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5656
5657 Edited commit message.
5658
5659 Signed-off-by: Wolfgang Denk <wd@denx.de>
5660
5661 commit 37b801888cf73b18f78c1109140ff44e3e37914f
5662 Author: Prafulla Wadaskar <prafulla@marvell.com>
5663 Date: Mon Sep 7 14:59:06 2009 +0530
5664
5665 mkimage: Include missing files in build dependency calculations
5666
5667 Include default_image.o and fit_image.o into the build dependency
5668 calculations. This makes sure they get rebuilt if any of the headers
5669 they include are modified
5670
5671 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5672 Acked-by: Ron Lee <ron@debian.org>
5673
5674 Edited commit message.
5675
5676 Signed-off-by: Wolfgang Denk <wd@denx.de>
5677
5678 commit 3a2003f61ee79ac53d20c24cc896c2637a2dfc24
5679 Author: Wolfgang Denk <wd@denx.de>
5680 Date: Wed Aug 19 11:42:56 2009 +0200
5681
5682 tools/mkimage: fix compiler warnings, use "const"
5683
5684 This fixes some compiler warnings:
5685 tools/default_image.c:141: warning: initialization from incompatible pointer type
5686 tools/fit_image.c:202: warning: initialization from incompatible pointer type
5687 and changes to code to use "const" attributes in a few places where
5688 it's appropriate.
5689
5690 Signed-off-by: Wolfgang Denk <wd@denx.de>
5691
5692 commit 89a4d6b12fd6394898b8a454cbabeaf1cd59bae5
5693 Author: Prafulla Wadaskar <prafulla@marvell.com>
5694 Date: Wed Aug 19 17:36:46 2009 +0530
5695
5696 tools: mkimage: split code into core, default and FIT image specific
5697
5698 This is a first step towards reorganizing the mkimage code to make it
5699 easier to add support for additional images types. Current mkimage
5700 code is specific to generating uImage and FIT image files, but the
5701 same framework can be used to generate other image types like
5702 Kirkwood boot images (kwbimage-TBD). For this, the mkimage code gets
5703 reworked:
5704
5705 Here is the brief plan for the same:-
5706 a) Split mkimage code into core and image specific support
5707 b) Implement callback functions for image specific code
5708 c) Move image type specific code to respective C files
5709 Currently there are two types of file generation/list
5710 supported (i.e uImage, FIT), the code is abstracted from
5711 mkimage.c/.h and put in default_image.c and fit_image.c;
5712 all code in these file is static except init function call
5713 d) mkimage_register API is added to add new image type support
5714 All above is addressed in this patch
5715 e) Add kwbimage type support to this new framework (TBD)
5716 This will be implemented in a following commit.
5717
5718 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5719 Edit commit message, fix coding style and typos.
5720 Signed-off-by: Wolfgang Denk <wd@denx.de>
5721
5722 commit 449609f5b11cce6beba7338bc4ce0f3345376a0b
5723 Author: Prafulla Wadaskar <prafulla@marvell.com>
5724 Date: Sun Aug 16 05:28:19 2009 +0530
5725
5726 tools: mkimage: Fixed build warnings
5727
5728 uninitialized retval variable warning fixed
5729 crc32 APIs moved to crc.h (newly added) and build warnings fixed
5730
5731 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5732 Signed-off-by: Wolfgang Denk <wd@denx.de>
5733
5734 commit 14821d7dea8d7209f2457c3179fa6551c088ba71
5735 Author: Prafulla Wadaskar <prafulla@marvell.com>
5736 Date: Mon Aug 10 20:44:06 2009 +0530
5737
5738 tools: mkimage: Makefile sorted
5739
5740 The tools/Makefile is sorted for all entries,
5741
5742 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5743
5744 commit f7644c0bf3502529031657a869fa213cda5a2424
5745 Author: Prafulla Wadaskar <prafulla@marvell.com>
5746 Date: Mon Aug 10 18:49:37 2009 +0530
5747
5748 tools: mkimage : bugfix returns correct value for list command
5749
5750 List command always return "EXIT_SUCCESS" even in case of
5751 failure by any means.
5752
5753 This patch return 0 if list command is sucessful,
5754 returns negative value reported by check_header functions
5755
5756 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
5757 Signed-off-by: Wolfgang Denk <wd@denx.de>
5758
5759 commit 511c02f611cb5afa1b8ca5980caaaabaa0de377f
5760 Author: Mingkai Hu <Mingkai.hu@freescale.com>
5761 Date: Tue Sep 8 15:07:12 2009 +0800
5762
5763 mkconfig: pass the board name to board config file
5764
5765 Then we can handle different config targets in the board file, which
5766 simplifies the top level Makefile for boards that have multiple
5767 config targets.
5768
5769 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
5770
5771 commit d640ac58dbf61c769864b3fe76314306b7336cf1
5772 Author: Wolfgang Denk <wd@denx.de>
5773 Date: Mon Sep 7 23:52:31 2009 +0200
5774
5775 Remove "atmel_df_pow2" binary with "make clean"
5776
5777 Commit 65f6f07b added support for the atmel_df_pow2 standalone program
5778 but missed to add a rule to remove it to the "clean" make target.
5779
5780 Signed-off-by: Wolfgang Denk <wd@denx.de>
5781
5782 commit 0b34dbbd0b6969c98c44313b291836d9056ec40a
5783 Author: Stefan Roese <sr@denx.de>
5784 Date: Mon Sep 7 10:52:24 2009 +0200
5785
5786 ppc4xx: Fix compilation warning in 4xx miiphy.c
5787
5788 This patch fixes the following compilation warning:
5789
5790 miiphy.c: In function 'emac4xx_miiphy_read':
5791 miiphy.c:353: warning: dereferencing type-punned pointer will break
5792 strict-aliasing rules
5793
5794 Signed-off-by: Stefan Roese <sr@denx.de>
5795
5796 commit 82379b5564819e62624a3c58fbc43f1afedf4f5f
5797 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5798 Date: Mon Sep 7 17:00:41 2009 +0200
5799
5800 ppc4xx: Add CONFIG_PCI_4xx_PTM_OVERWRITE to some esd 4xx boards
5801
5802 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5803 Signed-off-by: Stefan Roese <sr@denx.de>
5804
5805 commit 99bcf14d553f399148a7660b98f7acbd8cc72d80
5806 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5807 Date: Mon Sep 7 17:00:40 2009 +0200
5808
5809 ppc4xx: Allow overwriting pci target registers for all 4xx boards
5810
5811 This patch adds the CONFIG_PCI_4xx_PTM_OVERWRITE option and replaces
5812 the ugly 'if defined(BOARD1) || ... || defined(BOARDn)' construct
5813 in 4xx pci code.
5814
5815 When CONFIG_PCI_4xx_PTM_OVERWRITE is defined the default ptm register
5816 setup can be overwritten through environment variables ptm1la, ptm1ms,
5817 ptm2la and ptm2ms to do application specific pci target BAR configuration.
5818
5819 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5820 Signed-off-by: Stefan Roese <sr@denx.de>
5821
5822 commit cfab2ae322a99ad55364d054054f138f51130c2a
5823 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
5824 Date: Fri Sep 4 10:37:04 2009 +0200
5825
5826 ppc4xx: Fix PMC405DE support
5827
5828 This patch fixes PMC405DE support. Patch 85d6bf0b fixed out-of-tree
5829 building for this board but the loadpci object did not get linked
5830 after that.
5831
5832 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
5833 Signed-off-by: Stefan Roese <sr@denx.de>
5834
5835 commit c8355b9d9f778bd12ee19c8f34d88e13758a4efd
5836 Author: Detlev Zundel <dzu@denx.de>
5837 Date: Wed Sep 2 17:24:57 2009 +0200
5838
5839 amcc-common.h: Use filenames from environment variables for update procedure.
5840
5841 Using a separate "u-boot" environment variable allows to easily
5842 specify different filenames for the update procedure. This is also in
5843 line with many other board configurations defining an "update" script.
5844
5845 Signed-off-by: Detlev Zundel <dzu@denx.de>
5846 Acked-by: Wolfgang Denk <wd@denx.de>
5847 Signed-off-by: Stefan Roese <sr@denx.de>
5848
5849 commit 6c97a20d0b2f56cb4f3745d94b1f96986e8cced5
5850 Author: Kumar Gala <galak@kernel.crashing.org>
5851 Date: Wed Sep 9 11:40:41 2009 -0500
5852
5853 ppc/85xx: Introduce RESET_VECTOR_ADDRESS to handle non-standard link address
5854
5855 Some board ports place TEXT_BASE at a location that would cause the
5856 RESET_VECTOR_ADDRESS not to be at 0xfffffffc when we link. By default
5857 we assume RESET_VECTOR_ADDRESS will be 0xfffffffc if the board doesn't
5858 explicitly set it.
5859
5860 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5861 Acked-by: Wolfgang Denk <wd@denx.de>
5862
5863 commit c348322ac7f76318295cf25ffab2cc2a4900a234
5864 Author: Kumar Gala <galak@kernel.crashing.org>
5865 Date: Tue Sep 8 13:46:46 2009 -0500
5866
5867 ppc/85xx: Clean up do_reset
5868
5869 There is no reason to do a run time check for e500 v1 based cores to
5870 determine if we have the GUTs RSTCR facility. Only the first generation
5871 of PQ3 parts (MPC8540/41/55/60) do not have it. So checking to see if
5872 we are e500 v2 would miss future parts (like e500mc).
5873
5874 Just change this to be ifdef'd based on CONFIG_MPC85{40,41,55,60}.
5875
5876 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5877
5878 commit 21170c80a83f1e60ce7f6f83005e06a5c2d15a8e
5879 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5880 Date: Thu Sep 3 19:42:40 2009 +0530
5881
5882 ppc/85xx/86xx: Bug fix: call to puts in probecpu() moved to checkcpu().
5883
5884 While in probecpu() UART is still not initialized.
5885
5886 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5887 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5888
5889 commit f8027f6b4789e3340f10620d8fb6113b95b88d9c
5890 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5891 Date: Wed Sep 2 19:40:36 2009 +0530
5892
5893 ppc/85xx/86xx: Device tree fixup for number of cores
5894
5895 Fixing the number of cores in the device tree based on the actual number of
5896 cores on the system. With this same device tree image can be used for dual
5897 core and single core members of otherwise exactly same SOC.
5898
5899 For example:
5900 * P2020RDB and P2010RDB
5901 * P1020RDB and P1011RDB
5902 * MPC8641D and MPC8641
5903
5904 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5905 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5906
5907 commit 58442dc01e47cc8ce42af4f29486a34cad60b9d2
5908 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5909 Date: Wed Sep 2 13:35:21 2009 +0530
5910
5911 ppc/85xx,86xx: Handling Unknown SOC version
5912
5913 Incase the system is detected with Unknown SVR, let the system boot
5914 with a default value and a proper message.
5915
5916 Now with dynamic detection of SOC properties from SVR, this is necessary
5917 to prevent a crash.
5918
5919 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
5920 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5921
5922 commit 3e7b6c1f2db5ec31f9e7dbc3e0cbca602167a46a
5923 Author: Kumar Gala <galak@kernel.crashing.org>
5924 Date: Wed Sep 2 09:03:08 2009 -0500
5925
5926 ppc/8xxx: Refactor code to determine if PCI is enabled & agent/host
5927
5928 Refactor the code into a simple bitmask lookup table that determines if
5929 a given PCI controller is enabled and if its in host/root-complex or
5930 agent/end-point mode.
5931
5932 Each processor in the PQ3/MPC86xx family specified different encodings
5933 for the cfg_host_agt[] and cfg_IO_ports[] boot strapping signals.
5934
5935 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5936
5937 commit 5052a771cf1722c37c732f3c340775b55fbe3a22
5938 Author: Kumar Gala <galak@kernel.crashing.org>
5939 Date: Wed Sep 2 09:00:50 2009 -0500
5940
5941 ppc/85xx: Cleanup makefile and related optional files
5942
5943 Cleaned up cpu/mpc85xx/Makefile to use CONFIG_* for those obvious cases
5944 we have like PCI, CPM2, QE. Also reworked it to use one line per file
5945 for everything and sorted in alphabetical order.
5946
5947 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5948
5949 commit 74c5dfd81f94a2a1f0d6990d17c491d718e8b9ea
5950 Author: Timur Tabi <timur@freescale.com>
5951 Date: Fri Sep 4 17:05:24 2009 -0500
5952
5953 fsl: add register read-back to set_law()
5954
5955 After programming a new LAW, we should read-back the LAWAR register so that
5956 we sync the writes. Otherwise, code that attempts to use the new LAW-mapped
5957 memory might fail right away.
5958
5959 Signed-off-by: Timur Tabi <timur@freescale.com>
5960 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5961
5962 commit c7259086816405fe0eb77f4dc22e76980a040cef
5963 Author: Kumar Gala <galak@kernel.crashing.org>
5964 Date: Thu Sep 3 08:41:31 2009 -0500
5965
5966 ppc/85xx: Fix bug in setup_mp code
5967
5968 Its possible that we try and copy the boot page code out of flash into a
5969 DDR location that doesn't have a TLB cover it. For example, if we have
5970 3G of DDR we typically only map the first 2G. In the cases of 4G+ this
5971 wasn't an issue since the reset page TLB mapping covered the last page
5972 of memory which we wanted to copy to.
5973
5974 We now change the physical address of the reset page TLB to map to the
5975 true physical location of the boot page code, copy and than set the
5976 TLB back to its 1:1 mapping of the reset page.
5977
5978 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5979
5980 commit c2287af1552bd630956568d3957c370f86801b7d
5981 Author: Kumar Gala <galak@kernel.crashing.org>
5982 Date: Thu Sep 3 08:20:24 2009 -0500
5983
5984 ppc/85xx: Add a simple function to search the TLB
5985
5986 Allow us to search the TLB array based on an address. This is useful
5987 if we want to change an entry but dont know where it happens to be
5988 located.
5989
5990 For example, the boot page mapping we use on MP or the flash TLB that
5991 we change the WIMGE settings for after we've relocated.
5992
5993 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5994
5995 commit 26f4cdba6b51deab4ec99d60be381244068ef950
5996 Author: Kumar Gala <galak@kernel.crashing.org>
5997 Date: Fri Aug 14 13:37:54 2009 -0500
5998
5999 85xx: Add support for setting IVORs to fixed offset defaults
6000
6001 In future Book-E implementations IVORs will most likely go away and be
6002 replaced with fixed offsets. The IVPR will continue to exist to allow
6003 for relocation of the interrupt vectors.
6004
6005 This code adds support to setup the IVORs as their fixed offset values
6006 per the ISA 2.06 spec when we transition from u-boot to another OS
6007 either via 'bootm' or a cpu release.
6008
6009 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6010
6011 commit da1cd955dfec35b0e15381ad1ee248fa194eed82
6012 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
6013 Date: Wed Sep 2 11:25:08 2009 +0530
6014
6015 ppc/85xx: Fix up eSDHC controller clock frequency in the device tree
6016
6017 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
6018 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6019
6020 commit 2abbd31da6d900473ed678ca50789ee58bc9bb00
6021 Author: Kumar Gala <galak@kernel.crashing.org>
6022 Date: Tue Sep 1 22:01:54 2009 -0500
6023
6024 ppc/8xxx: Remove ddr_pd_cntl register since it doesn't exist
6025
6026 The ddr_pd_cntl isn't defined in any reference manual and thus we wil
6027 remove especially since we set it to 0, which would most likely be its
6028 POR value.
6029
6030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6031
6032 commit 13d46ab2572c0283d34f93bebc9a41295ef84ca5
6033 Author: Kumar Gala <galak@kernel.crashing.org>
6034 Date: Tue Sep 1 21:07:08 2009 -0500
6035
6036 ppc/8xxx: relocate cpu pointer in global data
6037
6038 Now that we have a pointer to the cpu struct we need to relocate it once
6039 we get into ram.
6040
6041 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6042
6043 commit 9c671e7062720074f894ee329eaa6995b0823727
6044 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6045 Date: Wed Sep 2 02:17:24 2009 +0400
6046
6047 fsl: sys_eeprom: Fix 'may be used uninitialized' warning
6048
6049 The warning is bogus, so silence it by initializing the 'ret' variable.
6050
6051 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6052 Acked-by: Timur Tabi <timur@freescale.com>
6053 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6054
6055 commit 6b9ea08c5010eab5ad1056bc9bf033afb672d9cc
6056 Author: Dipen Dudhat <dipen.dudhat@freescale.com>
6057 Date: Tue Sep 1 17:27:00 2009 +0530
6058
6059 ppc/85xx: Use CONFIG_FSL_ESDHC to enable sdhc clk
6060
6061 Enable eSDHC Clock based on generic CONFIG_FSL_ESDHC define instead of a
6062 platform define. This will enable all the 85xx platforms to use sdhc_clk
6063 based on CONFIG_FSL_ESDHC.
6064
6065 Signed-off-by: Gao Guanhua <B22826@freescale.com>
6066 Signed-off-by: Dipen Dudhat <dipen.dudhat@freescale.com>
6067 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6068
6069 commit 92477a631bbda2dc0dd2194e03f9bd3ddb8b9c21
6070 Author: Timur Tabi <timur@freescale.com>
6071 Date: Fri Sep 4 16:28:35 2009 -0500
6072
6073 fsl_i2c: increase I2C timeout values and make them configurable
6074
6075 The value of I2C_TIMEOUT in fsl_i2c.c has several problems. First, it is
6076 defined as CONFIG_HZ/4, but it is used as a count of microseconds, so it makes
6077 no sense to derive it from a clock rate. Second, the current value (250) is
6078 too low for some boards, so it needs to be increased. Third, the timeout
6079 necessary for multiple-master arbitration is larger than the timeout for basic
6080 read/write operations, so we shouldn't have a single constant for both timeouts.
6081 Finally, it would be nice if we could override these values on a per-board
6082 basis.
6083
6084 Signed-off-by: Timur Tabi <timur@freescale.com>
6085 Acked-by: Wolfgang Denk <wd@denx.de>
6086 Tested-by: Peter Tyser <ptyser@xes-inc.com>
6087 Acked-by: Peter Tyser <ptyser@xes-inc.com>
6088
6089 commit 5da71efa18e8b4eac9afd8bfa13e3c7e7ddde1d0
6090 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
6091 Date: Thu Sep 3 08:09:44 2009 -0500
6092
6093 Reset i2c slave devices during init on mpc5xxx cpus
6094
6095 Reset any i2c devices that may have been interrupted during a system reset.
6096 Normally this would be accomplished by clocking the line until SCL and SDA
6097 are released and then sending a start condtiion (From an Atmel datasheet).
6098 There is no direct access to the i2c pins so instead create start commands
6099 through the i2c interface. Send a start command then delay for the SDA Hold
6100 time, repeat this by disabling/enabling the bus a total of 9 times.
6101
6102 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
6103
6104 commit 2d4072c06b5549444e4140231bba3d47d9b0bc53
6105 Author: Sandeep Paulraj <s-paulraj@ti.com>
6106 Date: Sat Aug 15 11:20:58 2009 -0400
6107
6108 ARM: DaVinci: Adding Support for DaVinci DM365 EVM
6109
6110 This patch adds support for the DM365 EVM.
6111 It has been tested on a DM365 EVM.
6112
6113 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6114
6115 commit cf463091bce8b0f8951dd08f94754d08d64793b8
6116 Author: Sandeep Paulraj <s-paulraj@ti.com>
6117 Date: Sat Aug 15 11:20:44 2009 -0400
6118
6119 ARM: DaVinci: DaVinci DM365 SOC specific code
6120
6121 This patch adds support for DaVinci DM365 SOC.
6122
6123 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
6124
6125 commit e830b66b3592f115316600d370399f3ee148e909
6126 Author: Ilko Iliev <iliev@ronetix.at>
6127 Date: Sat Sep 5 02:51:34 2009 +0200
6128
6129 DM9000 init for pm9261
6130
6131 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
6132
6133 commit c35d7cf071f171bd6bba69f1563a6ac578a18ea6
6134 Author: Frederik Kriewitz <frederik@kriewitz.eu>
6135 Date: Sun Aug 23 12:56:42 2009 +0200
6136
6137 Add support for the DevKit8000 board
6138
6139 This patch adds support for the DevKit8000 board.
6140
6141 Signed-off-by: Frederik Kriewitz <frederik@kriewitz.eu>
6142
6143 commit 127f9ae575991aee3e105e1448c49b5b4e254998
6144 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6145 Date: Sun Aug 23 16:32:40 2009 +0200
6146
6147 omap3: move the other boards to board/
6148
6149 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6150
6151 commit 350f3ac5731faf0f02ca55ab016694b7c7269f97
6152 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6153 Date: Sun Aug 23 16:32:39 2009 +0200
6154
6155 arm: move Logicpd's boards to board/logicpd/
6156
6157 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6158
6159 commit 0a0e4bad9693ef1d2ca8c33ba551d395a4e3d641
6160 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6161 Date: Sun Aug 23 16:32:38 2009 +0200
6162
6163 omap: move TI's boards to board/ti/
6164
6165 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6166
6167 commit 9f23ca42b3ba19b24e66fade572f2b86d929b6e8
6168 Author: Wolfgang Denk <wd@denx.de>
6169 Date: Fri Sep 4 23:20:29 2009 +0200
6170
6171 ARM: Update mach-types
6172
6173 Signed-off-by: Wolfgang Denk <wd@denx.de>
6174
6175 commit 262ae0a6193f10b6a94e86d2f752e7f5510416fa
6176 Author: Mike Frysinger <vapier@gentoo.org>
6177 Date: Thu Sep 3 23:12:47 2009 -0400
6178
6179 push LOAD_ADDR out to arch mk files
6180
6181 Rather than maintain/extend the current ifeq($(ARCH)) mess that exists in
6182 the standalone Makefile, push the setting up of LOAD_ADDR out to the arch
6183 config.mk (and rename to STANDALONE_LOAD_ADDR in the process). This keeps
6184 the common code clean and lets the arch do whatever crazy crap it wants in
6185 its own area.
6186
6187 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6188
6189 commit 7662eb2b9d6fbc95ecb1fb3e5b5147215e251e7d
6190 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
6191 Date: Thu Sep 3 07:37:46 2009 -0400
6192
6193 zlib: fix code when DEBUG is defined
6194
6195 Removed stdio.h inclusion and moved trace macros to use printf avoiding to
6196 write debug informations to standard error.
6197
6198 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
6199
6200 commit cfcbf8c4cf3da96b9e3f652506b664bfd766a520
6201 Author: Scott Wood <scottwood@freescale.com>
6202 Date: Wed Sep 2 16:45:31 2009 -0500
6203
6204 mxc_nand: Remove Freescale's "All Rights Reserved."
6205
6206 Signed-off-by: Scott Wood <scottwood@freescale.com>
6207
6208 commit 001d615681333569c555e6cde07d8d23e2c536fb
6209 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6210 Date: Wed Sep 2 17:58:48 2009 +0400
6211
6212 mpc83xx/serdes: License cleanup: remove "All Rights Reserved" notice
6213
6214 "All Rights Reserved" conflicts with the GPL.
6215
6216 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6217
6218 commit 46ff6d461321f5b565cc790e02679237ffd9a20f
6219 Author: Wolfgang Denk <wd@denx.de>
6220 Date: Wed Sep 2 14:57:27 2009 +0200
6221
6222 License cleanup: remove unintended "All Rights Reserved" notices.
6223
6224 Some files included my old standerd file header which had a "All
6225 Rights Reserved" part. As this has never been my intention, I remove
6226 these lines to make the files compatible with GPL v.2 and later.
6227
6228 Signed-off-by: Wolfgang Denk <wd@denx.de>
6229
6230 commit 37daa77f3cafb5ec9a974eff3db2af4a0560a9ef
6231 Author: Wolfgang Denk <wd@denx.de>
6232 Date: Wed Sep 2 10:21:20 2009 +0200
6233
6234 cmd_mtdparts.c: fix compiler warning in debug code
6235
6236 Fix warning messages:
6237 cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
6238 unsigned int', but argument 6 has type 'u32'
6239 cmd_mtdparts.c:1429: warning: format '%08lx' expects type 'long
6240 unsigned int', but argument 7 has type 'u32'
6241
6242 Signed-off-by: Wolfgang Denk <wd@denx.de>
6243
6244 commit d8bc55a6fb28876abcbf4a3fc3b6c3ce429c1bb3
6245 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
6246 Date: Tue Sep 1 20:58:03 2009 +0400
6247
6248 Move uninitialized_var() macro from ubi_uboot.h to compiler.h
6249
6250 This is needed so that we could use this macro for non-UBI code.
6251
6252 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
6253
6254 commit d72871e1387094972569e4b77c25e88020f7b68f
6255 Author: Kumar Gala <galak@kernel.crashing.org>
6256 Date: Tue Sep 1 11:24:45 2009 -0500
6257
6258 arm: Remove -fno-strict-aliasing
6259
6260 -fno-strict-aliasing is hidding warnings.
6261
6262 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6263
6264 commit d6281ff0cc2ebb5d6a5c3e1021837334074f92ec
6265 Author: Kumar Gala <galak@kernel.crashing.org>
6266 Date: Tue Sep 1 11:24:44 2009 -0500
6267
6268 ppc: Remove -fno-strict-aliasing
6269
6270 -fno-strict-aliasing is hidding warnings.
6271
6272 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6273
6274 commit 795d246c278e70b4ba9868cc9f2c8fbada49d388
6275 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
6276 Date: Fri Aug 28 07:14:04 2009 -0500
6277
6278 galaxy5200: Add chip select region for an Epson S1D15313
6279
6280 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
6281
6282 commit 3dfad40a0459f63099e177dc15a1df39d048f860
6283 Author: Kumar Gala <galak@kernel.crashing.org>
6284 Date: Thu Aug 27 08:23:55 2009 -0500
6285
6286 Add ability for arch code to make changes before we boot
6287
6288 Added a arch_preboot_os() function that cpu specific code can implement to
6289 allow for various modifications to the state of the machine right before
6290 we boot. This can be useful to setup register state to a specific
6291 configuration.
6292
6293 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6294
6295 commit 9ea005fb4428c922536fa75991ce9972304a02fb
6296 Author: Roy Zang <tie-fei.zang@freescale.com>
6297 Date: Sat Aug 22 03:49:52 2009 +0800
6298
6299 Use different PBA value for E1000 PCI and PCIe cards
6300
6301 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
6302 Acked-by: André Schwarz <andre.schwarz@matrix-vision.de>
6303
6304 commit 5b34a296d47b236dafbcaf1c91ae11b5aeb1ef51
6305 Author: Graeme Russ <graeme.russ@gmail.com>
6306 Date: Sun Aug 23 12:59:58 2009 +1000
6307
6308 Add PCI support to eNET board
6309
6310 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6311
6312 commit f50b619d9cb297b0125fe78dcd6f255eb0d91659
6313 Author: Graeme Russ <graeme.russ@gmail.com>
6314 Date: Sun Aug 23 12:59:57 2009 +1000
6315
6316 i386: Moved PCI from #ifdef to conditional compile for sc520 boards
6317
6318 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6319
6320 commit ed7a1b681de1e31d18d5b92e2767ae8df3241687
6321 Author: Graeme Russ <graeme.russ@gmail.com>
6322 Date: Sun Aug 23 12:59:56 2009 +1000
6323
6324 i386: Replace [read, write]_mmcr_[byte, word, long] with memory mapped structure
6325
6326 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6327
6328 commit 9b32f96b5b92ba13fdb4b5eb637734752235f260
6329 Author: Graeme Russ <graeme.russ@gmail.com>
6330 Date: Sun Aug 23 12:59:55 2009 +1000
6331
6332 Misc sc520 cdp fixups
6333
6334 Now that the PCI, SATA et al compile problems have been resolved, the
6335 cludge that was applied to avoid them can be removed
6336
6337 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6338
6339 commit 91ee4e183cb7ac5f86e7673ead51400f19906635
6340 Author: Graeme Russ <graeme.russ@gmail.com>
6341 Date: Sun Aug 23 12:59:54 2009 +1000
6342
6343 Fixup sc520_spunk board
6344
6345 Primary intent is to resolve build errors for this board which has been
6346 neglected for a very long time. I do not have one of these boards, so I
6347 cannot test functionality
6348
6349 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6350
6351 commit 8907b8dbc5805094f1316d64737d3428b3863693
6352 Author: Graeme Russ <graeme.russ@gmail.com>
6353 Date: Sun Aug 23 12:59:53 2009 +1000
6354
6355 Misc ds1722 fixups
6356
6357 This patch is based on a patch submitted by Jean-Christophe PLAGNIOL-VILLARD
6358 on 18th May 2008 as part of a general i386 / sc520 fixup which was never
6359 applied
6360
6361 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6362
6363 commit a92510e7fae523145b58765cdc46110f1162260d
6364 Author: Graeme Russ <graeme.russ@gmail.com>
6365 Date: Sun Aug 23 12:59:52 2009 +1000
6366
6367 Misc ti_pci1410a fixups
6368
6369 Removed do_pinit() - now declared in cmd_pcmcia.c
6370
6371 Added #define CONFIG_CMD_PCMCIA around pcmcia_off() in line with other
6372 PCMCIA drivers
6373
6374 signed/unsigned type fixups
6375
6376 Added semi-colon after default: label as required by newer gcc
6377
6378 The only board that appears to use this driver is the sc520_spunk which
6379 is very old and very likely very broken anyway. I do not have one to test
6380 whether this patch breaks anything functionaly, I have can only check
6381 that it compiles without warning or error
6382
6383 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6384
6385 commit 31b9ab33d93d88ff89f3046aa45c68667a378a56
6386 Author: Graeme Russ <graeme.russ@gmail.com>
6387 Date: Sun Aug 23 12:59:51 2009 +1000
6388
6389 Misc SATA fixups
6390
6391 Cast first parameter to sata_cpy()
6392
6393 In /drivers/block/ata_piix.h, ata_id_has_lba48(), ata_id_has_lba(),
6394 ata_id_has_dma(), ata_id_u32(), ata_id_u64() are all defined in
6395 include/libata.h which is included in ata.h which is included by all files
6396 which include ata_piix.h (only ata_piix.c) so these definitions are
6397 supurflous to (and conlict with) this in libata.h. Interestingly, my
6398 compiler complains about ata_id_u64 already being defined, but not
6399 ata_id_u32
6400
6401 ata_dump_id() is defined in include/libata.h and should not be static
6402 (maybe should even use ata_dump_id() in libata.c
6403
6404 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6405
6406 commit d7549024098af093785151261266a02be19af633
6407 Author: Graeme Russ <graeme.russ@gmail.com>
6408 Date: Sun Aug 23 12:59:50 2009 +1000
6409
6410 i386: Misc PCI fixups
6411
6412 Change PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY (Originally done in
6413 commit ff4e66e93c1a, regressed by commit 6d7f610b09f8)
6414
6415 Cast PCI_ROM_ADDRESS_MASK to u32
6416
6417 Wrap probe_pci_video() call inside #ifdef CONFIG_VIDEO
6418
6419 Change call to pci_find_class() to pci_find_devices(). This is based on a
6420 patch submitted on 1st March 2007 (Patch that fixes the compilation errors
6421 for sc520_cdp board) by mushtaq_k
6422
6423 This patch requires that PCI_VIDEO_VENDOR_ID and PCI_VIDEO_DEVICE_ID be
6424 specified in the board config file. Dummy values have been added for the
6425 SC520 CDP board to enable compilation, but since I do not have one of these,
6426 I do know what the values should be
6427
6428 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6429
6430 commit 04ff9ab158714d43cdf2f4f6f0235c3ea9d241a2
6431 Author: Graeme Russ <graeme.russ@gmail.com>
6432 Date: Sun Aug 23 12:59:49 2009 +1000
6433
6434 Fix sc520 timer interrupt generation
6435
6436 The current implementation has the timer being started before the interrupt
6437 handler is installed. It the interrupt occurs before the handler is
6438 installed, the timer interrupt is never reset and the timer stops
6439
6440 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6441
6442 commit f3a8d6b29b1cd01fdd940e8ff7a62b1df0ebbf82
6443 Author: Graeme Russ <graeme.russ@gmail.com>
6444 Date: Sun Aug 23 12:59:48 2009 +1000
6445
6446 Fix environment configuration for eNET board
6447
6448 The current configuration of the Environment has the redundant copy of the
6449 environment in the Boot Flash - This was never the intent. The Environment
6450 should instead be in the first two sectors of the first Strata Flash
6451
6452 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6453
6454 commit ea0c37798c3823fdd77edfffd27b20191f8ca1f0
6455 Author: Graeme Russ <graeme.russ@gmail.com>
6456 Date: Sun Aug 23 12:59:47 2009 +1000
6457
6458 i386: Fix regression introduced by commit 8c63d47651f7
6459
6460 A local variable was deleted that should not have been
6461
6462 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6463
6464 commit cfb3a736ffcff3e3753b902cad536f22fcf8961d
6465 Author: Graeme Russ <graeme.russ@gmail.com>
6466 Date: Sun Aug 23 12:59:46 2009 +1000
6467
6468 i386: Change inline asm global symbols to local
6469
6470 gcc 4.3.2 optimiser creates multiple copies of inline asm (who knows why)
6471 Remove use of global names for labels to prevent 'symbol already defined'
6472 errors
6473
6474 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6475
6476 commit a3ab8caee696a1d53fc82fa321e2b2f179970168
6477 Author: Graeme Russ <graeme.russ@gmail.com>
6478 Date: Sun Aug 23 12:59:45 2009 +1000
6479
6480 i386: Add errno.h
6481
6482 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6483
6484 commit d4e8ada0f6d51e0e3b80790fb9375ac8910f5352
6485 Author: Peter Tyser <ptyser@xes-inc.com>
6486 Date: Fri Aug 21 23:05:21 2009 -0500
6487
6488 Consolidate arch-specific mem_malloc_init() implementations
6489
6490 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6491
6492 commit a483a167bc8d808145ca1224a2c238cda90aa60c
6493 Author: Peter Tyser <ptyser@xes-inc.com>
6494 Date: Fri Aug 21 23:05:20 2009 -0500
6495
6496 Standardize mem_malloc_init() implementation
6497
6498 This lays the groundwork to allow architectures to share a common
6499 mem_malloc_init().
6500
6501 Note that the x86 implementation was not modified as it did not fit the
6502 mold of all other architectures.
6503
6504 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6505
6506 commit 5e93bd1c9aaea886c5e5c7c1b6114ab36c30668f
6507 Author: Peter Tyser <ptyser@xes-inc.com>
6508 Date: Fri Aug 21 23:05:19 2009 -0500
6509
6510 Consolidate arch-specific sbrk() implementations
6511
6512 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6513
6514 commit 65f6f07b72a71b83d775c4d20d7ebcd6b2d2086d
6515 Author: Mike Frysinger <vapier@gentoo.org>
6516 Date: Thu Jul 23 16:37:03 2009 -0400
6517
6518 atmel_df_pow2: standalone to convert dataflashes to pow2
6519
6520 Atmel DataFlashes by default operate with pages that are slightly bigger
6521 than normal binary sizes (i.e. many are 1056 byte pages rather than 1024
6522 bytes). However, they also have a "power of 2" mode where the pages show
6523 up with the normal binary size. The latter mode is required in order to
6524 boot with a Blackfin processor, so many people wish to convert their
6525 DataFlashes on their development systems to this mode. This standalone
6526 application does just that.
6527
6528 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6529
6530 commit cb95c7a935ab9b52dac5d08e5ba4007c5a480f97
6531 Author: Mike Frysinger <vapier@gentoo.org>
6532 Date: Wed Sep 2 05:52:37 2009 -0400
6533
6534 Blackfin: cm-bf548: fix device->stdio_dev fallout
6535
6536 The recent 52cb4d4fb348 commit which renamed device to stdio_dev missed the
6537 cm-bf548's video board.
6538
6539 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6540
6541 commit c7bcdde46a7ef78628f0f09fdc6cb61bb1bd7e79
6542 Author: Mike Frysinger <vapier@gentoo.org>
6543 Date: Wed Sep 2 04:21:16 2009 -0400
6544
6545 Blackfin: enable 64bit printf for nand
6546
6547 Since the NAND code now uses 64bit code, make sure we enable support for
6548 ADI Blackfin boards in printf to avoid the warning:
6549 nand_util.c:45:2: warning: #warning Please define CONFIG_SYS_64BIT_VSPRINTF for correct output!
6550
6551 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6552
6553 commit 9c46e71af2b03ccd721c56b1dc906ead702d6fb5
6554 Author: Mike Frysinger <vapier@gentoo.org>
6555 Date: Mon Aug 24 20:48:04 2009 -0400
6556
6557 Blackfin: use scratch pad for exception stack
6558
6559 If the memory layout pushes the stack out of the default DCPLB coverage,
6560 the exception handler may trigger a double fault by trying to push onto
6561 the uncovered stack. So handle the exception stack similar to the kernel
6562 by using the top of the scratch pad SRAM.
6563
6564 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6565
6566 commit 69a25ce3578f34c8accb476f70089f3a44b78ed9
6567 Author: Mike Frysinger <vapier@gentoo.org>
6568 Date: Mon Aug 24 20:36:25 2009 -0400
6569
6570 Blackfin: increase default console size
6571
6572 The default console size indirectly applies to length of env vars, so a
6573 smaller length makes it hard to pass longer command lines to kernels.
6574
6575 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6576
6577 commit f541e1d6d99c22bbd4bc8c84fdb02baad0277847
6578 Author: Mike Frysinger <vapier@gentoo.org>
6579 Date: Mon Aug 24 19:03:18 2009 -0400
6580
6581 Blackfin: fix debug printf modifiers
6582
6583 The display_global_data() function generated warnings with pretty much
6584 every variable.
6585
6586 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6587
6588 commit 4640c2b8699bcdd2346a2c633486f07f061a2939
6589 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
6590 Date: Thu Aug 20 19:20:41 2009 -0400
6591
6592 Blackfin: cm-bf537u: new board port
6593
6594 The CM-BF537U is similar to the CM-BF537E module, but enough to need its
6595 own board port.
6596
6597 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
6598 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6599
6600 commit c4db335c2e0805e1ce4c33d278b77492c0812353
6601 Author: Robin Getz <robin.getz@analog.com>
6602 Date: Mon Aug 17 15:23:02 2009 +0000
6603
6604 Blackfin: change global data register from P5 to P3
6605
6606 Since the Blackfin ABI favors higher scratch registers by default, use the
6607 last scratch register (P3) for global data rather than the first (P5).
6608 This allows the compiler's register allocator to use higher number scratch
6609 P registers, which in turn better matches the Blackfin instruction set,
6610 which reduces the size of U-Boot by more than 1024 bytes...
6611
6612 Signed-off-by: Robin Getz <robin.getz@analog.com>
6613 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6614
6615 commit 574b70df03fba0ea635e2fe71fbd7b97d19b706a
6616 Author: Robin Getz <robin.getz@analog.com>
6617 Date: Tue Aug 11 14:20:13 2009 +0000
6618
6619 Blackfin: enable more network commands for ADI dev boards
6620
6621 Add dns and ntp to default networking commands, and ask for more dhcp
6622 options to better configure the network environment.
6623
6624 Signed-off-by: Robin Getz <robin.getz@analog.com>
6625 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6626
6627 commit aa7b248a05323d4720969227603e39a22777ed95
6628 Author: Michael Hennerich <michael.hennerich@analog.com>
6629 Date: Thu Jun 18 09:12:50 2009 +0000
6630
6631 Blackfin: bf537-stamp: comment CF-Flash Card Support better
6632
6633 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
6634 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6635
6636 commit 69c6d268a29cf6d61e096d815abf5abf24136f45
6637 Author: Robin Getz <robin.getz@analog.com>
6638 Date: Fri Jul 10 18:37:15 2009 +0000
6639
6640 Blackfin: use +(filesize) to make sure we are only doing what is necessary
6641
6642 Signed-off-by: Robin Getz <robin.getz@analog.com>
6643 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6644
6645 commit 2dc851e3b0f07a56f83060f13882ff4b62cf5112
6646 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6647 Date: Thu Aug 20 16:04:49 2009 +0200
6648
6649 Support for the Calao TNY-A9260/TNY-A9G20 boards
6650
6651 The Calao TNY-A9260 and TNY-9G20 are boards manufactured and sold by
6652 Calao Systems <http://www.calao-systems.com>. Their components are very
6653 similar to the AT91SAM9260EK board, so their configuration is based on
6654 the configuration of this board. There are however some differences:
6655 different clocks, no LCD, no ethernet. They also can use SPI EEPROM to
6656 store the environment.
6657
6658 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6659 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6660
6661 commit 49d2cb4d6153a6c18249dccb5de5cffeb261a61c
6662 Author: Prafulla Wadaskar <prafulla@marvell.com>
6663 Date: Thu Aug 20 20:59:28 2009 +0530
6664
6665 arm: Kirkwood: add SYSRSTn Duration Counter Support
6666
6667 This feature can be used to trigger special command "sysrstcmd" using
6668 reset key long press event and environment variable "sysrstdelay" is set
6669 (useful for reset to factory or manufacturing mode execution)
6670
6671 Kirkwood SoC implements a hardware-based SYSRSTn duration counter.
6672 When SYSRSTn is asserted low, a SYSRSTn duration counter is running.
6673 The counter value is stored in the SYSRSTn Length Counter Register
6674 The counter is based on the 25-MHz reference clock (40ns)
6675 It is a 29-bit counter, yielding a maximum counting duration of
6676 2^29/25 MHz (21.4 seconds). When the counter reach its maximum value,
6677 it remains at this value until counter reset is triggered by setting
6678 bit 31 of KW_REG_SYSRST_CNT
6679
6680 Implementation:
6681 Upon long reset assertion (> ${sysrstdelay} in secs) sysrstcmd will be
6682 executed if pre-defined in environment variables.
6683 This feature will be disabled if "sysrstdelay" variable is unset.
6684
6685 for-ex.
6686 setenv sysrst_cmd "echo starting factory reset;
6687 nand erase 0xa0000 0x20000;
6688 echo finish ed sysrst command;"
6689 will erase particular nand sector if triggered by this event
6690
6691 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
6692
6693 commit 9453967e28c5e3abbf856f95735ea69bae1e77fa
6694 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6695 Date: Mon Aug 24 18:03:26 2009 +0200
6696
6697 Add support for the Calao SBC35-A9G20 board
6698
6699 The Calao SBC35-A9G20 board is manufactured and sold by Calao Systems
6700 <http://www.calao-systems.com>. It is built around an AT91SAM9G20 ARM SoC
6701 running at 400MHz. It features an Ethernet port, an SPI RTC backed by an onboard
6702 battery , an SD/MMC slot, a CompactFlash slot, 64Mo of SDRAM, 256Mo of NAND
6703 flash, two USB host ports, and an USB device port. More informations can be
6704 found at <http://www.calao-systems.com/articles.php?lng=en&pg=5936>
6705
6706 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6707
6708 commit 10bc241dfc15a0820d9c52469173b7ccafec0b84
6709 Author: Ilya Yanok <yanok@emcraft.com>
6710 Date: Tue Aug 11 02:32:09 2009 +0400
6711
6712 imx27lite: add support for imx27lite board from LogicPD
6713
6714 This patch adds support for i.MX27-LITEKIT development board from
6715 LogicPD. This board uses i.MX27 SoC and has 2MB NOR flash, 64MB NAND
6716 flash, FEC ethernet controller integrated into i.MX27.
6717
6718 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6719 Acked-by: Wolfgang Denk <wd@denx.de>
6720
6721 commit 50b5fff55827946c86a60db8b21a9358be720666
6722 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6723 Date: Tue Sep 1 11:26:20 2009 +0200
6724
6725 at91sam9260/afeb9260: Fix SPI initialization
6726
6727 Commit 7ebafb7ec1a0285af8380623c009576f92583b98 introduced a mistake in the spi
6728 init function call for those boards. This patch fixes this.
6729
6730 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
6731
6732 commit f3d4f8870e69e0fd177397778d97d0751bbd020a
6733 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
6734 Date: Tue Aug 18 11:13:44 2009 +0200
6735
6736 Remove duplicate set_cr
6737
6738 Remove duplicate set_cr
6739
6740 set_cr is defined in both asm-arm/proc-armv/system.h and
6741 include/asm-arm/system.h. This patch removes it (and some duplicate
6742 defines) from the former.
6743
6744 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
6745
6746 commit 3d35d87d5482de23cd5dc4d7721b1086107cae50
6747 Author: Wolfgang Denk <wd@denx.de>
6748 Date: Mon Aug 31 19:57:42 2009 +0200
6749
6750 Prepare 2009.08
6751
6752 Update CHANGELOG
6753
6754 Signed-off-by: Wolfgang Denk <wd@denx.de>
6755
6756 commit 632a6dd0b612eb7b143f789f2a0273917468c041
6757 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
6758 Date: Mon Aug 31 16:18:24 2009 +0200
6759
6760 Add common code dir for Matrix Vision boards.
6761
6762 This fixes current build failure.
6763
6764 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
6765
6766 mvblm7.c: fix warning: implicit declaration of function
6767 'mv_reset_environment'
6768
6769 Signed-off-by: Wolfgang Denk <wd@denx.de>
6770
6771 commit 52f6c34c85d6c16f2a41433b5000490ecf374992
6772 Author: David Brownell <dbrownell@users.sourceforge.net>
6773 Date: Sun Aug 30 11:05:29 2009 -0700
6774
6775 bugfix CONFIG_SYS_CONSOLE_INFO_QUIET
6776
6777 The "console: unify printing current devices" patch goofed:
6778 CONFIG_SYS_CONSOLE_INFO_QUIET is supposed to *REMOVE* boot
6779 time noise, not add it. Said patch changed the #ifndefs
6780 to #ifdef; this one restores them to the proper sense.
6781
6782 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
6783
6784 commit 2d04db088e6df8a008bb09f604876a45031df93b
6785 Author: Timur Tabi <timur@freescale.com>
6786 Date: Fri Aug 28 16:56:45 2009 -0500
6787
6788 fsl: simplify the "mac id" command, improve boot-time informational message
6789
6790 The "mac id" command took a 4-character parameter as the identifier string.
6791 However, for any given board, only one kind of identifier is acceptable, so it
6792 makes no sense to ask the user to type it in. Instead, if the user enters
6793 "mac id", the identifier (and also the version, if it's NXID) will
6794 automatically be set to the correct value.
6795
6796 Improve the message that is displayed when EEPROM is read during boot. It now
6797 displays "EEPROM:" and then either an error message or the EEPROM identifier
6798 if successful.
6799
6800 If the identifier in EEPROM is valid, then always reject a bad CRC, even if the
6801 CRC field has not been initialized.
6802
6803 Don't force the MAC address count to MAX_NUM_PORTS or less. Forcing the value
6804 to be changed resulting in an in-memory copy that does not match what's in
6805 hardware, even though the user did not request that change.
6806
6807 Finally, always update the CRC value in the in-memory copy after any field
6808 is changed, so that the CRC is always correct.
6809
6810 Signed-off-by: Timur Tabi <timur@freescale.com>
6811 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6812
6813 commit 33f3f34255bd7cf0be502275c59f0ff22dc50080
6814 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6815 Date: Fri Aug 21 07:29:58 2009 +0530
6816
6817 85xx: Added PCIe support for P1 P2 RDB
6818
6819 Call fsl_pci_init_port() to initialize all the PCIe ports on the board.
6820
6821 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6822 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6823
6824 commit 0d3d68b25a8e7790f58530ddccbd61f9fc0245ef
6825 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6826 Date: Fri Aug 21 07:29:42 2009 +0530
6827
6828 driver/fsl_pci: Add fsl_pci_init_port function to initialize a PCI controller
6829
6830 fsl_pci_init_port can be called from board specific PCI initialization
6831 routines to setup the PCI (or PCIe) controller. This will reduce code
6832 redundancy in most of the 85xx/86xx FSL board ports that setup PCI.
6833
6834 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6835 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6836
6837 commit 05f6f66474312ad03c39b4ca4875af46c87366bf
6838 Author: Timur Tabi <timur@freescale.com>
6839 Date: Thu Aug 20 17:41:11 2009 -0500
6840
6841 85xx: Improve MPIC initialization
6842
6843 The MPIC initialization code for Freescale e500 CPUs was not using I/O
6844 accessors, and it was not issuing a read-back to the MPIC after setting
6845 mixed mode. This may be the cause of a spurious interrupt on some systems.
6846
6847 Signed-off-by: Timur Tabi <timur@freescale.com>
6848 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6849
6850 commit c17b79fbd0c7923948331d65cb588734a9c681ff
6851 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6852 Date: Thu Aug 20 18:59:18 2009 +0530
6853
6854 85xx: Added support for P1011RDB and P2010RDB
6855
6856 P1011 and P2010 are single core variants of P1010 and P2020 respectively.
6857 The board(RDB) will be same.
6858
6859 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6860 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6861
6862 commit a713ba926b45da9a6f923f1ac9e60a66852e5f2d
6863 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6864 Date: Thu Aug 20 18:57:45 2009 +0530
6865
6866 85xx: Added single core members of FSL P1xx/P2xx processors series
6867
6868 P1011 - Single core variant of P1020
6869 P2010 - Single core variant of P2020
6870
6871 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6872 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6873
6874 commit bf488bc0949fc900d1296a7f35a38a6a28cb5fab
6875 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6876 Date: Thu Aug 20 18:57:02 2009 +0530
6877
6878 85xx: P1020RDB Support Added
6879
6880 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6881 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6882
6883 commit 3b1f243b8dad30a646a0f056b0268519eadbc3c5
6884 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6885 Date: Thu Aug 20 18:55:35 2009 +0530
6886
6887 85xx: Added CONFIG_MAX_CPUS for P1020
6888
6889 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6890 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6891
6892 commit 76b474e2f5a223fcabfeaa4f1c8fb699062b986c
6893 Author: Mingkai Hu <Mingkai.hu@freescale.com>
6894 Date: Tue Aug 18 15:37:15 2009 +0800
6895
6896 85xx: Add L2SRAM Register's macro definition
6897
6898 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
6899 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6900
6901 commit 158c6724c99368a4d8eef11ee7e3c7ad0ef03a15
6902 Author: Felix Radensky <felix@embedded-sol.com>
6903 Date: Sat Aug 15 15:08:37 2009 +0300
6904
6905 85xx: Fix memory test range on MPC8536DS
6906
6907 With current values of CONFIG_SYS_MEMTEST_START and CONFIG_SYS_MEMTEST_END
6908 memory test hangs if run without arguments. Set them to sane values, so
6909 that all available 512MB of RAM excluding exception vectors at the bottom
6910 and u-boot code and stack at the top can be tested.
6911
6912 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
6913 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6914
6915 commit ef41f2a25c554604156b59f5945feadae2f3cb55
6916 Author: Kumar Gala <galak@kernel.crashing.org>
6917 Date: Wed Aug 12 00:10:44 2009 -0500
6918
6919 85xx: Removed BEDBUG support on P1_P2_RDB
6920
6921 To match all other 85xx platforms we are removing BEDBUG support.
6922
6923 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6924
6925 commit b560ab85edfb68da653bf2527c390c3e182392a1
6926 Author: Kumar Gala <galak@kernel.crashing.org>
6927 Date: Sat Aug 8 10:42:30 2009 -0500
6928
6929 85xx: Init pci ethernet cards if we enable any on MPC8572DS
6930
6931 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6932
6933 commit 1bb61b69f7aba4931ede35fdcabd8e5ecad121d7
6934 Author: Peter Tyser <ptyser@xes-inc.com>
6935 Date: Fri Aug 7 13:16:34 2009 -0500
6936
6937 xes: Use proper IO access functions
6938
6939 Also fix some minor whitespace oddities while we're cleaning up
6940
6941 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6942 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6943
6944 commit ec79d33b2c41ee8b6d1354cc0910217b769c5036
6945 Author: Kumar Gala <galak@kernel.crashing.org>
6946 Date: Fri Aug 7 13:00:55 2009 -0500
6947
6948 85xx: Move to a common linker script
6949
6950 There are really no differences between all the 85xx linker scripts so
6951 we can just move to a single common one. Board code is still able to
6952 override the common one if need be.
6953
6954 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6955
6956 commit 87c7661b42aa7672539b54b51d3d5c4013ec6f6c
6957 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6958 Date: Fri Jul 31 12:08:27 2009 +0530
6959
6960 85xx: Added P1020 Processor Support.
6961
6962 P1020 is another member of QorIQ series of processors which falls in ULE
6963 category. It is an e500 based dual core SOC.
6964
6965 Being a scaled down version of P2020 it has following differences:
6966 - 533MHz - 800MHz core frequency.
6967 - 256Kbyte L2 cache
6968 - Ethernet controllers with classification capabilities.
6969 Also the SOC is pin compatible with P2020
6970
6971 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6972 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6973
6974 commit 728ece343e8bb2a66ee977c49d455439e3b28da9
6975 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6976 Date: Wed Aug 5 13:29:24 2009 +0530
6977
6978 85xx: Add support for P2020RDB board
6979
6980 The code base adds P1 & P2 RDB platforms support.
6981 The folder and file names can cater to future SOCs of P1/P2 family.
6982 P1 & P2 processors are 85xx platforms, part of Freescale QorIQ series.
6983
6984 Tested following on P2020RDB:
6985 1. eTSECs
6986 2. DDR, NAND, NOR, I2C.
6987
6988 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6989 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6990
6991 commit 0e870980a64584a591af775bb9c9fe9450124df9
6992 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
6993 Date: Fri Jul 31 12:08:14 2009 +0530
6994
6995 8xxx: Removed CONFIG_NUM_CPUS from 85xx/86xx
6996
6997 The number of CPUs are getting detected dynamically by checking the
6998 processor SVR value. Also removed CONFIG_NUM_CPUS references from all
6999 the platforms with 85xx/86xx processors.
7000
7001 This can help to use the same u-boot image across the platforms.
7002
7003 Also revamped and corrected few Freescale Copyright messages.
7004
7005 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7006 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7007
7008 commit 18bacc2027f8531d8dec15ba8da3242dfb4e63f3
7009 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7010 Date: Fri Jul 31 12:07:45 2009 +0530
7011
7012 8xxx: Refactored common cpu specific code for 85xx/86xx into one file.
7013
7014 Removed same code pieces from cpu/mpc85xx/cpu.c and cpu/mpc86xx/cpu.c
7015 and moved to cpu/mpc8xxx/cpu.c(new file)
7016
7017 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
7018 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7019
7020 commit 7b18c227b847e4782eb1492219ebd555f521b08b
7021 Author: Alex Dubov <oakad@yahoo.com>
7022 Date: Fri Aug 7 15:28:32 2009 +1000
7023
7024 stx: create common vendor/board hierarchy for STx boards
7025
7026 Move files belonging to the STx boards into common vendor directory and
7027 update the Makefile to reflect this.
7028
7029 Signed-off-by: Alex Dubov <oakad@yahoo.com>
7030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7031
7032 commit bafdf9aa9dbb69d937b72db17ed5800998c59523
7033 Author: Peter Tyser <ptyser@xes-inc.com>
7034 Date: Tue Aug 4 17:38:00 2009 -0500
7035
7036 85xx: Remove unused CONFIG_CLEAR_LAW0 defines
7037
7038 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7039 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7040
7041 commit 73aacc522849486b60a5611f678f0bf1c3053779
7042 Author: Kumar Gala <galak@kernel.crashing.org>
7043 Date: Thu Aug 6 18:38:43 2009 -0500
7044
7045 86xx: Remove redudant PLATFORM_CPPFLAGS
7046
7047 For historic reasons we had defined some additional PLATFORM_CPPFLAGS like:
7048
7049 PLATFORM_CPPFLAGS += -DCONFIG_MPC86xx=1
7050 PLATFORM_CPPFLAGS += -DCONFIG_MPC8641=1
7051
7052 However these are all captured in the config.h and thus redudant. Also
7053 moved common 86xx flags into cpu/mpc86xx/config.mk.
7054
7055 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7056
7057 commit 53efa1f1acacacb76fa9a21b09b3294783a11c03
7058 Author: Kumar Gala <galak@kernel.crashing.org>
7059 Date: Thu Aug 6 18:28:34 2009 -0500
7060
7061 85xx: Remove redudant PLATFORM_CPPFLAGS
7062
7063 For historic reasons we had defined some additional PLATFORM_CPPFLAGS
7064 like:
7065
7066 PLATFORM_CPPFLAGS += -DCONFIG_E500=1
7067 PLATFORM_CPPFLAGS += -DCONFIG_MPC85xx=1
7068 PLATFORM_CPPFLAGS += -DCONFIG_MPC8548=1
7069
7070 However these are all captured in the config.h and thus redudant.
7071
7072 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7073
7074 commit 337f9fde2e9317c1d9e85a4a8955a2f14730a00f
7075 Author: Kumar Gala <galak@kernel.crashing.org>
7076 Date: Thu Jul 30 15:54:07 2009 -0500
7077
7078 85xx: Add a 36-bit physical configuration for MPC8536DS
7079
7080 We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
7081 to allow for larger memory sizes.
7082
7083 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7084 Acked-by: Wolfgang Denk <wd@denx.de>
7085
7086 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7087
7088 commit ecead84d56b0ced67b727f5ce21ba08c53b5f09e
7089 Author: Kumar Gala <galak@kernel.crashing.org>
7090 Date: Tue Aug 4 09:10:03 2009 -0500
7091
7092 85xx: Cleanup whitespace in mpc8536ds.c
7093
7094 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7095
7096 commit ad19e7a5d2de337064ce7728d6504df9648f5d31
7097 Author: Kumar Gala <galak@kernel.crashing.org>
7098 Date: Wed Aug 5 07:59:35 2009 -0500
7099
7100 pci/fsl_pci_init: Rework PCI ATMU setup to handle >4G of memory
7101
7102 The old PCI ATMU setup code would just mimic the PCI regions into the
7103 ATMU registers. For simple memory maps in which all memory, MMIO, etc
7104 space fit into 4G this works ok. However there are issues with we have
7105 >4G of memory as we know can't access all of memory and we need to
7106 ensure that PCICSRBAR (PEXCSRBAR on PCIe) isn't overlapping with
7107 anything since we can't turn it off.
7108
7109 We first setup outbound windows based on what the board code setup
7110 in the pci regions for MMIO and IO access. Next we place PCICSRBAR
7111 below the MMIO window. After which we try to setup the inbound windows
7112 to map as much of memory as possible.
7113
7114 On PCIe based controllers we are able to overmap the ATMU setup since
7115 RX & TX links are separate but report the proper amount of inbound
7116 address space to the region tracking to ensure there is no overlap.
7117
7118 On PCI based controllers we use as many inbound windows as available to
7119 map as much of the memory as possible.
7120
7121 Additionally we changed all the CCSR register access to use proper IO
7122 accessor functions. Also had to add CONFIG_SYS_CCSRBAR_PHYS to some
7123 86xx platforms that didn't have it defined.
7124
7125 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7126
7127 commit 8295b94400449586505ffe34ec024feb3d2c8fe4
7128 Author: Kumar Gala <galak@kernel.crashing.org>
7129 Date: Wed Aug 5 07:49:27 2009 -0500
7130
7131 pci/fsl_pci_init: Use PCIe capability to determine if controller is PCIe
7132
7133 Change the code to use the PCIe capabilities register to determine if we
7134 are a PCIe controller or not. Additionally cleaned up some white space
7135 and formatting in the file.
7136
7137 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7138
7139 commit cb151aa2cf5fbb1e412fc763a3a611758f066238
7140 Author: Kumar Gala <galak@kernel.crashing.org>
7141 Date: Mon Aug 3 21:02:02 2009 -0500
7142
7143 pci/fsl_pci_init: Fold fsl_pci_setup_inbound_windows into fsl_pci_init
7144
7145 Every platform that calls fsl_pci_init calls fsl_pci_setup_inbound_windows
7146 before it calls fsl_pci_init. There isn't any reason to just call it
7147 from fsl_pci_init and simplify things a bit.
7148
7149 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7150
7151 commit fb3143b35eb5890ec72e79d17a6068a84a057d47
7152 Author: Kumar Gala <galak@kernel.crashing.org>
7153 Date: Mon Aug 3 20:44:55 2009 -0500
7154
7155 pci/fsl_pci_init: Fold pci_setup_indirect into fsl_pci_init
7156
7157 Every platform that calls fsl_pci_init calls pci_setup_indirect before
7158 it calls fsl_pci_init. There isn't any reason to just call it from
7159 fsl_pci_init and simplify things a bit.
7160
7161 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7162
7163 commit 28887d831b02c66ccc10d7f1379204b5a62f4543
7164 Author: André Schwarz <andre.schwarz@matrix-vision.de>
7165 Date: Thu Aug 27 14:48:35 2009 +0200
7166
7167 Use common code for Matrix Vision boards
7168
7169 Clean up existing boards (mvBC-P/MPC5200 and mvBL-M7/MPC8343) by
7170 using common code.
7171
7172 Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
7173
7174 commit 05f91a65abc3180e2896cd8ddee7a34b1d1ce6e0
7175 Author: Kim Phillips <kim.phillips@freescale.com>
7176 Date: Wed Aug 26 21:27:37 2009 -0500
7177
7178 mpc83xx: mpc8349itx - accommodate larger kernel sizes & unzero the bootdelay
7179
7180 apparently the ITX was missed last round.
7181
7182 Also make bootdelay consistent with other boards, so as to give on the
7183 opportunity to fix mistakenly set bootcmd without having checked for an
7184 bootdelay zero setting first.
7185
7186 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7187
7188 commit cc861f7127f200e704baaf061a7f508e3c93f2a3
7189 Author: Kim Phillips <kim.phillips@freescale.com>
7190 Date: Wed Aug 26 21:25:46 2009 -0500
7191
7192 mpc83xx: match dtb filename references to their dts equivalents in the linux kernel
7193
7194 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7195
7196 commit 77b351cd0f20483eefa09bebebb3e0cbf5555b2c
7197 Author: Sandeep Paulraj <s-paulraj@ti.com>
7198 Date: Tue Aug 18 10:10:42 2009 -0400
7199
7200 NAND: DaVinci: V2 Adding 4 BIT ECC support
7201
7202 This patch adds 4 BIT ECC support in the DaVinci NAND
7203 driver. Tested on both the DM355 and DM365.
7204
7205 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7206 Signed-off-by: Scott Wood <scottwood@freescale.com>
7207
7208 commit f83b7f9e8a5d1334e24506ea5953dd871596ea8a
7209 Author: Sandeep Paulraj <s-paulraj@ti.com>
7210 Date: Mon Aug 10 13:27:56 2009 -0400
7211
7212 MTD:NAND: ADD new ECC mode NAND_ECC_HW_OOB_FIRST
7213
7214 This patch adds the new mode NAND_ECC_HW_OOB_FIRST in the nand code to
7215 support 4-bit ECC on TI DaVinci devices with large page (up to 2K) NAND
7216 chips. This ECC mode is similar to NAND_ECC_HW, with the exception of
7217 read_page API that first reads the OOB area, reads the data in chunks,
7218 feeds the ECC from OOB area to the ECC hw engine and perform any
7219 correction on the data as per the ECC status reported by the engine.
7220
7221 This patch has been accepted by Andrew Morton and can be found at
7222
7223 http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-new-ecc-mode-ecc_hw_oob_first.patch
7224
7225 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7226 Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
7227 Signed-off-by: Scott Wood <scottwood@freescale.com>
7228
7229 commit 36fab997d85d89ee7fd2c7fd6057fab786d556aa
7230 Author: Ilya Yanok <yanok@emcraft.com>
7231 Date: Tue Aug 11 02:32:54 2009 +0400
7232
7233 mxc_nand: add nand driver for MX2/MX3
7234
7235 Driver for NFC NAND controller found on Freescale's MX2 and MX3
7236 processors. Ported from Linux. Tested only with i.MX27 but should
7237 works with other MX2 and MX3 processors too.
7238
7239 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7240 Signed-off-by: Scott Wood <scottwood@freescale.com>
7241
7242 commit a2c65b47effcb3d0aa23e58596538acd338ac7c5
7243 Author: Sandeep Paulraj <s-paulraj@ti.com>
7244 Date: Mon Aug 10 13:27:46 2009 -0400
7245
7246 NAND: ADD page Parameter to all read_page/read_page_raw API's
7247
7248 This patch adds a new "page" parameter to all NAND read_page/read_page_raw
7249 APIs. The read_page API for the new mode ECC_HW_OOB_FIRST requires the
7250 page information to send the READOOB command and read the OOB area before
7251 the data area.
7252
7253 This patch has been accepted by Andrew Morton and can be found at
7254 http://userweb.kernel.org/~akpm/mmotm/broken-out/mtd-nand-add-page-parameter-to-all-read_page-read_page_raw-apis.patch
7255
7256 WE would like this to become part of the u-boot GIT as well
7257
7258 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
7259 Signed-off-by: Sneha Narnakaje <nsnehaprabha@ti.com>
7260 Signed-off-by: Scott Wood <scottwood@freescale.com>
7261
7262 commit de4250929f37e6c16860741b74546bedbe0bdaba
7263 Author: Heiko Schocher <hs@denx.de>
7264 Date: Tue Jul 21 17:13:40 2009 +0200
7265
7266 83xx, kmeter1: added NAND support
7267
7268 Signed-off-by: Heiko Schocher <hs@denx.de>
7269 Signed-off-by: Scott Wood <scottwood@freescale.com>
7270
7271 commit ecad289fc6bd9d89ef4d5093cc7b6fd712fd0d29
7272 Author: Kyungmin Park <kmpark@infradead.org>
7273 Date: Tue Jul 21 11:58:04 2009 +0900
7274
7275 OneNAND: Remove unused read_spareram
7276
7277 Remove unused read_spareram and add unlock_all as kernel does
7278
7279 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7280 Signed-off-by: Scott Wood <scottwood@freescale.com>
7281
7282 commit 403ce1f759b5acec8514cd7e10ce76704fed519c
7283 Author: Matthias Kaehlcke <matthias@kaehlcke.net>
7284 Date: Thu Jul 16 21:19:29 2009 +0200
7285
7286 KB9202: Add NAND support
7287
7288 Add KB9202 NAND driver
7289
7290 Signed-off-by: Matthias Kaehlcke <matthias@kaehlcke.net>
7291 Signed-off-by: Scott Wood <scottwood@freescale.com>
7292
7293 commit ce3277a6f2c082f39596d3d3d88dd0a5bc91439d
7294 Author: Kyungmin Park <kmpark@infradead.org>
7295 Date: Tue Jul 21 11:58:04 2009 +0900
7296
7297 OneNAND: Remove unused read_spareram
7298
7299 Remove unused read_spareram and add unlock_all as kernel does
7300
7301 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7302
7303 commit 0d042037b3cf8693ea0f793d0c292430bfc5a95c
7304 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
7305 Date: Tue Aug 25 10:30:26 2009 -0500
7306
7307 galaxy5200: Cleanup typo and trailing whitespace
7308
7309 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
7310
7311 commit f6a309080b2da9e509b5ee8d091dca5e175415b7
7312 Author: TsiChung Liew <tsicliew@gmail.com>
7313 Date: Wed Jul 22 18:42:45 2009 +0000
7314
7315 ColdFire: Fix compile warning messages
7316
7317 Change %08lX to %08X in board.c. Remove unused variable
7318 'oscillator' in mcf5227x/cpu_init.c and 'scm2' in
7319 mcf532x/cpu_init.c. Provide argument type cast in
7320 drivers/dma/MCD_dmaApi.c.
7321
7322 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
7323
7324 commit 88c811b153771a3d1bfe958297c69722efb278e9
7325 Author: TsiChung Liew <tsicliew@gmail.com>
7326 Date: Wed Jul 22 16:32:39 2009 +0000
7327
7328 ColdFire: Fix missing _IO_BASE which caused compile error
7329
7330 The compile error was caused by a recent patch. Affected platforms -
7331 M5253DEMO.h, M5253EVBE.h, and M54455EVB.h. Adding the _IO_BASE
7332 automatically defined to 0 in asm-m68k/io.h if it isn't set in
7333 platform configuration file.
7334
7335 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
7336
7337 commit 3a7b2c21fb08b022e3e624cd071002b4aaed1606
7338 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
7339 Date: Wed Jul 22 17:13:24 2009 +0200
7340
7341 Support up to 7 banks for ids as specified in JEDEC JEP106Z
7342
7343 see http://www.jedec.org/download/search/jep106Z.pdf
7344 Add some second source legacy flash chips 256x8.
7345
7346 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
7347 Signed-off-by: Stefan Roese <sr@denx.de>
7348
7349 commit 0d071cdd782e917b43e04869843df31670231ffd
7350 Author: Kim Phillips <kim.phillips@freescale.com>
7351 Date: Mon Aug 24 14:32:26 2009 -0500
7352
7353 net: tsec - handle user interrupt while waiting for PHY auto negotiation to complete
7354
7355 if you don't have firmware installed for the PHY to come to life, this
7356 wait can be painful - let's give the option to avoid it if we want.
7357
7358 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7359 Acked-by: Andy Fleming <afleming@freescale.com>
7360 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7361
7362 commit 4fccb818e7ee1190602e79aa5729a23bc349bf0c
7363 Author: Robin Getz <rgetz@blackfin.uclinux.org>
7364 Date: Thu Aug 20 10:50:20 2009 -0400
7365
7366 Add Transfer Size Option to tftp
7367
7368 Optionally add RFC 2349 "Transfer Size Option", so we can minimize the
7369 time spent sending data over the UART (now print a single line during a
7370 tftp transfer).
7371
7372 - If turned on (CONFIG_TFTP_TSIZE), U-Boot asks for the size of the file.
7373 - if receives the file size, a single line (50 chars) are printed.
7374 one hash mark == 2% of the file downloaded.
7375 - if it doesn't receive the file size (the server doesn't support RFC
7376 2349, prints standard hash marks (one mark for each UDP frame).
7377
7378 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
7379 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7380
7381 commit 488feef85229c08cd3aa1fa183bc8f483d2ae832
7382 Author: Robin Getz <rgetz@blackfin.uclinux.org>
7383 Date: Mon Aug 24 10:33:39 2009 -0400
7384
7385 Add debug message for Blackfin Ethernet Rx function.
7386
7387 Add a simple print for the Blackfin's Ethernet Rx function,
7388 so we can debug incomming Ethernet functions easier.
7389
7390 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
7391 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7392
7393 commit b1c0eaac110bc919e5b4e88821348e714493f266
7394 Author: Ben Warren <biggerbadderben@gmail.com>
7395 Date: Tue Aug 25 13:09:37 2009 -0700
7396
7397 Convert CS8900 Ethernet driver to CONFIG_NET_MULTI API
7398
7399 All in-tree boards that use this controller have CONFIG_NET_MULTI added
7400 Also:
7401 - changed CONFIG_DRIVER_CS8900 to CONFIG_CS8900
7402 - changed CS8900_BASE to CONFIG_CS8900_BASE
7403 - changed CS8900_BUS?? to CONFIG_CS8900_BUS??
7404 - cleaned up line lengths
7405 - modified VCMA9 command function that accesses the device
7406 - removed MAC address initialization from lib_arm/board.c
7407
7408 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7409 Tested-by: Wolfgang Denk <wd@denx.de>
7410 Acked-by: Wolfgang Denk <wd@denx.de>
7411
7412 commit d47628a6ecf80cd4584a50b6c795b90c985a48e5
7413 Author: Alessandro Rubini <rubini-list@gnudd.com>
7414 Date: Fri Aug 7 13:59:26 2009 +0200
7415
7416 arm nomadik: activate defrag choose 4k transfer block size
7417
7418 This chooses 4kB data size for both TFTP and NFS, as an example
7419 about how to use support for IP fragments.
7420
7421 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
7422 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7423
7424 commit bd931ca61c84039241d438ade4a9755ae0e5372f
7425 Author: Alessandro Rubini <rubini-list@gnudd.com>
7426 Date: Fri Aug 7 13:59:16 2009 +0200
7427
7428 nfs: accept CONFIG_NFS_READ_SIZE from config file
7429
7430 To take advantage of defragmented packets, the config file
7431 can define CONFIG_NFS_READ_SIZE to override the 1kB default.
7432 No support is there for an environment variable by now.
7433
7434 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
7435 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7436
7437 commit 89ba81d1079a07b8430a98c1746c6d411312eb0d
7438 Author: Alessandro Rubini <rubini-list@gnudd.com>
7439 Date: Fri Aug 7 13:59:06 2009 +0200
7440
7441 tftp: get the tftp block size from config file and from the environment
7442
7443 Increasing the block size is useful if CONFIG_IP_DEFRAG is
7444 used. Howerver, the last fragments in a burst may overflow the
7445 receiving ethernet, so the default is left at 1468, with thre new
7446 CONFIG_TFTP_BLOCKSIZE for config files. Further, "tftpblocksize"
7447 can be set in the environment.
7448
7449 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
7450 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7451
7452 commit 5cfaa4e54d0eb8232fa1cf092d955fdaed5b673d
7453 Author: Alessandro Rubini <rubini-list@gnudd.com>
7454 Date: Fri Aug 7 13:58:56 2009 +0200
7455
7456 net: defragment IP packets
7457
7458 The defragmenting code is enabled by CONFIG_IP_DEFRAG; the code is
7459 useful for TFTP and NFS transfers. The user can specify the maximum
7460 defragmented payload as CONFIG_NET_MAXDEFRAG (default 16k).
7461 Since NFS has a bigger per-packet overhead than TFTP, the static
7462 reassembly buffer can hold CONFIG_NET_MAXDEFRAG + the NFS overhead.
7463
7464 The packet buffer is used as an array of "hole" structures, acting as
7465 a double-linked list. Each new fragment can split a hole in two,
7466 reduce a hole or fill a hole. No support is there for a fragment
7467 overlapping two diffrent holes (i.e., thre new fragment is across an
7468 already-received fragment).
7469
7470 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
7471 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7472
7473 commit 68e74567cf317318df52dbcb2ac170ffc5e7758a
7474 Author: Feng Kan <fkan@amcc.com>
7475 Date: Fri Aug 21 10:59:42 2009 -0700
7476
7477 ppc4xx: Fix ECC Correction bug with SMC ordering for NDFC driver
7478
7479 Fix ECC Correction bug where the byte offset location were double
7480 flipped causing correction routine to toggle the wrong byte location
7481 in the ECC segment. The ndfc_calculate_ecc routine change the order
7482 of getting the ECC code.
7483 /* The NDFC uses Smart Media (SMC) bytes order */
7484 ecc_code[0] = p[2];
7485 ecc_code[1] = p[1];
7486 ecc_code[2] = p[3];
7487 But in the Correction algorithm when calculating the byte offset
7488 location, the s1 is used as the upper part of the address. Which
7489 again reverse the order making the final byte offset address
7490 location incorrect.
7491 byteoffs = (s1 << 0) & 0x80;
7492 .
7493 .
7494 byteoffs |= (s0 >> 4) & 0x08;
7495 The order is change to read it in straight and let the correction
7496 function to revert it to SMC order.
7497
7498 Signed-off-by: Feng Kan <fkan@amcc.com>
7499 Acked-by: Victor Gallardo <vgallardo@amcc.com>
7500 Acked-by: Prodyut Hazarika <phazarika@amcc.com>
7501 Signed-off-by: Stefan Roese <sr@denx.de>
7502
7503 commit 307ecb6db04eebdc06b8c87d48bf48d3cbd5e9d7
7504 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
7505 Date: Thu Aug 13 08:32:37 2009 -0500
7506
7507 Add support for USB on PSC3 for the mpc5200
7508
7509 Support USB on PSC3 on the mpc5200. Before this patch, enabling USB support
7510 would reconfigure PSC4 and PSC5 to USB. The mpc5200 does not support USB
7511 enabled on both the standard USB port and PSC3. This patch masks the
7512 appropriate bits when enabling USB.
7513
7514 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
7515 Acked-by: Grant Likely <grant.likely@secretlab.ca>
7516 Acked-by: Remy Bohmer <linux@bohmer.net>
7517
7518 commit 6b8548b0f7068379ad1efa4fa28725f361b2d3cd
7519 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7520 Date: Thu Aug 13 19:12:44 2009 +0200
7521
7522 Add driver for the ST M41T94 SPI RTC
7523
7524 This RTC is used in some Calao boards. The driver code is taken from
7525 the linux rtc-m41t94 driver
7526
7527 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7528
7529 commit 885fc78c28fbe773bcb4edc9dd0fdac05ebb5b38
7530 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7531 Date: Thu Aug 13 15:31:12 2009 +0200
7532
7533 Switch from per-driver to common definition of bin2bcd and bcd2bin
7534
7535 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7536 Acked-by: Stefan Roese <sr@denx.de>
7537
7538 commit e84aba135ed7145299304ef550e92f08b2c99d7a
7539 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7540 Date: Thu Aug 13 15:31:11 2009 +0200
7541
7542 Replace BCD2BIN and BIN2BCD macros with inline functions
7543
7544 In the process, also remove backward-compatiblity macros BIN_TO_BCD and
7545 BCD_TO_BIN and update the sole board using them to use the new bin2bcd
7546 and bcd2bin instead
7547
7548 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7549 Acked-by: Stefan Roese <sr@denx.de>
7550 Acked-by: Detlev Zundel <dzu@denx.de>
7551
7552 commit 5b53b29bc2e82b80b669f1d2402068c60d7fecd0
7553 Author: Eric Millbrandt <emillbrandt@coldhaus.com>
7554 Date: Thu Aug 13 10:14:21 2009 -0500
7555
7556 Add support for the galaxy5200
7557
7558 Add support for the DEKA Research and Development galaxy5200 board
7559
7560 The galaxy5200 is an Freescale mpc5200 based embedded industrial
7561 control board.
7562
7563 Signed-off-by: Eric Millbrandt <emillbrandt@dekaresearch.com>
7564
7565 commit 0a9e4e772123fe3e2bb499d7d2160c4cfd8a3a8d
7566 Author: Mike Frysinger <vapier@gentoo.org>
7567 Date: Fri Jul 24 16:34:32 2009 -0400
7568
7569 unify {CONFIG_,}ENV_IS_EMBEDDED
7570
7571 Some boards have fallen out of sync by defining CONFIG_ENV_IS_EMBEDDED
7572 manually. While it is useful to have this available to the build system,
7573 let's do it automatically rather than forcing people to opt into it.
7574
7575 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7576 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7577 Signed-off-by: Wolfgang Denk <wd@denx.de>
7578
7579 commit 02c9aa1d41f73fdcf8383a36cc0cbbfaf952855d
7580 Author: Robin Getz <rgetz@blackfin.uclinux.org>
7581 Date: Mon Jul 27 00:07:59 2009 -0400
7582
7583 Add md5sum and sha1 commands...
7584
7585 Now that we have sha1 and md5 in lib_generic, allow people to use
7586 them on the command line, for checking downloaded files.
7587
7588 Signed-off-by: Robin Getz <rgetz@analog.com>
7589
7590 commit 30fc5cd3116cb112d0aab7e6d7c8eef1b67ed075
7591 Author: Wolfgang Denk <wd@denx.de>
7592 Date: Tue Aug 25 12:22:38 2009 +0200
7593
7594 include/s3c24x0.h: fix S3C24X0_SPI_CHANNEL declaration
7595
7596 The SPI controller on the S3C24X0 has 8 bit registers, not 32 bit.
7597
7598 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7599 Signed-off-by: Wolfgang Denk <wd@denx.de>
7600
7601 commit e637385e69f63bc73b9dfd2ddd8d0f383790ca28
7602 Author: Mike Frysinger <vapier@gentoo.org>
7603 Date: Thu Aug 20 19:17:59 2009 -0400
7604
7605 Blackfin: fix typos in gpio comments
7606
7607 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7608
7609 commit c2fbcb6ae86c10621a386c13be57eaa766221ed5
7610 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
7611 Date: Tue Aug 18 04:49:57 2009 -0400
7612
7613 Blackfin: cm-bf527/cm-bf537: increase flash sectors
7614
7615 Newer revisions of these boards have slightly larger flashes, so increase
7616 the configured number of sectors so that U-Boot works on all revisions.
7617
7618 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
7619 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7620
7621 commit a794f59a75bf9fd4a44f1ad2349cae903c42b89c
7622 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7623 Date: Sun Aug 23 14:14:52 2009 +0200
7624
7625 sh/rsk7203: add missing include net.h
7626
7627 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7628
7629 commit 6ac9f47977a9fc1876979871eeb14f26ba1bdbe6
7630 Author: Mike Frysinger <vapier@gentoo.org>
7631 Date: Sun Aug 23 02:47:59 2009 -0400
7632
7633 start a linker script helper file
7634
7635 Start a common header file for common linker script code (such as
7636 workarounds for older linkers) rather than doing this in the build system.
7637
7638 As fallout, we no longer execute the linker every time config.mk is
7639 included by a build file (which can easily be 70+ times), but rather only
7640 execute it once.
7641
7642 This also fixes a bug in the major version checking by creating a macro to
7643 easily compare versions and keep people from making the same common
7644 mistake (forgetting to check major and minor together).
7645
7646 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7647
7648 commit 2ed0869d30602eb660569eababb8fedff36bd23a
7649 Author: Mike Frysinger <vapier@gentoo.org>
7650 Date: Sat Aug 22 19:50:22 2009 -0400
7651
7652 Blackfin: use common code to preprocess linker script
7653
7654 Now that the common code preprocesses the linker script, the Blackfin code
7655 no longer needs to do it.
7656
7657 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7658
7659 commit 4d3758c835c7e96da2a291e7fb5acfc19bc06e8e
7660 Author: Mike Frysinger <vapier@gentoo.org>
7661 Date: Sat Aug 22 19:48:56 2009 -0400
7662
7663 .gitignore: ignore generated u-boot.lds
7664
7665 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
7666
7667 commit 79b91de958511840d2a7491be92d435b7ef43f17
7668 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7669 Date: Sat Aug 22 14:21:53 2009 +0200
7670
7671 include/mmc.h: Fix typo in IS_SD() macro
7672
7673 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
7674
7675 commit 963f2f611741f8d9c38bd7caf20ae8c95cab7b3f
7676 Author: Wolfgang Denk <wd@denx.de>
7677 Date: Sat Aug 22 23:27:26 2009 +0200
7678
7679 Prepare 2009.08-rc3
7680
7681 Update CHANGELOG, minor Coding Style cleanup.
7682
7683 Signed-off-by: Wolfgang Denk <wd@denx.de>
7684
7685 commit 5b2da6a309266f21cbb68f06fcfdf9ba141022e7
7686 Author: Michal Simek <monstr@monstr.eu>
7687 Date: Fri Aug 21 06:52:25 2009 +1000
7688
7689 qemu-mips: Fix Qemu website
7690
7691 Signed-off-by: Michal Simek <monstr@monstr.eu>
7692 Signed-off-by: Michal Simek <michal.simek@petalogix.com>
7693 Acked-by: Shinya Kuribayashi <skuribay@pobox.com>
7694
7695 commit 79f516bccc3cff5a5cd4b3dffb7d254e746fdbde
7696 Author: Kim Phillips <kim.phillips@freescale.com>
7697 Date: Fri Aug 21 16:34:38 2009 -0500
7698
7699 mpc83xx: accommodate larger kernel sizes by default
7700
7701 linux mpc83xx_defconfig kernels are getting bigger, accommodate for
7702 their growth by adjusting default load and fdt addresses.
7703
7704 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7705
7706 commit 8eceeb7fd656d6d071c0a8b615e178aca5775fff
7707 Author: Kim Phillips <kim.phillips@freescale.com>
7708 Date: Fri Aug 21 16:33:15 2009 -0500
7709
7710 mpc83xx: mpc8377erdb - change DDR settings to those from latest bsp
7711
7712 when using Linus' 83xx_defconfig, the mpc8377rdb would hang at boot
7713 at either:
7714
7715 NET: Registered protocol family 16
7716
7717 or the
7718
7719 io scheduler cfq registered
7720
7721 message. Fixing up these DDR settings appears to fix the problem.
7722
7723 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7724
7725 commit 27c5248dd4c9ba4a36899689595956c5e59e349a
7726 Author: Kim Phillips <kim.phillips@freescale.com>
7727 Date: Fri Aug 21 16:31:20 2009 -0500
7728
7729 mpc83xx: tqm8349 - remove pci & flash window conflict
7730
7731 commit 9993e196da707a0a1cd4584f1fcef12382c1c144 "mpc83xx: convert all
7732 remaining boards over to 83XX_GENERIC_PCI" remapped pci windows on
7733 tqm834x to make it more consistent with the other 83xx boards. During
7734 that time however, the author failed to realize that FLASH_BASE was
7735 occupying the same range as what PCI1_MEM_BASE was being assigned.
7736
7737 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7738 Tested-by: Wolfgang Denk <wd@denx.de>
7739
7740 commit 6d2c26ac831f033b0025cfb256365a047f8dd115
7741 Author: Heiko Schocher <hs@denx.de>
7742 Date: Fri Aug 21 16:30:30 2009 -0500
7743
7744 mpc83xx: add missing CSCONFIG_ODT_WR_CFG for 832x CPUs
7745
7746 Signed-off-by: Heiko Schocher <hs@denx.de>
7747 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7748
7749 commit 193b4cb3f641ed0fd9bb79b8fa4671882c50ffdb
7750 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7751 Date: Fri Aug 21 16:27:05 2009 -0500
7752
7753 mpc83xx: mpc8349 - delete unused SYS_MID_FLASH_JUMP
7754
7755 This was introduced with the MPC8349EMDS board, and then copied to
7756 a couple other boards by nature of being the reference implementation.
7757
7758 u-boot$git grep CONFIG_SYS_MID_FLASH_JUMP
7759 include/configs/MPC8349EMDS.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
7760 include/configs/sbc8349.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
7761 include/configs/vme8349.h:#define CONFIG_SYS_MID_FLASH_JUMP 0x7F000000
7762 u-boot$
7763
7764 It currently isn't used, so delete it before it spreads further.
7765
7766 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7767 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7768
7769 commit c0d660fbbede322648ec79d3e39389e48f5fab24
7770 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
7771 Date: Fri Aug 21 16:21:58 2009 -0500
7772
7773 mpc83xx: sbc8349 - make enabling PCI more user friendly
7774
7775 Prior to this commit, to enable PCI, you had to go manually
7776 edit the board config header, which isn't really user friendly.
7777 This adds the typical PCI make targets to the toplevel Makefile
7778 in accordance with what is being done with other boards.
7779
7780 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
7781 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7782
7783 commit a3c5057a6c05b4c7235a270486220e4511366133
7784 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7785 Date: Fri Aug 7 23:37:54 2009 +0200
7786
7787 eeprom_m95xxx: remove unused variable i
7788
7789 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7790
7791 commit 8cf19b9fec92d8aa22b2fe4b4e6976743b1daa51
7792 Author: Ilya Yanok <yanok@emcraft.com>
7793 Date: Fri Jul 17 15:02:42 2009 +0400
7794
7795 jffs2: some fixes to summary support
7796
7797 This patch fixes some issues with JFFS2 summary support in U-Boot.
7798 1/ Summary support made compilation configurable (as summary support
7799 considered expiremental even in Linux).
7800 2/ Summary code can do unaligned 16-bit and 32-bit memory accesses.
7801 We need to get data byte by byte to exclude data aborts.
7802 3/ Make summary scan in two passes so we can safely fall back to full
7803 scan if we found unsupported entry in the summary.
7804
7805 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7806
7807 commit 11906936e168d12d684bb3d2930a62693ba3d84e
7808 Author: Prafulla Wadaskar <prafulla@marvell.com>
7809 Date: Mon Aug 10 18:55:54 2009 +0530
7810
7811 arm: rd6281a: Fixed NAND specific warning
7812
7813 It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
7814 for NAND specific warning removal, same is done in this patch
7815
7816 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
7817
7818 commit b5ffb193330113d2e00489d96bf8ec1f541ed4e1
7819 Author: Wolfgang Denk <wd@denx.de>
7820 Date: Thu Aug 13 00:37:16 2009 +0200
7821
7822 TRAB: make independent of specific libgcc helper routines
7823
7824 The TRAB board references local libgcc helper routines
7825 (lib_arm/div0.o and lib_arm/_umodsi3.o) which cause build problems
7826 when we try to use the normal, compiler provided libgcc instead.
7827 Removing these references allows to build both with and without the
7828 local libgcc helper routines.
7829
7830 Signed-off-by: Wolfgang Denk <wd@denx.de>
7831
7832 commit 1aada9cd643567d351667138851e9231ccfa245a
7833 Author: Wolfgang Denk <wd@denx.de>
7834 Date: Mon Aug 17 14:00:53 2009 +0200
7835
7836 Fix all linker scripts for older binutils versions (pre-2.16)
7837
7838 Commit f62fb99941c6 fixed handling of all rodata sections by using a
7839 wildcard combined with calls to ld's builtin functions SORT_BY_ALIGNMENT()
7840 and SORT_BY_NAME(). Unfortunately these functions were only
7841 introduced with biunutils version 2.16, so the modification broke
7842 building with all tool chains using older binutils.
7843
7844 This patch makes it work again. This is done by omitting the use of
7845 these functions for such old tool chains. This will result in
7846 slightly larger target binaries, as the rodata sections are no longer
7847 in optimal order alignment-wise which reauls in unused gaps, but the
7848 effect was found to be insignificant - especially compared to the fact
7849 that you cannot build U-Boot at all in the current state.
7850
7851 As ld seems to have no support for conditionals we run the linker
7852 script through the C preprocessor which can be easily used to remove
7853 the unwanted function calls.
7854
7855 Note that the C preprocessor must be run with the "-ansi" (or a
7856 "-std=") option to make sure all the system-specific predefined
7857 macros outside the reserved namespace are suppressed. Otherise, cpp
7858 might for example substitute "powerpc" to "1", thus corrupting for
7859 example "OUTPUT_ARCH(powerpc)" etc.
7860
7861 Signed-off-by: Wolfgang Denk <wd@denx.de>
7862 Cc: Mike Frysinger <vapier@gentoo.org>
7863
7864 commit f772acf8a584067033eff1e231fcd1fb3a00d3d9
7865 Author: Wolfgang Denk <wd@denx.de>
7866 Date: Mon Aug 17 13:17:29 2009 +0200
7867
7868 ARM: compiler options cleanup - improve tool chain support
7869
7870 For some time there have been repeated reports about build problems
7871 with some ARM (cross) tool chains. Especially issues about
7872 (in)compatibility with the tool chain provided runtime support
7873 library libgcc.a caused to add and support a private implementation
7874 of such runtime support code in U-Boot. A closer look at the code
7875 indicated that some of these issues are actually home-made. This
7876 patch attempts to clean up some of the most obvious problems and make
7877 building of U-Boot with different tool chains easier:
7878
7879 - Even though all ARM systems basicy used the same compiler options
7880 to select a specific ABI from the tool chain, the code for this was
7881 distributed over all cpu/*/config.mk files. We move this one level
7882 up into lib_arm/config.mk instead.
7883
7884 - So far, we only checked if "-mapcs-32" was supported by the tool
7885 chain; if yes, this was used, if not, "-mabi=apcs-gnu" was
7886 selected, no matter if the tool chain actually understood this
7887 option. There was no support for EABI conformant tool chains.
7888 This patch implements the following logic:
7889
7890 1) If the tool chain supports
7891 "-mabi=aapcs-linux -mno-thumb-interwork"
7892 we use these options (EABI conformant tool chain).
7893 2) Otherwise, we check first if
7894 "-mapcs-32"
7895 is supported, and then check for
7896 "-mabi=apcs-gnu"
7897 If one test succeeds, we use the first found option.
7898 3) In case 2), we also test if "-mno-thumb-interwork", and use
7899 this if the test succeeds. [For "-mabi=aapcs-linux" we set
7900 "-mno-thumb-interwork" mandatorily.]
7901
7902 This way we use a similar logic for the compile options as the
7903 Linux kernel does.
7904
7905 - Some EABI conformant tool chains cause external references to
7906 utility functions like raise(); such functions are provided in the
7907 new file lib_arm/eabi_compat.c
7908
7909 Note that lib_arm/config.mk gets parsed several times, so we must
7910 make sure to add eabi_compat.o only once to the linker list.
7911
7912 Signed-off-by: Wolfgang Denk <wd@denx.de>
7913 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7914 Cc: Dirk Behme <dirk.behme@googlemail.com>
7915 Cc: Magnus Lilja <lilja.magnus@gmail.com>
7916 Cc: Tom Rix <Tom.Rix@windriver.com>
7917 Cc: Prafulla Wadaskar <prafulla@marvell.com>
7918 Acked-by: Sergey Kubushyn <ksi@koi8.net>
7919 Tested-by: Magnus Lilja <lilja.magnus@gmail.com>
7920 Tested-by: Andrzej Wolski <awolski@poczta.fm>
7921 Tested-by: Gaye Abdoulaye Walsimou <walsimou@walsimou.com>
7922 Tested-by: Tom Rix <Tom.Rix@windriver.com>
7923 Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7924
7925 commit 269610f6ba2e4a7bc27d2e53d43160614016964f
7926 Author: Mingkai Hu <Mingkai.hu@freescale.com>
7927 Date: Thu Jul 30 17:56:51 2009 +0800
7928
7929 NAND boot: fix nand_load overlap issue
7930
7931 The code copy data from NAND flash block by block, so when
7932 the data length isn't a whole-number multiple of the block
7933 size, it will overlap the rest space.
7934
7935 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
7936 Signed-off-by: Scott Wood <scottwood@freescale.com>
7937
7938 commit 1fc1d9aed08f2b3366d634fda6712a710b2cff9a
7939 Author: Giulio Benetti <giulio.benetti@micronovasrl.com>
7940 Date: Fri Jul 31 17:30:34 2009 -0500
7941
7942 add WATCHDOG_RESET() on nand write and read
7943
7944 Signed-off-by: giulio.benetti@micronovasrl.com
7945 Acked-by: Wolfgang Denk <wd@denx.de>
7946 Signed-off-by: Scott Wood <scottwood@freescale.com>
7947
7948 commit b1e849f2201bbbf3ca81fde164f154f9caf7f0e9
7949 Author: Peter Tyser <ptyser@xes-inc.com>
7950 Date: Wed Feb 4 15:14:05 2009 -0600
7951
7952 tsec: Wait for auto-negotiation to complete without link
7953
7954 Previously, waiting for auto-negotiation would only occur if a valid
7955 link had been detected. Problems arose when attempting to use a
7956 tsec immediately after bootup but before link was achieved, eg:
7957 => dhcp
7958 Auto-neg error, defaulting to 10BT/HD
7959 eTSEC1: No link.
7960 Auto-neg error, defaulting to 10BT/HD
7961 eTSEC2: No link.
7962 =>
7963
7964 With this patch applied the same operation as above resulted in:
7965 => dhcp
7966 Waiting for PHY auto negotiation to complete. done
7967 Enet starting in 1000BT/FD
7968 Speed: 1000, full duplex
7969
7970 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7971 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7972
7973 commit 477fa6378fbd3e47a5e2e83d0dd3970d5b1c8371
7974 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7975 Date: Thu Aug 20 10:14:11 2009 +0200
7976
7977 arm: kirkwood: See to it that sent data is 8-byte aligned
7978
7979 U-boot might use non-8-byte-aligned addresses for sending data, which
7980 the kwgbe_send doesn't accept (bootp does this for me). This patch
7981 copies the data to be sent to a malloced temporary buffer if it is
7982 non-aligned.
7983
7984 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7985 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7986
7987 commit cad713bf7548b9e90433dac8270165402a6c9cc3
7988 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
7989 Date: Thu Aug 20 10:13:06 2009 +0200
7990
7991 Wait for the link to come up on kirkwood network init
7992
7993 This patch makes the device wait for up to 5 seconds for the link to
7994 come up, similar to what many of the other network drivers do. This
7995 avoids confusing situations where, e.g., a tftp fails when initiated
7996 early after U-boot has started (before the link has come up).
7997
7998 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
7999 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8000
8001 commit bb1ca3b27f7fba8c73cb10279a6a8b8b69a308ff
8002 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
8003 Date: Thu Aug 20 10:12:28 2009 +0200
8004
8005 arm:kirkwood Define kirkwood phy address magic number
8006
8007 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
8008 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8009
8010 commit f81ecb5d3300bf92d17302d3712f30585c182da9
8011 Author: Timur Tabi <timur@freescale.com>
8012 Date: Mon Aug 17 15:55:38 2009 -0500
8013
8014 e1000: fix PCI memory addressing
8015
8016 The Intel E1000 driver was making assumptions about the relationship between
8017 some virtual, physical, and PCI addresses.
8018
8019 Also fix some bad usage of the DEBUGOUT macro
8020
8021 Signed-off-by: Timur Tabi <timur@freescale.com>
8022 Acked-by: Kumar Gala <galak@kernel.crashing.org>
8023 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8024
8025 commit b644006e1a7baa227aedc606ecdf0bb5eeb24cab
8026 Author: Ilya Yanok <yanok@emcraft.com>
8027 Date: Wed Aug 12 16:42:48 2009 +0400
8028
8029 jffs2: clean the cache in case of malloc fails in build_lists
8030
8031 We should call jffs2_clean_cache() if we return from jffs2_build_lists()
8032 with an error to prevent usage of incomplete lists. Also we should
8033 free() a local buffer to prevent memory leaks.
8034
8035 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
8036
8037 commit 7ff66bb0be80cadd681be22a72e5eb02ee14c878
8038 Author: Heiko Schocher <hs@denx.de>
8039 Date: Wed Aug 12 10:17:03 2009 +0200
8040
8041 ppc: trigger WDT before starting Linux
8042
8043 Signed-off-by: Heiko Schocher <hs@denx.de>
8044
8045 commit 918319c705d8a3d6251919a660baef32ff3a829a
8046 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
8047 Date: Wed Jul 22 18:30:03 2009 +0200
8048
8049 Update the mtd driver name in bootargs for at91-based boards
8050
8051 The name of the atmel nand driver in the kernel changed from at91_nand
8052 to atmel_nand back in June 2008, but the at91-based boards config files
8053 still refer to at91_nand. This patch updates them with the new name
8054
8055 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
8056
8057 commit 8fa656aa5289815d942ebdc26182ccb9f2b9c86f
8058 Author: Ben Goska <goskab@onid.oregonstate.edu>
8059 Date: Fri Aug 14 10:03:36 2009 -0700
8060
8061 omap3: Fixed a problem with hwecc
8062
8063 In commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e there
8064 was a typo that offset all the ecc registers by 4 bytes, fixed that.
8065
8066 Signed-off-by: Ben Goska <goskab@onid.oregonstate.edu>
8067 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
8068
8069 commit 514bab6609acd1a2a19fdd75c2f6255178db7c96
8070 Author: Stefan Roese <sr@denx.de>
8071 Date: Mon Aug 17 16:57:53 2009 +0200
8072
8073 ppc4xx: Fix "chip_config" command for AMCC Arches
8074
8075 This patch fixes the "chip_config" command for I2C bootstrap EEPROM
8076 configuration. First it changes the I2C bootstrap EEPROM address to
8077 0x54 as this is used on Arches (instead of 0x52 on Canyonlands/
8078 Glacier). Additionally, the NAND bootstrap settings are removed
8079 for Arches since Arches doesn't support NAND-booting.
8080
8081 Signed-off-by: Stefan Roese <sr@denx.de>
8082
8083 commit 4af34177b657e91263919a307fd0b0865a299e52
8084 Author: Wolfgang Denk <wd@denx.de>
8085 Date: Sun Aug 16 23:40:13 2009 +0200
8086
8087 Monahans: avoid floating point calculations
8088
8089 Current code for the Monahans CPU defined OSCR_CLK_FREQ as 3.250 (MHz)
8090 which caused floating point operations to be used. This resulted in
8091 unresolved references to some FP related libgcc functions when using
8092 U-Boot's private libgcc functions.
8093
8094 Change the code to use fixed point math only.
8095
8096 Signed-off-by: Wolfgang Denk <wd@denx.de>
8097
8098 commit e393e2e9bc5cd3d5484e193d1380e7cd7587ab5c
8099 Author: Kumar Gala <galak@kernel.crashing.org>
8100 Date: Fri Aug 14 16:43:22 2009 -0500
8101
8102 85xx: Fix addrmap to include memory
8103
8104 When we init the addrmap based on the TLB we will not end up getting
8105 the TLB that covers memory if we are using SPD. The reason is we
8106 haven't relocated at the point that we setup the memory TLB and thus it
8107 will not get setup in the addrmap.
8108
8109 Instead we can just walk over the TLB array after we've relocated and
8110 see all the TLBs that have been set and use that information to populate
8111 the initial addrmap. By doing this we insure that we get the TLB
8112 entries that cover memory.
8113
8114 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8115
8116 commit 7dedefdf749ff02c1086f7ddb8cb83a77b00d030
8117 Author: John Schmoller <jschmoller@xes-inc.com>
8118 Date: Wed Aug 12 10:55:47 2009 -0500
8119
8120 flash: Fix CFI buffer size bug
8121
8122 Fix bug introduced by 9c048b523413ae5f3ff34e00cf57569c3368ab51.
8123
8124 The cfi_flash.c driver cast the flash buffer size to a uchar in
8125 flash_write_cfibuffer(). On some flash parts, (tested on Numonyx
8126 part PC32F512M29EWH), the buffer size is 1KB. Remove the cast to
8127 uchar to enable buffer sizes to be larger.
8128
8129 Signed-off-by: John Schmoller <jschmoller@xes-inc.com>
8130 Signed-off-by: Stefan Roese <sr@denx.de>
8131
8132 commit f6e3a1fa92f61083885178101e973c86b419a6f7
8133 Author: Mike Frysinger <vapier@gentoo.org>
8134 Date: Thu Aug 13 00:32:14 2009 -0400
8135
8136 trab: rename spi_init()
8137
8138 The local board-specific spi_init() function conflicts with the common SPI
8139 layer, so rename it to something board-specific.
8140
8141 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8142
8143 commit 253cb831f5861358a7fa673305cdf7ded1096f44
8144 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
8145 Date: Wed Jul 29 06:05:20 2009 -0400
8146
8147 zlib: add watchdog reset call
8148
8149 This patch adds watchdog reset call to allow its invokation during decompression
8150 phase. This control was present on old zlib version and here it is
8151 backported for those relevant routines. This patch is sent as a zlib separate
8152 one beacuse it was not tested due to specific board lack.
8153 zlib patches will be unified just in one when this will be validated through
8154 tests.
8155
8156 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
8157
8158 commit dce3d797102b6618e8bdd4a09cfd35969f165d86
8159 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
8160 Date: Wed Jul 29 08:05:08 2009 -0400
8161
8162 zlib: updated to v.1.2.3
8163
8164 This patch updates zlib to the latest stable version.
8165 Only relevant zlib parts were ported to u-boot tree, as already did for the
8166 current zlib (0.95). New zlib guarantees a faster inflate performances
8167 other then others improvements as explained at www.zlib.net.
8168 It also includes Alessandro Rubini's patches to allow 0 as destination pointer
8169 and to call watchdog reset if required by architecture.
8170
8171 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
8172 Reviewed-by: Angelo Castello <angelo.castello@st.com>
8173 Reviewed-by: Alessandro Rubini <rubini-list@gnudd.com>
8174
8175 commit 3426d65daab6af483b177ed502038f52ed2e5aef
8176 Author: Heiko Schocher <hs@denx.de>
8177 Date: Tue Aug 11 10:37:58 2009 +0200
8178
8179 dtt, lm81: move unneccessary printf into a debug printf
8180
8181 Signed-off-by: Heiko Schocher <hs@denx.de>
8182
8183 commit 54e399f110bbaa24e662e6dd9e88ddb86989d668
8184 Author: Mark Jackson <mpfj-list@mimc.co.uk>
8185 Date: Tue Aug 11 11:33:47 2009 +0100
8186
8187 MIMC200: reduce LCD pixclock
8188
8189 The initial pixclock for the MIMC200 board is wrong (and causes
8190 screen corruption due to DMA underruns).
8191
8192 This patch simply reduces the pixel clock to fix the problem.
8193
8194 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
8195
8196 commit 1443cd7e54d6893ab7cc51d93fe7759cdaa8b31f
8197 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8198 Date: Wed Jul 1 14:04:05 2009 -0400
8199
8200 UEC FIXED PHY: Determine fixed-phy port using UEC interface name.
8201
8202 Fixed a misunderstanding in the original implementation, 'devnum' that
8203 was used in the cpu/ppc4xx/4xx_enet.c implementation was NOT the
8204 PHY's SMI address, rather it was the number of the MAC interface on
8205 the CPU. The equivalent of this for uec_phy will be the UEC number
8206 stored in mii_info->dev->name. Usage example is updated for uec.
8207
8208 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8209 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8210
8211 commit 1a9519373b977ef3f7c9563ad3acb6c6f2424657
8212 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8213 Date: Wed Jul 1 14:03:15 2009 -0400
8214
8215 Assigned a static SMI address to all UECs TBIPA address.
8216
8217 It is set to 0x1F by default and can be overwritten on the board
8218 header file by defining CONFIG_UTBIPAR_INIT_TBIPA. This allows
8219 the CPU to simply "reserve" one SMI address instead of using
8220 a different one for each UEC.
8221
8222 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8223 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8224
8225 commit 9fd38a01cbc0ce4a8db41f72677103ed04b23db5
8226 Author: Prafulla Wadaskar <prafulla@marvell.com>
8227 Date: Mon Aug 10 19:43:06 2009 +0530
8228
8229 net: kirkwood: updates: used eth_setenv_enetaddr api
8230
8231 eth_setenv_enetaddr is avaible by upper layer
8232 using this saves 204 bytes on total image size
8233
8234 used Local OUI instead of Marvell OUI for
8235 random MAC address generation logic
8236
8237 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8238 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8239
8240 commit ecbd2078a1f56c85b6c56afaaed862bf92ccd3f3
8241 Author: Roy Zang <tie-fei.zang@freescale.com>
8242 Date: Tue Aug 11 03:48:05 2009 +0800
8243
8244 Fix E1000 build warning on AP1000 board
8245
8246 Fix E1000 build warning on AP1000 board
8247 Fix the build warning on AP1000 board:
8248 e1000.c:131: warning: 'e1000_read_eeprom' used but never defined
8249 e1000.c:2012: warning: 'e1000_set_phy_mode' defined but not used
8250
8251 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
8252 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8253
8254 commit b3af1d698b031e721bacaee8715d79daaf823de6
8255 Author: Sandeep Paulraj <s-paulraj@ti.com>
8256 Date: Mon Aug 10 12:24:40 2009 -0400
8257
8258 ARM: Davinci DM355: Enabling DM9000 on DM355 EVM
8259
8260 Due to recent changes to the NET support on U-boot, DM9000
8261 is no longer detected on the DM355 EVM.
8262 This minor update enables DM9000 on the DM355 EVM.
8263 Tested on the DM355 EVM
8264
8265 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
8266 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8267
8268 commit 08c2df33f1cd5935938486e968696f94ad406313
8269 Author: Prafulla Wadaskar <prafulla@marvell.com>
8270 Date: Mon Aug 10 19:23:19 2009 +0530
8271
8272 net: phy: bugfixes: mv88E61xx compiler warnings fixed
8273
8274 1. mv88E61xx driver compiler warnings fixed
8275 2. idstr if-else statements changed to switch() construct
8276 and added default case too.
8277 This fixed idstr may be uninitialized warning
8278
8279 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8280 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8281
8282 commit 750326e5d540885e3ec36bda9464b8269249f6ce
8283 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
8284 Date: Mon Aug 10 11:00:00 2009 +0800
8285
8286 arm: A320: driver for FTMAC100 ethernet controller
8287
8288 This patch adds an FTMAC100 ethernet driver for Faraday A320 evaluation board.
8289
8290 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
8291 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8292
8293 commit f90dc43fd67eea71124b999a7d5e617d0d86795b
8294 Author: Kumar Gala <galak@kernel.crashing.org>
8295 Date: Mon Aug 10 16:40:55 2009 -0500
8296
8297 85xx: Removed BEDBUG support from FSL 85xx boards
8298
8299 For some reason the MPC8544 enabled BEDBUG if PCI was enabled and that
8300 got copied int the MPC8536, MPC8572 and P2020 DS boards. The BEDBUG
8301 support has never been made to work completely on e500/85xx so we
8302 just disable it to save space and match the other FSL 85xx boards.
8303
8304 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8305
8306 commit eb1a4d0a471505c169bef19a73a60f8641f0b875
8307 Author: Wolfgang Denk <wd@denx.de>
8308 Date: Mon Aug 10 10:39:12 2009 +0200
8309
8310 Prepare 2009.08-rc2
8311
8312 Update CHANGELOG
8313
8314 Signed-off-by: Wolfgang Denk <wd@denx.de>
8315
8316 commit 53cc18c71b2b920cca171874c6663e274fa80556
8317 Author: Wolfgang Denk <wd@denx.de>
8318 Date: Mon Aug 10 10:38:34 2009 +0200
8319
8320 Minor coding style cleanup.
8321
8322 Signed-off-by: Wolfgang Denk <wd@denx.de>
8323
8324 commit d371708a1beda0f529756e614af785b30461379e
8325 Author: Wolfgang Denk <wd@denx.de>
8326 Date: Mon Aug 10 09:59:10 2009 +0200
8327
8328 net/tftp.c: fix warning: pointer targets differ in signedness
8329
8330 tftp.c:294: warning: pointer targets in passing argument 1 of 'strlen'
8331 differ in signedness
8332
8333 This was only visible for the utx8245 board which seems to have DEBUG
8334 enabled.
8335
8336 Signed-off-by: Wolfgang Denk <wd@denx.de>
8337
8338 commit 3ed9e943fdfe51174b23989d48563b8c1b7d2ea8
8339 Author: Dirk Behme <dirk.behme@googlemail.com>
8340 Date: Sat Aug 8 16:06:47 2009 +0200
8341
8342 ARM Cortex A8: Remove bogus config.mk entries
8343
8344 Remove bogus config.mk entry, fix newline and remove redundant
8345 omap3/config.mk
8346
8347 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8348
8349 commit cd3dcba1422d3441503251fbc69cf2437c440781
8350 Author: Dirk Behme <dirk.behme@googlemail.com>
8351 Date: Sat Aug 8 12:46:09 2009 +0200
8352
8353 OMAP3: Fix missing GPMC_CONFIG_CS0_BASE
8354
8355 Applying two indepenent OMAP3 patches resulted in missing
8356 GPMC_CONFIG_CS0_BASE. Patch "omap3: embedd gpmc_cs into gpmc
8357 config struct" removes GPMC_CONFIG_CS0_BASE, independent patch
8358 "omap3: bug fix for NOR boot support" introduces it's usage.
8359 Re-introduce GPMC_CONFIG_CS0_BASE.
8360
8361 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8362
8363 commit ba3dbaf281130029ecb970a922551902c1d80b50
8364 Author: Ilya Yanok <yanok@emcraft.com>
8365 Date: Mon Jun 8 04:12:49 2009 +0400
8366
8367 mxc-mmc: sdhc host driver for MX2 and MX3 proccessor
8368
8369 This is a port of Linux driver for SDHC host controller hardware
8370 found on Freescale's MX2 and MX3 processors. Uses new generic MMC
8371 framework (CONFIG_GENERIC_MMC) and it looks like there are some
8372 problems with a framework (at least on LE cpus). Some of these
8373 problems are addressed in the following patches.
8374
8375 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
8376
8377 commit 642d7b63c343633dcafc4e23a20e32604a05ff13
8378 Author: Alessandro Rubini <rubini-list@gnudd.com>
8379 Date: Fri Aug 7 12:35:47 2009 +0200
8380
8381 kirkwood/gpio.h: remove duplicate definition
8382
8383 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
8384
8385 commit 3ac374c0f0b7d856f1a43317a286f2079106bd6a
8386 Author: Albin Tonnerre <albin.tonnerre@free-electrons.com>
8387 Date: Fri Aug 7 12:37:36 2009 +0200
8388
8389 Add driver for the ST M95xxx SPI EEPROM
8390
8391 This chip is used in a number of boards manufactured by Calao-Systems
8392 which should be supported soon. This driver provides the necessary
8393 spi_read and spi_write functions necessary to communicate with the chip.
8394
8395 Signed-off-by: Albin Tonnerre <albin.tonnerre@free-electrons.com>
8396
8397 commit 30951960bae9a2c33e324a7165962a082e913f9e
8398 Author: Prafulla Wadaskar <prafulla@marvell.com>
8399 Date: Fri Aug 7 22:27:32 2009 +0530
8400
8401 arm: Sheevaplug: Fixed NAND specific warning
8402
8403 It is recommended to define the macro CONFIG_SYS_64BIT_VSPRINTF
8404 for NAND specific warning removal, same is done in this patch
8405
8406 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
8407
8408 commit 317734966e763fdee183898c0ed940c9bada2541
8409 Author: Josh Boyer <jwboyer@linux.vnet.ibm.com>
8410 Date: Fri Aug 7 13:53:20 2009 -0400
8411
8412 Dual-license IBM code contributions
8413
8414 It was brought to our attention that U-Boot contains code derived from the
8415 IBM OpenBIOS source code originally provided with some of the older PowerPC
8416 4xx development boards. As a result, the original license of this code has
8417 been carried in the various files for a number of years in the U-Boot project.
8418
8419 IBM is dual-licensing the IBM code contributions already present in U-Boot
8420 under either the terms of the GNU General Public License version 2, or the
8421 original code license already present.
8422
8423 Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
8424
8425 commit cfd700be9f5ed289fd57a9bd61e266319badcb0d
8426 Author: Kumar Gala <galak@kernel.crashing.org>
8427 Date: Wed Aug 5 09:03:54 2009 -0500
8428
8429 fdt: Fix fdt_pci_dma_ranges handling of 64-bit ranges
8430
8431 If the size of a region equal to 4G it can't be represnted in a 32-bit
8432 BAR so we should have marked that case as MEM64.
8433
8434 Additionally bump the number of inbound windows up to 4 to handle the
8435 fact that Freescale PPCs that have an implicit window for CCSRBAR.
8436
8437 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8438
8439 commit 59b4d7471c42e955bd9846892a0cc7478171778d
8440 Author: Wolfgang Denk <wd@denx.de>
8441 Date: Thu Aug 6 21:29:59 2009 +0200
8442
8443 ARM EABI: add new helper functions resp. function names
8444
8445 The ARM EABI defines new names for GCC helper functions,
8446 and GCC seems to need some new functions as well.
8447
8448 This patch is a minimal-invasive approach to fix problems with EABI
8449 conformant tool chains (to be used with "USE_PRIVATE_LIBGCC=yes").
8450
8451 Signed-off-by: Wolfgang Denk <wd@denx.de>
8452 Tested-by: Dirk Behme <dirk.behme@googlemail.com>
8453
8454 commit 197324d7d998a791e5137b8176981b4af25220ae
8455 Author: Peter Tyser <ptyser@xes-inc.com>
8456 Date: Wed Aug 5 16:18:44 2009 -0500
8457
8458 hush: Fix bogus free() call
8459
8460 An off-by-one error in hush.c resulted in an unintentional free() call
8461 every time a command was executed
8462
8463 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8464
8465 commit ff27650bb255e2275a212357b78c3b77cbf1d2e9
8466 Author: Detlev Zundel <dzu@denx.de>
8467 Date: Wed Aug 5 18:37:45 2009 +0200
8468
8469 digsy_mtc: Update default environment
8470
8471 Signed-off-by: Detlev Zundel <dzu@denx.de>
8472
8473 commit 0b40bd439a33bde9e3cccf1acb5744225d0c6103
8474 Author: Detlev Zundel <dzu@denx.de>
8475 Date: Wed Aug 5 18:37:44 2009 +0200
8476
8477 digsy_mtc: Add delay in SPI transfers to the companion controller.
8478
8479 While at it, remove initialization of variables which will be set
8480 before usage in all cases.
8481
8482 Signed-off-by: Detlev Zundel <dzu@denx.de>
8483
8484 commit 0bf00750e082a004e5fb058925622ae72890cc56
8485 Author: Anatolij Gustschin <agust@denx.de>
8486 Date: Wed Aug 5 18:37:43 2009 +0200
8487
8488 digsy_mtc: minor fixes for mtc command help
8489
8490 Add mtc state subcommand description to the
8491 help of mtc command.
8492
8493 Remove some newlines in description of commands
8494 for proper help formating.
8495
8496 Signed-off-by: Anatolij Gustschin <agust@denx.de>
8497
8498 commit 5cc69084189bf49aa99d13d57515be72d1844bdf
8499 Author: Grzegorz Bernacki <gjb@semihalf.com>
8500 Date: Wed Aug 5 18:37:42 2009 +0200
8501
8502 digsy_mtc: Add mtc state command.
8503
8504 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
8505
8506 commit 716655288a53c95fad203ebf21d0b8ffdc2f7525
8507 Author: Wolfgang Denk <wd@denx.de>
8508 Date: Tue Jul 28 22:35:39 2009 +0200
8509
8510 Partition support: remove newline from partition name
8511
8512 Remove bogus newline character that got added to the .name field of
8513 the disk_partition_t structure.
8514
8515 Signed-off-by: Wolfgang Denk <wd@denx.de>
8516
8517 commit 3f1649fb0dfb1e5c8890de154c332c394db5cdb5
8518 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
8519 Date: Tue Jul 28 09:33:17 2009 +0200
8520
8521 Fix LZMA string.h header inclusion issue and remove unused variables.
8522
8523 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
8524
8525 commit 1c6232f1e2eae87e0e36d489611eb6891dff21e1
8526 Author: Jens Scharsig <esw@bus-elektronik.de>
8527 Date: Mon Jul 27 15:28:42 2009 +0200
8528
8529 bus_vcxk.c: fix warning: unused variable 'lineptr'
8530
8531 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
8532
8533 commit 18304f7675e84252965b4e24cba279071f1da472
8534 Author: Mike Frysinger <vapier@gentoo.org>
8535 Date: Fri Jul 24 17:51:27 2009 -0400
8536
8537 env: kill off default_environment_size
8538
8539 The only environment type that uses this variable is spi flash, and that is
8540 only because it is reimplementing the common set_default_env() function.
8541 So fix the spi flash code and kill off the default_environment_size in the
8542 process.
8543
8544 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8545
8546 commit bedd8403f77f790e9876578885eab1200ba2f8d8
8547 Author: Mike Frysinger <vapier@gentoo.org>
8548 Date: Thu Jul 23 16:37:48 2009 -0400
8549
8550 export SPI functions to standalone apps
8551
8552 While we're here, fix the broken #ifdef handling in _exports.h.
8553
8554 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8555
8556 commit 3b9043a7c03290c9bdbef03848307263f5f3472c
8557 Author: Penda Naveen Kumar <pnaveen@ti.com>
8558 Date: Fri Jul 31 00:06:36 2009 +0530
8559
8560 omap3: bug fix for NOR boot support
8561
8562 This patch provides bug fix, when omap3 uses nor boot.
8563
8564 Signed-off-by: Penda Naveen Kumar<pnaveen@ti.com>
8565 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
8566
8567 commit 61c68ae0b43bb5d6ab32958c45289aa197b1a2d1
8568 Author: Michael Evans <horse_dung@hotmail.com>
8569 Date: Mon Jul 13 20:13:45 2009 +0100
8570
8571 Fix examples for OMAP3 boards...
8572
8573 The attached patch corrects an error in the examples/Makefile which
8574 causes the applications in the examples directory to hang on OMAP3
8575 based boards. The current Makefile sets -Ttext during linking to
8576 0x0c100000 which is outside of addressable SDRAM memory. The script
8577 corrects the existing ifeq...else...endif logic to look at the VENDOR
8578 tag rather than the CPU tag.
8579
8580 The patch affects the following configs: omap3_beagle_config,
8581 omap3_overo_config, omap3_evm_config, omap3_pandora_config,
8582 omap3_zoom1_config and omap3_zoom2_config.
8583
8584 Signed-off-by: Michael Evans <horse_dung@hotmail.com>
8585
8586 Edited commit message.
8587 Signed-off-by: Wolfgang Denk <wd@denx.de>
8588
8589 commit a3d1421dfd0bb1a729e171f8a093ac837f92cec6
8590 Author: Dirk Behme <dirk.behme@googlemail.com>
8591 Date: Sat Aug 8 09:30:23 2009 +0200
8592
8593 omap3: use only fixed-size types inside ctrl_structs
8594
8595 replace variable types in ctrl_structs for omap3 by those with
8596 fixed size (u8, u16, u32).
8597 Additional ifndef-protection is needed by examples which do not
8598 compile when including asm/types.h
8599
8600 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
8601 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8602
8603 commit 894113529e3a04871544dde977d6d7adee05d3bf
8604 Author: Dirk Behme <dirk.behme@googlemail.com>
8605 Date: Sat Aug 8 09:30:22 2009 +0200
8606
8607 omap3: replace all instances of gpmc config struct by one global
8608
8609 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
8610 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8611
8612 commit 97a099eaa48d5c762c4f73c52c3090c513b8b877
8613 Author: Dirk Behme <dirk.behme@googlemail.com>
8614 Date: Sat Aug 8 09:30:21 2009 +0200
8615
8616 omap3: remove typedefs for configuration structs
8617
8618 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
8619 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
8620
8621 commit aa0707897c49c330b7d6b8d8362e44f60f224732
8622 Author: Roy Zang <tie-fei.zang@freescale.com>
8623 Date: Fri Jul 31 13:34:02 2009 +0800
8624
8625 Add Intel E1000 PCIE card support
8626
8627 Based on Intel PRO/1000 Network Driver 7.3.20-k2
8628 Add Intel E1000 PCIE card support. The following cards are added:
8629 INTEL_82571EB_COPPER
8630 INTEL_82571EB_FIBER,
8631 INTEL_82571EB_SERDES
8632 INTEL_82571EB_QUAD_COPPER
8633 INTEL_82571PT_QUAD_COPPER
8634 INTEL_82571EB_QUAD_FIBER
8635 INTEL_82571EB_QUAD_COPPER_LOWPROFILE
8636 INTEL_82571EB_SERDES_DUAL
8637 INTEL_82571EB_SERDES_QUAD
8638 INTEL_82572EI_COPPER
8639 INTEL_82572EI_FIBER
8640 INTEL_82572EI_SERDES
8641 INTEL_82572EI
8642 INTEL_82573E
8643 INTEL_82573E_IAMT
8644 INTEL_82573L
8645 INTEL_82546GB_QUAD_COPPER_KSP3
8646 INTEL_80003ES2LAN_COPPER_DPT
8647 INTEL_80003ES2LAN_SERDES_DPT
8648 INTEL_80003ES2LAN_COPPER_SPT
8649 INTEL_80003ES2LAN_SERDES_SPT
8650
8651 82571EB_COPPER dual ports,
8652 82572EI single port,
8653 82572EI_COPPER single port PCIE cards
8654 and
8655 82545EM_COPPER,
8656 82541GI_LF
8657 pci cards are tested on both P2020 board
8658 and MPC8544DS board.
8659
8660 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
8661
8662 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8663
8664 commit 86848a74c3c8eb2f8dd179d039ee604dc45288cf
8665 Author: Mike Frysinger <vapier@gentoo.org>
8666 Date: Wed Jul 15 21:31:28 2009 -0400
8667
8668 net: sync env ethaddr to device enetaddr in eth_init()
8669
8670 In the previous enetaddr refactoring, the assumption with commit 56b555a644
8671 was that the eth layer would handle the env -> device enetaddr syncing.
8672 This was not the case as eth_initialize() is called only once and the sync
8673 occurs there. So make sure the eth_init() function does the env -> device
8674 sync with every network init.
8675
8676 Reported-by: Andrzej Wolski <awolski@poczta.fm>
8677 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
8678 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8679
8680 commit 0ebf04c607b54a352629dcf7e76b76f1785dae54
8681 Author: Robin Getz <rgetz@blackfin.uclinux.org>
8682 Date: Thu Jul 23 03:01:03 2009 -0400
8683
8684 minor debug cleanups in ./net
8685
8686 Minor ./net cleanups - no functional changes
8687 - change #ifdef DEBUG printf(); #endif to just debug()
8688 - changed __FUNCTION__ to __func__
8689 - got rid of extra whitespace between function and opening brace
8690 - removed unnecessary braces on if statements
8691
8692 gcc dead code elimination should make this functionally/size equivalent
8693 when DEBUG is not defined. (confirmed on Blackfin, with gcc 4.3.3).
8694
8695 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
8696
8697 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8698
8699 commit 187af954cf7958c24efcf0fd62289bbdb4f1f24e
8700 Author: Matthias Ludwig <mludwig@ultratronik.de>
8701 Date: Tue May 19 09:09:31 2009 +0200
8702
8703 omap3: embedd gpmc_cs into gpmc config struct
8704
8705 Embedd chip select configuration into struct for gpmc config
8706 instead of having it completely separated as suggested by
8707 Wolfgang Denk on
8708 http://lists.denx.de/pipermail/u-boot/2009-May/052247.html
8709
8710 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
8711
8712 commit 06bffc6ea52d4b390843d295d438b2037d12e5fd
8713 Author: David Brownell <david-b@pacbell.net>
8714 Date: Thu Jul 16 18:40:55 2009 -0700
8715
8716 rm9200 lowevel_init: don't touch reserved/readonly registers
8717
8718 For some reason the AT91rm9200 lowlevel init writes to a bunch of
8719 reserved or read-only addresses. All the boards seem to define the
8720 value-to-be-written values as zero ... but they shouldn't actually
8721 be writing *anything* there.
8722
8723 No documented erratum justifies these accesses. It looks like maybe
8724 some pre-release BDI-2000 setup code has been carried along by cargo
8725 cult programming since at least late 2004 (per GIT history).
8726
8727 Here's a patch disabling what seems to be bogosity. Tested on a
8728 csb337; there were no behavioral changes.
8729
8730 Signed-off-by: David Brownell <david-b@pacbell.net>
8731
8732 on RM9200ek
8733 Tested-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8734
8735 commit 301b7db88fbdf7d118efb79b371b2527a2c31868
8736 Author: David Hunter <hunterd42@gmail.com>
8737 Date: Thu Jul 30 14:32:49 2009 -0700
8738
8739 pxa: Fix typo in GCDR(x)
8740
8741 Fix a typo in the GCDR(x) macro. It's a good thing no one was using it.
8742
8743 Signed-off-by: David Hunter <hunterd42@gmail.com>
8744
8745 commit 3c448e648221879ae0e030e94508b4f9f63b7ab8
8746 Author: Eric Benard <eric@eukrea.com>
8747 Date: Sat Jul 18 23:45:15 2009 +0200
8748
8749 Add AT91SAM9260 to at91's lowlevel_init.S
8750
8751 Needed for AT91SAM9260 NOR Boot on Eukrea's CPU9260.
8752
8753 Signed-off-by: Eric Benard <eric@eukrea.com>
8754
8755 commit 56bdfa961242fc6acaeebc800640a12b28db3899
8756 Author: Dirk Eibach <eibach@gdsys.de>
8757 Date: Thu Jul 30 09:36:33 2009 +0200
8758
8759 ppc4xx: Remove check for PPC460EX from CompactCenter
8760
8761 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
8762 Signed-off-by: Stefan Roese <sr@denx.de>
8763
8764 commit c3fa4f0c8684c862ecd3fb622fab1e17e44e82e1
8765 Author: Stefan Roese <sr@denx.de>
8766 Date: Wed Jul 29 08:46:10 2009 +0200
8767
8768 ppc4xx: Add support for PPC460EX/460GT rev B chip to AMCC Canyonlands
8769
8770 This patch is based on a diff created by Phong Vo from AMCC.
8771
8772 Signed-off-by: Phong Vo <pvo@amcc.com>
8773 Signed-off-by: Stefan Roese <sr@denx.de>
8774
8775 commit 89bcc4875007ef6608297dc11e7a0d1fbd9900d2
8776 Author: Stefan Roese <sr@denx.de>
8777 Date: Wed Jul 29 08:45:27 2009 +0200
8778
8779 ppc4xx: Add basic support for AMCC PPC460EX/460GT rev B chips
8780
8781 This patch is based on a diff created by Phong Vo from AMCC.
8782
8783 Signed-off-by: Phong Vo <pvo@amcc.com>
8784 Signed-off-by: Stefan Roese <sr@denx.de>
8785
8786 commit 82a7edc7ea8f5fe55fed4ff7e127469569e539c4
8787 Author: Stefan Roese <sr@denx.de>
8788 Date: Tue Jul 28 15:12:04 2009 +0200
8789
8790 ppc4xx: Canyonlands-NAND-boot: Support 2 Crucial 512MByte SODIMM's
8791
8792 Some Canyonlands boards are equipped with different SODIMM's. This is no
8793 problem with the "normal" NOR booting Canyonlands U-Boot, since it
8794 automatically detects the SODIMM's via SPD data and correctly configures
8795 them. But the NAND booting version is different. Here we only have 4k
8796 of image size to completely setup the hardware, including DDR2 setup.
8797 So we need to use a fixed DDR2 setup here. This doesn't work for different
8798 SODIMM's right now.
8799
8800 Currently only this Crucial SODIMM is support:
8801 CT6464AC667.8FB (dual ranked)
8802
8803 Now some boards are shipped with this SODIMM:
8804 CT6464AC667.4FE (single ranked)
8805
8806 This patch now supports both SODIMM's by configuring first for the dual
8807 ranked DIMM. A quick shows, if this module is really installed. If this test
8808 fails, the DDR2 controller is re-configured for the single
8809 ranked SODIMM.
8810
8811 Tested with those SODIMM's:
8812
8813 CT6464AC667.8FB (dual ranked)
8814 CT6464AC667.4FE (single ranked)
8815
8816 Signed-off-by: Stefan Roese <sr@denx.de>
8817
8818 commit 27dd5f8e1062684f1ba685760409d9b2ab6691bf
8819 Author: Stefan Roese <sr@denx.de>
8820 Date: Tue Jul 28 10:56:03 2009 +0200
8821
8822 ppc4xx: amcc: Move "kernel_addr_r" etc to higher locations (> 16MB)
8823
8824 This patch moves the load addresses for kernel, fdt and ramdisk to higher
8825 addresses (>= 16MB). This enables booting of bigger kernel images (e.g.
8826 lockdep enabled).
8827
8828 Signed-off-by: Stefan Roese <sr@denx.de>
8829
8830 commit 6942efc2be1b90054fa4afa5cda7023469fe08b9
8831 Author: Stefan Roese <sr@denx.de>
8832 Date: Tue Jul 28 10:50:32 2009 +0200
8833
8834 ppc4xx: amcc: Set CONFIG_SYS_BOOTMAPSZ to 16MB for big kernels
8835
8836 This patch changes CONFIG_SYS_BOOTMAPSZ from 8MB to 16MB which is the
8837 initial TLB on 40x PPC's in the Linux kernel. With this change even bigger
8838 Linux kernels (> 8MB) can be booted.
8839
8840 This patch also sets CONFIG_SYS_BOOTM_LEN to 16MB (default 8MB) to enable
8841 decompression of bigger images.
8842
8843 Signed-off-by: Stefan Roese <sr@denx.de>
8844
8845 commit 901be89a27e11b2627c132ee87c7761bd6886091
8846 Author: Heiko Schocher <hs@denx.de>
8847 Date: Tue Jul 28 14:53:44 2009 +0200
8848
8849 83xx, kmeter1, fix: update in the DTS the correct size for the first flash
8850
8851 When updating the "reg" in the "/localbus/flash@f0000000,0" node
8852 size was wrong updated for the first flash, because the total
8853 size was filled in, instead of the right size for it.
8854
8855 Signed-off-by: Heiko Schocher <hs@denx.de>
8856 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8857
8858 commit 4c2e3da82dc2b7f8b39b7f1d57f570e4bc5caa6d
8859 Author: Kumar Gala <kumar.gala@freescale.com>
8860 Date: Tue Jul 28 21:49:52 2009 -0500
8861
8862 Update Freescale copyrights to remove "All Rights Reserved"
8863
8864 "All Rights Reserved" conflicts with the GPL.
8865
8866 Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
8867
8868 commit bb4291e62579dbc611e84eaaf973631e0bf129c7
8869 Author: Alessandro Rubini <rubini@unipv.it>
8870 Date: Fri Jul 24 11:27:14 2009 +0200
8871
8872 arm nomadik: add i2c
8873
8874 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8875 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8876 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8877
8878 commit 60cbfbfd0fbebb4682f10ba96f622bfe17317598
8879 Author: Alessandro Rubini <rubini@unipv.it>
8880 Date: Fri Jul 24 11:27:03 2009 +0200
8881
8882 arm nomadik: add gpio support
8883
8884 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8885 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
8886 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8887
8888 commit 549b98306d897ae5991362d6096a36df50efe686
8889 Author: Tom Rix <Tom.Rix@windriver.com>
8890 Date: Sun Jun 28 12:52:32 2009 -0500
8891
8892 OMAP3 Remove twl4030 defines
8893
8894 These defines have been subplanted by the equivelent defines in
8895 include/twl4030.h
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 fccc0fcaaae5154612f8259365d26d04f204859f
8902 Author: Tom Rix <Tom.Rix@windriver.com>
8903 Date: Sun Jun 28 12:52:31 2009 -0500
8904
8905 OMAP3 Move twl4030 mmc function
8906
8907 Because twl4030 now has its own device files, move and rename
8908 twl4030_mmc_config.
8909
8910 twl4030_mmc_config initializes the twl4030 power setting to
8911 the mmc device. Because it is in the twl4030 power domain, move
8912 it out of drivers/mmc/omap3_mmc.c and into drivers/power/twl4030.c.
8913
8914 The function was renamed to twl4030_power_mmc_init because all
8915 the functions in this file are to have the format
8916
8917 twl4030_power_<device>_<action>
8918
8919 In this case the suffix is mmc_init so
8920 device : mmc
8921 action : init
8922
8923 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8924 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8925 Acked-by: Heiko Schocher <hs@denx.de>
8926
8927 commit 2c15513010493435c78f83202940ac3be11de2c3
8928 Author: Tom Rix <Tom.Rix@windriver.com>
8929 Date: Sun Jun 28 12:52:30 2009 -0500
8930
8931 OMAP3 Move twl4030 power and led functions
8932
8933 Because twl4030 now has its own device files, move exiting
8934 omap3 power_init_r to a new location.
8935
8936 power_init_r is the only function in board/omap3/common.
8937 It initializes the twl4030 power for the board and enables
8938 the led.
8939
8940 The power part of the the function is moved to twl4030_power_init in
8941 drivers/power/twl4030.c The power compilation is conditional on the
8942 existing config variable CONFIG_TWL4030_POWER.
8943
8944 The led part is moved to twl4030_led_init in the new file
8945 drivers/misc/twl4030_led.c The led compilation is conditional on
8946 the new config variable CONFIG_TWL4030_LED
8947
8948 The directory board/omap3/common was removed because power_init_r
8949 was the only function in it.
8950
8951 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
8952 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8953 Acked-by: Heiko Schocher <hs@denx.de>
8954
8955 commit 3cb7a4805fc8fb4c09e4801e1c7d531186f20190
8956 Author: Wolfgang Denk <wd@denx.de>
8957 Date: Tue Jul 28 22:13:52 2009 +0200
8958
8959 TQM8xx* boards: set larger SMC Rx buffer len
8960
8961 Commit 2b3f12c2 added support for configurable SMC Rx buffer length on
8962 8xx systems. Enable this feature on TQM8xx* based boards.
8963
8964 This fixes the problem that pasting text in the middle of a line
8965 (i. e. inserting in edit mode) did not work - only the first two
8966 characters got inserted, the rest was lost.
8967
8968 Signed-off-by: Wolfgang Denk <wd@denx.de>
8969
8970 commit 4b7511478b62a539e5b066d19a986b75e5d9a527
8971 Author: Wolfgang Denk <wd@denx.de>
8972 Date: Tue Jul 28 22:07:37 2009 +0200
8973
8974 Fix ext2load return code
8975
8976 Make the ext2load command return 0 on success (instead of the file
8977 length).
8978
8979 Also fix output format (get rid of random newlines) and some coding
8980 style issues (long lines etc.).
8981
8982 Signed-off-by: Wolfgang Denk <wd@denx.de>
8983
8984 commit 56fdaadc124a8ef9ec0fd8ff578233ec3b1137be
8985 Author: Weirich, Bernhard <Bernhard.Weirich@riedel.net>
8986 Date: Wed Jun 10 14:00:37 2009 +0200
8987
8988 ext2: fix inode size and calculations
8989
8990 Signed-off-by: unsik Kim <donari75@gmail.com>
8991 Signed-off-by: Bernhard Weirich <bernhard.weirich@riedel.net>
8992 Signed-off-by: Wolfgang Denk <wd@denx.de>
8993 Tested-by: Wolfgang Denk <wd@denx.de>
8994
8995 commit cd7826359ee71e8f6f3d68331930ab9cbe1c990e
8996 Author: Tom Rix <Tom.Rix@windriver.com>
8997 Date: Sun Jun 28 12:52:29 2009 -0500
8998
8999 TWL4030 Add power reset button
9000
9001 The Zoom2 power reset button is on the top right side of the
9002 main board. Press and hold for about to 8 seconds to completely
9003 reset the board.
9004
9005 Some of the beta boards have a hardware problem that prevents
9006 using this feature. If is difficult to further characterize the
9007 boards that fail. So disable resetting for all beta boards.
9008
9009 The Zoom1 reset button is the red circle on the top right,
9010 front of the board. Press and hold the button for 8 seconds to
9011 completely reset the board.
9012
9013 After analyzing beagle, it was determined that other boards
9014 that use the twl4030 for power managment can also make use
9015 this function.
9016
9017 The resetting is done by the power management part of the twl4030.
9018 Since there is no existing drivers/power, add one.
9019
9020 The compilation of power/twl4030.h is controlled by the config
9021 variable CONFIG_TWL4030_POWER
9022
9023 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9024 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9025 Acked-by: Heiko Schocher <hs@denx.de>
9026
9027 commit 8966eb4c1c2d894b2a76174ba904c26c5af815b8
9028 Author: Tom Rix <Tom.Rix@windriver.com>
9029 Date: Sun Jun 28 12:52:28 2009 -0500
9030
9031 TWL4030 Add initial support
9032
9033 The TWL4030 supplies many peripherals for OMAP3 boards. These include
9034 power management, usb and, keyboard.
9035
9036 The product description is found here:
9037
9038 http://focus.ti.com/docs/prod/folders/print/tps65950.html
9039
9040 Product reference document, tps65950.pdf, is found here:
9041
9042 http://www.ti.com/lit/gpn/tps65950
9043
9044 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9045 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9046 Acked-by: Heiko Schocher <hs@denx.de>
9047
9048 commit 7f79dfb48b7419d5caa1cf932fcff4e2fb7040af
9049 Author: Tom Rix <Tom.Rix@windriver.com>
9050 Date: Sun Jun 28 12:52:27 2009 -0500
9051
9052 OMAP I2C Fix the sampling clock.
9053
9054 This problem is seen on Zoom1 and Zoom2 in the startup and
9055 when i2c probe is used
9056
9057 Before :
9058
9059 In: serial
9060 Out: serial
9061 Err: serial
9062 timed out in wait_for_bb: I2C_STAT=1000
9063 timed out in wait_for_bb: I2C_STAT=1000
9064 timed out in wait_for_bb: I2C_STAT=1000
9065 timed out in wait_for_pin: I2C_STAT=1000
9066 I2C read: I/O error
9067 timed out in wait_for_bb: I2C_STAT=1000
9068 timed out in wait_for_bb: I2C_STAT=1000
9069 Die ID #327c00020000000004013ddd05026013
9070 Hit any key to stop autoboot: 0
9071 OMAP3 Zoom1# i2c probe
9072 Valid chip addresses:timed out in wait_for_bb: I2C_STAT=1000
9073 02 03 04 05 06 07 08 09 0A 0B 0C 0D <snip>
9074
9075 After :
9076
9077 In: serial
9078 Out: serial
9079 Err: serial
9080 Die ID #327c00020000000004013ddd05026013
9081 Hit any key to stop autoboot: 0
9082 OMAP3 Zoom1# i2c probe
9083 Valid chip addresses: 48 49 4A 4B
9084
9085 The addresses are for the twl4030.
9086
9087 The prescalar that converts the function clock to the sampling
9088 clock is hardcoded to 0. The reference manual recommends 7
9089 if the function clock is 96MHz.
9090
9091 Instead of just changing the hardcoded values, the prescalar
9092 is calculated from the value I2C_IP_CLK.
9093
9094 The i2c #defines are in kHz. The speed passed into the
9095 i2c init routine is in Hz. To be consistent, change the
9096 defines to be in Hz.
9097
9098 The timing calculations are based on what is done in the
9099 linux 2.6.30 kernel in drivers/i2c/buses/i2c_omap.c as
9100 apposed to what is done in TRM.
9101
9102 The major variables in the timing caculations are
9103 specified as #defines that can be overriden as required.
9104
9105 The variables and their defaults are
9106
9107 I2C_IP_CLK SYSTEM_CLOCK_96
9108 I2C_INTERNAL_SAMPLING_CLK 19200000
9109 I2C_FASTSPEED_SCLL_TRIM 6
9110 I2C_FASTSPEED_SCLH_TRIM 6
9111 I2C_HIGHSPEED_PHASE_ONE_SCLL_TRIM I2C_FASTSPEED_SCLL_TRIM
9112 I2C_HIGHSPEED_PHASE_ONE_SCLH_TRIM I2C_FASTSPEED_SCLH_TRIM
9113 I2C_HIGHSPEED_PHASE_TWO_SCLL_TRIM I2C_FASTSPEED_SCLL_TRIM
9114 I2C_HIGHSPEED_PHASE_TWO_SCLH I2C_FASTSPEED_SCLH_TRIM
9115
9116 This was runtime verified on Zoom1, Zoom2, Beagle and Overo.
9117 The 400kHz and 3.4M cases were verifed on test Zoom1,
9118 Zoom2, Beagle and Overo configurations.
9119
9120 Testing for omap2 will be done in a second step as Nishanth
9121 and Jean-Christophe commented.
9122
9123 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
9124 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9125 Acked-by: Heiko Schocher <hs@denx.de>
9126
9127 commit 4ce5a72851ff2960543b125866c6132e0094e1ee
9128 Author: Heiko Schocher <hs@denx.de>
9129 Date: Mon Jul 20 09:59:37 2009 +0200
9130
9131 arm, i2c: added support for the TWSI I2C Interface
9132
9133 Signed-off-by: Heiko Schocher <hs@denx.de>
9134
9135 commit 042d01c72e0ea95731708dd24bb8b6cf42e75c80
9136 Author: Stefan Roese <sr@denx.de>
9137 Date: Mon Jul 27 09:13:38 2009 +0200
9138
9139 ppc4xx: Fix problem with NOR range assignment in Canyonlands ft_board_setup
9140
9141 This patch fixes the problem, that the current fdt board fixup code only
9142 set's one range, the one for NOR. By this it's overwriting the already
9143 correctly configured values done in __ft_board_setup(). Just remove this
9144 now unneeded NOR fixup and all the ranges are correctly defined.
9145
9146 Signed-off-by: Stefan Roese <sr@denx.de>
9147 Cc: Dirk Eibach <eibach@gdsys.de>
9148 Cc: Felix Radensky <felix@embedded-sol.com>
9149
9150 commit 11a1604f8d0a8d936b42f6435d004b4aa33a5d87
9151 Author: Stefan Roese <sr@denx.de>
9152 Date: Mon Jul 27 07:42:48 2009 +0200
9153
9154 ppc4xx: Add some NAND-booting bootstrap entries to Kilauea chip_config cmd
9155
9156 This patch adds some I2C bootstrap setting for NAND booting to the Kilauea
9157 chip_config command ("533-nand" and "600-nand").
9158
9159 Additionally some incorrectly indented lines are fixed.
9160
9161 Signed-off-by: Stefan Roese <sr@denx.de>
9162
9163 commit 5b34691ff87821891375b28ec5bcf5154575a735
9164 Author: Stefan Roese <sr@denx.de>
9165 Date: Mon Jul 27 07:42:37 2009 +0200
9166
9167 ppc4xx: Kilauea: Fix SDRAM init in NAND booting version
9168
9169 DDR2 Auto-calibration needs to be disabled on the NAND booting PPC4xx
9170 targets. Otherwise the configured fixed init values for some DDR2
9171 controller registers (e.g. RQDC) are not initialized at all resulting
9172 in a non working SDRAM.
9173
9174 Signed-off-by: Stefan Roese <sr@denx.de>
9175
9176 commit f3ed3c9b7441cde936d06a1ff7b1490ff0d600e6
9177 Author: Stefan Roese <sr@denx.de>
9178 Date: Mon Jul 27 10:53:43 2009 +0200
9179
9180 ppc4xx: Fix Arches DDR2 initialization
9181
9182 Testing on AMCC Arches with the latest U-Boot version yielded that DDR2
9183 initialization is currently broken. U-Boot hangs upon relocation to SDRAM
9184 or crashes with random traps. This patch fixes this problem. Arches now
9185 uses a different WRDTR and CLKTR default setting than Canyonlands/Glacier.
9186
9187 Signed-off-by: Stefan Roese <sr@denx.de>
9188
9189 commit ab4c62c1ba788bf7f673a985d99a76d9c2fd7eca
9190 Author: Dirk Eibach <eibach@gdsys.de>
9191 Date: Mon Jul 27 08:49:48 2009 +0200
9192
9193 ppc4xx: Add GDsys CompactCenter board support.
9194
9195 Board support for the Guntermann & Drunck CompactCenter and
9196 DevCon-Center.
9197 Based on the AMCC Canyonlands board support by Stefan Roese.
9198
9199 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9200 Signed-off-by: Stefan Roese <sr@denx.de>
9201
9202 commit c2e49f706ba13213f3c8da3a33e88010214e1997
9203 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
9204 Date: Sat Jul 25 06:19:12 2009 +0200
9205
9206 mpc83xx: Add esd VME8349 board support
9207
9208 This patch adds support for the esd VME8349 board equipped with the
9209 MPC8349. It's a VME PMC carrier board equipped with the Tundra
9210 TSI148 VME-bridge.
9211
9212 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
9213 Signed-off-by: Stefan Roese <sr@denx.de>
9214 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9215
9216 commit fe613cdd4eb2c5b257a60d8dfb7759742318c28a
9217 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
9218 Date: Thu Jul 23 17:10:55 2009 -0400
9219
9220 sbc8349: combine HRCW flash and u-boot image flash
9221
9222 Up to this point in time, the sbc8349 board was storing the u-boot
9223 image in flash 2x. One for the HRCW value at the beginning of
9224 flash (0xff80_0000), and once close to the end of flash (0xfff8_0000)
9225 for the actual image that got executed.
9226
9227 This moves the TEXT_BASE to be the beginning of flash, which makes
9228 the second copy of the image redundant, and frees up the flash
9229 from the end of the environment storage to the end of the flash
9230 device itself.
9231
9232 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
9233 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9234
9235 commit be9b56df02168ca97562d6b9ec791136e4cd925a
9236 Author: Kim Phillips <kim.phillips@freescale.com>
9237 Date: Thu Jul 23 14:09:38 2009 -0500
9238
9239 mpc83xx: CONFIG_83XX_GENERIC_PCI is now synonymous with CONFIG_PCI; remove the former
9240
9241 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9242
9243 commit 94978e19f31d225b4f7d97c4acbac1ecfaeb8f69
9244 Author: Wolfgang Denk <wd@denx.de>
9245 Date: Mon Jul 27 10:37:37 2009 +0200
9246
9247 Prepare 2009.08-rc1 (again, after fixing last minute issues).
9248
9249 Update CHANGELOG
9250
9251 Signed-off-by: Wolfgang Denk <wd@denx.de>
9252
9253 commit 9689ddcca6e01f3637b4442fa8575f29ef4d7aa3
9254 Author: Wolfgang Denk <wd@denx.de>
9255 Date: Mon Jul 27 10:06:39 2009 +0200
9256
9257 cpu/arm920t/start.S: include <common.h> to have ROUND() defined
9258
9259 Commit fcd3c87e made include/common.h usable by assembler code but
9260 failed to update cpu/arm920t/start.S
9261
9262 Signed-off-by: Wolfgang Denk <wd@denx.de>
9263
9264 commit c9ed38cb6de50fdb4aaa60b668c555002903b211
9265 Author: Wolfgang Denk <wd@denx.de>
9266 Date: Mon Jul 27 10:01:11 2009 +0200
9267
9268 at91cap9adk: fix #ifdef/#endif pairing (2nd try)
9269
9270 Commit 7024aa14 was supposed to fix the #ifdef/#endif pairing in
9271 include/configs/at91cap9adk.h, but did not cate all problems.
9272
9273 Signed-off-by: Wolfgang Denk <wd@denx.de>
9274
9275 commit fb364bec5f29164d3ee681fcd9d187be8435db12
9276 Author: Wolfgang Denk <wd@denx.de>
9277 Date: Mon Jul 27 09:58:14 2009 +0200
9278
9279 Fix include/common.h for boards with CONFIG_STATUS_LED
9280
9281 The reordering of include/common.h by commit fcd3c87e495f3c48 broke
9282 boards with status LED support, resulting in
9283 error: #error Status LED configuration missing
9284 errors. Undo this reordering to avoid this issue.
9285
9286 Signed-off-by: Wolfgang Denk <wd@denx.de>
9287
9288 commit 942828a0980b3cea7db698784cc7f6a3e7740b2b
9289 Author: Wolfgang Denk <wd@denx.de>
9290 Date: Mon Jul 27 09:19:15 2009 +0200
9291
9292 ABI: fix build problems due to now needed div64 routine.
9293
9294 Signed-off-by: Wolfgang Denk <wd@denx.de>
9295
9296 commit 85d6bf0bdc8ccad2d67a9160472f6f8c6bb482fb
9297 Author: Wolfgang Denk <wd@denx.de>
9298 Date: Mon Jul 27 08:50:59 2009 +0200
9299
9300 PMC405DE: fix out of tree building
9301
9302 Signed-off-by: Wolfgang Denk <wd@denx.de>
9303
9304 commit 10c7604d021949464b1e4ba903df95e6b2f0d2ff
9305 Author: Wolfgang Denk <wd@denx.de>
9306 Date: Mon Jul 27 00:24:55 2009 +0200
9307
9308 Prepare 2009.08-rc1
9309
9310 Update CHANGELOG, minor coding style fix.
9311
9312 Signed-off-by: Wolfgang Denk <wd@denx.de>
9313
9314 commit fafbb2c3e4b35b60ca303ed2ad1c6cf400cd9a22
9315 Author: rhabarber1848@web.de <rhabarber1848@web.de>
9316 Date: Fri Jul 24 08:16:30 2009 +0200
9317
9318 add WATCHDOG_RESET to allow LZMA kernel decompression on slow machines
9319
9320 Signed-off-by: rhabarber1848@web.de
9321
9322 commit 3c972849f2becbf19c13a24f090d293f37ecf616
9323 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
9324 Date: Thu Jul 23 23:31:58 2009 +0200
9325
9326 Less verbose output when loading vxworks 6.x images
9327
9328 Loading vxWorks 5.x images resulted just into 3 or 4 lines of output.
9329 With vxWorks 6.x and the new GCC it emits about 30 lines, which is
9330 far too noisy in my opinion.
9331
9332 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
9333
9334 commit fcd3c87e495f3c48b70c919869fb1e0b93d4880b
9335 Author: Wolfgang Denk <wd@denx.de>
9336 Date: Fri Jul 24 00:17:48 2009 +0200
9337
9338 Make include/common.h usable by assembler code
9339
9340 Commit 70ebf316 factored out the ROUND() macro into include/common.h,
9341 not realizing that the primary use of this macro on AT91 systems was
9342 in start.S where common.h was not included, and could not be included
9343 because it contains a lot of C code which the assembler doesn't
9344 understand.
9345
9346 This patch wraps such code in common.h in a "#ifndef __ASSEMBLY__"
9347 construct, and then adds an include to cpu/arm926ejs/start.S thus
9348 solving the problem.
9349
9350 Signed-off-by: Wolfgang Denk <wd@denx.de>
9351
9352 commit deec15b3064d3bb0189aede3c2921fd7ee401a0f
9353 Author: Heiko Schocher <heiko.schocher@invitel.hu>
9354 Date: Thu Jul 23 13:27:04 2009 +0200
9355
9356 arm: add _lshrdi3.S
9357
9358 Signed-off-by: Heiko Schocher <hs@denx.de>
9359
9360 commit 52b1bf2c5cd2f8af880dab503d0039b35570665b
9361 Author: Wolfgang Denk <wd@denx.de>
9362 Date: Thu Jul 23 13:15:59 2009 +0200
9363
9364 Make linking against libgcc configurable
9365
9366 Many (especially ARM) tool chains seem to come with broken or
9367 otherwise unusable (for the purposes of builing U-Boot) run-time
9368 support libraries `libgcc.a'. By using the "USE_PRIVATE_LIBGCC"
9369 setting we allow to use alternative libraries instead.
9370
9371 "USE_PRIVATE_LIBGCC" can either be set as an environment variable in
9372 the shell, or as a command line argument when running "make", i. e.
9373 $ make USE_PRIVATE_LIBGCC=yes
9374 or
9375 $ USE_PRIVATE_LIBGCC=yes
9376 $ export USE_PRIVATE_LIBGCC
9377 $ make
9378
9379 The value of "USE_PRIVATE_LIBGCC" is the name of the directory which
9380 contains the alternative run-time support library `libgcc.a'. The
9381 special value "yes" selects the directory $(OBJTREE)/lib_$(ARCH) .
9382
9383 Note that not all architectures provide an alternative `libgcc.a' in
9384 their lib_$(ARCH) directories - so far, only ARM does.
9385
9386 Signed-off-by: Wolfgang Denk <wd@denx.de>
9387 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9388 Cc: Prafulla Wadaskar <prafulla@marvell.com>
9389 cc: Stefan Roese <sr@denx.de>
9390
9391 commit 479105065d965121f57b55dcfe83a940cba46ac1
9392 Author: Dirk Behme <dirk.behme@googlemail.com>
9393 Date: Wed Jul 22 17:51:56 2009 +0200
9394
9395 Use do_div from div64.h for vsprintf
9396
9397 Use do_div from div64.h for vsprintf in case of 64bit division.
9398 For 32bit division, do_div from div64.h can't be used as it
9399 needs a 64bit parameter.
9400
9401 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
9402 Acked-by: Stefan Roese <sr@denx.de>
9403 CC: Simon Kagstrom <simon.kagstrom@netinsight.net>
9404
9405 commit 48287792384a93d77d43aaaa1c06cac275bbe1bb
9406 Author: Kyungmin Park <kmpark@infradead.org>
9407 Date: Mon Jul 20 09:47:47 2009 +0900
9408
9409 Fix compiler warnings after loff_t change
9410
9411 Now 'env_addr' type is loff_t so use correct field type.
9412
9413 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9414
9415 commit 9c67352f727a5b5eff531c852f9cff59fcb17f7f
9416 Author: Wolfgang Denk <wd@denx.de>
9417 Date: Sun Jul 26 23:28:02 2009 +0200
9418
9419 Revert "ppc: Unlock cache-as-ram in a consistent manner"
9420
9421 This reverts commit 982adfc610669482a32127282fe489857a92cfe3.
9422
9423 This patch causes problems on MPC83xx boards - flash recognition stops
9424 working.
9425
9426 Signed-off-by: Wolfgang Denk <wd@denx.de>
9427
9428 commit 35cf3b57eafe3ee1f693e24267e0ecfefab60251
9429 Author: Jens Scharsig <esw@bus-elektronik.de>
9430 Date: Fri Jul 24 10:31:48 2009 +0200
9431
9432 update the EB+MCF-EV123 board support
9433
9434 This patch updates the support for EB+MCF-EV123 board and needs
9435 the [PATCH 1/2 V3] new video driver for bus vcxk framebuffers
9436
9437 * remove the board framebuffer driver
9438 * use the common bus_vcxk framebuffer driver
9439 * adds bmp support
9440 * adds splashimage support
9441 * fix serveral cosmetical errors
9442
9443 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
9444 [agust@denx.de: fixed some style issues before applying]
9445 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9446
9447 commit 04538cdb752eeea8fd23cf7ac3394439f189fb77
9448 Author: Anatolij Gustschin <agust@denx.de>
9449 Date: Sun Jul 26 12:05:25 2009 +0200
9450
9451 video: bus_vcxk.c: fix style issues added by 50217dee
9452
9453 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9454
9455 commit 50217deeb07911d686790d34d468eb9a5245f68d
9456 Author: Jens Scharsig <esw@bus-elektronik.de>
9457 Date: Fri Jul 24 10:09:02 2009 +0200
9458
9459 new video driver for bus vcxk framebuffers
9460
9461 This patch adds a new video driver
9462
9463 * adds common bus_vcxk framebuffer driver
9464
9465 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
9466 [agust@denx.de: fixed lots of style issues before applying]
9467 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9468
9469 commit 60e97419246d0a3615758ad6af40680aefb5f7f1
9470 Author: Alessandro Rubini <rubini@gnudd.com>
9471 Date: Tue Jul 21 14:09:45 2009 +0200
9472
9473 lcd.h: define extern vidinfo_t for all cases
9474
9475 include/lcd.h has different vidinfo for different platforms,
9476 and several extern declaration, but one for the default case was
9477 missing. This makes them a single extern declaration for everyone.
9478
9479 Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
9480
9481 commit bcf0b5248952c6b03081dc5cc4ff9e0b2299c5fa
9482 Author: Anatolij Gustschin <agust@denx.de>
9483 Date: Sun Jul 26 11:04:59 2009 +0200
9484
9485 mimc200.c: fix too long lines added by f68378d6
9486
9487 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9488
9489 commit f68378d60a905d43155f2e89bf81999d3c93a90a
9490 Author: Mark Jackson <mpfj-list@mimc.co.uk>
9491 Date: Tue Jul 21 11:35:22 2009 +0100
9492
9493 Add LCD support to MIMC200 board
9494
9495 This patch updates the MIMC200 files to enable the LCD.
9496
9497 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9498
9499 commit 69f32e6c24d41fcdf347ff64e9c13b25059ace58
9500 Author: Mark Jackson <mpfj-list@mimc.co.uk>
9501 Date: Tue Jul 21 11:18:44 2009 +0100
9502
9503 Add 16bit colour support in lcd.h
9504
9505 This patch adds support for LCD_COLOR16 in include/lcd.h.
9506
9507 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9508
9509 commit bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3
9510 Author: Anatolij Gustschin <agust@denx.de>
9511 Date: Sun Jul 26 10:34:58 2009 +0200
9512
9513 lib_avr32/board.c: fix too long line added by 716ece1d
9514
9515 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9516
9517 commit 716ece1de9a7d43a61d8698ac41b71b64f66f9e9
9518 Author: Mark Jackson <mpfj-list@mimc.co.uk>
9519 Date: Tue Jul 21 11:11:37 2009 +0100
9520
9521 Add AVR32 LCD support
9522
9523 This patch adds support for the AVR32 LCD controller. This patch is
9524 based off the latest u-boot-video.
9525
9526 A quick summary of what's going on:-
9527
9528 Enable LCDC pixel clock
9529 Enable LCDC port pins
9530 Add framebuffer pointer to global_data struct
9531 Allocate framebuffer
9532
9533 To use the new code, update your board config to include something like
9534 this:-
9535
9536 #define CONFIG_LCD 1
9537
9538 #if defined(CONFIG_LCD)
9539 #define CONFIG_CMD_BMP
9540 #define CONFIG_ATMEL_LCD 1
9541 #define LCD_BPP LCD_COLOR16
9542 #define CONFIG_BMP_16BPP 1
9543 #define CONFIG_FB_ADDR 0x10600000
9544 #define CONFIG_WHITE_ON_BLACK 1
9545 #define CONFIG_VIDEO_BMP_GZIP 1
9546 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE 262144
9547 #define CONFIG_ATMEL_LCD_BGR555 1
9548 #define CONFIG_SYS_CONSOLE_IS_IN_ENV 1
9549 #define CONFIG_SPLASH_SCREEN 1
9550 #endif
9551
9552 The standard U-Boot BMP and Splash-screen features should just work.
9553
9554 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9555 [agust@denx.de: fixed some style issues]
9556 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9557
9558 commit 6111722a9281c6e04a7304d502556afff6a5a1f8
9559 Author: Alessandro Rubini <rubini@gnudd.com>
9560 Date: Sun Jul 19 17:52:27 2009 +0200
9561
9562 video: move extern declarations from C to headers
9563
9564 This moves some extern declaration from lcd.c to lcd.h, removing
9565 unneeded ifdef around a pair of them. Additionally, since
9566 gunzip_bmp() was declared static in cmd_bmp.c but extern in lcd.c, I
9567 removed the static. The extra "#include <lcd.h>" in cmd_bmp.c is
9568 added to ensure the header is consistent with the source.
9569
9570 This has been compile-tested on both ARM (at91 boards) and PowerPC
9571 (HH405_config, TQM823L_LCD_config, mcc200_config), to test all use
9572 combinations.
9573
9574 Signed-off-by: Alessandro Rubini <rubini@gnudd.it>
9575 [agust@denx.de: removed gunzip_bmp() fixes as commit c01171ea did it]
9576 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9577
9578 commit f51e001143c58447eb50e7aefa2b09eb4cc1410c
9579 Author: Mike Frysinger <vapier@gentoo.org>
9580 Date: Thu Jul 23 16:26:58 2009 -0400
9581
9582 Blackfin: restore EVT1 handling in linker script
9583
9584 Sadly, the Blackfin linker script unification lost a small #ifdef logic
9585 needed on older parts. Restore that CONFIG_BFIN_BOOTROM_USES_EVT1 logic.
9586
9587 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9588
9589 commit f33b325af666b12eafa9ab235b2cd59832d6e51c
9590 Author: Wolfgang Denk <wd@denx.de>
9591 Date: Fri Jul 24 14:24:07 2009 +0200
9592
9593 Revert "zlib: updated to v.1.2.3"
9594
9595 This reverts commit b201171f2b4d509f3ad510b214bee70ff902e3d6.
9596
9597 The commit caused problems for example when unpacking kernel images:
9598
9599 Uncompressing Kernel Image ... Error: inflate() returned -2
9600 GUNZIP: uncompress, out-of-mem or overwrite error - must
9601 RESET board to recover
9602
9603 Conflicts:
9604
9605 include/u-boot/zlib.h
9606 lib_generic/zlib.c
9607
9608 Signed-off-by: Wolfgang Denk <wd@denx.de>
9609
9610 commit 4b1389e0ceb19e9b50b96fd3908483a6c2274fb0
9611 Author: Stefan Roese <sr@denx.de>
9612 Date: Tue Jul 21 14:06:29 2009 +0200
9613
9614 ppc4xx: Add chip_config command to AMCC Kilauea eval board
9615
9616 This patch removes the "alterpll" command and replaces it with the now
9617 ppc4xx standard "chip_config" command to configure the I2C bootstrap
9618 EEPROM.
9619
9620 Signed-off-by: Stefan Roese <sr@denx.de>
9621
9622 commit f6af8ce0c80327cb6aaa347642026ad838335c23
9623 Author: Stefan Roese <sr@denx.de>
9624 Date: Tue Jul 21 14:33:52 2009 +0200
9625
9626 ppc4xx: Fix EEPROM configuration on Kilauea
9627
9628 Kilauea has an AT24C02 EEPROM which has an 8 byte page. Without defining
9629 CONFIG_SYS_EEPROM_PAGE_WRITE_BITS to 3 the "eeprom" command doesn't
9630 work correctly.
9631
9632 Additionally the page write delay (CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS)
9633 is set to a more defensive value of 10ms.
9634
9635 Signed-off-by: Stefan Roese <sr@denx.de>
9636
9637 commit 99d8b23bc7e2be04fcbf49c5cec9f5ae76df290c
9638 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
9639 Date: Wed Jul 22 13:56:21 2009 +0200
9640
9641 ppc4xx: Add 405EP based PMC405DE board
9642
9643 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9644 Signed-off-by: Stefan Roese <sr@denx.de>
9645
9646 commit da799f66ad1d4fc36dd20cc2d7e584493fda8546
9647 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
9648 Date: Mon Jul 20 12:15:38 2009 +0200
9649
9650 ppc4xx: Add struct for 4xx GPIO controller registers
9651
9652 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9653 Signed-off-by: Stefan Roese <sr@denx.de>
9654
9655 commit 58ea142fb2e969f32306c8da1dabfaebd6fa141a
9656 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
9657 Date: Wed Jul 22 17:27:56 2009 +0200
9658
9659 ppc4xx: Replace 4xx lowercase SPR references
9660
9661 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9662 Signed-off-by: Stefan Roese <sr@denx.de>
9663
9664 commit 87c0b72908e05662b8b415e26e1042f4779629da
9665 Author: Stefan Roese <sr@denx.de>
9666 Date: Mon Jul 20 06:57:27 2009 +0200
9667
9668 Add "chip_config" command for PPC4xx bootstrap configuration
9669
9670 This patch adds a generic command for programming I2C bootstrap
9671 eeproms on PPC4xx. An implementation for Canyonlands board is
9672 included.
9673
9674 The command name is intentionally chosen not to be PPC4xx specific.
9675 This way other CPU's/SoC's can implement a similar command under
9676 the same name, perhaps with a different syntax.
9677
9678 Usage on Canyonlands:
9679
9680 => chip_config
9681 Available configurations (I2C address 0x52):
9682 600-nor - NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100
9683 600-nand - NAND CPU: 600 PLB: 200 OPB: 100 EBC: 100
9684 800-nor - NOR CPU: 800 PLB: 200 OPB: 100 EBC: 100
9685 800-nand - NAND CPU: 800 PLB: 200 OPB: 100 EBC: 100
9686 1000-nor - NOR CPU:1000 PLB: 200 OPB: 100 EBC: 100
9687 1000-nand - NAND CPU:1000 PLB: 200 OPB: 100 EBC: 100
9688 1066-nor - NOR CPU:1066 PLB: 266 OPB: 88 EBC: 88 ***
9689 1066-nand - NAND CPU:1066 PLB: 266 OPB: 88 EBC: 88
9690 => chip_config 600-nor
9691 Using configuration:
9692 600-nor - NOR CPU: 600 PLB: 200 OPB: 100 EBC: 100
9693 done (dump via 'i2c md 52 0.1 10')
9694 Reset the board for the changes to take effect
9695
9696 Other 4xx boards will be migrated to use this command soon
9697 as well.
9698
9699 Signed-off-by: Stefan Roese <sr@denx.de>
9700 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9701 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9702
9703 commit 10c1b218556ed9871f36bc0c407f4f2f6196353b
9704 Author: Peter Tyser <ptyser@xes-inc.com>
9705 Date: Fri Jul 17 19:01:16 2009 -0500
9706
9707 xpedite1k: Move to X-ES vendor directory
9708
9709 The XPedite1000 is an X-ES product thus it can be put in board/xes along
9710 with other X-ES boards. Along with the move, the board was renamed to
9711 XPedite1000 from XPedite1K to fit X-ES's standard naming convention.
9712 Maintainership was also transfered to Peter Tyser.
9713
9714 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9715 Signed-off-by: Stefan Roese <sr@denx.de>
9716
9717 commit 54381b79d268e1bead5d78ed8423df31a3cb0e2c
9718 Author: Peter Tyser <ptyser@xes-inc.com>
9719 Date: Fri Jul 17 19:01:15 2009 -0500
9720
9721 xpedite1k: Sync checkboard() with other X-ES boards
9722
9723 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9724 Signed-off-by: Stefan Roese <sr@denx.de>
9725
9726 commit 9b4ef1f5dc0daab64f46249a32e67279c4d44fd2
9727 Author: Peter Tyser <ptyser@xes-inc.com>
9728 Date: Fri Jul 17 19:01:14 2009 -0500
9729
9730 xpedite1k: Sync up board config options with other X-ES boards
9731
9732 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9733 Signed-off-by: Stefan Roese <sr@denx.de>
9734
9735 commit 4cdad5f43ae67e4ceeac69ef4af4392bd2f7381f
9736 Author: Peter Tyser <ptyser@xes-inc.com>
9737 Date: Fri Jul 17 19:01:13 2009 -0500
9738
9739 xpedite1k: Sync organization of board config with other X-ES boards
9740
9741 This change should have no functional effect
9742
9743 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9744 Signed-off-by: Stefan Roese <sr@denx.de>
9745
9746 commit c4ae1a0257a0f5008ee2686e8aa92fba3992f279
9747 Author: Peter Tyser <ptyser@xes-inc.com>
9748 Date: Fri Jul 17 19:01:12 2009 -0500
9749
9750 xpedite1k: Sync up commands and environment with other X-ES boards
9751
9752 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9753 Signed-off-by: Stefan Roese <sr@denx.de>
9754
9755 commit fbc7951ea84c2fe6da0f6007b672ed35bae91acb
9756 Author: Peter Tyser <ptyser@xes-inc.com>
9757 Date: Fri Jul 17 19:01:11 2009 -0500
9758
9759 xpedite1k: Disable unused ethernet port 1
9760
9761 The XPedite1000 only has 2 available ethernet ports:
9762 ppc_4xx_eth2 (EMAC2) and ppc_4xx_eth3 (EMAC3)
9763
9764 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9765 Signed-off-by: Stefan Roese <sr@denx.de>
9766
9767 commit 767e32ad369d83f55f950e6938e68b6dba7fa65f
9768 Author: Peter Tyser <ptyser@xes-inc.com>
9769 Date: Fri Jul 17 19:01:10 2009 -0500
9770
9771 xpedite1k: Store environment in flash
9772
9773 Previously an I2C EEPROM was used. The EEPROM had size, reliability,
9774 and access issues which are resolved by storing the environment in
9775 flash.
9776
9777 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9778 Signed-off-by: Stefan Roese <sr@denx.de>
9779
9780 commit b88da157f9990cd2cb081e4faea4b9581b5d0e2f
9781 Author: Peter Tyser <ptyser@xes-inc.com>
9782 Date: Fri Jul 17 19:01:09 2009 -0500
9783
9784 xpedite1k: Add support for additional GPIO pins
9785
9786 Enable GPIO pins for an I2C EEPROM write protect, a system reset pin,
9787 and a PMC #MONARCH pin. These pins are not currently used in U-Boot,
9788 but are used in OSes and may be used in U-Boot in the future.
9789
9790 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9791 Signed-off-by: Stefan Roese <sr@denx.de>
9792
9793 commit 42735815dd9ba39efe51203868aebce04053c8de
9794 Author: Peter Tyser <ptyser@xes-inc.com>
9795 Date: Fri Jul 17 19:01:08 2009 -0500
9796
9797 xpedite1k: Add support for optional flashes
9798
9799 The XPedite1000 can be built with 4 total flashes:
9800 - 512KB AMD socketed
9801 - 16MB Intel soldered
9802 - 2 x 32MB AMD MirrorBit flashes
9803
9804 Add support for the optional 2 32MB CFI-compliant AMD flashes
9805
9806 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9807 Signed-off-by: Stefan Roese <sr@denx.de>
9808
9809 commit e02990764c7415c84668823a0fc8c5b4dd8d8cf0
9810 Author: Peter Tyser <ptyser@xes-inc.com>
9811 Date: Fri Jul 17 19:01:07 2009 -0500
9812
9813 xpedite1k: Cleanup coding style
9814
9815 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9816 Signed-off-by: Stefan Roese <sr@denx.de>
9817
9818 commit 086ff34a3a7e5e595630d658c1c13778399452d1
9819 Author: Peter Tyser <ptyser@xes-inc.com>
9820 Date: Fri Jul 17 19:01:06 2009 -0500
9821
9822 xpedite1k: Remove support for reading MACs from EEPROM
9823
9824 By default, the XPedite1000 comes installed with xMon, a proprietary
9825 bootloader. xMon stores its MAC address in an onboard EEPROM. Rather
9826 than requiring a non-standard location in the EEPROM to be reserved for
9827 MAC addresses, store the MAC addresses in U-Boot's standard environment.
9828 A U-Boot application or OS application can be used to migrate xMon MAC
9829 addresses to U-Boot's environment if necessary.
9830
9831 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9832 Signed-off-by: Stefan Roese <sr@denx.de>
9833
9834 commit 108d6d0099372f9f6532c3198fbaacabc121c9b3
9835 Author: Peter Tyser <ptyser@xes-inc.com>
9836 Date: Fri Jul 17 19:01:05 2009 -0500
9837
9838 xpedite1k: Remove support for fixed SDRAM configuration
9839
9840 All XPedite1000's have SPD EEPROMs present and no fixed configuration
9841 parameters are currently defined or used
9842
9843 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9844 Signed-off-by: Stefan Roese <sr@denx.de>
9845
9846 commit c86d00a2ed923002f1ab0bfb0a925522628302e9
9847 Author: Peter Tyser <ptyser@xes-inc.com>
9848 Date: Fri Jul 17 19:01:04 2009 -0500
9849
9850 xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
9851
9852 POST or command line tests provide similar functionality
9853
9854 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9855 Signed-off-by: Stefan Roese <sr@denx.de>
9856
9857 commit 11ad309c183b176d8866944026a63c0f1c626f56
9858 Author: Peter Tyser <ptyser@xes-inc.com>
9859 Date: Fri Jul 17 19:01:03 2009 -0500
9860
9861 xpedite1k: Use standard CFI flash driver
9862
9863 Using the CFI flash driver will allow write access to the 16MB Intel
9864 StrataFlash present on the XPedite1000. The 512KB socketed (non
9865 CFI-compliant flash) will no longer be writable.
9866
9867 The mapping of the 16MB Strata flash was moved to 0xff000000 and the
9868 512KB AMD socketed flash was moved to 0xfe000000.
9869
9870 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9871 Signed-off-by: Stefan Roese <sr@denx.de>
9872
9873 commit d4d2e79bb433fc7ec18c68cc49cc6b7433d1320c
9874 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
9875 Date: Thu Jul 16 22:13:57 2009 +0200
9876
9877 ppc4xx: Cleanup PLU405 board code
9878
9879 Some Coding style cleanup (braces, whitespaces, long lines)
9880
9881 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
9882 Signed-off-by: Stefan Roese <sr@denx.de>
9883
9884 commit b209a114829dc8a7a0e39a9335b6e4aebf9742cb
9885 Author: Dirk Eibach <eibach@gdsys.de>
9886 Date: Fri Jul 17 14:16:40 2009 +0200
9887
9888 ppc4xx: Add DL-Vision 405EP board support
9889
9890 Board support for the Guntermann & Drunck DL-Vision.
9891
9892 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9893 Signed-off-by: Stefan Roese <sr@denx.de>
9894
9895 commit 9b1b8c8a1bf52e9b65e1958e5205838576066cbc
9896 Author: Dirk Eibach <eibach@gdsys.de>
9897 Date: Fri Jul 10 14:47:32 2009 +0200
9898
9899 ppc4xx: Fix missing freqOPB for 405EP
9900
9901 In cpu/ppc4xx/speed.c initialization of sysInfo->freqOPB for 405EP was
9902 left out for no obvious reason.
9903
9904 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9905 Signed-off-by: Stefan Roese <sr@denx.de>
9906
9907 commit 0a371ca08908c9b2a58171223a79bffea1f7c6f5
9908 Author: Stefan Roese <sr@denx.de>
9909 Date: Tue Jul 14 15:53:08 2009 +0200
9910
9911 ppc4xx: Fix TLB reset problem with recent 44x images
9912
9913 Patch d873133f [ppc4xx: Add Sequoia RAM-booting target] broke "normal"
9914 booting on some 44x platforms. This breakage is only noticed in some
9915 cases while powercycling. As it seems, the code in question in start.S
9916 didn't invalidate TLB #0. This makes sense since this TLB is used for
9917 the bootrom mapping. With the patch mentioned above even TLB #0 got
9918 invalidated resulting in an error later on.
9919
9920 This patch now fixes this issue by only invalidating TLB #0 in the RAM-
9921 booting case.
9922
9923 Tested succesfully on Sequoia and Canyonlands.
9924
9925 Signed-off-by: Stefan Roese <sr@denx.de>
9926 Cc: Dirk Eibach <Eibach@gdsys.de>
9927
9928 commit 44259bb9e696d22bf1773181111855a29f00cf33
9929 Author: Prafulla Wadaskar <prafulla@marvell.com>
9930 Date: Fri Jul 17 19:56:30 2009 +0530
9931
9932 usb: bugfix driver/usb/host/ehci-hcd.c function ehci_submit_root
9933
9934 This change is cheked in Linux source and fix found to be in sync.
9935 This patch is tested for USB host interface on Kirkwood based
9936 Sheevaplug platform (ARM little endian board)
9937
9938 Risk: the impact of this patch is not validated on big endian board.
9939 This need to be checked...
9940
9941 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
9942 Signed-off-by: Remy Bohmer <linux@bohmer.net>
9943
9944 commit 28958b8bea4c66629c5a22fd3c8b0d49df90383d
9945 Author: Wolfgang Denk <wd@denx.de>
9946 Date: Thu Jul 23 22:23:23 2009 +0200
9947
9948 Coding Style cleanup; update CHANGELOG.
9949
9950 Signed-off-by: Wolfgang Denk <wd@denx.de>
9951
9952 commit 2632c008e2c2cd61fefb622ed671ea3e6bd2e2a6
9953 Author: Mike Frysinger <vapier@gentoo.org>
9954 Date: Tue Jul 21 22:59:36 2009 -0400
9955
9956 autoconf.mk: include before config.mk for top level files
9957
9958 By including autoconf.mk before config.mk, all top level files can use any
9959 config options it sets up (like <arch>_config.mk) or the Makefile itself
9960 without being forced to use lazy evaluation.
9961
9962 commit c01171eaecc963d2c1f56a0984a0cbcdd8a3ab3c
9963 Author: Mark Jackson <mpfj-list@mimc.co.uk>
9964 Date: Tue Jul 21 11:30:53 2009 +0100
9965
9966 Remove static declaration from gunzip_bmp()
9967
9968 This patch removes the static declaration from gunzip_bmp()
9969
9970 Without it, the gunzip_bmp() function is not visible to
9971 common/lcd.c and fails to compile with an error.
9972
9973 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9974
9975 commit 2d4a43e230a3c8bfd03b9beaa0eb2a95e779c03b
9976 Author: Peter Tyser <ptyser@gmail.com>
9977 Date: Mon Jul 20 21:51:38 2009 -0500
9978
9979 cmd_tsi148: General cleanup
9980
9981 - Fix command help message
9982 - Disable DEBUG by default
9983 - Fix whitespace issues
9984 - Fix lines > 80 characters
9985
9986 Signed-off-by: Peter Tyser <ptyser@gmail.com>
9987 Acked-by: Stefan Roese <sr@denx.de>
9988
9989 commit 9aef73888509d10193615ee5cd9cf439ca44e937
9990 Author: Mike Frysinger <vapier@gentoo.org>
9991 Date: Sun Jul 19 15:17:03 2009 -0400
9992
9993 unify HOST_CFLAGS and HOSTCFLAGS
9994
9995 The top build system sets up HOSTCFLAGS a bit and exports it, but other
9996 places use HOST_CFLAGS instead. Unify the two as HOSTCFLAGS so that the
9997 values stay in sync.
9998
9999 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10000
10001 commit 2e9393f500065f940e5e4ac7fe375e4c0b77b936
10002 Author: Wolfgang Denk <wd@denx.de>
10003 Date: Thu Jul 23 21:16:59 2009 +0200
10004
10005 Update CHANGELOG
10006
10007 Signed-off-by: Wolfgang Denk <wd@denx.de>
10008
10009 commit e3b39f84e974df70065fa248f0f63993b1708c9d
10010 Author: André Schwarz <andre.schwarz@matrix-vision.de>
10011 Date: Fri Jul 17 14:50:24 2009 +0200
10012
10013 update config for mvBC-P (MPC5200)
10014
10015 This patch adds I2C support for mvBC-P and defines flash layout
10016 matching the shipped product.
10017
10018 Signed-off-by: André Schwarz <andre.schwarz@matrix-vision.de>
10019
10020 commit cb6d0b72c2c4f13c0075a7ae92e11682ec94a311
10021 Author: Kumar Gala <galak@kernel.crashing.org>
10022 Date: Mon Jul 13 09:24:00 2009 -0500
10023
10024 ahci: Fix gcc 4.4 compiler warning
10025
10026 ahci.c: In function 'ata_scsiop_read_capacity10':
10027 ahci.c:616: warning: dereferencing type-punned pointer will break strict-aliasing rules
10028
10029 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10030
10031 commit 51d91e1a253c97713c7f3e5c0b910a4db4979283
10032 Author: Kumar Gala <galak@kernel.crashing.org>
10033 Date: Mon Jul 13 09:23:59 2009 -0500
10034
10035 drivers/bios_emulator: Fix gcc 4.4 compiler warning
10036
10037 biosemu.c: In function 'BE_setVGA':
10038 biosemu.c:147: warning: dereferencing type-punned pointer will break strict-aliasing rules
10039
10040 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10041
10042 commit f97ec30bb3c5a4a456159eb2b75b3bc68772bf2a
10043 Author: Detlev Zundel <dzu@denx.de>
10044 Date: Mon Jul 13 16:01:19 2009 +0200
10045
10046 Re-add support for image type 'Standalone Program'
10047
10048 Support for this type was lost during the bootm refactoring.
10049
10050 Signed-off-by: Detlev Zundel <dzu@denx.de>
10051
10052 commit ca95c9df0280f40e8e4befadbaae21fa67d92331
10053 Author: Detlev Zundel <dzu@denx.de>
10054 Date: Mon Jul 13 16:01:18 2009 +0200
10055
10056 Add error checking for unsupported OS types.
10057
10058 Signed-off-by: Detlev Zundel <dzu@denx.de>
10059
10060 commit 982adfc610669482a32127282fe489857a92cfe3
10061 Author: Peter Tyser <ptyser@xes-inc.com>
10062 Date: Fri Jul 10 18:46:10 2009 -0500
10063
10064 ppc: Unlock cache-as-ram in a consistent manner
10065
10066 Previously, non-e500 architectures only unlocked their data cache which
10067 was used as early RAM when booting to Linux using the "bootm" command.
10068 This change causes all PPC boards with CONFIG_SYS_INIT_RAM_LOCK defined
10069 to unlock their data cache during U-Boot's initialization. This
10070 improves U-Boot performance and provides a common cache state when
10071 booting to different OSes.
10072
10073 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10074
10075 commit b201171f2b4d509f3ad510b214bee70ff902e3d6
10076 Author: Giuseppe CONDORELLI <giuseppe.condorelli@st.com>
10077 Date: Thu Jul 23 04:54:45 2009 -0400
10078
10079 zlib: updated to v.1.2.3
10080
10081 This patch updates zlib to the latest stable version.
10082
10083 Only relevant zlib parts were ported to u-boot tree, as was done for
10084 the previously used version of zlib (0.95). New zlib gives faster
10085 inflate performance and other improvements, see www.zlib.net
10086
10087 Signed-off-by: Giuseppe Condorelli <giuseppe.condorelli@st.com>
10088 Reviewed-by: Angelo Castello <angelo.castello@st.com>
10089
10090 Edited commit message
10091
10092 Signed-off-by: Wolfgang Denk <wd@denx.de>
10093
10094 commit 97cfe86163505ea18e7ff7b71e78df5bb03dad57
10095 Author: Robin Getz <rgetz@blackfin.uclinux.org>
10096 Date: Tue Jul 21 12:15:28 2009 -0400
10097
10098 Save server's MAC address in environment
10099
10100 Linux's netconsole works much better when you can pass it the MAC address of
10101 the server. (otherwise it just uses broadcast, which everyone else on my
10102 network complains about :)
10103
10104 This sets the env var "serveraddr" (to match ethaddr), so that you can pass
10105 it to linux with whatever bootargs you want to....
10106
10107 addnetconsole=set bootargs $(bootargs) netconsole=@$(ipaddr)/eth0,@$(serverip)/$(serveraddr)
10108
10109 Signed-of-by: Robin Getz <rgetz@blackfin.uclinux.org>
10110
10111 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10112
10113 commit 0b23fb368d08c9669fac647971ff249c3f9fee8f
10114 Author: Ilya Yanok <yanok@emcraft.com>
10115 Date: Tue Jul 21 19:32:21 2009 +0400
10116
10117 fec_mxc: driver for FEC ethernet controller on i.MX27
10118
10119 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
10120 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10121
10122 commit 0544c63681d2ea3607faf374e9c56f101e365b42
10123 Author: Alessio Centazzo <centazzo@gmail.com>
10124 Date: Sat Jul 11 11:56:06 2009 -0700
10125
10126 ppc4xx: Fixed compilation warning in 4xx_enet.c
10127
10128 This patch fixes a compilation warning for some Ethernet PHY-less
10129 PPC4xx platforms (440SPE based ones) and a potential compilation
10130 error for 440SP platforms (use of undefined 'ethgroup' variable).
10131 In the original code and in case of 440SPE platforms, 'ethgroup'
10132 is initialized to -1 and never modified. Later in the function,
10133 within an #ifdef statement, an 'if statement' executes code only
10134 if 'ethgroup' is set to 4, therefore it is harmless to avoid
10135 executing the 'if statement' by removing the CONFIG_440SPE from
10136 the affected #ifdefs. In case of 440SP platforms with on-board
10137 Ethernet PHY, 'ethgroup' is undefined but used (there are not such
10138 platforms in the repository yet). All other architectures are not
10139 affected by this change.
10140
10141 Signed-off-by: Alessio Centazzo acpatin@yahoo.com
10142 Acked-by: Stefan Roese <sr@denx.de>
10143 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10144
10145 commit 09133f8580f0106429ba3600f1855bd3577ae58b
10146 Author: Michael Zaidman <michael.zaidman@gmail.com>
10147 Date: Tue Jul 14 23:37:12 2009 +0300
10148
10149 DHCP regression on 2009-06
10150
10151 Fixed the DHCP/BOOTP/RARP regression introduced in u-boot-2009.06
10152 by initializing our IP addr to 0 in order to accept any IP addr
10153 assigned to us by the DHCP/BOOTP/RARP server.
10154
10155 Ack-by: Robin Getz <rgetz@blackfin.uclinux.org>
10156 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
10157 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10158
10159 commit 443ce4ac9d1138ae5ae6863b2d40a96fd6edf523
10160 Author: Prafulla Wadaskar <prafulla@marvell.com>
10161 Date: Thu Jul 16 20:58:02 2009 +0530
10162
10163 net: phy: bugfixes: mv88E61xx multichip addressing support
10164
10165 With these fixes, this driver works properly for multi chip
10166 addressging mode
10167
10168 Bugfixes:
10169 1. Build error fixed for function mv88e61xx_busychk_multic-fixed
10170 2. PHY dev address error detection- fixed
10171 3. wrong busy bit was refered in function mv88e61xx_busychk -fixed
10172 4. invalid data read ptr was refered for RD_PHY in case of
10173 multichip addressing mode -fixed
10174
10175 The Multichip Address mode is tested with RD6281A board having
10176 MV88E6165 switch on it
10177
10178 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
10179 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10180
10181 commit 16025ea45539219f2a7c750c6f0ae983ea5c2737
10182 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10183 Date: Wed Jul 8 13:05:11 2009 +0200
10184
10185 arm: Kirkwood: Check the error summary bit for error detection
10186
10187 The Marvell documentation for the 88f6281 states that the error coding
10188 is only valid if the error summary and last frame bits in the transmit
10189 descriptor status field are set. This patch adds checks for these for
10190 transmit (I would get transmit errors on bootp with the current check,
10191 which I believe are spurious).
10192
10193 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10194 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10195
10196 commit 7b05f5e027b81cd3a9a41c6c6d3fe09c72fa93f6
10197 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10198 Date: Wed Jul 8 13:03:18 2009 +0200
10199
10200 arm: Kirkwood: Fix compiler optimization bug for kwgbe_send
10201
10202 kwgbe_send/recv both have loops waiting for the hardware to set a bit.
10203 GCC 4.3.3 cleverly optimizes the send case to ... a while(1); loop. This
10204 patch uses readl to force a read from device memory. Other volatile
10205 accesses have also been replaced with readl/writel where appropriate
10206 (as per suggestions on the U-boot mailing list).
10207
10208 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10209 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10210
10211 commit 3f6b18ffd94621625de961bc566022b0266790f5
10212 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
10213 Date: Thu Jul 2 13:21:22 2009 -0400
10214
10215 MIIPHYBB: Return 0xFFFF if the PHY is not asserting TA.
10216
10217 This patch sets the returned value to 0xFFFF if the PHY does not exist
10218 and does not assert Transfer Acknowledge. A NULL check for the value
10219 pointer is also added for buffer overflow protection.
10220
10221 Without this patch 'mii info' will show 'phantom' devices because the
10222 value will be not be initialized and return with some random value.
10223
10224 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
10225 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10226
10227 commit 736fead8fdbf8a8407048bebc373cd551d01ec98
10228 Author: Ben Warren <biggerbadderben@gmail.com>
10229 Date: Mon Jul 20 22:01:11 2009 -0700
10230
10231 Convert SMC911X Ethernet driver to CONFIG_NET_MULTI API
10232
10233 All in-tree boards that use this controller have CONFIG_NET_MULTI added
10234 Also:
10235 - changed CONFIG_DRIVER_SMC911X* to CONFIG_SMC911X*
10236 - cleaned up line lengths
10237 - modified all boards that override weak function in this driver
10238 - added
10239
10240 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10241 Tested-by: Mike Frysinger <vapier@gentoo.org>
10242
10243 commit 3bd0a877b74b9c005ae7cb892480ccedfa308c20
10244 Author: Ben Warren <biggerbadderben@gmail.com>
10245 Date: Fri Jul 17 00:50:15 2009 -0700
10246
10247 Add warning about upcoming removal of old Ethernet API
10248
10249 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10250
10251 commit b7fe25d2a8d1cede401d09e1f9c84f8fe47bdbb1
10252 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
10253 Date: Thu Jul 2 16:15:13 2009 +0530
10254
10255 P2020RDB Added support of Vitesse PHYs VSC8641(RGMII) and VSC8221(SGMII)
10256
10257 These PHYs are on P2020RDB platform.
10258
10259 Also revamped Freescale copyright message in drivers/net/tsec.c.
10260
10261 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
10262 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10263
10264 commit 1a32bf41881b5dbe3119cb77a33572b4d462cabf
10265 Author: Robin Getz <rgetz@blackfin.uclinux.org>
10266 Date: Mon Jul 20 14:53:54 2009 -0400
10267
10268 Add DNS support
10269
10270 On 04 Oct 2008 Pieter posted a dns implementation for U-Boot.
10271
10272 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg10216.html
10273 >
10274 > DNS can be enabled by setting CFG_CMD_DNS. After performing a query,
10275 > the serverip environment var is updated.
10276 >
10277 > Probably there are some cosmetic issues with the patch. Unfortunatly I
10278 > do not have the time to correct these. So if anybody else likes DNS
10279 > support in U-Boot and has the time, feel free to patch it in the main tree.
10280
10281 Here it is again - slightly modified & smaller:
10282 - update to 2009-06 (Pieter's patch was for U-Boot 1.2.0)
10283 - README.dns is added
10284 - syntax is changed (now takes a third option, the env var to store
10285 the result in)
10286 - add a random port() function in net.c
10287 - sort Makefile in ./net/Makefile
10288 - dns just returns unless a env var is given
10289 - run through checkpatch, and clean up style issues
10290 - remove packet from stack
10291 - cleaned up some comments
10292 - failure returns much faster (if server responds, don't wait for
10293 timeout)
10294 - use built in functions (memcpy) rather than byte copy.
10295
10296 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
10297 Signed-off-by: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
10298 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10299
10300 commit 88ad3fd91c83a4343b25385fd78fd8e29ebb723f
10301 Author: Kim Phillips <kim.phillips@freescale.com>
10302 Date: Fri Jul 17 12:17:00 2009 -0500
10303
10304 net: tsec - fix dereferencing type-punned pointer will break strict-aliasing rules warning
10305
10306 fix this gcc 4.4 warning:
10307
10308 tsec.c: In function 'tsec_init':
10309 tsec.c:200: warning: dereferencing type-punned pointer will break strict-aliasing rules
10310
10311 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10312 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10313
10314 commit d9bec9f42ab34383737c8a94429aa02fe76d7946
10315 Author: Mike Frysinger <vapier@gentoo.org>
10316 Date: Sat Jul 18 21:04:08 2009 -0400
10317
10318 net: rename NetRxPkt to NetRxPacket
10319
10320 The net code is mostly consistent in using 'Packet' rather than 'Pkt', so
10321 rename the minor detractor to follow suite.
10322
10323 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10324 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10325
10326 commit 88a4c2e77cd5674db745d0c2ebbad68c9baf760c
10327 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10328 Date: Thu Jun 25 16:33:04 2009 +0900
10329
10330 sh: sh_eth: Remove garbage from printf
10331
10332 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
10333 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
10334 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10335
10336 commit 2ea20efa47da9d98ff38223ff51dea5439ad8708
10337 Author: Andreas Pretzsch <apr@cn-eng.de>
10338 Date: Thu Jul 9 21:50:05 2009 +0200
10339
10340 smc911x: add support for LAN9221
10341
10342 Signed-off-by: Andreas Pretzsch <apr@cn-eng.de>
10343 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10344
10345 commit 7168eba729b9e6d730db7cd1028767f7b1a6128b
10346 Author: David Brownell <david-b@pacbell.net>
10347 Date: Tue Jun 9 11:14:24 2009 -0700
10348
10349 rm9200 ethernet driver: board-specific quirk (csb337)
10350
10351 CSB337 boards originally shipped with MicroMonitor, not U-Boot;
10352 and with a version using a different convention for recording
10353 Ethernet addresses than anyone else. To avoid breaking Linux
10354 when it uses U-Boot, have it use the same convention on that
10355 hardware.
10356
10357 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
10358 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10359
10360 commit 57215cd2e59fd403248df8f2f195e382900d5fc2
10361 Author: Heiko Schocher <hs@denx.de>
10362 Date: Thu Jul 16 09:58:31 2009 +0200
10363
10364 arm, kirkwood: added kw_gpio_set_valid() in gpio.h
10365
10366 Signed-off-by: Heiko Schocher <hs@denx.de>
10367
10368 commit ec16441085f471c03a8c0909579463e31e5b947a
10369 Author: Dieter Kiermaier <dk-arm-linux@gmx.de>
10370 Date: Mon Jun 29 14:45:08 2009 +0200
10371
10372 Kirkwood: add Marvell Kirkwood gpio driver
10373
10374 Signed-off-by: Dieter Kiermaier <dk-arm-linux@gmx.de>
10375 Acked-by: Prafulla Wadaskar <prafulla@marvell.com>
10376 Tested-by: Heiko Schocher <hs@denx.de>
10377
10378 commit 688b6a0ff2dcbb0c7e63ef63cbbcc291f14f321f
10379 Author: Heiko Schocher <hs@denx.de>
10380 Date: Thu Jul 16 09:59:10 2009 +0200
10381
10382 arm, kirkwood: added KW_TWSI_BASE in kirkwood.h
10383
10384 Signed-off-by: Heiko Schocher <hs@denx.de>
10385
10386 commit fbc8365ad7ab0afd4143bdbffab2fd0b24df004f
10387 Author: Prafulla Wadaskar <prafulla@marvell.com>
10388 Date: Thu Jul 16 21:02:24 2009 +0530
10389
10390 Marvell RD6281A Board support
10391
10392 This is Marvell's 88F6281_A0 based reference design board
10393
10394 This patch is tested for-
10395 1. Boot from DRAM/NAND flash/NFS
10396 2. File transfer using tftp and loadb
10397 3. NAND flash read/write/erase
10398
10399 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
10400 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10401
10402 commit 2906e6d654fcc7f2451fde225e4e8b3f20c9555f
10403 Author: Piotr Ziecik <kosmo@semihalf.com>
10404 Date: Fri Jul 17 16:35:19 2009 +0200
10405
10406 api: Fix broken build on ARM.
10407
10408 This patch fixes broken build introduced by commit
10409 84bf7ca522e94ec402a1264b01971b924b7e268f (api: remove un-needed
10410 ifdef CONFIG_API already handle by the Makefile).
10411
10412 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
10413
10414 commit 48677a1ef5f82adca49145a7baf11ece77f51945
10415 Author: Wolfgang Denk <wd@denx.de>
10416 Date: Wed Jul 22 23:53:23 2009 +0200
10417
10418 Fix "ld: cannot find -lstubs" build error
10419
10420 Commit 1bc15386 moved the examples/ to examples/standalone but failed
10421 to adapt the Makefiles that need to link against libstubs.a
10422
10423 Signed-off-by: Wolfgang Denk <wd@denx.de>
10424 Cc: Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10425
10426 commit ae71121a111ddf9dd057cacbbdd0f51054be428a
10427 Author: Wolfgang Denk <wd@denx.de>
10428 Date: Sat Jul 18 20:47:36 2009 +0200
10429
10430 at91cap9adk: fix #ifdef/#endif pairing
10431
10432 The #ifdef/#endif pairing in this file was obviously messed up.
10433
10434 Signed-off-by: Wolfgang Denk <wd@denx.de>
10435
10436 commit 6b96a20d512b04a808438553874c00cf40812c44
10437 Author: Minkyu Kang <mk7.kang@samsung.com>
10438 Date: Mon Jul 20 11:40:01 2009 +0900
10439
10440 ARM Cortex A8: Move OMAP3 specific reset handler
10441
10442 Because of the reset_cpu is soc specific, should be move to soc
10443
10444 Cc: Dirk Behme <dirk.behme@googlemail.com>
10445 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
10446
10447 commit 048e7efe91f66094f868281c12e488ce2bae8976
10448 Author: Kumar Gala <galak@kernel.crashing.org>
10449 Date: Wed Jul 22 10:12:39 2009 -0500
10450
10451 85xx/86xx: Replace in8/out8 with in_8/out_8 on FSL boards
10452
10453 The pixis code used in8/out8 all over the place. Replace it with
10454 in_8/out_8 macros.
10455
10456 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10457
10458 commit 0a6d0c6320b77bd6572393a93e6b8ccdf39c7100
10459 Author: Peter Tyser <ptyser@xes-inc.com>
10460 Date: Tue Jul 21 13:51:08 2009 -0500
10461
10462 xpedite5370: Enable NAND command support
10463
10464 Use the MPC8572's eLBC to access 1 GB (or greater) onboard NAND flash
10465 via the 'nand' command.
10466
10467 Previously, the XPedite5370's NAND chip selects were properly
10468 configured, but NAND support was not enabled.
10469
10470 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10471 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10472
10473 commit 39121c0896a6760bd436d88c17892f49a97902d0
10474 Author: Peter Tyser <ptyser@xes-inc.com>
10475 Date: Tue Jul 21 13:51:07 2009 -0500
10476
10477 xes: Increase CONFIG_SYS_BOOTM_LEN to 16MB
10478
10479 Increasing CONFIG_SYS_BOOTM_LEN from 8 MB to 16 MB is necessary to
10480 support uncompressing images larger than 8 MB when using the bootm
10481 command.
10482
10483 Note that recent Linux kernels for the 85xx and 86xx map greater than
10484 16MB of memory on bootup, but we use 16MB to maintain compatibility with
10485 older Linux kernels for now.
10486
10487 Signed-off-by: Nate Case <ncase@xes-inc.com>
10488 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10489 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10490
10491 commit 58f31b602dfd52eb7836ab82caa587514e046f02
10492 Author: Peter Tyser <ptyser@xes-inc.com>
10493 Date: Sun Jul 19 19:17:41 2009 -0500
10494
10495 xpedite5370: Fix I2C GPIO initialization typo
10496
10497 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10498 Acked-by: Heiko Schocher<hs@denx.de>
10499 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10500
10501 commit 5ff821006c6e7647d183ea95817044943bb22e7e
10502 Author: Peter Tyser <ptyser@xes-inc.com>
10503 Date: Sun Jul 19 19:17:40 2009 -0500
10504
10505 xpedite5200,5370: Use buffered NOR flash writes
10506
10507 Buffered writes are possible on the XPedite5200 and XPedite5370 and greatly
10508 improve NOR flash write speeds
10509
10510 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10511 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10512
10513 commit d9c147f371800a479a507a816b2fe572c97da197
10514 Author: Peter Tyser <ptyser@xes-inc.com>
10515 Date: Fri Jul 17 10:14:48 2009 -0500
10516
10517 85xx, 86xx: Add common board_add_ram_info()
10518
10519 Previously, 85xx and 86xx boards would display DRAM information on
10520 bootup such as:
10521
10522 ...
10523 I2C: ready
10524 DRAM:
10525 Memory controller interleaving enabled: Bank interleaving!
10526 2 GB
10527 FLASH: 256 MB
10528 ...
10529
10530 This patch moves the printing of the DRAM controller configuration to a
10531 common board_add_ram_info() function which prints out DDR type, width,
10532 CAS latency, and ECC mode. It also makes the DDR interleaving
10533 information print out in a more sane manner:
10534
10535 ...
10536 I2C: ready
10537 DRAM: 2 GB (DDR2, 64-bit, CL=4, ECC on)
10538 DDR Controller Interleaving Mode: bank
10539 FLASH: 256 MB
10540 ...
10541
10542 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10543 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10544
10545 commit 12a440ae6d09445140f1a0c2023dba76a9f1a617
10546 Author: Peter Tyser <ptyser@xes-inc.com>
10547 Date: Fri Jul 17 10:14:47 2009 -0500
10548
10549 tqm85xx: Remove board_add_ram_info()
10550
10551 This is in preparation for adding one common 8xxx board_add_ram_info()
10552 function for all 8xxx boards
10553
10554 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10555 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10556
10557 commit ed2c9488bbe389b7b25cada1e42bdae5d0976327
10558 Author: Peter Tyser <ptyser@xes-inc.com>
10559 Date: Fri Jul 17 10:14:46 2009 -0500
10560
10561 xes: Remove 8xxx board_add_ram_info() function
10562
10563 This is in preparation for adding one common 8xxx board_add_ram_info()
10564 fuction for all 8xxx boards
10565
10566 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10567 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10568
10569 commit e7ee23ec1788d8cf269a4cf6b9cd3722cbc7d592
10570 Author: Peter Tyser <ptyser@xes-inc.com>
10571 Date: Fri Jul 17 10:14:45 2009 -0500
10572
10573 86xx: Rename ccsr_ddr's sdram_mode_1, sdram_cfg_1 fields
10574
10575 Rename sdram_mode_1 to sdram_mode and sdram_cfg_1 to sdram_cfg to match
10576 the 86xx user's manual and other Freescale architectures
10577
10578 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10579 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10580
10581 commit f6155c6fbb1d85f517b7c160570f0995ef14c43f
10582 Author: Roy Zang <tie-fei.zang@freescale.com>
10583 Date: Thu Jul 9 10:05:48 2009 +0800
10584
10585 85xx: Add pci/pcie E1000 ethernet support for MPC8544DS and MPC8536 boards
10586
10587 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
10588 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10589
10590 commit 6bb5b412291177e6edd42f9a80e5c5afe57a6a0f
10591 Author: Kumar Gala <galak@kernel.crashing.org>
10592 Date: Tue Jul 14 22:42:01 2009 -0500
10593
10594 85xx: Report which "bank" of NOR flash we are booting from on FSL boards
10595
10596 The p2020DS, MPC8536DS, MPC8572DS, MPC8544DS boards are capable of
10597 swizzling the upper address bits of the NOR flash we boot out of which
10598 creates the concept of "virtual" banks. This is useful in that we can
10599 flash a test of image of u-boot and reset to one of the virtual banks
10600 while still maintaining a working image in "bank 0".
10601
10602 The PIXIS FPGA exposes registers on LBC which we can use to determine
10603 which "bank" we are booting out of (as well as setting which bank to
10604 boot out of).
10605
10606 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10607
10608 commit 9af9c6bdc16da53772c56b1a79c2c91701fe94e6
10609 Author: Kumar Gala <galak@kernel.crashing.org>
10610 Date: Wed Jul 15 13:45:00 2009 -0500
10611
10612 86xx: Report which "bank" of NOR flash we are booting from on MPC8641HPCN
10613
10614 The MPC8641HPCN board is capable of swizzling the upper address bit of
10615 the NOR flash we boot out of which creates the concept of "virtual"
10616 banks. This is useful in that we can flash a test of image of u-boot
10617 and reset to one of the virtual banks while still maintaining a
10618 working image in "bank 0".
10619
10620 The PIXIS FPGA exposes registers on LBC which we can use to determine
10621 which "bank" we are booting out of (as well as setting which bank to
10622 boot out of).
10623
10624 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10625
10626 commit caf72ff329759b4da71352ab098537c7698c0e9f
10627 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
10628 Date: Tue Jul 21 10:45:49 2009 +0200
10629
10630 Refresh LZMA-lib to v4.65
10631
10632 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
10633
10634 commit 70ebf31633f372a24505e47846b2628e8435ea37
10635 Author: Wolfgang Denk <wd@denx.de>
10636 Date: Fri Jul 17 23:35:29 2009 +0200
10637
10638 AT91: factor out ROUND() macro
10639
10640 A large number of boards (all AT91 based) duplicated the ROUND()
10641 macro in their board specific config files. Add the definition to
10642 include/common.h and clean up the board config files.
10643
10644 Signed-off-by: Wolfgang Denk <wd@denx.de>
10645
10646 commit 89188a62333c0841a7166783d2ebdd39d7044eb2
10647 Author: Kumar Gala <galak@kernel.crashing.org>
10648 Date: Wed Jul 15 08:54:50 2009 -0500
10649
10650 85xx: Bump up the BOOTMAP to 16M on FSL 85xx boards
10651
10652 We have always mapped at least 16M in the kernel and we have seen cases
10653 with new kernel features that a kernel image needs more than 8M of
10654 memory.
10655
10656 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10657
10658 commit d4abc757c26c531293f5bbc4262ade44a317eec9
10659 Author: Peter Tyser <ptyser@xes-inc.com>
10660 Date: Mon Jul 20 19:02:21 2009 -0500
10661
10662 Move api_examples to examples/api
10663
10664 Also add a rule to remove demo.bin which was previously leftover
10665 after a "make clean"
10666
10667 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10668
10669 commit af1d7d984a23a0faa1f436ebfeb55c876b1a99e1
10670 Author: Heiko Schocher <hs@denx.de>
10671 Date: Tue Jul 21 06:37:28 2009 +0200
10672
10673 83xx, kmeter: fix compile error
10674
10675 CONFIG_SYS_MALLOC_LEN is defined in the board config, and
10676 the keymile-common.h, which collects common options used
10677 by all keymile-boards. This results in a compile error
10678 when compiling the kmeter1 board. So remove this define
10679 in the board config file.
10680
10681 Signed-off-by: Heiko Schocher <hs@denx.de>
10682
10683 commit 39df00d9aecfb465b9eec9af593f9b763fb5209a
10684 Author: Heiko Schocher <hs@denx.de>
10685 Date: Thu Jul 9 12:04:26 2009 +0200
10686
10687 i2c, mpc83xx: add CONFIG_SYS_I2C_INIT_BOARD for fsl_i2c
10688
10689 This patch adds the possibility to call a board specific
10690 i2c bus reset routine for the fsl_i2c bus driver, and adds
10691 this option for the keymile kmeter1 board.
10692
10693 The deblock sequence for this board is implemented and
10694 tested in the following way:
10695
10696 CR = 0x20 (release SDA and SCL pin)
10697 CR = 0xa0 (start read)
10698 dummy read
10699 dummy read
10700 if 2. dummy read == 0x00
10701 3. dummy read
10702
10703 CR = 0x80 (SDA and SCL now 1 SR = 0x86)
10704 CR = 0x00 (Modul reset SR=0x81)
10705 CR = 0x80 (SDA and SCL = 1, SR = 0x81)
10706
10707 Signed-off-by: Heiko Schocher <hs@denx.de>
10708
10709 commit 1bc1538613d66cef3cbce680fc8d7c3561a0fbd0
10710 Author: Peter Tyser <ptyser@xes-inc.com>
10711 Date: Fri Jul 10 11:03:19 2009 -0500
10712
10713 Move examples/ to examples/standalone
10714
10715 The current files in examples are all standalone application examples,
10716 so put them in their own subdirectory for organizational purposes
10717
10718 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10719
10720 commit b220c64d86f7c705a183302c3b50076d7e5d876c
10721 Author: Peter Tyser <ptyser@xes-inc.com>
10722 Date: Fri Jul 10 11:03:15 2009 -0500
10723
10724 Move architecture specific config.mk files into subdirs
10725
10726 This cleans up U-Boot's toplevel directory a bit and makes the
10727 architecture 'config.mk' file naming and location similar to board
10728 and cpu 'config.mk' files
10729
10730 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10731
10732 commit 082becd0d546399637fa94fdf9f1730a0f7bf348
10733 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
10734 Date: Fri Jul 10 18:25:34 2009 +0800
10735
10736 Add "tags" to .gitignore file.
10737
10738 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
10739 Signed-off-by: Wolfgang Denk <wd@denx.de>
10740
10741 commit dc71b248ef0d5e12b19f33c6efb873e31df91fa9
10742 Author: Heiko Schocher <hs@denx.de>
10743 Date: Thu Jul 9 12:04:18 2009 +0200
10744
10745 powerpc: updates for the keymile boards
10746
10747 - CONFIG_SYS_MAX_I2C_BUS changed to 1
10748 We use only one I2C hardwarecontroller on this boards, so
10749 change the CONFIG_SYS_MAX_I2C_BUS to 1.
10750 - common: dont print errormsg if second IVM Block lacks.
10751 - 82xx, mgcoge: fix double mtdpart entry in environment
10752 - 82xx, mgcoge: activate on second Flash the second bank.
10753 - common: CONFIG_ENV_SIZE 0x4000 for all keymile boards
10754 - common: Change malloc size to 1MByte for all Keymile boards
10755 We need a bigger malloc area for the environment support (128k)
10756 on some Keymile boards (kmeter1) and the upcoming UBI support.
10757 Change it to 1MB for all Keymile boards to be on the save side.
10758 Also define CONFIG_SYS_64BIT_VSPRINTF which is needed for
10759 UBI/UBIFS support.
10760 - Add UBI support to all Keymile boards
10761 - change manner of writing "/localbus/ranges" node
10762 instead of writting the complete "/localbus/ranges" node
10763 before booting Linux, only update the ranges entries
10764 which gets dynamical detected (size of flashes).
10765 This is needed, because keymile adds in the DTS
10766 "/localbus/ranges" node entries, which u-boot must
10767 not overwrite/delete.
10768 - kmeter, mgcoge: define 2 seperate regions needed for the Intel P30 chips
10769 The Intel P30 chip has 2 non-identical chips on
10770 one die, so we need to define 2 seperate regions
10771 that are scanned by physmap_of independantly.
10772 - kmeter1: Add MTD concat support to Keymile boards
10773 - 82xx, mgcoge: add "unlock=yes" to default environment
10774 - added CONFIG_MTD_DEVICE to get in sync with mainline code
10775
10776 Signed-off-by: Heiko Schocher <hs@denx.de>
10777 Signed-off-by: Stefan Roese <sr@denx.de>
10778
10779 commit f14d81050a9e0fa57aedb1bc746c60a07c1ad67f
10780 Author: galak <galak@ducky.am.freescale.net>
10781 Date: Tue Jul 7 15:53:21 2009 -0500
10782
10783 fsl_sata: Fix compiler warnings shown by gcc-4.4
10784
10785 Update fsl_sata to use common structures instead of casting
10786 back and forth between the fsl specific ones and the common ones
10787 (which are identical).
10788
10789 fsl_sata.c: In function 'scan_sata':
10790 fsl_sata.c:550: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10791 fsl_sata.c:549: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10792 fsl_sata.c:548: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10793 fsl_sata.c:545: note: initialized from here
10794 fsl_sata.c:592: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10795 fsl_sata.c:590: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10796 fsl_sata.c:588: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10797 fsl_sata.c:586: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10798 fsl_sata.c:579: warning: dereferencing pointer 'cfis' does break strict-aliasing rules
10799 ...
10800
10801 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10802
10803 commit 20938e54a207472a090f04f20f30c9e32b14137e
10804 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10805 Date: Tue Jul 7 15:58:51 2009 +0200
10806
10807 Add unaligned.h for arm
10808
10809 This patch adds unaligned.h for ARM (needed to build with LZO
10810 compression). The file is taken from the linux kernel, but includes
10811 u-boot headers instead.
10812
10813 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10814 Acked-by: Stefan Roese <sr@denx.de>
10815
10816 commit 433ea8abd6adfae3138dd4ce238237a037e1e537
10817 Author: Peter Tyser <ptyser@xes-inc.com>
10818 Date: Sun Jul 19 19:17:42 2009 -0500
10819
10820 Remove last remanants of unused CONFIG_I2C_CMD_TREE
10821
10822 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10823
10824 commit f6ca3b70949790ab5438d6c9a592216cc3616110
10825 Author: Andrzej Wolski <awolski@poczta.fm>
10826 Date: Fri Jul 17 22:26:54 2009 +0200
10827
10828 ubi: help message correction
10829
10830 Fix incorrect information about size units and correct typo.
10831
10832 Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
10833 Signed-off-by: Stefan Roese <sr@denx.de>
10834
10835 commit 22f2017c31bc682e9b15612a5c2580ab5b84418e
10836 Author: Peter Tyser <ptyser@xes-inc.com>
10837 Date: Sun Jul 19 19:17:42 2009 -0500
10838
10839 Remove last remanants of unused CONFIG_I2C_CMD_TREE
10840
10841 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
10842
10843 commit f99a292aa6083057f5db8283d2ce4a2be22b8856
10844 Author: Andrzej Wolski <awolski@poczta.fm>
10845 Date: Fri Jul 17 22:26:54 2009 +0200
10846
10847 ubi: help message correction
10848
10849 Fix incorrect information about size units and correct typo.
10850
10851 Signed-off-by: Andrzej Wolski <awolski@poczta.fm>
10852 Signed-off-by: Stefan Roese <sr@denx.de>
10853
10854 commit b86b85e2611d57d834795a92453431a1a340c3c9
10855 Author: Ilya Yanok <yanok@emcraft.com>
10856 Date: Mon Jun 29 17:53:16 2009 +0400
10857
10858 mmc: set bus width to 1 and clock to minimum early during initialization
10859
10860 We need to switch back to 1-bit before initialization or SD 2.0 cards
10861 will fail to send SCR if we've switched to 4-bit already.
10862
10863 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
10864
10865 commit cff80f2cd12bf9767509b5334ecfc90cd7de5502
10866 Author: Shinya Kuribayashi <skuribay@pobox.com>
10867 Date: Sat Jun 20 19:14:33 2009 +0900
10868
10869 config.mk: Remove unused HPATH
10870
10871 This variable is not unused anywhere.
10872
10873 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
10874
10875 commit a781de12700e2cb3d3011fc83b47f7dd8cc3c154
10876 Author: Grzegorz Bernacki <gjb@semihalf.com>
10877 Date: Wed Jun 17 16:20:14 2009 +0200
10878
10879 digsy mtc: Enable command line history.
10880
10881 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
10882
10883 commit 37566090766d61beef70c62986b90749920255d8
10884 Author: Mike Frysinger <vapier@gentoo.org>
10885 Date: Thu Jul 2 19:23:25 2009 -0400
10886
10887 compiler.h: unify system ifdef cruft here
10888
10889 Shove a lot of the HOSTCC and related #ifdef checking crap into the new
10890 compiler.h header so that we can keep all other headers nice and clean.
10891
10892 Also introduce custom uswap functions so we don't have to rely on the non
10893 standard implementations that a host may (or may not in the case of OS X)
10894 provide. This allows mkimage to finally build cleanly on an OS X system.
10895
10896 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10897
10898 commit 2a2ed845c085eb093b69fa6382fcf7534bb1f4b0
10899 Author: Kim Phillips <kim.phillips@freescale.com>
10900 Date: Mon Jun 15 11:50:40 2009 -0500
10901
10902 common: fix 'dummy' is used uninitialized in this function warning
10903
10904 fix this gcc 4.4 warning:
10905
10906 xyzModem.c: In function 'xyzModem_stream_open':
10907 xyzModem.c:564: warning: 'dummy' is used uninitialized in this function
10908
10909 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10910
10911 commit 1ea6bcd8590b3ff9fe2bfbb0eb29a3b0edaa9460
10912 Author: Mike Frysinger <vapier@gentoo.org>
10913 Date: Sun Jun 14 23:33:14 2009 -0400
10914
10915 push CROSS_COMPILE out to $(ARCH)_config.mk
10916
10917 Each arch should handle setting a proper default CROSS_COMPILE value in
10918 their own config.mk file rather than having to maintain a large ugly list
10919 in the Makefile. By using conditional assignment, we don't have to worry
10920 about the variable already being set (env/cmdline/etc...).
10921
10922 The common config.mk file takes care of exporting CROSS_COMPILE already,
10923 and while a few variables (toolchain ones) utilize CROSS_COMPILE before
10924 including the arch config.mk, they do so with deferred assignment.
10925
10926 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
10927
10928 commit 60a3f404acbf8238a3138fe1f80a6bac75da4582
10929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10930 Date: Sat Jun 13 12:55:37 2009 +0200
10931
10932 malloc.h: protect it against multiple include
10933
10934 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10935
10936 commit 7640f41988a456a0b1f05263d2e2dc5cd7d93984
10937 Author: Wolfgang Denk <wd@denx.de>
10938 Date: Sun Jul 19 19:37:24 2009 +0200
10939
10940 Fix boards broken after removal of legacy NAND and DoC support
10941
10942 Commit 2419169f removed support for legacy NAND and disk on chip but
10943 missed to update the code for a few boards. This patch fixes the
10944 resulting build issues.
10945
10946 Signed-off-by: Wolfgang Denk <wd@denx.de>
10947
10948 commit 1a4664b53aaf23687b52d64b94be06a9aa260b86
10949 Author: Wolfgang Denk <wd@denx.de>
10950 Date: Sun Jul 19 19:32:37 2009 +0200
10951
10952 cmd_flash.c: fix fix compile error for boards with DataFlash
10953
10954 Commit 5669ed45 ("cmd_flash.c: fix warning: unused variable
10955 'addr_first'/'addr_last'") changed the #ifdef logic areound the
10956 declaration of these variables and missed a combination of settings
10957 of HAS_DATAFLASH with SYS_NO_FLASH; this patch fixes this.
10958
10959 Also spotted by Alessandro Rubini <rubini@gnudd.com>
10960
10961 Signed-off-by: Wolfgang Denk <wd@denx.de>
10962
10963 commit 341245a28830d3261c41b09d958eeea7bb93587a
10964 Author: Wolfgang Denk <wd@denx.de>
10965 Date: Sun Jul 19 12:05:15 2009 +0200
10966
10967 pcm030: fix out-of-tree building
10968
10969 Commit 0a87dd90 that was supposed to fix out-of-tree building for the
10970 pcm030 board was unfortunately incomplete.
10971
10972 Signed-off-by: Wolfgang Denk <wd@denx.de>
10973
10974 commit 8bf29b59fce8cc381114929082202d800e313ad5
10975 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
10976 Date: Tue Jul 7 13:58:51 2009 +0200
10977
10978 Add unaligned.h for arm
10979
10980 This patch adds unaligned.h for ARM (needed to build with LZO
10981 compression). The file is taken from the linux kernel, but includes
10982 u-boot headers instead.
10983
10984 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
10985 Acked-by: Stefan Roese <sr@denx.de>
10986
10987 commit e405afab1dda66c9df3733f6b779d72fc36a0162
10988 Author: Kazuaki Ichinohe <kazuichi@fsi.co.jp>
10989 Date: Fri Jun 12 18:10:12 2009 +0900
10990
10991 Canyonlands SATA harddisk driver
10992
10993 This patch adds a SATA harddisk driver for the canyonlands.
10994 This patch is kernel driver's porting.
10995 This patch corresponded to not cmd_scsi but cmd_sata.
10996 This patch divided an unused member with ifndef __U_BOOT__ in the structure.
10997
10998 [environment variable, boot script]
10999 setenv bootargs root=/dev/sda7 rw
11000 setenv bootargs ${bootargs} console=ttyS0,115200
11001 ext2load sata 0:2 0x400000 /canyonlands/uImage
11002 ext2load sata 0:2 0x800000 /canyonlands/canyonlands.dtb
11003 fdt addr 0x800000 0x4000
11004 bootm 0x400000 - 0x800000
11005
11006 If you drive SATA-2 disk on Canyonlands, you must change parts from
11007 PI2PCIE212 to PI2PCIE2212 on U25. We confirmed to boot by using
11008 following disks:
11009
11010 1.Vendor: Fujitsu Type: MHW2040BS
11011 2.Vendor: Fujitsu Type: MHW2060BK
11012 3.Vendor: HAGIWARA SYS-COM:HFD25S-032GT
11013 4.Vendor: WesternDigital Type: WD3200BJKT (CONFIG_LBA48 required)
11014 5.Vendor: WesternDigital Type: WD3200BEVT (CONFIG_LBA48 required)
11015 6.Vendor: Hitachi Type: HTS543232L9A300 (CONFIG_LBA48 required)
11016 7.Vendor: Seagate Type: ST31000333AS (CONFIG_LBA48 required)
11017 8.Vendor: Transcend Type: TS32GSSD25S-M
11018 9.Vendor: MTRON Type: MSD-SATA1525-016
11019
11020 Signed-off-by: Kazuaki Ichinohe <kazuichi at fsi.co.jp>
11021
11022 commit 52a0e2dee90c17e39634de814b16b96061cfb472
11023 Author: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11024 Date: Wed Jun 10 19:09:40 2009 +0200
11025
11026 Add support for the Tundra TSI148 VME-bridge
11027
11028 From: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11029
11030 This patch adds support for the Tundra TSI148 VME-bridge. It's used on
11031 the upcoming esd VME8349 board.
11032
11033 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11034 Signed-off-by: Stefan Roese <sr@denx.de>
11035
11036 commit 8d1fea2c4041e665c96944e3f6fcffbde55db34b
11037 Author: Mike Frysinger <vapier@gentoo.org>
11038 Date: Thu Jul 16 19:05:30 2009 -0400
11039
11040 Blackfin: bf537-{minotaur,srv1}: do not hardcode CONFIG_ETHADDR
11041
11042 MAC addresses should not be hardcoded in boards to avoid random link level
11043 conflicts.
11044
11045 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11046
11047 commit baf357050353aee30c04f3f4b868426cb54468ca
11048 Author: Mike Frysinger <vapier@gentoo.org>
11049 Date: Fri Jul 10 10:42:06 2009 -0400
11050
11051 Blackfin: bf533-stamp: back down SCLK a bit
11052
11053 While the 1.0 and 1.2 spin of the bf533-stamp boards can handle the higher
11054 SCLK speeds just fine, the 1.1 spin cannot due to the bugs introduced with
11055 the shortened SDRAM traces. So lower the SCLK speed down to a value that
11056 all three can handle.
11057
11058 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11059
11060 commit 490fe7349102012c48730f6fc14ef36c8d155068
11061 Author: Mike Frysinger <vapier@gentoo.org>
11062 Date: Thu Jul 9 20:56:56 2009 -0400
11063
11064 Blackfin: split cpu COBJS into multilines
11065
11066 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11067
11068 commit 909878fd3fda056d19b8b51a5cc51cb1c0b563d1
11069 Author: Mike Frysinger <vapier@gentoo.org>
11070 Date: Thu Jul 9 01:15:05 2009 -0400
11071
11072 Blackfin: add os log functions
11073
11074 Part of the mini Blackfin ABI with operating systems is that they can use
11075 0x4f0-0x4f8 to pass log buffers to/from bootloaders. So add support to
11076 U-Boot for reading the log buffer.
11077
11078 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11079
11080 commit 9993e196da707a0a1cd4584f1fcef12382c1c144
11081 Author: Kim Phillips <kim.phillips@freescale.com>
11082 Date: Sat Jul 18 18:42:13 2009 -0500
11083
11084 mpc83xx: convert all remaining boards over to 83XX_GENERIC_PCI
11085
11086 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11087
11088 commit d39041fcadb1231430201d298c31f6be03d654f7
11089 Author: Wolfgang Denk <wd@denx.de>
11090 Date: Sun Jul 19 01:15:52 2009 +0200
11091
11092 PATI board: fix compiler warnings
11093
11094 Fix these:
11095 pati.c: In function 'checkboard':
11096 pati.c:358: warning: pointer targets in passing argument 2 of 'getenv_r' differ in signedness
11097 ../common/flash.c: In function 'write_word':
11098 ../common/flash.c:824: warning: dereferencing type-punned pointer will break strict-aliasing rules
11099 cmd_pati.c: In function 'do_pati':
11100 cmd_pati.c:279: warning: 'value' may be used uninitialized in this function
11101
11102 Signed-off-by: Wolfgang Denk <wd@denx.de>
11103
11104 commit 28c345042eafc550a34b9f52431bd4a22af6ac25
11105 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11106 Date: Sat May 16 12:14:56 2009 +0200
11107
11108 mpl: printing current stdio devices cleanup
11109
11110 Currently the mpl boards duplicate the code to print the current
11111 devices from common/console.c; use stdio_print_current_devices()
11112 instead
11113
11114 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11115
11116 Edited commit message.
11117
11118 Signed-off-by: Wolfgang Denk <wd@denx.de>
11119
11120 commit 7e3be7cf3bb344f717b6ec3d47a081269ea67ead
11121 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11122 Date: Sat May 16 12:14:55 2009 +0200
11123
11124 console: unify printing current devices
11125
11126 Create stdio_print_current_devices() for this purpose
11127
11128 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11129
11130 commit 5669ed4557edf2714203aa8625c9fcd5a753b338
11131 Author: Wolfgang Denk <wd@denx.de>
11132 Date: Sat Jul 18 23:18:14 2009 +0200
11133
11134 cmd_flash.c: fix warning: unused variable 'addr_first'/'addr_last'
11135
11136 Signed-off-by: Wolfgang Denk <wd@denx.de>
11137
11138 commit 6bb6e6c75ec4ef496f00f7f530e549d3e073c5de
11139 Author: Tom Rix <Tom.Rix@windriver.com>
11140 Date: Tue Jun 30 15:04:13 2009 -0500
11141
11142 OMAP3 Fix compiler warning for v7_flush_dcache_all
11143
11144 On build of omap3 targets in MAKEALL, the *.ERR files have
11145
11146 cpu.c: In function 'cleanup_before_linux':
11147 cpu.c:64: warning: implicit declaration of function 'v7_flush_dcache_all'
11148 cpu.c:64: warning: implicit declaration of function 'get_device_type
11149
11150 The functions v7_flush_dcache_all and get_device_type are declared
11151 in include/asm-arm/arch-omap3/sys_proto.h, so use this file to
11152 declare the functions.
11153
11154 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
11155
11156 commit dba107b967332fc8a35867f4d58038626c968800
11157 Author: Wolfgang Denk <wd@denx.de>
11158 Date: Sat Jul 18 22:09:38 2009 +0200
11159
11160 ARM: make split_by_variant.sh output more useful
11161
11162 The board/armltd/integrator/split_by_variant.sh script used to print
11163 "Configuring for integrator*p board..." no matter which board name
11164 was being compiled. This made it difficult to match MAKEALL output to
11165 board names. This patch fixes this.
11166
11167 Signed-off-by: Wolfgang Denk <wd@denx.de>
11168
11169 commit 2eb99ca8029b44c988d5f6312f97e68d3b9cb2bd
11170 Author: Wolfgang Denk <wd@denx.de>
11171 Date: Sat Jul 18 21:52:24 2009 +0200
11172
11173 NAND: Part 2: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
11174
11175 Commit 8d2effea added a warning for configurations that use NAND
11176 without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
11177 failed to fix the affected boards.
11178
11179 This patch covers the non-PPC boards that were missed in the previous
11180 patch (commit 170c1972).
11181
11182 Signed-off-by: Wolfgang Denk <wd@denx.de>
11183
11184 commit 7024aa14df2981b4e65c6189909da9aadb1c22da
11185 Author: Wolfgang Denk <wd@denx.de>
11186 Date: Sat Jul 18 20:46:38 2009 +0200
11187
11188 at91cap9adk: fix #ifdef/#endif pairing
11189
11190 The #ifdef/#endif pairing in this file was obviously messed up.
11191
11192 Signed-off-by: Wolfgang Denk <wd@denx.de>
11193
11194 commit 4abc5bffea244589fa1097e4c899a63efc609c8e
11195 Author: Prafulla Wadaskar <prafulla@marvell.com>
11196 Date: Thu Jul 16 20:58:01 2009 +0530
11197
11198 Marvell MV88F6281GTW_GE Board support
11199
11200 This is Marvell's 88F6281_A0 based custom board developed
11201 for wireless access point product
11202
11203 This patch is tested for-
11204 1. Boot from DRAM/SPI flash/NFS
11205 2. File transfer using tftp and loadb
11206 3. SPI flash read/write/erase
11207 4. Booting Linux kernel and RFS from SPI flash
11208 5. Boot from USB supported
11209
11210 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
11211 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11212
11213 commit 55dd4ba5413b14e8ee24058c89ac5c05376c331c
11214 Author: Prafulla Wadaskar <prafulla@marvell.com>
11215 Date: Thu Jul 16 20:58:00 2009 +0530
11216
11217 Marvell Sheevaplug Board support
11218
11219 Reference:
11220 http://plugcomputer.org/
11221 http://openplug.org/plugwiki/index.php/Das_U-boot_plug_support
11222
11223 This patch is tested for-
11224 1. Boot from DRAM/NAND flash
11225 2. File transfer using tftp
11226 3. NAND flash read/write/erase
11227 4. Linux kernel and RFS Boot from NAND
11228 5. Enabled USB PHY init for kernel need
11229 6. Boot from USB supported
11230
11231 Note: to boot Kirkwood kernel with USB support,
11232 you should add "usb start" in the boot sequence
11233
11234 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11235
11236 commit 0a87dd90a75d034301496285026fbd8106c7c6d5
11237 Author: Wolfgang Denk <wd@denx.de>
11238 Date: Sat Jul 18 18:00:25 2009 +0200
11239
11240 pcm030: fix out-of-tree building
11241
11242 Commit c9969947, which added support for the pcm030 board
11243 (aka phyCORE-MPC5200B-tiny), broke out-of-tree building.
11244
11245 Signed-off-by: Wolfgang Denk <wd@denx.de>
11246
11247 commit 9ff59601c71e800b9d0dfde22fa70d12c71c12b4
11248 Author: Wolfgang Denk <wd@denx.de>
11249 Date: Sat Jul 18 16:36:11 2009 +0200
11250
11251 MPC837XERDB: fix warning: "CONFIG_SYS_MONITOR_LEN" redefined
11252
11253 Signed-off-by: Wolfgang Denk <wd@denx.de>
11254
11255 commit 2b5243fc24a724e83409c0b70caa1a3180e997ae
11256 Author: Wolfgang Denk <wd@denx.de>
11257 Date: Sat Jul 18 16:13:18 2009 +0200
11258
11259 8xxx: fix warning: implicit declaration of function 'uec_standard_init'
11260
11261 Commit 8e55258f created function uec_standard_init() to initialize
11262 all UEC interfaces for 83xx and 85xx but failed to provide a
11263 prototype for it.
11264
11265 Signed-off-by: Wolfgang Denk <wd@denx.de>
11266
11267 commit 5b54df2674fdad5e7d316484c67efc68e79f3f0d
11268 Author: Wolfgang Denk <wd@denx.de>
11269 Date: Sat Jul 18 15:46:02 2009 +0200
11270
11271 MIP405T: fix compile problem
11272
11273 The "stdio/device: rework function naming convention" patch
11274 (commit 52cb4d4f) broke the MIP405T board; this patch fixes it.
11275
11276 Signed-off-by: Wolfgang Denk <wd@denx.de>
11277
11278 commit 170c19725ecd3a0e2e517dfd49979ca8822edec0
11279 Author: Wolfgang Denk <wd@denx.de>
11280 Date: Sat Jul 18 15:32:10 2009 +0200
11281
11282 NAND: Fix warning Please define CONFIG_SYS_64BIT_VSPRINTF...
11283
11284 Commit 8d2effea added a warning for configurations that use NAND
11285 without defining the (then necessary) CONFIG_SYS_64BIT_VSPRINTF but
11286 failed to fix the affected boards.
11287
11288 Signed-off-by: Wolfgang Denk <wd@denx.de>
11289
11290 commit 6e897a661fb9968ce354165a12cce82e4b889e04
11291 Author: Wolfgang Denk <wd@denx.de>
11292 Date: Sat Jul 18 15:05:44 2009 +0200
11293
11294 CPCI750: fix compile problem
11295
11296 Commit bc0d3296 removed ppc_error_no.h from Marvell boards
11297 but forgot to update board/esd/cpci750/mv_eth.h
11298
11299 Signed-off-by: Wolfgang Denk <wd@denx.de>
11300
11301 commit 6aee3048348f1b19ab89156da98bfa4f7babf24b
11302 Author: Alessandro Rubini <rubini-list@gnudd.com>
11303 Date: Fri Jul 17 14:42:11 2009 +0200
11304
11305 cmd_i2c: bugfix: add missing brace
11306
11307 The sub-command parser missed a brace, so "return 0;" is always
11308 taken and no error message is diplayed if you say "i2c scan"
11309 instead of "i2c probe", for example.
11310
11311 Proper brace is added. Also, a misleading and unneeded else
11312 is removed.
11313
11314 Signed-off-by: Alessandro Rubini <rubini@gnudd.com.it>
11315
11316 commit 52cb4d4fb3487313f5a72ea740f527a4aefaa365
11317 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11318 Date: Sat May 16 12:14:54 2009 +0200
11319
11320 stdio/device: rework function naming convention
11321
11322 So far the console API uses the following naming convention:
11323
11324 ======Extract======
11325 typedef struct device_t;
11326
11327 int device_register (device_t * dev);
11328 int devices_init (void);
11329 int device_deregister(char *devname);
11330 struct list_head* device_get_list(void);
11331 device_t* device_get_by_name(char* name);
11332 device_t* device_clone(device_t *dev);
11333 =======
11334
11335 which is too generic and confusing.
11336
11337 Instead of using device_XX and device_t we change this
11338 into stdio_XX and stdio_dev
11339
11340 This will also allow to add later a generic device mechanism in order
11341 to have support for multiple devices and driver instances.
11342
11343 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11344
11345 Edited commit message.
11346
11347 Signed-off-by: Wolfgang Denk <wd@denx.de>
11348
11349 commit f732a7598fa36d48241df20b1a1f4cdbf09f75ee
11350 Author: Peter Tyser <ptyser@xes-inc.com>
11351 Date: Wed Jul 15 00:01:08 2009 -0500
11352
11353 ppc: Fix compile error for boards with CONFIG_DDR_ECC
11354
11355 A bug was introduced by commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
11356 which affected non-MPC83xx/85xx/86xx ppc boards which had CONFIG_DDR_ECC
11357 defined and resulted in errors such as:
11358
11359 Configuring for canyonlands board...
11360 fsl_dma.c:50:2: error: #error "Freescale DMA engine not supported on your
11361 processor"
11362 make[1]: *** No rule to make target `.depend', needed by `libdma.a'. Stop.
11363
11364 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11365
11366 commit 18e067de9b6ed087fa60496e64887f0b7458dbaa
11367 Author: Prafulla Wadaskar <prafulla@marvell.com>
11368 Date: Thu Jul 16 20:57:59 2009 +0530
11369
11370 include/config_cmd_default.h cleanup
11371
11372 arranged configurations in alphabetical order
11373 CONFIG_CMD_FLASH moved under ifndef CONFIG_SYS_NO_FLASH
11374
11375 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
11376
11377 commit 569460ebf14b87bd8fdb2352bde95d35ee96e13b
11378 Author: Mike Frysinger <vapier@gentoo.org>
11379 Date: Sun Jun 14 21:35:22 2009 -0400
11380
11381 sata: namespace curr_device variable
11382
11383 The curr_device variable really should be namespaced with a "sata_" prefix
11384 since it is only used by the sata code. It also avoids random conflicts
11385 with other pieces of code (like cmd_mmc):
11386 common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
11387 multiple definition of `curr_device'
11388 common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
11389
11390 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11391
11392 commit 02e22c2de1ce2312f2636fa473a60c8d8f18d8aa
11393 Author: Mike Frysinger <vapier@gentoo.org>
11394 Date: Sun Jun 14 21:35:21 2009 -0400
11395
11396 cmd_mmc: make curr_device static
11397
11398 The curr_device variable isn't used outside of cmd_mmc, so mark it static
11399 to avoid conflicts with other pieces of code (like sata which also exports
11400 a curr_device). Otherwise we end up with stuff like:
11401 common/libcommon.a(cmd_sata.o):(.data.curr_device+0x0):
11402 multiple definition of `curr_device'
11403 common/libcommon.a(cmd_mmc.o):(.data.curr_device+0x0): first defined here
11404
11405 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11406
11407 commit 2d8d2adde3fce1152e4ad9f47238f07e70793c53
11408 Author: Mike Frysinger <vapier@gentoo.org>
11409 Date: Sun Jun 14 21:35:16 2009 -0400
11410
11411 envcrc: add missing dependencies on env storage
11412
11413 When the envcrc building was made conditional, it missed a bunch of env
11414 storage types, so add all currently supported types.
11415
11416 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11417
11418 commit 2419169f5749d7af501b3b77a5336d1d535320de
11419 Author: Scott Wood <scottwood@freescale.com>
11420 Date: Thu Jul 16 19:08:04 2009 -0500
11421
11422 Remove legacy NAND and disk on chip references from boards.
11423
11424 Signed-off-by: Scott Wood <scottwood@freescale.com>
11425
11426 commit 12e9043c7ed961b60df865f45d9a3c74d6a38199
11427 Author: Shinya Kuribayashi <skuribay@pobox.com>
11428 Date: Sat Jun 20 19:10:14 2009 +0900
11429
11430 config.mk: Remove $(PCI_CLOCK) reference
11431
11432 The following commit introduced $(PCI_CLOCK) reference so that
11433 we could tweak `PCI_66M' definition via an environment variable.
11434
11435 > commit f046ccd15c8bc9613bfd72916b761a127d36e5c6
11436 > Author: Eran Liberty <liberty@freescale.com>
11437 > Date: Thu Jul 28 10:08:46 2005 -0500
11438 >
11439 > * Patch by Eran Liberty
11440 > Add support for the Freescale MPC8349ADS board.
11441
11442 But I suggest a removal of it for the following reasons:
11443
11444 * In 2006, MPC8349ADS was merged into MPC8349EMDS port,
11445 and it seems that MPC8349EMDS port is PCI_66M free.
11446
11447 * OTOH, PCI_66M is used by MPC832XEMDS an MPC8360EMDS ports,
11448 but they don't need $(PCI_CLOCK) environment variable at all.
11449 PCI_66M is automatically configured via $(BOARD)_config names
11450 with the help of $(findstring _66_,$@).
11451
11452 * Unfortunately $(PCI_CLOCK) has been undocumented anywhere,
11453 so only a few people know the existence of it these days.
11454
11455 * Keep config.mk independent from $(BOARD) as much as possible.
11456
11457 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
11458 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11459
11460 commit 3db75d9c11d37cc1d28bebd91b19f4e548b68155
11461 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11462 Date: Sat May 23 21:42:36 2009 +0200
11463
11464 fix: missing autoconfig.mk from general Makefile
11465
11466 At the first run of make we generate the autoconf.mk and
11467 autoconf.mk.dep if not already the case and we currently include only
11468 to .dep
11469
11470 In order to use these autogenerated values we need to include it also
11471 even if it's included in config.mk but it's done before their
11472 generation
11473
11474 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11475 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11476
11477 commit 1ca298ced07327749b54321815f76fcddb2f9479
11478 Author: Matthias Weisser <matthias.weisser@graf-syteco.de>
11479 Date: Thu Jul 9 16:07:30 2009 +0200
11480
11481 Added support for splash screen positioning
11482
11483 This patch adds support splash image positioning by adding an
11484 additional variable "splashpos" to the environment. Please see
11485 README for details.
11486
11487 Signed-off-by: Matthias Weisser <matthias.weisser@graf-syteco.de>
11488 Acked-by: Matthias Fuchs <matthias.fuchs@esd.eu>
11489 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11490
11491 commit 9d173e0233493113c9b1aa81bd2208d0057ab9db
11492 Author: Anatolij Gustschin <agust@denx.de>
11493 Date: Tue Jul 7 13:11:36 2009 +0200
11494
11495 video: mb862xx: replace printf with puts
11496
11497 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11498
11499 commit cce99b2a7dd80683d61360aee56a6ece344950b2
11500 Author: Anatolij Gustschin <agust@denx.de>
11501 Date: Tue Jul 7 13:27:07 2009 +0200
11502
11503 video: mb862xx: use macros instead of magic numbers
11504
11505 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11506
11507 commit e86528671ece6d5c1162656a37fc68a8e0bf67f8
11508 Author: Anatolij Gustschin <agust@denx.de>
11509 Date: Tue Jul 7 13:24:08 2009 +0200
11510
11511 video: mb862xx: fix coding style and remove dead code
11512
11513 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11514
11515 commit 292ed489dba8cc97b458579003a8001cd4703cd8
11516 Author: Michal Simek <monstr@monstr.eu>
11517 Date: Tue Jun 30 12:03:50 2009 +0200
11518
11519 microblaze: Remove ignored return type for __arch__swab16 function
11520
11521 This change remove compilation warnings.
11522
11523 Signed-off-by: Michal Simek <monstr@monstr.eu>
11524
11525 commit e2776587c0eac131954ae100fda89cc3e7ed8b57
11526 Author: Michal Simek <monstr@monstr.eu>
11527 Date: Tue Jun 30 12:02:45 2009 +0200
11528
11529 microblaze: Removed unused variables
11530
11531 Signed-off-by: Michal Simek <monstr@monstr.eu>
11532
11533 commit be33b046b549ad88c204c209508cd7657232ffbd
11534 Author: Scott Wood <scottwood@freescale.com>
11535 Date: Wed Apr 1 15:02:13 2009 -0500
11536
11537 Remove legacy NAND and disk on chip code.
11538
11539 Legacy NAND had been scheduled for removal. Any boards that use this
11540 were already not building in the previous release due to an #error.
11541
11542 The disk on chip code in common/cmd_doc.c relies on legacy NAND,
11543 and it has also been removed. There is newer disk on chip code
11544 in drivers/mtd/nand; someone with access to hardware and sufficient
11545 time and motivation can try to get that working, but for now disk
11546 on chip is not supported.
11547
11548 Signed-off-by: Scott Wood <scottwood@freescale.com>
11549
11550 commit fbdaafaee71e2c7f2c31b3582ab6d8679efee8d3
11551 Author: Stefan Roese <sr@denx.de>
11552 Date: Thu Jun 4 16:40:36 2009 +0200
11553
11554 nand: Change NAND_MAX_OOBSIZE to 218 as needed for some 4k page devices
11555
11556 This is needed for the MPC512x NAND driver (fsl_nfc_nand.c) which already
11557 defines such a 4k plus 218 bytes ECC layout.
11558
11559 Signed-off-by: Stefan Roese <sr@denx.de>
11560 Cc: Scott Wood <scottwood@freescale.com>
11561 Signed-off-by: Scott Wood <scottwood@freescale.com>
11562
11563 commit f2f376ab956c17d4a0c42a993133ca25cdc87278
11564 Author: Stefan Roese <sr@denx.de>
11565 Date: Thu Jul 16 15:13:04 2009 +0200
11566
11567 nand: ndfc: Remove unnecessary #ifdef's
11568
11569 Now that the 4xx NAND driver ndfc is moved to the common NAND driver
11570 directory we don't need this #ifdef's anymore.
11571
11572 Signed-off-by: Stefan Roese <sr@denx.de>
11573 Cc: Scott Wood <scottwood@freescale.com>
11574 Signed-off-by: Scott Wood <scottwood@freescale.com>
11575
11576 commit 12582ac771b0bf3852817c3bfa4be326522a0665
11577 Author: Stefan Roese <sr@denx.de>
11578 Date: Thu Jul 16 15:12:48 2009 +0200
11579
11580 nand/ppc4xx: Move PPC4xx NAND driver to common NAND driver directory
11581
11582 Signed-off-by: Stefan Roese <sr@denx.de>
11583 Cc: Scott Wood <scottwood@freescale.com>
11584 Signed-off-by: Scott Wood <scottwood@freescale.com>
11585
11586 commit 3ebf70db5452d3d47c316ddef09f40e76553bcba
11587 Author: Valeriy Glushkov <gvv@lstec.com>
11588 Date: Tue Jul 14 13:51:10 2009 +0300
11589
11590 nand: fixed failed reads on corrected ECC errors in nand_util.c
11591
11592 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
11593 Signed-off-by: Paulraj, Sandeep <s-paulraj@ti.com>
11594 Signed-off-by: Scott Wood <scottwood@freescale.com>
11595
11596 commit ed727d394c5ab139033719772dc95dc25cfa14f7
11597 Author: David Brownell <david-b@pacbell.net>
11598 Date: Mon Jul 13 16:29:04 2009 -0700
11599
11600 Typo fix: use CONFIG_SOC_DM644X, not CONFIG_SOC_DM646.
11601
11602 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
11603 Signed-off-by: Scott Wood <scottwood@freescale.com>
11604
11605 commit 937076f84c5064f0a79105fce352ac7cf7b33643
11606 Author: Kyungmin Park <kmpark@infradead.org>
11607 Date: Sat Jul 11 16:49:55 2009 +0900
11608
11609 MTD: OneNAND: Increase the environment size to 4KiB
11610
11611 Also use mtd operation instead of onenand functions
11612
11613 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
11614 Signed-off-by: Scott Wood <scottwood@freescale.com>
11615
11616 commit bfadb17f69c256196620c32164775f063a59c34f
11617 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11618 Date: Wed Jun 10 00:25:38 2009 +0400
11619
11620 mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable
11621
11622 Since we have simple hwconfig interface now, we don't need
11623 pci_external_arbiter variable any longer.
11624
11625 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11626 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11627
11628 commit b8b71ffbc35fde6905e65ffdbf4e4b87efc26b7e
11629 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11630 Date: Wed Jun 10 00:25:36 2009 +0400
11631
11632 mpc83xx: MPC8315ERDB: Use hwconfig for board type selection
11633
11634 This patch simply converts the board to the hwconfig infrastructure.
11635
11636 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11637 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11638
11639 commit c78c678354c8321737aa07e86831ff14176f4ed5
11640 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11641 Date: Wed Jun 10 00:25:31 2009 +0400
11642
11643 mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree
11644
11645 fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and
11646 also will fixup clock-frequency property.
11647
11648 Plus, since DR USB and eSDHC are mutually exclusive, we should
11649 only configure the eSDHC if asked through hwconfig.
11650
11651 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11652 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11653
11654 commit c9646ed758804fa1fa6c1425369a4eee5d618b1d
11655 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11656 Date: Wed Jun 10 00:25:30 2009 +0400
11657
11658 mpc83xx: MPC837XERDB: Add support for FSL eSDHC
11659
11660 This patch adds support for eSDHC on MPC837XERDB boards. The WP
11661 switch doesn't seem to work on RDB boards though, the WP pin is
11662 always asserted (can see the pin state when it's in GPIO mode).
11663
11664 FSL DR USB and FSL eSDHC are mutually exclusive because of pins
11665 multiplexing, so user should specify 'esdhc' or 'dr_usb' options
11666 in the hwconfig environment variable to choose between the
11667 devices.
11668
11669 p.s.
11670 Now we're very close to a monitor len limit (196 bytes left using
11671 gcc-4.2.0), so also increase the monitor len by one sector (64 KB).
11672
11673 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11674 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11675
11676 commit b33433a63fe08c9e723ea15a7c7c7143bf527c6d
11677 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11678 Date: Wed Jun 10 00:25:29 2009 +0400
11679
11680 fsl_esdhc: Add device tree fixups
11681
11682 This patch implements fdt_fixup_esdhc() function that is used to fixup
11683 the device tree.
11684
11685 The function adds status = "disabled" propery if esdhc pins muxed away,
11686 otherwise it fixups clock-frequency for esdhc nodes.
11687
11688 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11689 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11690
11691 commit 93f9dcf9e8b8182e97aeb7965c687176cbd0b933
11692 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11693 Date: Wed Jun 10 00:25:27 2009 +0400
11694
11695 Add simple hwconfig infrastructure
11696
11697 This patch implements simple hwconfig infrastructure: an
11698 interface for software knobs to control a hardware.
11699
11700 This is very simple implementation, i.e. it is implemented
11701 via `hwconfig' environment variable. Later we could write
11702 some "hwconfig <enable|disable|list>" commands, ncurses
11703 interface for Award BIOS-like interface, and frame-buffer
11704 interface for AMI GUI[1] BIOS-like interface with mouse
11705 support[2].
11706
11707 Current implementation details/limitations:
11708
11709 1. Doesn't support options dependencies and mutual exclusion.
11710 We can implement this by integrating apt-get[3] into the
11711 u-boot. But I didn't bother yet.
11712
11713 2. Since we don't implement hwconfig command, i.e. we're working
11714 with the environement directly, there is no way to tell that
11715 toggling a particular option will need a reboot to take
11716 an effect. So, for now it's advised to always reboot the
11717 target after modifying hwconfig variable.
11718
11719 3. We support hwconfig options with arguments. For example,
11720
11721 set hwconfig dr_usb:mode=peripheral,phy_type=ulpi
11722
11723 That means:
11724 - dr_usb - enable Dual-Role USB controller;
11725 - dr_usb:mode=peripheral - USB in Function mode;
11726 - dr_usb:phy_type=ulpi - USB should work with ULPI PHYs;
11727
11728 The purpose of this simple implementation is to define some
11729 internal API and then we can continue improving user experience
11730 by adding more mature interface, like hwconfig command with
11731 bells and whistles. Or not adding, if we feel that current
11732 interface fits its needs.
11733
11734 [1] http://en.wikipedia.org/wiki/American_Megatrends
11735 [2] Regarding ncurses and GUI with mouse support -- I'm just
11736 kidding.
11737 [3] The comment regarding apt-get is also a joke, meaning that
11738 dependency tracking could be non-trivial. For example, for
11739 enabling HW feature X we may need to disable Y, and turn Z
11740 into reduced mode (like RMII-only interface for ethernet,
11741 no MII).
11742
11743 It's quite trivial to implement simple cases though.
11744
11745 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11746 Acked-by: Kim Phillips <kim.phillips@freescale.com>
11747
11748 commit 6c3fef28b9fff0d7f3fa4c51c3ee0ae8c2a3b043
11749 Author: Jerry Van Baren <gvb.uboot@gmail.com>
11750 Date: Wed Jul 15 20:42:59 2009 -0400
11751
11752 Improve U-Boot Porting Guide in the README
11753
11754 Update for...
11755 * BDI2000 -> BDI3000 (BDI2000 is obsolete).
11756 * Add a line to read the doc/README.* files
11757 * Fix coding standard violations
11758
11759 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
11760
11761 commit 9578718c1b085cac73017d834001bc5cb0b2f73f
11762 Author: Kim Phillips <kim.phillips@freescale.com>
11763 Date: Tue Jul 14 16:00:24 2009 -0500
11764
11765 mtd: cfi - if defined, use MAX_FLASH_BANKS_DETECT for static declarations
11766
11767 a.k.a cfi_mtd.c does as cfi_flash.c does. This also prevents
11768 the TQM834x build from doing a:
11769
11770 cfi_mtd.c:36: error: variably modified 'cfi_mtd_info' at file scope
11771 cfi_mtd.c:37: error: variably modified 'cfi_mtd_names' at file scope
11772
11773 using gcc 4.4.
11774
11775 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11776 Signed-off-by: Stefan Roese <sr@denx.de>
11777
11778 commit 4a9932a4364b548773bc131bf85e24a2ec15f2b0
11779 Author: Kim Phillips <kim.phillips@freescale.com>
11780 Date: Tue Jul 7 18:04:21 2009 -0500
11781
11782 mpc83xx: increase MONITOR_LEN to offset growing pains
11783
11784 Saving the environment leads to overwriting u-boot itself,
11785 bricking boards. Increase u-boot's image size so the environment
11786 base address doesn't end up overlapping u-boot text.
11787
11788 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11789
11790 commit c31e13260bcd048a94412a47b004386ea6112acf
11791 Author: Valeriy Glushkov <gvv@lstec.com>
11792 Date: Tue Jun 30 15:48:41 2009 +0300
11793
11794 usb: mpx8349itx: added support of loading images from USB storage (MPH/DR)
11795
11796 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
11797 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11798
11799 commit d89e1c36891de793a20a929282acc0fc7b98feac
11800 Author: Valeriy Glushkov <gvv@lstec.com>
11801 Date: Tue Jun 30 15:48:40 2009 +0300
11802
11803 usb: mpc834x: added support of the MPH USB controller in addition to the DR one
11804
11805 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
11806 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11807
11808 commit d9ac3d5a17ecef0beb70073018925e011b11684e
11809 Author: Kim Phillips <kim.phillips@freescale.com>
11810 Date: Mon Jun 15 11:51:47 2009 -0500
11811
11812 mpc83xx: set 64BIT_VSPRINTF for boards using nand_util
11813
11814 When enabling NAND support for a board, one must also define
11815 CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
11816 for correct output.
11817
11818 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11819 Cc: Dave Liu <daveliu@freescale.com>
11820 Cc: Ron Madrid <ron_madrid@sbcglobal.net>
11821 Cc: Anton Vorontsov <avorontsov@ru.mvista.com>
11822
11823 commit 052c08916532d1d9c2f69eb9229709c7b2fc1f02
11824 Author: TsiChung Liew <tsicliew@gmail.com>
11825 Date: Wed Jul 8 07:41:24 2009 +0000
11826
11827 ColdFire: Update bootargs
11828
11829 Add a bootargs for M53017EVB and update bootargs
11830 for M54451EVB
11831
11832 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11833
11834 commit 6e8d58d36691520f8da74cd948661d28d5a5dc66
11835 Author: TsiChung Liew <tsicliew@gmail.com>
11836 Date: Tue Jun 30 14:30:19 2009 +0000
11837
11838 Command for accessing serial flash update
11839
11840 Change strtoul number base of argv 3 from 0 to 16
11841
11842 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11843
11844 commit ee0a8462466dd284968536eb57c6eef4be0d6aad
11845 Author: TsiChung Liew <tsicliew@gmail.com>
11846 Date: Tue Jun 30 14:18:29 2009 +0000
11847
11848 ColdFire: Add DSPI support for MCF5227x and MCF5445x
11849
11850 Remove individual CPU specific DSPI driver.
11851 Add required feature for the common DSPI driver in cpu_init and
11852 in platform configuration file.
11853
11854 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11855
11856 commit dec61c7851baa72151ef1d3657e7bb3b68907d48
11857 Author: TsiChung Liew <tsicliew@gmail.com>
11858 Date: Tue Jun 30 14:09:47 2009 +0000
11859
11860 Coldfire: Consolidate DSPI driver
11861
11862 Unify both MCF5227x and MCF5445x DSPI driver in CPU to
11863 driver/spi folder for common use.
11864
11865 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11866
11867 commit 11d88b26a68bd4bf98b1c962fde6257a50978231
11868 Author: TsiChung Liew <tsicliew@gmail.com>
11869 Date: Fri Jun 12 13:03:34 2009 +0000
11870
11871 ColdFire: Remove compiler warning messages
11872
11873 Remove unused variables and printf type mismatch in
11874 lib_m68k/board.c
11875
11876 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11877
11878 commit 4567c7bff2503fb1a7c738ff9b9f0bd00d274d9a
11879 Author: TsiChung Liew <tsicliew@gmail.com>
11880 Date: Fri Jun 12 11:31:31 2009 +0000
11881
11882 ColdFire: Fix M53017EVB flash size
11883
11884 Increase the flash size from 8MB to 16MB
11885
11886 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11887
11888 commit bf9a521529e484b15e8fdb583a607cf7945d2f6b
11889 Author: TsiChung Liew <tsicliew@gmail.com>
11890 Date: Fri Jun 12 11:29:00 2009 +0000
11891
11892 ColdFire: Add M5208EVB and MCF520x CPU support
11893
11894 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11895
11896 commit 709b384b6493d9726dce20663ebe31bf7cab2925
11897 Author: TsiChung Liew <tsicliew@gmail.com>
11898 Date: Thu Jun 11 15:39:57 2009 +0000
11899
11900 ColdFire: Update for M54451EVB
11901
11902 Update serial boot DRAM's Internal RAM, vector table and DRAM in
11903 start.S, serial flash's read status command over SPI and NOR
11904 flash.
11905
11906 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11907
11908 commit bbf6bbffcaf694c03504c661e58fbd1aefe5bf64
11909 Author: TsiChung Liew <tsicliew@gmail.com>
11910 Date: Thu Jun 11 12:50:05 2009 +0000
11911
11912 ColdFire: Update configuration file to use flash buffer write
11913
11914 Update M52277EVB, M53017EVB and M54455EVB platform configuration
11915 file to use flash buffer write
11916
11917 Signed-off-by: TsiChung Liew <tsicliew@gmail.com>
11918
11919 commit 7d4450a9773673052fcd7fdf0a4a88c089126ac1
11920 Author: Wolfgang Denk <wd@denx.de>
11921 Date: Sun Jun 14 20:58:53 2009 +0200
11922
11923 mpc5121ads: add JFFS2 and MTDPARTS support; adjust flash map
11924
11925 Signed-off-by: Wolfgang Denk <wd@denx.de>
11926
11927 commit 1f1f82f3de1660f398bf42bfd709b9859582ce5e
11928 Author: Wolfgang Denk <wd@denx.de>
11929 Date: Sun Jun 14 20:58:52 2009 +0200
11930
11931 aria: add JFFS2 and MTDPARTS support; adjust flash map
11932
11933 Signed-off-by: Wolfgang Denk <wd@denx.de>
11934
11935 commit a6d6d46a4fef876455e11b45ed699c0fb3bd1ca1
11936 Author: Wolfgang Denk <wd@denx.de>
11937 Date: Sun Jun 14 20:58:51 2009 +0200
11938
11939 aria: enable NAND flash support
11940
11941 Signed-off-by: Wolfgang Denk <wd@denx.de>
11942
11943 commit 13946925e850db5351982acb691d51716fc754e2
11944 Author: Wolfgang Denk <wd@denx.de>
11945 Date: Sun Jun 14 20:58:50 2009 +0200
11946
11947 MPC512x: fix typo in comment listing the NAND driver name
11948
11949 Signed-off-by: Wolfgang Denk <wd@denx.de>
11950 Cc: Stefan Roese <sr@denx.de>
11951 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11952
11953 commit 2ca6f74d09653f8041b52cafd0d650fdc2a56c51
11954 Author: Wolfgang Denk <wd@denx.de>
11955 Date: Sun Jun 14 20:58:49 2009 +0200
11956
11957 mecp5123: cleanup - remove dead code
11958
11959 Remove dead code that was obviously a left-over from copy & paste.
11960
11961 Signed-off-by: Wolfgang Denk <wd@denx.de>
11962 Cc: Stefan Roese <sr@denx.de>
11963 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11964
11965 commit 25671c8672f2d7b39555416a6b7a6b7b39b810bf
11966 Author: Wolfgang Denk <wd@denx.de>
11967 Date: Sun Jun 14 20:58:48 2009 +0200
11968
11969 aria: adjust memory controller initialization
11970
11971 Needed for Rev. 2 silicon at 400 MHz
11972
11973 Signed-off-by: Wolfgang Denk <wd@denx.de>
11974
11975 commit 7629f1c06b6dea36bbc7bf70820b824e9b6d2227
11976 Author: Wolfgang Denk <wd@denx.de>
11977 Date: Sun Jun 14 20:58:47 2009 +0200
11978
11979 MPC512x: factor out common code
11980
11981 Now that we have 3 boards for the MPC512x it turns out that they all
11982 use the very same fixed_sdram() code.
11983
11984 This patch factors out this common code into cpu/mpc512x/fixed_sdram.c
11985 and adds a new header file, include/asm-ppc/mpc512x.h, with some
11986 macros, inline functions and prototype definitions specific to MPC512x
11987 systems.
11988
11989 Signed-off-by: Wolfgang Denk <wd@denx.de>
11990 Cc: Stefan Roese <sr@denx.de>
11991 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
11992
11993 commit 0549353a6ba5aa03420c0962b9072e9cf1fa49d9
11994 Author: Wolfgang Denk <wd@denx.de>
11995 Date: Sun Jun 14 20:58:46 2009 +0200
11996
11997 mecp5123: fix build error
11998
11999 The mecp5123 board did not compile because the MSCAN Clock Control
12000 Registers were missing; these got added, but as an array instead
12001 of 4 individual registers. Adapt the code so it builds.
12002
12003 Signed-off-by: Wolfgang Denk <wd@denx.de>
12004 Cc: Stefan Roese <sr@denx.de>
12005 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
12006
12007 commit a9905db5d29a56aedd7db5bcb56b0385873aa6a3
12008 Author: Wolfgang Denk <wd@denx.de>
12009 Date: Sun Jun 14 20:58:45 2009 +0200
12010
12011 MPC512x: Add MSCAN1...4 Clock Control Registers
12012
12013 Signed-off-by: Wolfgang Denk <wd@denx.de>
12014 Cc: Stefan Roese <sr@denx.de>
12015 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
12016
12017 commit f5489c4200b37c9a1d6dbde116f5adc0539610de
12018 Author: Wolfgang Denk <wd@denx.de>
12019 Date: Sun Jun 14 20:58:44 2009 +0200
12020
12021 MPC512x: enabling NAND support requires CONFIG_SYS_64BIT_VSPRINTF
12022
12023 When enabling NAND support for a board, one must also define
12024 CONFIG_SYS_64BIT_VSPRINTF because this is needed in nand_util.c
12025 for correct output.
12026
12027 Signed-off-by: Wolfgang Denk <wd@denx.de>
12028 Cc: Stefan Roese <sr@denx.de>
12029 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
12030
12031 commit b4db4a7638ef90cf0aacf7b954d9bf3043dda780
12032 Author: Po-Yu Chuang <ratbert@faraday-tech.com>
12033 Date: Fri Jul 10 18:03:57 2009 +0800
12034
12035 issue write command to base for JEDEC flash
12036
12037 For JEDEC flash, we should issue word programming command relative to
12038 base address rather than sector base address. Original source makes
12039 SST Flash fails to program sectors which are not on the 0x10000 boundaries.
12040
12041 e.g.
12042 SST39LF040 uses addr1=0x5555 and addr2=0x2AAA, however, each sector
12043 is 0x1000 bytes.
12044
12045 Thus, if we issue command to "sector base (0x41000) + offset(0x5555)",
12046 it sends to 0x46555 and the chip fails to recognize that address.
12047
12048 This patch is tested with SST39LF040.
12049
12050 Signed-off-by: Po-Yu Chuang <ratbert@faraday-tech.com>
12051 Signed-off-by: Stefan Roese <sr@denx.de>
12052
12053 commit 986922714ffd21ad39f48522d285fffc7aed56b1
12054 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12055 Date: Sat May 2 11:53:50 2009 +0200
12056
12057 versatile: update config and merge to cfi flash driver
12058
12059 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12060 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
12061 Cc: Catalin Marinas <catalin.marinas@arm.com>
12062
12063 commit d6e8ed832b25d5db4fdd3fb91e73028e494dcd6e
12064 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12065 Date: Sat May 2 11:53:49 2009 +0200
12066
12067 versatile: specify the board type on the prompt
12068
12069 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12070 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
12071 Cc: Catalin Marinas <catalin.marinas@arm.com>
12072
12073 commit 5ccc2d99d61c81805348b0cd9f79731b271f7daf
12074 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
12075 Date: Thu Jun 25 17:04:15 2009 +0200
12076
12077 at91: Introduction of at91sam9g10 SOC.
12078
12079 AT91sam9g10 is an ARM 926ej-s SOC. It is an evolution of the at91sam9261 with a
12080 faster clock speed: 266/133MHz.
12081
12082 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
12083
12084 commit 22ee647380c42f44528f99b7c1b423725e542102
12085 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
12086 Date: Thu Jul 9 10:16:29 2009 +0200
12087
12088 at91: Introduction of at91sam9g45 SOC.
12089
12090 AT91sam9g45 series is an ARM 926ej-s SOC family clocked at 400/133MHz.
12091 It embeds USB high speed host and device, LCD, DDR2 RAM, and a full set of
12092 peripherals.
12093
12094 The first board that embeds at91sam9g45 chip is the AT91SAM9G45-EKES.
12095 On the board you can find 2 USART, USB high speed,
12096 a 480*272 LG lcd, ethernet, gpio/joystick/buttons.
12097
12098 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
12099
12100 commit c33c5990cec7ced9ef1ef148debbca34adafa12b
12101 Author: Daniel Mack <daniel@caiaq.de>
12102 Date: Tue Jun 23 17:30:05 2009 +0200
12103
12104 pxa: fix CKEN_B register bits
12105
12106 The current defition for CKEN_B register bits is nonsense. Adding 32 to
12107 the shifted value is equal to '| (1 << 5)', and this bit is marked
12108 'reserved' in the PXA docs.
12109
12110 Signed-off-by: Daniel Mack <daniel@caiaq.de>
12111
12112 commit bd876be46f28b5fc2896537f6d01353f332789f7
12113 Author: Daniel Mack <daniel@caiaq.de>
12114 Date: Tue Jun 23 17:30:04 2009 +0200
12115
12116 pxa: add clock for system bus 2 arbiter
12117
12118 This clock is needed for systems using the USB2 device unit or the 2d
12119 graphics accelerator.
12120
12121 Signed-off-by: Daniel Mack <daniel@caiaq.de>
12122
12123 commit b016000a95514c08cab50e1cba00b019c0801bc4
12124 Author: Grazvydas Ignotas <notasas@gmail.com>
12125 Date: Wed Jul 8 00:30:01 2009 +0300
12126
12127 OMAP3 pandora: Fix CKE1 MUX setting to allow self-refresh
12128
12129 Pandora is using both SDRC CSes. The MUX setting is needed
12130 for the second CS clock signal to allow the 2 RAM parts to
12131 be put in self-refresh correctly.
12132
12133 Based on similar patch for beagle and overo by
12134 Jean Pihet and Steve Sakoman.
12135
12136 commit 8672c288703f3c51c829851c8fe6608c7869faaa
12137 Author: Grazvydas Ignotas <notasas@gmail.com>
12138 Date: Wed Jul 8 00:30:00 2009 +0300
12139
12140 OMAP3 pandora: setup pulls for various GPIOs
12141
12142 Set pullups or pulldowns for GPIOs which need them.
12143 Disable them for others, which have external pulls.
12144 Also make disabled pull setting consistent (some pins had
12145 type set to "up" even if pull type selection was disabled).
12146
12147 commit 5ff78122f229946862a3f67a2f50a329e8e1bcf5
12148 Author: Grazvydas Ignotas <notasas@gmail.com>
12149 Date: Wed Jul 8 00:29:59 2009 +0300
12150
12151 OMAP3 pandora: setup pin mux for pins used on rev3 boards
12152
12153 Setup pin mux for GPIO pins connected on rev3 or later
12154 boards. Also change NUB2 IRQ pin. This should not affect
12155 older boards because they don't have any nubs (analog
12156 controllers) attached to them.
12157
12158 commit 67c97c346b27c586a7263564f7afff6d1f8d8d0a
12159 Author: Grazvydas Ignotas <notasas@gmail.com>
12160 Date: Wed Jul 8 00:29:58 2009 +0300
12161
12162 OMAP3 pandora: pin mux cleanup
12163
12164 Remove configuration of not unused pins, effectively
12165 leaving them in safe mode.
12166
12167 commit b996165f5a1623a055c03b22d64d6d5da81835d0
12168 Author: Prafulla Wadaskar <prafulla@marvell.com>
12169 Date: Mon Jul 6 15:50:47 2009 +0530
12170
12171 arm: Kirkwood: bugfix: UART1 bar correction
12172
12173 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12174
12175 commit 50243e3e7a96a96c5418ce6c90b7252d26fdd5b0
12176 Author: Kumar Gala <galak@kernel.crashing.org>
12177 Date: Tue Jul 7 15:48:58 2009 -0500
12178
12179 usb: Fix compiler warning with gcc4.4
12180
12181 ehci-hcd.c: In function 'ehci_submit_root':
12182 ehci-hcd.c:719: warning: value computed is not used
12183 ehci-hcd.c:748: warning: value computed is not used
12184
12185 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12186 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12187
12188 commit 04366d070a1a3f7affddf15aaaea87bcf44cdbb0
12189 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12190 Date: Wed Jul 8 11:42:19 2009 +0900
12191
12192 sh: Update pci config for Renesas r7780mp board
12193
12194 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12195
12196 commit 74d9c16a681aa24bb4125191fe39dc7c75cde56a
12197 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12198 Date: Thu Jun 25 16:31:26 2009 +0900
12199
12200 sh: Add support ESPT-GIGA borad
12201
12202 ESPT-Giga is SH7763-based reference board.
12203 Board support is relatively sparse, presently supporting serial,
12204 gigabit ethernet, USB host, and MTD.
12205
12206 More information (in Japanese) available at:
12207 http://www.cente.jp/product/cente_hard/ESPT-Giga.html
12208
12209 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12210 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12211
12212 commit dae4e0148a1146a5610025ae4b445e841410b659
12213 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12214 Date: Fri Jul 3 16:06:37 2009 +0200
12215
12216 Add ESD PCI vendor ID
12217
12218 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12219
12220 commit 876b3cef537aab2cba8c19505db2876f6057f818
12221 Author: Peter Tyser <ptyser@xes-inc.com>
12222 Date: Mon Jun 22 18:01:41 2009 -0500
12223
12224 api_examples/Makefile: General cleanup
12225
12226 * Remove symlinking of files located outside api_examples/
12227
12228 * Auto generate dependencies for files located outside api_examples/
12229
12230 * Update names of variables to be similar to those in tools/Makefile
12231
12232 * Fix out of tree build error
12233 Dependencies are calculated for all files in the SRCS variable.
12234 Previously, the SRCS variable contained files which were symlinked
12235 into the api_examples/ directory. These symlinked files did not exist
12236 when dependencies were calculated when building out of tree. This
12237 resulted in errors such as:
12238 make[1]: *** No rule to make target `/work/wd/tmp-ppc/api_examples/.depend', needed by `_depend'. Stop.
12239 make[1]: Leaving directory `/home/wd/git/u-boot/work/api_examples'
12240 make: *** [depend] Error 2
12241
12242 Since symlinked source files are no longer used, this bug no longer
12243 exists.
12244
12245 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12246 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12247
12248 commit 522f6f02adb93194e337016fe2e4e53c58d5d5ea
12249 Author: Peter Tyser <ptyser@xes-inc.com>
12250 Date: Mon Jun 22 18:01:40 2009 -0500
12251
12252 api_examples/Makefile: Get rid of unnecessary intermediate LIB target
12253
12254 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12255 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12256
12257 commit 117d0ab5e6f3b3dd48fc346df4919555a78afd39
12258 Author: Peter Tyser <ptyser@xes-inc.com>
12259 Date: Mon Jun 22 18:01:39 2009 -0500
12260
12261 api_examples/Makefile: Combine ELF and BIN targets
12262
12263 Combining the two rules cleans up the Makefile a bit
12264
12265 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12266 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12267
12268 commit 644cb38108b8dc22e0ef3cf5f404fe310d1995f8
12269 Author: Peter Tyser <ptyser@xes-inc.com>
12270 Date: Mon Jun 22 18:01:38 2009 -0500
12271
12272 api_examples/Makefile: Split up variable declarations
12273
12274 This cleans up the Makefile a bit and simplifies future changes
12275
12276 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12277 Acked-by: Rafal Jaworowski <raj@semihalf.com>
12278
12279 commit 890d242facc4079ed21e979ced2e8c6d6974f6d3
12280 Author: Timur Tabi <timur@freescale.com>
12281 Date: Fri Jun 19 14:10:52 2009 -0500
12282
12283 remove _IO_BASE and KSEG1ADDR from board configuration files
12284
12285 The KSEG1ADDR macro used to be necessary for the RTL8139 Ethernet
12286 driver, but the code that used that macro was removed over a year
12287 ago, so board configuration files no longer need to define it.
12288
12289 The _IO_BASE macro is also automatically defined to 0 if it isn't
12290 already set, so there's no need to define that macro either in the
12291 board configuration files.
12292
12293 Signed-off-by: Timur Tabi <timur@freescale.com>
12294 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12295 Acked-by: Andy Fleming <afleming@freescale.com>
12296 Acked-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12297 Acked-by: Kim Phillips <kim.phillips@freescale.com>
12298
12299 commit c9969947a4687de90e2bb58e76842b491aa0e0b9
12300 Author: Jon Smirl <jonsmirl@gmail.com>
12301 Date: Sun Jun 14 18:21:28 2009 -0400
12302
12303 board support patch for phyCORE-MPC5200B-tiny
12304
12305 Add support for the Phytec phyCORE-MPC5200B-tiny.
12306 Code originally from Pengutronix.de.
12307 Created CONFIG_SYS_ATA_CS_ON_TIMER01 define for when IDE CS is on
12308 Timer 0/1
12309
12310 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
12311 Acked-by: Grant Likely <grant.likely@secretlab.ca>
12312
12313 commit 7bd49ad12cc36a4de6995ddabbc65ffa1aa1933d
12314 Author: Mike Frysinger <vapier@gentoo.org>
12315 Date: Mon Jun 15 13:37:20 2009 -0400
12316
12317 kallsyms: fix escaping of NUL char in strings
12318
12319 The current kallsyms code is using \\0 to escape the backslash in the awk
12320 code, but the shell too needs escaping. This way we make sure gcc is
12321 passed the \0. Then gcc itself will consume this as an octal, so we have
12322 to use 000 so gcc will create the final NUL.
12323
12324 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12325
12326 commit ed540f07b8ad86909704e9806c1762462cb4995a
12327 Author: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
12328 Date: Fri Jun 26 10:18:49 2009 -0400
12329
12330 Blackfin: cm-bf561: add example settings for EXT-BF5xx-USB-ETH2 add-on
12331
12332 The cm-bf561 module can easily hook up to the EXT-BF5xx-USB-ETH2 extender
12333 board, so add a simple example of how to do that in the board config.
12334
12335 Signed-off-by: Harald Krapfenbauer <Harald.Krapfenbauer@bluetechnix.at>
12336 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12337
12338 commit f8bf54b4081c3c3d518830df0017a23ec672a841
12339 Author: Mike Frysinger <vapier@gentoo.org>
12340 Date: Thu Jun 25 19:40:28 2009 -0400
12341
12342 Blackfin: blackstamp: update spi flash settings
12343
12344 The latest blackstamp boards can only run the SPI flash at 15MHz before
12345 they start to crap out, so lower the max speeds accordingly. The new SPI
12346 flash also has different sector requirements, so update the environment
12347 sizes as well.
12348
12349 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12350
12351 commit 286070ddc8339666c09bd7912e960b850a8a0318
12352 Author: Mike Frysinger <vapier@gentoo.org>
12353 Date: Mon Oct 6 03:31:52 2008 -0400
12354
12355 Blackfin: add cache_dump commands
12356
12357 A few debug-type commands used to dump the raw icache/dcache data. Useful
12358 when trying to track down cache-related bugs.
12359
12360 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12361
12362 commit 632e9b671efb0a6c900499f7a49fe5b63292b5fc
12363 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12364 Date: Wed Jul 8 15:31:57 2009 +0200
12365
12366 ppc4xx: Set default PCI device ID for 405EP boards
12367
12368 Current code only sets the PCI vendor id to 0x1014 and
12369 leaved device id to 0x0000.
12370
12371 Ths patch ....
12372 a) uses the correct PCI_VENDOR_ID_IBM macro for this
12373 b) sets the default device ID as stated in the UM to 0x0156
12374 by using PCI_DEVICE_ID_IBM_405GP for this.
12375
12376 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12377 Signed-off-by: Stefan Roese <sr@denx.de>
12378
12379 commit 123f102ec093fba6967066acdf9beb637df2e2d1
12380 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12381 Date: Wed Jul 8 13:43:55 2009 +0200
12382
12383 ppc4xx: Move 405EP pci code from cpu_init_f() to __pci_pre_init()
12384
12385 This patch moves some basic PCI initialisation from the 4xx cpu_init_f()
12386 to cpu/ppc4xx/4xx_pci.c.
12387
12388 The original cpu_init_f() function enabled the 405EP's internal arbiter
12389 in all situations. Also the HCE bit in cpc0_pci is always set.
12390 The first is not really wanted for PCI adapter designs and the latter
12391 is a general bug for PCI adapter U-Boots. Because it enables
12392 PCI configuration by the system CPU even when the PCI configuration has
12393 not been setup by the 405EP. The one and only correct place is
12394 in pci_405gp_init() (see "Set HCE bit" comment).
12395
12396 So for compatibility reasons the arbiter is still enabled in any case,
12397 but from weak pci_pre_init() so that it can be replaced by board specific
12398 code.
12399
12400 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12401 Signed-off-by: Stefan Roese <sr@denx.de>
12402
12403 commit c71103f9dc66dfcce8ad6df942364043bf27ade8
12404 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12405 Date: Wed Jul 8 13:43:23 2009 +0200
12406
12407 ppc4xx: Make is_pci_host() available for all 440 and 405 CPUs
12408
12409 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12410 Signed-off-by: Stefan Roese <sr@denx.de>
12411
12412 commit 1d8937a469bfeb55ca1f6d89a4e7cd2dfee3cf17
12413 Author: Prafulla Wadaskar <prafulla@marvell.com>
12414 Date: Mon Jun 29 20:56:43 2009 +0530
12415
12416 usb: add Marvell Kirkwood ehci host controller driver
12417
12418 This driver is tested on Sheevaplug platform
12419
12420 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12421 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12422
12423 commit db7b43e4681f6f93c336132708157a8a0cca1f8b
12424 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
12425 Date: Wed Jun 24 10:08:40 2009 +0530
12426
12427 mpc83xx: USB: fix: access of ehci struct elements
12428
12429 It fixes the access to the 'ehci' struct elements for mpc83xx which
12430 should have been taken care of in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
12431 Sorry about that.
12432
12433 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
12434 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12435
12436 commit 08066152735417fc55a5c9de2cec0714c529e4f3
12437 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
12438 Date: Fri Jun 19 17:56:00 2009 +0530
12439
12440 mpc8xxx: USB: fix: access of ehci struct elements
12441
12442 This patch fixes the access to the 'ehci' struct elements which should
12443 have been taken care off in 4ef01010aa4799c759d75e67007fdd3a38c88c8a
12444 Sorry about that.
12445
12446 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
12447 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12448
12449 commit c3a012ce65818beb274195cd47f31ed80d0fbaa5
12450 Author: Bryan Wu <bryan.wu@analog.com>
12451 Date: Tue Jun 16 05:26:27 2009 -0400
12452
12453 usb: musb: add timeout via CONFIG_MUSB_TIMEOUT
12454
12455 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
12456 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12457 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12458
12459 commit 7984967a9405672db1581402d2c2cfae268d1a67
12460 Author: Mike Frysinger <vapier@gentoo.org>
12461 Date: Tue Jun 16 05:26:25 2009 -0400
12462
12463 usb: musb: drop old musb read/write prototypes
12464
12465 These functions are no longer defined, so remove their prototypes.
12466
12467 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12468 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12469
12470 commit 4e04f16020115ab5ccf53158e100de58bcaf29bd
12471 Author: Kim Phillips <kim.phillips@freescale.com>
12472 Date: Mon Jun 15 11:50:07 2009 -0500
12473
12474 usb: fix CONFIG_SYS_MPC83xx_USB_ADDR not defined error
12475
12476 fix a stray CONFIG_MPC83XX that escaped commit
12477 0f898604945af4543c1525fc33b6bae621a3b805.
12478
12479 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12480 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12481
12482 commit bc0d3296f1780b50e6b9630aee5eb368f2afb6cb
12483 Author: Michal Simek <monstr@monstr.eu>
12484 Date: Tue Jun 30 23:47:30 2009 +1000
12485
12486 asm-generic: Consolidate errno.h to asm-generic/errno.h
12487
12488 This patch use blackfin errno.h implementation which
12489 correspond Linux kernel one.
12490
12491 MIPS implemetation is different that's why I keep it.
12492
12493 I removed ppc_error_no.h from Marvell boards which
12494 was the same too.
12495
12496 I have got ack from ppc40x, blackfin, arm, coldfire and avr custodians.
12497
12498 Acked-by: Stefan Roese <sr@denx.de>
12499 Signed-off-by: Michal Simek <monstr@monstr.eu>
12500
12501 commit 2896b5851f0430bf16529376a4193630e966c788
12502 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
12503 Date: Tue Jul 7 16:01:02 2009 +0200
12504
12505 Command improvements for ubifs
12506
12507 Check that an argument is passed to ubifsmount and that addresses and
12508 sizes are actually numbers for ubifsload. Also improve the instructions
12509 a bit.
12510
12511 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
12512 Signed-off-by: Stefan Roese <sr@denx.de>
12513
12514 commit 25c8f4005979ab2d190713ba341d96a5fa905cdb
12515 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
12516 Date: Tue Jul 7 16:59:46 2009 +0200
12517
12518 Handle VID header offset in ubi part command
12519
12520 The VID header offset is sometimes needed to initialize the UBI
12521 partition. This patch adds it (optionally) to the command line
12522 for the ubi part command.
12523
12524 (Lines have been properly wrapped since last version)
12525
12526 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
12527 Acked-by: Stefan Roese <sr@denx.de>
12528 Signed-off-by: Stefan Roese <sr@denx.de>
12529
12530 commit 3672cd5c3b53d219d33345eebad4e25ad5bf6d52
12531 Author: Wolfgang Denk <wd@denx.de>
12532 Date: Thu Jul 9 09:56:16 2009 +0200
12533
12534 MAINTAINERS: fix sorting, remove duplicates.
12535
12536 Signed-off-by: Wolfgang Denk <wd@denx.de>
12537
12538 commit efbf14e9a2394a154b12643d4a011994b5096b5a
12539 Author: Heiko Schocher <heiko.schocher@invitel.hu>
12540 Date: Wed Dec 10 08:27:01 2008 +0100
12541
12542 all platforms: make show_boot_progress() work again
12543
12544 Signed-off-by: Heiko Schocher <hs@denx.de>
12545
12546 commit 205a0988d8fd778c60746c34c2f17dbd2b7cd0d2
12547 Author: Prafulla Wadaskar <prafulla@marvell.com>
12548 Date: Mon Jun 29 15:25:18 2009 +0530
12549
12550 nand: Add Marvell Kirkwood NAND driver
12551
12552 This patch adds a NAND driver for the Marvell Kirkwood SoC's
12553
12554 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
12555 Acked-by: Scott Wood <scottwood@freescale.com>
12556
12557 commit 0580e48f53f972783e56fcedadb9ce6e5b0b6f32
12558 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12559 Date: Mon Jul 6 16:27:33 2009 +0200
12560
12561 ppc4xx: Make pll_write global
12562
12563 This patch makes pll_write on PPC405EP boards
12564 global and callable from C code.
12565
12566 pll_write can be used to dynamically modify the PLB:PCI divider
12567 as it is required for 33/66 MHz pci adapters based on the 405EP.
12568
12569 board_early_init_f() is a good place to do that (check M66EN signal
12570 and call pll_write() when it is required).
12571
12572 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12573 Signed-off-by: Stefan Roese <sr@denx.de>
12574
12575 commit 20b3c4b528606d51799aed5e4c71783720cd2b72
12576 Author: Stefan Roese <sr@denx.de>
12577 Date: Mon Jul 6 11:44:33 2009 +0200
12578
12579 ppc4xx: Remove compilation warning "pci_async_enabled defined but not used"
12580
12581 Signed-off-by: Stefan Roese <sr@denx.de>
12582
12583 commit d0a1364f91c80d29daff6b27a7904a50cdc00b35
12584 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
12585 Date: Fri Jul 3 16:06:06 2009 +0200
12586
12587 ppc4xx: Implement is_pci_host() for 405 CPUs
12588
12589 This patch implements the is_pci_host() function in a similiar way
12590 as it is used on 440 targets.
12591
12592 The former path with CONFIG_PCI_HOST == PCI_HOST_AUTO does not
12593 build on 405EP targets because checking the PCI arbiter is different.
12594 So putting the fixed code into a separate function makes the code
12595 more readable.
12596
12597 Also using is_pci_host() on 405 brings 405 and 440 PCI code
12598 a little bit closer.
12599
12600 In preparation for an upcoming 405EP based PMC module I made this
12601 function weak so that it can be overwritten from board specific code.
12602
12603 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
12604 Signed-off-by: Stefan Roese <sr@denx.de>
12605
12606 commit 04ddae915f295dee301f15c32100533a48e3b433
12607 Author: Alessio Centazzo <centazzo@gmail.com>
12608 Date: Wed Jul 1 22:20:51 2009 -0700
12609
12610 ppc4xx: Fixed PPC4xx debug compilation error in uic.c
12611
12612 This patch fixes a debug compilation error for PPC4xx platforms, all
12613 other architectures are not affected by this change. The 'handler'
12614 pointer was undefined. The fix is exercised and has effect only if
12615 DEBUG is defined.
12616
12617 Signed-off-by: Alessio Centazzo acpatin@yahoo.com
12618 Signed-off-by: Stefan Roese <sr@denx.de>
12619
12620 commit 48e2b535a0dd3a7b77b674130934a24f9de6f48d
12621 Author: Felix Radensky <felix@embedded-sol.com>
12622 Date: Wed Jul 1 11:37:46 2009 +0300
12623
12624 4xx: Fix compilation warnings and MQ registers dump in SPD DDR2 code
12625
12626 This patch fixes printf format string compilation warnings in several
12627 debug statements. It also fixes the dump of DDR controller MQ registers
12628 found on some 44x and 46x platforms. The current register dump code
12629 uses incorrect DCRs to access these registers.
12630
12631 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
12632 Signed-off-by: Stefan Roese <sr@denx.de>
12633
12634 commit 26d37f0061ad05e5c383c910f00e6006f3c89a3a
12635 Author: Felix Radensky <felix@embedded-sol.com>
12636 Date: Mon Jun 22 15:30:42 2009 +0300
12637
12638 ppc4xx: Fix FDT EBC mappings on Canyonlands
12639
12640 This patch fixes 2 problems with FDT EBC mappings on Canyonlands.
12641 First, NAND EBC mapping was missing, making Linux NAND driver
12642 unusable on this board. Second, NOR remapping code assumed that
12643 NOR is always on CS0, however when booting from NAND NOR is on CS3.
12644
12645 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
12646 Signed-off-by: Stefan Roese <sr@denx.de>
12647
12648 commit baa9f9ba4345ed6dc5c403871c32e6295316ea52
12649 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12650 Date: Tue Jun 16 22:29:15 2009 +0900
12651
12652 sh: Revised the build with newest compiler
12653
12654 The check of data became severe from newest gcc.
12655 This patch checked in gcc-4.2 and 4.3 .
12656
12657 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12658
12659 commit be45c632568ba76343c1453b3951ad793f482fd5
12660 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12661 Date: Thu Jun 4 12:06:48 2009 +0200
12662
12663 sh3/sh4: rename config option TMU_CLK_DIVIDER to CONFIG_SYS_TMU_CLK_DIV
12664
12665 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12666 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12667 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12668
12669 commit 8dd29c87ba370072a8464b8cc19e0a1e6e0497b4
12670 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12671 Date: Thu Jun 4 12:06:47 2009 +0200
12672
12673 sh3/sh4: fix CONFIG_SYS_HZ to 1000
12674
12675 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12676 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12677 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12678
12679 commit add380f51f34ed1e2678c2abac8d53c91d652f26
12680 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12681 Date: Thu Jun 4 12:06:46 2009 +0200
12682
12683 sh: introduce clock framework
12684
12685 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12686 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12687 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12688
12689 commit 3931a375de2c381d9ff5ec2767b2da9f62a41aef
12690 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12691 Date: Thu Jun 4 12:06:45 2009 +0200
12692
12693 sh: unify linker script
12694
12695 all sh boards use the same cpu linker script so move it to cpu/$(CPU)
12696
12697 that could be overwrite in following order
12698 SOC
12699 BOARD
12700 via the corresponding config.mk
12701
12702 tested on r2dplus
12703
12704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12705 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12706 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12707
12708 commit 236aad875817771eb1f25ed32784b3cd7760b2e6
12709 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12710 Date: Thu Jun 4 12:06:44 2009 +0200
12711
12712 sh: make the linker scripts more generic
12713
12714 currently we need to sync the linker script enty and TEXT_BASE manualy
12715 and the reloc_dst is based on it
12716
12717 instead provide it now from the ldflags
12718
12719 tested on r2dplus
12720
12721 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12722 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12723 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12724
12725 commit ce29817212792113cd2d67a9767049a2e262c406
12726 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12727 Date: Thu Jun 4 12:06:43 2009 +0200
12728
12729 sh7785lcr: fix out of tree build
12730
12731 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12732 Cc: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12733 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
12734
12735 commit 2e8a6f551cba550e9220dca4d8504066203b1f74
12736 Author: HeungJun Kim <riverful.kim@gmail.com>
12737 Date: Tue Jun 30 14:42:22 2009 +0900
12738
12739 env_onenand: change env_address type from unsigned long to loff_t
12740
12741 If use the onenand boot, the env_relocate_spec() calls mtd->read(),
12742 and the type of the argument #2 of mtd->read() was changed to loff_t.
12743 But, the "env_addr" type is still unsigned long, thus this patch change
12744 the type from unsigned long to loff_t.
12745
12746 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
12747 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
12748 Signed-off-by: Scott Wood <scottwood@freescale.com>
12749
12750 commit 66372fe2ab11cdeb0e841ad9eb6ba79769db4909
12751 Author: Mingkai Hu <Mingkai.hu@freescale.com>
12752 Date: Thu Jun 18 18:23:27 2009 +0800
12753
12754 fsl_elbc_nand: redirect the pointer of bbt pattern to RAM
12755
12756 The bbt descriptors contains the pointer to the bbt pattern which
12757 are statically initialized memory struct. When relocated to RAM,
12758 these pointers will continue point to NOR flash(or L2 SRAM, or
12759 other boot device). If the contents of NOR flash changed or L2
12760 SRAM disabled, it'll hang the system.
12761
12762 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
12763 Signed-off-by: Scott Wood <scottwood@freescale.com>
12764
12765 commit 1dac3a51875967f32641bbc0d26dc382ef02330a
12766 Author: Scott Wood <scottwood@freescale.com>
12767 Date: Wed Jun 24 17:23:49 2009 -0500
12768
12769 nand_spl: Fix cmd_ctrl usage in nand_boot.c.
12770
12771 When adding large page NAND support to this file, I had a misunderstanding
12772 about the exact semantics of NAND_CTRL_CHANGE (which isn't documented
12773 anywhere I can find) -- it is apparently just a hint to drivers,
12774 which aren't required to preserve the old value for subsequent
12775 non-"change" invocations.
12776
12777 This change makes nand_boot.c no longer assume this. Note that this
12778 happened to work by chance with some NAND drivers, which don't preserve
12779 the value, but treat 0 equivalently to NAND_CTRL_ALE.
12780
12781 I don't have hardware to test this, so any testing is appreciated.
12782
12783 Signed-off-by: Scott Wood <scottwood@freescale.com>
12784
12785 commit 98713d2663d5d30dde74f48f547114a2bfd9d463
12786 Author: kevin.morfitt@fearnside-systems.co.uk <kevin.morfitt@fearnside-systems.co.uk>
12787 Date: Thu Jun 18 18:41:03 2009 +0100
12788
12789 Bug-fix in drivers mtd nand Makefile
12790
12791 The S3C2410 NAND driver source file is included in the makefile instead of
12792 the object file.
12793
12794 Signed-off-by: Kevin Morfitt <kevin.morfitt@fearnside-systems.co.uk>
12795 Signed-off-by: Scott Wood <scottwood@freescale.com>
12796
12797 commit b74ab737369bbbe66c15cbe6c0d0b6a351b00c96
12798 Author: Guennadi Liakhovetski <lg@denx.de>
12799 Date: Mon May 18 16:07:22 2009 +0200
12800
12801 nand_spl: read environment early, when booting from NAND using nand_spl
12802
12803 Currently, when booting from NAND using nand_spl, in the beginning the default
12804 environment is used until later in boot process the dynamic environment is read
12805 out. This way environment variables that must be interpreted early, like the
12806 baudrate or "silent", cannot be modified dynamically and remain at their
12807 default values. Fix this problem by reading out main and redundand (if used)
12808 copies of the environment in the nand_spl code.
12809
12810 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12811 Signed-off-by: Scott Wood <scottwood@freescale.com>
12812
12813 commit 378adfcdf4bbd77ee4cbc3276d4733e218308a21
12814 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12815 Date: Sat May 16 14:27:40 2009 +0200
12816
12817 mtd: nand: use loff_t for offset
12818
12819 nand_util currently uses size_t which is arch dependent and not always a
12820 unsigned long. Now use loff_t, as does the linux mtd layer.
12821
12822 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12823 Signed-off-by: Scott Wood <scottwood@freescale.com>
12824
12825 commit 8360b66bac9567701027a0087274d0c9b2fe8d6b
12826 Author: Wolfgang Denk <wd@denx.de>
12827 Date: Sun May 24 17:34:33 2009 +0200
12828
12829 nand/onenand: Fix missing argument checking for "markbad" command
12830
12831 The "nand markbad" and "onenand markbad" commands did not check if an
12832 argument was passed; if this was forgotten, no error was raised but
12833 block 0 was marked as bad.
12834
12835 While fixing this bug, clean up the code a bit and allow to pass more
12836 than one block address, thus allowing to mark several blocks as bad
12837 in a single command invocation.
12838
12839 Signed-off-by: Wolfgang Denk <wd@denx.de>
12840 Signed-off-by: Scott Wood <scottwood@freescale.com>
12841
12842 commit cd84423a09f3a08029fe41c1db96168debd0b51f
12843 Author: Mike Frysinger <vapier@gentoo.org>
12844 Date: Mon May 25 22:42:28 2009 -0400
12845
12846 mtd: nand: new base driver for memory mapped nand devices
12847
12848 The BF537-STAMP Blackfin board had a driver for working with NAND devices
12849 that are simply memory mapped. Since there is nothing Blackfin specific
12850 about this, generalize the driver a bit so that everyone can leverage it.
12851
12852 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
12853 Signed-off-by: Scott Wood <scottwood@freescale.com>
12854
12855 commit d27bc728cf35e7d7996fbd77154335e66615b213
12856 Author: Guennadi Liakhovetski <lg@denx.de>
12857 Date: Mon May 18 16:06:45 2009 +0200
12858
12859 env_nand: remove unused variable.
12860
12861 Remove an unused "total" variable in multiple functions.
12862
12863 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12864 Signed-off-by: Scott Wood <scottwood@freescale.com>
12865
12866 commit 154b5484ac7dcbcd0fb5ba388d930b02f87fa302
12867 Author: David Brownell <dbrownell@users.sourceforge.net>
12868 Date: Sun May 10 15:43:01 2009 -0700
12869
12870 davinci_nand chipselect/init cleanup
12871
12872 Update chipselect handling in davinci_nand.c so that it can
12873 handle 2 GByte chips the same way Linux does: as one device,
12874 even though it has two halves with independent chip selects.
12875 For such chips the "nand info" command reports:
12876
12877 Device 0: 2x nand0, sector size 128 KiB
12878
12879 Switch to use the default chipselect function unless the board
12880 really needs its own. The logic for the Sonata board moves out
12881 of the driver into board-specific code. (Which doesn't affect
12882 current build breakage if its NAND support is enabled...)
12883
12884 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
12885 Signed-off-by: Scott Wood <scottwood@freescale.com>
12886
12887 commit 496863b2440dd7cd69a1ad2443a9badd5f8968d1
12888 Author: Sandeep Paulraj <s-paulraj@ti.com>
12889 Date: Sat May 9 12:35:20 2009 -0400
12890
12891 NAND DaVinci: Update to ALE/CLE Mask values
12892
12893 All DaVinci SOC's use a CLE mask of 0x10 and an ALE mask of 0x8
12894 except the DM646x. This was decided by the design team driving the design.
12895 This patch updates the CLE and ALE values for DM646x.
12896 Updated patches for DM646x will be sent shortly.
12897 This applies to u-boot-nand-flash git
12898
12899 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
12900 Signed-off-by: Scott Wood <scottwood@freescale.com>
12901
12902 commit 0c1684437ef810c503df29e8d73f63191aa63862
12903 Author: Sandeep Paulraj <s-paulraj@ti.com>
12904 Date: Wed Apr 29 09:47:09 2009 -0400
12905
12906 ARM DaVinci: Changing ALE Mask Value
12907
12908 The ALE mask used by DaVinci SOCs is wrong. The patch changes the mask value
12909 from '0xa' to '0x8'. This is the mask we use for all TI releases.
12910
12911 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
12912 Signed-off-by: Scott Wood <scottwood@freescale.com>
12913
12914 commit 6e29ed8e576a6900c5d8dcde36b423ac576894dc
12915 Author: David Brownell <dbrownell@users.sourceforge.net>
12916 Date: Tue Apr 28 13:19:53 2009 -0700
12917
12918 davinci_nand: cleanup II (CONFIG_SYS_DAVINCI_BROKEN_ECC)
12919
12920 Remove CONFIG_SYS_DAVINCI_BROKEN_ECC option. It's not just nasty;
12921 it's also unused by any current boards, and doesn't even match the
12922 main U-Boot distributions from TI (which use soft ECC, or 4-bit ECC
12923 on newer chips that support it).
12924
12925 DaVinci GIT kernels since 2.6.24, and mainline Linux since 2.6.30,
12926 match non-BROKEN code paths for 1-bit HW ECC. The BROKEN code paths
12927 do seem to partially match what MontaVista/TI kernels (4.0/2.6.10,
12928 and 5.0/2.6.18) do ... but only for small pages. Large page support
12929 is really broken (and it's unclear just what software it was trying
12930 to match!), and the ECC layout was making three more bytes available
12931 for use by filesystem (or whatever) code.
12932
12933 Since this option itself seems broken, remove it. Add a comment
12934 about the MV/TI compat issue, and the most straightforward way to
12935 address it (should someone really need to solve it).
12936
12937 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
12938 Signed-off-by: Scott Wood <scottwood@freescale.com>
12939
12940 commit fcb774777562bb7bcdc53c608d0e6bae906ce0f6
12941 Author: David Brownell <dbrownell@users.sourceforge.net>
12942 Date: Tue Apr 28 13:19:50 2009 -0700
12943
12944 davinci_nand: cleanup I (minor)
12945
12946 Minor cleanup for DaVinci NAND code:
12947
12948 - Use I/O addresses from nand_chip; CONFIG_SYS_NAND_BASE won't
12949 be defined when there are multiple chipselect lines in use
12950 (as with common 2 GByte chips).
12951
12952 - Cleanup handling of EMIF control registers
12953 * Only need one pointer pointing to them
12954 * Remove incorrect and unused struct supersetting them
12955
12956 - Use the standard waitfunc; we don't need a custom version
12957
12958 - Partial legacy cleanup:
12959 * Don't initialize every board like it's a DM6446 EVM
12960 * #ifdef a bit more code for BROKEN_ECC
12961
12962 Sanity checked with small page NAND on dm355 and dm6446 EVMs;
12963 and large page on dm355 EVM (packaged as two devices, not one).
12964
12965 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
12966 Signed-off-by: Scott Wood <scottwood@freescale.com>
12967
12968 commit 8e5e9b940cdede0debe528cdd7edccccbb3ebf2a
12969 Author: Wolfgang Denk <wd@denx.de>
12970 Date: Tue Jul 7 22:35:02 2009 +0200
12971
12972 Coding style cleanup; update CHANGELOG
12973
12974 Signed-off-by: Wolfgang Denk <wd@denx.de>
12975
12976 commit d318d0c44d8e91e937c4dad0c5b1d2f6bb9d9fd8
12977 Author: Stefan Roese <sr@denx.de>
12978 Date: Mon Jun 29 13:30:50 2009 +0200
12979
12980 UBI: Fix build problem noticed on Apollon (arm/testing repo)
12981
12982 This patch fixes a build problem noticed on Apollon by using
12983 mtd_dev_by_eb() instead of "/" as done in the Linux UBI version.
12984 So this brings the U-Boot UBI version more in sync with the Linux
12985 version again.
12986
12987 Signed-off-by: Stefan Roese <sr@denx.de>
12988
12989 commit 2efee52b09657e9353655b9dae9e1d1a67a2abe4
12990 Author: Prafulla Wadaskar <prafulla@marvell.com>
12991 Date: Mon Jul 6 20:29:15 2009 +0530
12992
12993 sf: Macronix additional chips supported
12994
12995 new chips supported:-
12996 MX25L1605D, MX25L3205D, MX25L6405D, MX25L12855E
12997 out of which MX25L6405D and MX25L12855E tested on Kirkwood platforms
12998
12999 Modified the Macronix flash support to use 2 bytes of device id instead of 1
13000 This was required to support MX25L12855E
13001
13002 Signed-off-by: Piyush Shah <spiyush@marvell.com>
13003 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13004 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13005
13006 commit dd54126715b89ed0c43322aa78b0dad306f043b6
13007 Author: Mike Frysinger <vapier@gentoo.org>
13008 Date: Fri Jun 19 03:27:28 2009 -0400
13009
13010 sf: sst: add sst25vf###b ids
13011
13012 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13013
13014 commit 7d907f0ea993b179a197d8db2a36f122bc673c2d
13015 Author: Mike Frysinger <vapier@gentoo.org>
13016 Date: Fri Jun 19 03:20:06 2009 -0400
13017
13018 sf: sst: fix sector size
13019
13020 Looks like when I was encoding the sector sizes, I forgot to divide by 8
13021 (due to the stupid marketing driven process that declares all sizes in
13022 useless megabits and not megabytes).
13023
13024 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13025
13026 commit ceb70b466e75ceb1a621b6163f7e31116bfc8094
13027 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13028 Date: Sun Jul 5 01:06:06 2009 +0200
13029
13030 nhk8815: fix MAKEALL
13031
13032 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13033
13034 commit d08e5ca301b69ab77ecdd34e2b06aee30d6057d1
13035 Author: Magnus Lilja <lilja.magnus@gmail.com>
13036 Date: Sat Jul 4 10:31:24 2009 +0200
13037
13038 MX31: Add NAND SPL boot support to i.MX31 PDK board.
13039
13040 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13041
13042 commit 78eabb90b793fafe875a7469526d1715fa56cbb4
13043 Author: Prafulla Wadaskar <prafulla@marvell.com>
13044 Date: Mon Jun 29 20:55:54 2009 +0530
13045
13046 arm: Kirkwood: arch specific updated for ehci-Kirkwood driver support
13047
13048 This patch abstracts Kirkwood arch specific changes to support ehci-kirkwood driver
13049
13050 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13051
13052 commit 095a460b49022e64df76134300643606e3acb4e9
13053 Author: Alessandro Rubini <rubini@unipv.it>
13054 Date: Mon Jun 29 10:52:37 2009 +0200
13055
13056 arm nomadik: use 1000 as HZ value and rewrite timer code
13057
13058 This sets CONFIG_SYS_HZ to 1000 as required, and completely rewrites
13059 timer code, which is now both correct and much smaller. Unused
13060 functions like udelay_masked() have been removed as no driver uses
13061 them, even the ones that are not currently active for this board.
13062 mtu.h is copied literally from the kernel sources.
13063
13064 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13065 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
13066 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13067
13068 commit f7aa59b29a451cc502078a9e4ba32345a4250c05
13069 Author: Alessandro Rubini <rubini@unipv.it>
13070 Date: Mon Jun 22 09:18:57 2009 +0200
13071
13072 arm nomadik: allow Nand and OneNand to coexists
13073
13074 The evaluation kit has both Nand and OneNand, both drivers are there
13075 and the two configurations only select a different default for the
13076 jffs partition. This adds the OneNand driver and cleans up storage.
13077
13078 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13079 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
13080
13081 commit fd14c41a861cd38ee2fe3abd61d59b57b4eb23c9
13082 Author: Alessandro Rubini <rubini@unipv.it>
13083 Date: Mon Jun 22 09:18:47 2009 +0200
13084
13085 arm nomadik: cleanup reset
13086
13087 There is only one public release of the Nomadik chip, so the ifdef
13088 in reset code as well as a define in the config file are not needed
13089
13090 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13091 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
13092
13093 commit ee1363f2da3996bafdecdd8f4e48862ebff3f271
13094 Author: Alessandro Rubini <rubini@unipv.it>
13095 Date: Mon Jun 22 09:18:37 2009 +0200
13096
13097 arm nomadik: rename board to nhk8815
13098
13099 This is an error in my side in the initial submission: nobody
13100 calls it ""nmdk8815", it's "nomadik hardware kit", nhk8815, instead.
13101
13102 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13103 Acked-by: Andrea Gallo <andrea.gallo@stericsson.com>
13104
13105 commit 040f8f63e922bbfb8ba0958bf637f11a917f5c38
13106 Author: Stefano Babic <sbabic@denx.de>
13107 Date: Wed Jul 1 20:40:41 2009 +0200
13108
13109 xscale: add support for the polaris board
13110
13111 The Polaris board is based on the TrizepsIV module of
13112 Keith & Koep (http://www.keith-koep.com).
13113
13114 Signed-off-by: Stefano Babic <sbabic@denx.de>
13115
13116 commit 88bd97501314683b87f3f1edcf55b347c041b722
13117 Author: Stefano Babic <sbabic@denx.de>
13118 Date: Wed Jul 1 04:33:56 2009 +0200
13119
13120 xscale: fix USB initialization for Trizepsiv module
13121
13122 Due to change in the usb_board_init() prototype, the USB for
13123 the TrizepsIV was not correctly initialized.
13124 Removed dummy print from usb_board_stop().
13125
13126 Signed-off-by: Stefano Babic <sbabic@denx.de>
13127
13128 commit 0b785ddd60120cfb74d18e58c56054238219f6db
13129 Author: Prafulla Wadaskar <prafulla@marvell.com>
13130 Date: Wed Jul 1 20:34:51 2009 +0200
13131
13132 net: merge bugfix: Marvell Kirkwood gigabit ethernet driver
13133
13134 This patch looks okay on u-boot-net.git/next branch
13135 but when it was merged to u-boot.git/master the last line is missing
13136
13137 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13138 Acked-by: Ben Warren <biggerbadderben@gmail.com>
13139
13140 commit 33b1d3f43a16fbb79004075ce89ae4e618b288a2
13141 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
13142 Date: Tue Jun 30 21:03:37 2009 +0200
13143
13144 at91: Add esd gmbh MEESC board support
13145
13146 This patch adds support for esd gmbh MEESC board.
13147 The MEESC is based on an Atmel AT91SAM9263 SoC.
13148
13149 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
13150
13151 commit 21761540b43c7086c75ee9afb412da1e5ddde2e9
13152 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13153 Date: Tue Jun 30 21:03:35 2009 +0200
13154
13155 ARM: Update mach-types
13156
13157 update against linux v2.6.30
13158
13159 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13160
13161 commit 45627fce18139a74e0755124d27376b520db156c
13162 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
13163 Date: Tue Jun 30 23:03:33 2009 +0200
13164
13165 at91: Add CAN init function
13166
13167 To enable CAN init, CONFIG_CAN has to be defined in the board config file
13168 and at91_can_hw_init() has to be called in the board specific code.
13169
13170 CAN is available on AT91SAM9263 and AT91CAP9 SoC.
13171
13172 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
13173
13174 commit 2e23008e5dbde7fe4c4758bee5a393e1db796cdf
13175 Author: Simon Kagstrom <simon.kagstrom@netinsight.net>
13176 Date: Tue Jun 30 23:03:31 2009 +0200
13177
13178 arm: Kirkwood: Correct header define
13179
13180 Correct define typo (. -> ,)
13181
13182 Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
13183
13184 commit 8449f287f5c53d59db13c3c512e6bd1750b692d1
13185 Author: Magnus Lilja <lilja.magnus@gmail.com>
13186 Date: Wed Jul 1 01:07:55 2009 +0200
13187
13188 MX31: Add basic support for Freescale i.MX31 PDK board.
13189
13190 Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board).
13191
13192 This patch assumes that some other program performs the actual
13193 NAND boot.
13194
13195 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13196 Acked-by: Fabio Estevam <fabioestevam@yahoo.com>
13197 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13198
13199 commit 8d460a573e2a2ac4834636903865a0428ad0e629
13200 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13201 Date: Tue Jun 23 00:12:01 2009 +0200
13202
13203 S3C24x0: extract interrupts from timer
13204
13205 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13206
13207 commit c8badbe500a752f42049e51042767ee62ea714e0
13208 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13209 Date: Sun Jun 28 14:14:21 2009 +0200
13210
13211 dm355/pm9261: add missing CONFIG_NET_MULTI
13212
13213 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13214
13215 commit 798bf9a9ade1cfbe85a16d180cad720927d8e10a
13216 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13217 Date: Tue Jun 23 00:12:01 2009 +0200
13218
13219 arm920t/interrupts: Move conditional compilation to Makefile
13220
13221 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13222
13223 commit 06e758e75c79ce8761866bf8165c443584a20893
13224 Author: Kim, Heung Jun <riverful@gmail.com>
13225 Date: Sat Jun 20 11:02:17 2009 +0200
13226
13227 move L2 cache enable/disable function to cache.c in the omap3 SoC directory
13228
13229 Signed-off-by: HeungJun, Kim <riverful.kim@samsung.com>
13230 CC: Dirk Behme <dirk.behme@googlemail.com>
13231 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13232
13233 commit d583ef5147066d3609de21f3beebbab99a19bad4
13234 Author: Thomas Lange <thomas@corelatus.se>
13235 Date: Sat Jun 20 11:02:17 2009 +0200
13236
13237 ARM DaVinci: EMIF settings
13238
13239 NAND module should not modify EMIF registers unrelated to CS2
13240 that is used for NAND, i.e. do not modify EWAIT config register
13241 or registers for other Chip Selects.
13242
13243 Without this patch, EMIF configurations made in board_init()
13244 will be invalidated.
13245
13246 Signed-off-by: Thomas Lange <thomas@corelatus.se>
13247
13248 commit 2600b8571a26c10c1c43401d7af38e2333cc5381
13249 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13250 Date: Sat Jun 20 11:02:17 2009 +0200
13251
13252 versatile: config coding style cleanup
13253
13254 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13255 Cc: Peter Pearse <peter.pearse@arm.com>
13256
13257 commit 4efb77d41f9c5d93f0f92dda60e742023fa03c72
13258 Author: Prafulla Wadaskar <prafulla@marvell.com>
13259 Date: Sat Jun 20 11:01:53 2009 +0200
13260
13261 arm: Kirkwood: Basic SOCs support
13262
13263 Kirkwood family controllers are highly integrated SOCs
13264 based on Feroceon-88FR131/Sheeva-88SV131/arm926ejs cpu core.
13265
13266 SOC versions supported:-
13267 1) 88F6281-A0 define CONFIG_KW88F6281_A0
13268 2) 88F6192-A0 define CONFIG_KW88F6192_A0
13269
13270 Other supported features:-
13271 1) get_random_hex() fucntion
13272 2) PCI Express port initialization
13273 3) NS16550 driver support
13274
13275 Contributors:
13276 Yotam Admon <yotam@marvell.com>
13277 Michael Blostein <michaelbl@marvell.com
13278
13279 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
13280 Acked-by: Stefan Rose <sr@denx.de>
13281 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13282
13283 commit 5c3d5817e5e68b828c165c501c215e793dc63aac
13284 Author: Prafulla Wadaskar <prafulla@marvell.com>
13285 Date: Sat Jun 20 11:01:52 2009 +0200
13286
13287 arm: generic cache.h for ARM architectures
13288
13289 This patch is required for Kirkwood SoC support
13290 may be used by other ARM architectures
13291
13292 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13293
13294 commit 9c8c706c92e53433a871a563946c38075d76504d
13295 Author: Matthias Ludwig <mludwig@ultratronik.de>
13296 Date: Sat Jun 20 11:01:50 2009 +0200
13297
13298 OMAP3EVM: fix typo. replace CS6 by CS5, no functionality change
13299
13300 Signed-off-by: Matthias Ludwig <mludwig@ultratronik.de>
13301
13302 commit 0aafde1dc76d6d65d6be10bf499ec86d9ffee8b9
13303 Author: Sedji Gaouaou <sedji.gaouaou@atmel.com>
13304 Date: Wed Jun 24 08:32:09 2009 +0200
13305
13306 at91sam9260/9263: add back up for the rst(reset controller).
13307
13308 On the boards at91sam9260ek, at91sam9263ek and afed9260, the rstc register was
13309 set to 0 after being set to 500 ms for the PHY reset.
13310 Do backup the old reset length and restore it after the MACB initialisation.
13311
13312 Signed-off-by: Sedji Gaouaou <sedji.gaouaou@atmel.com>
13313 Signed-off-by: Stelian Pop <stelian@popies.net>
13314
13315 commit afb0b1315c048ce2b1f35f0183b8b118ad0c14e1
13316 Author: Kumar Gala <galak@kernel.crashing.org>
13317 Date: Fri Jul 3 12:45:44 2009 -0500
13318
13319 fsl: Fix compiler warnings from gcc-4.4 in sys_eeprom code
13320
13321 sys_eeprom.c: In function 'do_mac':
13322 sys_eeprom.c:323: warning: dereferencing type-punned pointer will break strict-aliasing rules
13323 sys_eeprom.c: In function 'mac_read_from_eeprom':
13324 sys_eeprom.c:395: warning: dereferencing type-punned pointer will break strict-aliasing rules
13325
13326 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13327
13328 commit e94e460c6e8741f42dab6d8dd4b596ba5d9d79ae
13329 Author: Peter Tyser <ptyser@xes-inc.com>
13330 Date: Tue Jun 30 17:15:51 2009 -0500
13331
13332 83xx: Add support for fsl_dma driver
13333
13334 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13335 Reviewed-by: Ira W. Snyder <iws@ovro.caltech.edu>
13336 Tested-by: Ira W. Snyder <iws@ovro.caltech.edu>
13337 Acked-by: Kim Phillips <kim.phillips@freescale.com>
13338 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13339
13340 commit 9adda5459ca62120c0c50b82b766fe1cf6925bbf
13341 Author: Peter Tyser <ptyser@xes-inc.com>
13342 Date: Tue Jun 30 17:15:50 2009 -0500
13343
13344 83xx: Replace CONFIG_ECC_INIT_VIA_DDRC references
13345
13346 Update 83xx architecture's CONFIG_ECC_INIT_VIA_DDRC references to
13347 CONFIG_ECC_INIT_VIA_DDRCONTROLLER, which other Freescale architectures
13348 use
13349
13350 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13351 Acked-by: Kim Phillips <kim.phillips@freescale.com>
13352 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13353
13354 commit 039594a4301dadceb267db5e8b9c8c78b1bb86b5
13355 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13356 Date: Thu Jul 2 16:15:01 2009 +0530
13357
13358 8xxx: Second UART port added for MPC85xx, MPC83xx, MPC86xx processors
13359
13360 Defining the next two configs allows to switch the serial port from the
13361 console using the setenv stdin and stdout
13362 1. #define CONFIG_SERIAL_MULTI 1 /* Enable both serial ports */
13363 2. #define CONFIG_SYS_CONSOLE_IS_IN_ENV /* determine from environment */
13364
13365 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13366 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
13367 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13368
13369 commit 546b1032907df70f2dd0f98f3ad09885a88411e5
13370 Author: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13371 Date: Thu Jul 2 16:14:40 2009 +0530
13372
13373 85xx: Adds GPIO registers to MPC85xx Memory Map.
13374
13375 Signed-off-by: Poonam Aggrwal <poonam.aggrwal@freescale.com>
13376 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13377
13378 commit 5da6f806b400372b8a0664f3282c9e83a402eb66
13379 Author: Peter Tyser <ptyser@xes-inc.com>
13380 Date: Tue Jun 30 17:26:01 2009 -0500
13381
13382 86xx: XPedite5170 board support
13383
13384 Initial support for Extreme Engineering Solutions XPedite5170 -
13385 a MPC8640-based 3U VPX single board computer with a PMC/XMC
13386 site.
13387
13388 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13389 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13390
13391 commit e66f38da8434425aca8df08d06d9ef41b3478d3b
13392 Author: Timur Tabi <timur@freescale.com>
13393 Date: Wed Jul 1 16:51:59 2009 -0500
13394
13395 fsl_ddr: Fix DDR3 calculation of rank density with 8GB or more
13396
13397 The calculate for rank density in compute_ranksize() for DDR3 used all
13398 integers for the expression, so the result was also a 32-bit integer, even
13399 though the 'bsize' variable is a u64. Fix the expression to calculate a
13400 true 64-bit value.
13401
13402 Signed-off-by: Timur Tabi <timur@freescale.com>
13403 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13404
13405 commit 6af015b86b86d94de7ca1b23a3890bc93a50c2ab
13406 Author: Peter Tyser <ptyser@xes-inc.com>
13407 Date: Tue Jun 30 17:15:49 2009 -0500
13408
13409 fsl_dma: Make DMA transactions snoopable
13410
13411 Make DMA transactions snoopable so that CPUs can keep caches up-to-date.
13412 This allows dma transactions to be used for operations such as memory
13413 copies without any additional cache control operations.
13414
13415 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13416 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13417
13418 commit 0d595f76bc9c7c8dff5bd31dffed87a840a03c56
13419 Author: Peter Tyser <ptyser@xes-inc.com>
13420 Date: Tue Jun 30 17:15:48 2009 -0500
13421
13422 fsl_dma: Break out common memory initialization function
13423
13424 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13425 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13426
13427 commit 79f4333ceb059049b3ee560167d6cbaec493695f
13428 Author: Peter Tyser <ptyser@xes-inc.com>
13429 Date: Tue Jun 30 17:15:47 2009 -0500
13430
13431 8xxx: Move dma_init() call to common code
13432
13433 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13434 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13435
13436 commit 191c7118592cd182f2dc7f46b4f72d9bed0e2c76
13437 Author: Peter Tyser <ptyser@xes-inc.com>
13438 Date: Tue Jun 30 17:15:46 2009 -0500
13439
13440 fsl_dma: Move dma function prototypes to common header file
13441
13442 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13443 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13444
13445 commit 7892f619d40f4196e41e7114c5dfee9fad0f572f
13446 Author: Peter Tyser <ptyser@xes-inc.com>
13447 Date: Tue Jun 30 17:15:45 2009 -0500
13448
13449 8xxx: Rename dma_xfer() to dmacpy()
13450
13451 Also update dmacpy()'s argument order to match memcpy's and use
13452 phys_addr_t/phy_size_t for address/size arguments
13453
13454 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13455 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13456
13457 commit 484919cf3351212ebf748b9b13ece1ddaf7e7d1c
13458 Author: Peter Tyser <ptyser@xes-inc.com>
13459 Date: Tue Jun 30 17:15:44 2009 -0500
13460
13461 fsl_dma: Fix Channel Start bug in dma_check()
13462
13463 The Channel Start (CS) bit in the Mode Register (MR) should actually be
13464 cleared as the comment in the code suggests. Previously, CS was being
13465 set, not cleared.
13466
13467 Assuming normal operation of the DMA engine, this change shouldn't have
13468 any real affect.
13469
13470 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13471 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13472
13473 commit 51402ac12be9a0025f16db51fbde7c050a54e5fe
13474 Author: Peter Tyser <ptyser@xes-inc.com>
13475 Date: Tue Jun 30 17:15:43 2009 -0500
13476
13477 fsl_dma: Add support for arbitrarily large transfers
13478
13479 Support DMA transfers larger than the DMA controller's limit of
13480 (2 ^ 26 - 1) bytes
13481
13482 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13483 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13484
13485 commit a730393a362741c318b21771b8d7b2647e546c3e
13486 Author: Peter Tyser <ptyser@xes-inc.com>
13487 Date: Tue Jun 30 17:15:42 2009 -0500
13488
13489 fsl_dma: Use proper I/O access functions
13490
13491 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13492 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13493
13494 commit 9c06071a6077ba95e9d43226156e39567d5d064a
13495 Author: Peter Tyser <ptyser@xes-inc.com>
13496 Date: Tue Jun 30 17:15:41 2009 -0500
13497
13498 fsl_dma: Add bitfield definitions for common registers
13499
13500 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13501 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13502
13503 commit 017f11f68ef543e866be033bcb7b8058a8a380d8
13504 Author: Peter Tyser <ptyser@xes-inc.com>
13505 Date: Tue Jun 30 17:15:40 2009 -0500
13506
13507 8xxx: Break out DMA code to a common file
13508
13509 DMA support is now enabled via the CONFIG_FSL_DMA define instead of the
13510 previous CONFIG_DDR_ECC
13511
13512 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13513 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13514
13515 commit 6bbced671719518d0e28ff422623cd7ce396cbda
13516 Author: Mark Jackson <mpfj-list@mimc.co.uk>
13517 Date: Mon Jun 29 15:59:10 2009 +0100
13518
13519 Atmel LCD driver GUARDTIME fix
13520
13521 This patch allows the guard time parameter to be set in
13522 the Atmel LCDC driver.
13523
13524 By default, the previous value of 1 is used, unless the
13525 setting is defined elsewhere.
13526
13527 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13528
13529 commit 29c35182462feea09f322e51913759a53359a3e0
13530 Author: Roy Zang <tie-fei.zang@freescale.com>
13531 Date: Tue Jun 30 13:56:23 2009 +0800
13532
13533 85xx: Add pci e1000 Ethernet support for P2020 board
13534
13535 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
13536 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13537
13538 commit 156984a3611c28093919d3e3c042f722b5548253
13539 Author: Kumar Gala <galak@kernel.crashing.org>
13540 Date: Thu Jun 18 08:39:42 2009 -0500
13541
13542 8xxx: Fix PCI bus address setup for 36-bit configs
13543
13544 We want the outbound PCI memory map to end at the 4G boundary so we
13545 can maximize the amount of space available for inbound mappings if
13546 we have large amounts of memory.
13547
13548 This matches the device tree setup in the kernel for the 36-bit physical
13549 configs for the platforms that have one (MPC8641 HPCN & MPC8572 DS).
13550
13551 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13552
13553 commit 480f61790565d77432b70b4016b73f2ae27d530f
13554 Author: Kumar Gala <galak@kernel.crashing.org>
13555 Date: Thu Jun 18 08:23:01 2009 -0500
13556
13557 86xx: Add CPU_TYPE_ENTRY support
13558
13559 Unify with 83xx and 85xx and use CPU_TYPE_ENTRY. We are going to use
13560 this to convey the # of cores and DDR width in the near future so its
13561 good to keep in sync.
13562
13563 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13564
13565 commit 98ab14e858bf60306d0aa3f0df5a7a5f88264aff
13566 Author: Peter Meerwald <pmeerw@pmeerw.net>
13567 Date: Mon Jun 29 15:48:33 2009 -0400
13568
13569 Blackfin: TWI/I2C: fix pure writes
13570
13571 If doing a pure write with register address and data (not a read/write
13572 combo transfer), we don't set the initial transfer length properly which
13573 ends up causing only the register address to be transferred.
13574
13575 While we're here, fix the i2c_write() parameter description of the buffer.
13576
13577 Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
13578 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13579
13580 commit 5710de45808eb8f1cc34b51dc3e67e2422113249
13581 Author: Prafulla Wadaskar <prafulla@marvell.com>
13582 Date: Sat May 30 01:13:33 2009 +0530
13583
13584 spi: Add Marvell Kirkwood SPI driver
13585
13586 This patch adds a SPI driver for the Marvell Kirkwood SoC's.
13587
13588 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13589
13590 commit 6bde171a4c4116cee179167cb65335a28f99932d
13591 Author: Minkyu Kang <mk7.kang@samsung.com>
13592 Date: Thu Jun 25 19:21:33 2009 +0900
13593
13594 s3c64xx: move the reset_cpu function
13595
13596 Because of the reset_cpu is soc specific, should be move to soc
13597 And read reset value from SYS_ID register instead of hard code
13598 this patch also supports s3c6410
13599
13600 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
13601
13602 commit 576afd4faeba1519bcb8c0083c3e4d45e5643a48
13603 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13604 Date: Sun May 17 00:58:37 2009 +0200
13605
13606 integrator: merge integratorap and integratorcp
13607
13608 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13609 Acked-by: Peter Pearse <peter.pearse@arm.com>
13610
13611 commit 46937b27427688a56bf7f5944a92d962dc43c3fa
13612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13613 Date: Sun May 17 00:58:36 2009 +0200
13614
13615 integratorap/cp: use cfi driver
13616
13617 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13618 Acked-by: Peter Pearse <peter.pearse@arm.com>
13619
13620 commit de7a01abd8aeb167946f391327e1e0d1e01f90c9
13621 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13622 Date: Sun May 17 00:58:36 2009 +0200
13623
13624 integratorap/cp/versatile: remove non used functions
13625
13626 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13627 Acked-by: Peter Pearse <peter.pearse@arm.com>
13628
13629 commit f54851a6e3844b7e01581b5a9681f294118b7529
13630 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13631 Date: Sun May 17 00:58:36 2009 +0200
13632
13633 integratorcp: split timer support
13634
13635 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13636 Acked-by: Peter Pearse <peter.pearse@arm.com>
13637
13638 commit 2bcef0723ea11c4e9bfbcfff2a93ec2da520b5f1
13639 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13640 Date: Sun May 17 00:58:36 2009 +0200
13641
13642 integratorap: split timer support
13643
13644 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13645 Acked-by: Peter Pearse <peter.pearse@arm.com>
13646
13647 commit 86baa085c52a7f3377a88074679c5aca9b9e4d38
13648 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13649 Date: Sun May 17 00:58:36 2009 +0200
13650
13651 integratorap: split pci support
13652
13653 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13654 Acked-by: Peter Pearse <peter.pearse@arm.com>
13655
13656 commit 379e9fc0a319b8f6ae16d763590bf023f3afb87c
13657 Author: Ilya Yanok <yanok@emcraft.com>
13658 Date: Mon Jun 8 04:12:50 2009 +0400
13659
13660 arm: add support for CONFIG_GENERIC_MMC
13661
13662 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13663
13664 commit 47d19da4d3f9ac4787abe9dee32406478424be52
13665 Author: Ilya Yanok <yanok@emcraft.com>
13666 Date: Mon Jun 8 04:12:46 2009 +0400
13667
13668 serial_mx31: allow it to work with mx27 too and rename to serial_mxc
13669
13670 UART hardware on i.MX27 is the same as on the i.MX31 so we just
13671 need to provide the driver with correct address of the registers.
13672
13673 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13674
13675 commit 1dc4da749dbde27ec862f5b65703e8e4541fbba3
13676 Author: Ilya Yanok <yanok@emcraft.com>
13677 Date: Mon Jun 8 04:12:45 2009 +0400
13678
13679 mx27: basic cpu support
13680
13681 This patch adds generic code to support Freescale's i.MX27 SoCs.
13682
13683 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
13684
13685 commit dd2f6965a6c71f6f711ec98827880152e022c236
13686 Author: Magnus Lilja <lilja.magnus@gmail.com>
13687 Date: Sat Jun 13 20:50:03 2009 +0200
13688
13689 i.MX31: Create a common device file.
13690
13691 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13692
13693 commit 958f7da7887fea4a2091ae60944d62c1708c2c55
13694 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13695 Date: Sat Jun 13 20:50:02 2009 +0200
13696
13697 ARM: Add macros.h to be used in assembler file.
13698
13699 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13700
13701 commit 40c642bc19b9fa2906e3172487a522fee456340b
13702 Author: Magnus Lilja <lilja.magnus@gmail.com>
13703 Date: Sat Jun 13 20:50:01 2009 +0200
13704
13705 MX31: Add NAND SPL for i.MX31.
13706
13707 This patch adds the NAND SPL framework needed to boot i.MX31 boards
13708 from NAND.
13709
13710 It has been tested on a i.MX31 PDK board with large page NAND. Small
13711 page NANDs should work as well, but this has not been tested.
13712
13713 Note: The i.MX31 NFC uses a non-standard layout for large page NANDs,
13714 whether this is compatible with a particular setup depends on how
13715 the NAND device is programmed by the flash programmer (e.g. JTAG
13716 debugger).
13717
13718 The patch is based on the work by Maxim Artamonov.
13719
13720 Signed-off-by: Maxim Artamonov <scn1874@yandex.ru>
13721 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13722
13723 commit df81238b3e27a791da996a9208402ac8f40b9862
13724 Author: Magnus Lilja <lilja.magnus@gmail.com>
13725 Date: Sat Jun 13 20:50:00 2009 +0200
13726
13727 ARM1136: Introduce CONFIG_PRELOADER macro.
13728
13729 Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's
13730 in start.S. In preparation for adding support for NAND SPL
13731 the macro CONFIG_PRELOADER is introducted and replaces the
13732 CONFIG_ONENAND_IPL in start.S.
13733
13734 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
13735
13736 commit 8096c51fd4e611ed666dbe77767e81af5d94fc7b
13737 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13738 Date: Sat Jun 13 12:50:04 2009 +0200
13739
13740 at91: unify nor boot support
13741
13742 the lowlevel init sequence is the same so unify it
13743
13744 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13745
13746 commit 1b3b7c640d04df2ba9a9d947117d112a75fee7f4
13747 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13748 Date: Sat Jun 13 12:48:36 2009 +0200
13749
13750 at91sam9263ek: add nor flash support
13751
13752 this will allow you to store use it for the env and to boot directly U-Boot from
13753
13754 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13755
13756 commit 329492329700812c6df275aa0fda09d609cd0fd4
13757 Author: Ilko Iliev <iliev@ronetix.at>
13758 Date: Fri Jun 12 21:20:39 2009 +0200
13759
13760 at91: add support for the PM9261 board of Ronetix GmbH
13761
13762 The PM9261 board is based on the AT91SAM9261-EK board.
13763
13764 Here is the page on Ronetix website:
13765 http://www.ronetix.at/starter_kit_9261.html
13766
13767 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
13768 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13769
13770 commit 01550a2b650fbabc03334f9eadcc6083601a2414
13771 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13772 Date: Fri Jun 12 21:20:38 2009 +0200
13773
13774 pm9263: use macro instead of hardcode value for the lowlevel_init
13775
13776 optimize a few the RAM init
13777
13778 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
13779 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13780
13781 commit 7a11c7f9747240dc770954d320569596c0fbcb50
13782 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13783 Date: Fri Jun 12 21:20:37 2009 +0200
13784
13785 pm9263: lowlevel init update
13786
13787 move PSRAM init to pm9263.c
13788 this will allow us after to make the nor lowlevel_init generic
13789
13790 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13791
13792 commit 3e88337b225bf796f6df21d0a7f591530e9d4ce0
13793 Author: Mike Frysinger <vapier@gentoo.org>
13794 Date: Mon Jun 15 00:25:19 2009 -0400
13795
13796 Blackfin: move ALL += u-boot.ldr to blackfin_config.mk
13797
13798 The way the ALL variable is used allows for config.mk's to add more
13799 targets themselves without having to clutter up the top level Makefile.
13800
13801 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13802
13803 commit afac8b07172d7e4a65f86ce1ec4c783a6165ba1f
13804 Author: Mike Frysinger <vapier@gentoo.org>
13805 Date: Sun Jun 14 22:29:35 2009 -0400
13806
13807 Blackfin: fix SPI flash speed define name
13808
13809 The SPI flash define is named CONFIG_SF_DEFAULT_SPEED, not
13810 CONFIG_SF_DEFAULT_HZ, so fix the typos in the Blackfin boards.
13811
13812 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13813
13814 commit 9ae55ccf601de7a5b75eb418f3fc3d5eca92c106
13815 Author: Mike Frysinger <vapier@gentoo.org>
13816 Date: Sun Jun 14 22:26:31 2009 -0400
13817
13818 Blackfin: enable -O2 in lib_generic/ for ADI/Bluetechnix boards
13819
13820 Building the compression code in lib_generic/ with -O2 rather than -Os
13821 gives a nice speed boost without too much code size increase.
13822
13823 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13824
13825 commit fea63e2a44f0db51d2e39ee7793e8c6d7f3cf5d4
13826 Author: Mike Frysinger <vapier@gentoo.org>
13827 Date: Sun Jun 14 21:23:27 2009 -0400
13828
13829 Blackfin: bf548-ezkit: bump up monitor size
13830
13831 The latest version of U-Boot got a bit fatter in the BSS section which
13832 caused overflows in the RAM region, so increase the monitor size.
13833
13834 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13835
13836 commit bc43a8d8994c2f0be29e09b13b15da7f79e2c081
13837 Author: Vivi Li <vivi.li@analog.com>
13838 Date: Fri Jun 12 10:53:22 2009 +0000
13839
13840 Blackfin: bf533-stamp/bf537-stamp: fix env settings for SPI flash
13841
13842 The SPI flash layer is much stricter about sector usage than the eeprom
13843 layer we used to use, so update the env settings to better match the
13844 sector alignment of the flashes we use.
13845
13846 Signed-off-by: Vivi Li <vivi.li@analog.com>
13847 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13848
13849 commit 63cb0f4eb2d3cf15e7a1add19d1289f4ae75816c
13850 Author: Vivi Li <vivi.li@analog.com>
13851 Date: Fri Jun 12 10:33:23 2009 +0000
13852
13853 Blackfin: bump up default JTAG console timeout
13854
13855 The debug tools that interface with the other side of the JTAG console
13856 got much slower when generalizing things, so bump up the default timeout
13857 value on the U-Boot side to cope. Hopefully at some point we can improve
13858 the debug tools to speed things back up.
13859
13860 Signed-off-by: Vivi Li <vivi.li@analog.com>
13861 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13862
13863 commit c11ff779f4e0e0c7edc322e84dd229ad28709595
13864 Author: Mike Frysinger <vapier@gentoo.org>
13865 Date: Mon Jun 1 19:08:33 2009 -0400
13866
13867 Blackfin: add jtagconsole helper script
13868
13869 This script is similar to the netconsole script, but instead works with
13870 the JTAG console device driver that exists on Blackfin parts.
13871
13872 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
13873
13874 commit 60f61e6d7655400bb785a2ef637581679941f6d1
13875 Author: Remy Bohmer <linux@bohmer.net>
13876 Date: Sat May 2 21:49:18 2009 +0200
13877
13878 Convert DM9000 driver for CONFIG_NET_MULTI
13879
13880 All drivers need to be converted to CONFIG_NET_MULTI.
13881 This patch converts the dm9000 driver.
13882
13883 Signed-off-by: Thomas Smits <ts.smits@gmail.com>
13884 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13885 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13886
13887 commit 9131589ada4dda0718604d0a425ca46e52775f6e
13888 Author: Prafulla Wadaskar <prafulla@marvell.com>
13889 Date: Sun Jun 14 22:33:46 2009 +0530
13890
13891 net: Add Marvell Kirkwood gigabit ethernet driver
13892
13893 This patch adds a egiga driver for the Marvell Kirkwood SoC's.
13894
13895 Contributors:
13896 Yotam Admon <yotam@marvell.com>
13897 Michael Blostein <michaelbl@marvell.com
13898
13899 Reviewed-by: Ronen Shitrit <rshitrit@marvell.com>
13900 Acked-by: Stefan Rose <sr@denx.de>
13901 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
13902 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13903
13904 commit 7835f4b94927ecb5affd99aad62592108db606ad
13905 Author: s-paulraj@ti.com <s-paulraj@ti.com>
13906 Date: Tue May 12 11:45:34 2009 -0400
13907
13908 DaVinci Network Driver Updates
13909
13910 Different flavours of DaVinci SOC's have differences in their EMAC IP
13911 This patch does the following
13912 1) Updates base addresses for DM365
13913 2) Updates MDIO frequencies for DM365 and DM646x
13914 3) Update EMAC wrapper registers for DM365 and DM646x
13915
13916 Patch applies to u-boot-net git. the EMAC driver itself
13917 will be updated shortly to add support for DM365 and DM646x
13918
13919 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
13920 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13921
13922 commit 44578bea14e49035331a8f0e000e935e0d830ff4
13923 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13924 Date: Tue May 26 08:29:29 2009 -0400
13925
13926 Subject: [PATCH] [repost] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
13927
13928 From 584b5fbd4abfc43f920cc1c329633e03816e28be Mon Sep 17 00:00:00 2001
13929 From: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13930 Date: Wed, 20 May 2009 18:26:01 -0400
13931 Subject: [PATCH] Standardize the use of MCFFEC_TOUT_LOOP as a udelay(1) loop counter.
13932
13933 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
13934 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13935
13936 commit c9a2aab1512fb2d132670fff9c27656d2eb949cd
13937 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
13938 Date: Thu Jun 4 09:39:48 2009 +0200
13939
13940 A VLAN tagged DHCP request/discover is 4 bytes short
13941
13942 The problem is that BOOTP_SIZE uses ETHER_HDR_SIZE which is 14 bytes.
13943 If sending a VLAN tagged frame (when env variable vlan is set) this
13944 should be VLAN_ETHER_HDR_SIZE=18 which is what NetSetEther returns.
13945
13946 Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
13947 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13948
13949 commit 6e0d2fc7fe0dcfa2f51ab8931d706940ee364193
13950 Author: Ben Warren <biggerbadderben@gmail.com>
13951 Date: Tue Apr 28 16:39:19 2009 -0700
13952
13953 Remove support for non-CONFIG_NET_MULTI on PPC4xx EMAC
13954
13955 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13956
13957 commit 8453587ef9137daf98b7c9cf4f3b865f4039cea0
13958 Author: Ben Warren <biggerbadderben@gmail.com>
13959 Date: Tue May 26 00:34:07 2009 -0700
13960
13961 Switched davinci_emac Ethernet driver to use newer API
13962
13963 Added CONFIG_NET_MULTI to all Davinci boards
13964 Removed all calls to Davinci network driver from board code
13965 Added cpu_eth_init() to cpu/arm926ejs/cpu.c
13966
13967 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13968
13969 commit 8cc13c13f1d154c8fa8fff56cea357ed38af76bf
13970 Author: Ben Warren <biggerbadderben@gmail.com>
13971 Date: Mon Apr 27 23:19:10 2009 -0700
13972
13973 Initial cleanup of Davinci Ethernet driver
13974
13975 Removed pointless #ifdefs
13976 Moved functions around in file in preparation for switch to newer API
13977
13978 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13979
13980 commit 09cdd1b9b01450e91786d26ff3c866dc9c8d8d6b
13981 Author: Ben Warren <biggerbadderben@gmail.com>
13982 Date: Tue May 26 00:17:59 2009 -0700
13983
13984 Moved Davinci Ethernet driver to drivers/net
13985
13986 This driver has been renamed davinci_emac.c
13987
13988 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13989
13990 commit 6f51deb7f298413cfcb0a36d24c97ef7dd69d48f
13991 Author: Prafulla Wadaskar <prafulla@marvell.com>
13992 Date: Tue May 19 01:40:16 2009 +0530
13993
13994 Marvell MV88E61XX Switch Driver support
13995
13996 Chips supported:-
13997 1. 88E6161 6 port gbe swtich with 5 integrated PHYs
13998 2. 88E6165 6 port gbe swtich with 5 integrated PHYs
13999 2. 88E6132 3 port gbe swtich with 2 integrated PHYs
14000 Platform specific configuration supported for:-
14001 default or router port vlan configuration
14002 led_init configuration
14003 mdip/n polarity reversal configuration
14004
14005 Note: This driver is supported and tested against
14006 kirkwood egiga interface
14007
14008 Contributors:
14009 Yotam Admon <yotam@marvell.com>
14010 Michael Blostein <michaelbl@marvell.com
14011
14012 Reviewed by: Ronen Shitrit <rshitrit@marvell.com>
14013 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14014 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14015
14016 commit 091dc9f6adaf572b067ae91af92c4e7db33d7903
14017 Author: Zach LeRoy <zleroy@xes-inc.com>
14018 Date: Fri May 22 10:26:33 2009 -0500
14019
14020 tsec: Add support for BCM5482S PHY
14021
14022 Signed-off-by: Zach LeRoy <zleroy@xes-inc.com>
14023 Acked-by: Kumar Gala <galak@kernel.crashing.org>
14024 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14025
14026 commit 9ff67e5e4c719556d57f136a6453f8e4798d85c0
14027 Author: Mike Frysinger <vapier@gentoo.org>
14028 Date: Sun Jun 14 06:29:07 2009 -0400
14029
14030 Blackfin: unify u-boot linker scripts
14031
14032 All the Blackfin linker scripts were duplicated across the board dirs with
14033 no difference save from the semi-often used ENV_IS_EMBEDDED option. So
14034 unify all of them in the lib_blackfin/ dir and for the few boards that
14035 need to embedded the environment directly, add a LDS_BOARD_TEXT define for
14036 them to customize via their board config file. This is much simpler than
14037 forcing them to duplicate the rest of the linker script.
14038
14039 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14040
14041 commit f52efcae98cbb8a39f1d0535df8d9646a776af9e
14042 Author: Mike Frysinger <vapier@gentoo.org>
14043 Date: Fri May 29 17:02:37 2009 -0400
14044
14045 Blackfin: bf518f-ezbrd: enable SST SPI flash driver
14046
14047 The BF51xF parts have an internal SST SPI flash, so make sure the driver is
14048 enabled by default so we can access it.
14049
14050 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14051
14052 commit f348ab85f741dc98b2d202c04b5f430eace94925
14053 Author: Mike Frysinger <vapier@gentoo.org>
14054 Date: Fri Apr 24 17:22:40 2009 -0400
14055
14056 Blackfin: convert specific pre/post config headers to common method
14057
14058 The Blackfin port was using asm/blackfin-config-{pre,post}.h to setup
14059 common Blackfin board defines. The common method now is to use config.h,
14060 so convert blackfin-config-post.h to that. Rename the still Blackfin
14061 specific blackfin-config-pre.h to config-pre.h so the naming conventions
14062 at least line up.
14063
14064 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14065
14066 commit 7c7503ee6cd03c0f3b16e98d33d5aa23b30d65b1
14067 Author: Mike Frysinger <vapier@gentoo.org>
14068 Date: Fri Apr 24 17:11:47 2009 -0400
14069
14070 Blackfin: enable LZMA for all ADI boards
14071
14072 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14073
14074 commit 0e63dc0679451d48f8b727c543ce48b488f7a33f
14075 Author: Mike Frysinger <vapier@gentoo.org>
14076 Date: Mon Apr 13 05:52:45 2009 -0400
14077
14078 Blackfin: make default ADI env more flexible
14079
14080 Allow boards to easily override the root= and default bootcmd, allow
14081 people to tweak the file used in default bootcmds at runtime via one env
14082 var, and add a stock nandboot command.
14083
14084 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14085
14086 commit 0f52b560f19623ec651f9b9b40405d138ec251d3
14087 Author: Hoan Hoang <hnhoan@i-syst.com>
14088 Date: Sun Jan 18 22:44:17 2009 -0500
14089
14090 Blackfin: ibf-dsp561: new board port
14091
14092 Signed-off-by: Hoan Hoang <hnhoan@i-syst.com>
14093 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14094
14095 commit 3088189a15d219c48fd7e71623ca4daa08b80b59
14096 Author: Mike Frysinger <vapier@gentoo.org>
14097 Date: Sun Oct 12 23:28:33 2008 -0400
14098
14099 Blackfin: blackstamp: new board port
14100
14101 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14102
14103 commit 59ac9729700db1d4446c1a6db3ffe38398b7abb2
14104 Author: Mike Frysinger <vapier@gentoo.org>
14105 Date: Sun Oct 12 23:22:25 2008 -0400
14106
14107 Blackfin: bf537-srv1: new board port
14108
14109 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14110
14111 commit d7fdc1410b5fa5ef623b35a283733b6bcee3753b
14112 Author: Mike Frysinger <vapier@gentoo.org>
14113 Date: Sun Oct 12 23:16:52 2008 -0400
14114
14115 Blackfin: bf537-minotaur: new board port
14116
14117 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14118
14119 commit cb4b5e874f3c9b882a6f4394bbebbbd91fd01bbf
14120 Author: Mike Frysinger <vapier@gentoo.org>
14121 Date: Sun Oct 12 23:08:03 2008 -0400
14122
14123 Blackfin: bf537-pnav: new board port
14124
14125 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14126
14127 commit 59e4be945b6469e31eee721e0bcdccf4940d75ac
14128 Author: Mike Frysinger <vapier@gentoo.org>
14129 Date: Sun Oct 12 21:55:45 2008 -0400
14130
14131 Blackfin: cm-bf527: new board port
14132
14133 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14134
14135 commit 8b219cf07c186cc9d97354cf4b14f24a53d193c5
14136 Author: Mike Frysinger <vapier@gentoo.org>
14137 Date: Sun Oct 12 21:54:07 2008 -0400
14138
14139 Blackfin: cm-bf548: new board port
14140
14141 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14142
14143 commit 9417d9a21384279308abe5b4dd8dfd418742484c
14144 Author: Mike Frysinger <vapier@gentoo.org>
14145 Date: Sun Oct 12 21:49:28 2008 -0400
14146
14147 Blackfin: tcm-bf537: new board port
14148
14149 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14150
14151 commit e548321af00e869af7194896576beb9b68457ff7
14152 Author: Mike Frysinger <vapier@gentoo.org>
14153 Date: Sun Oct 12 21:45:05 2008 -0400
14154
14155 Blackfin: cm-bf561: new board port
14156
14157 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14158
14159 commit 8a9bab08a6fe93e5f3bf57b90438f1d2a67fad3c
14160 Author: Mike Frysinger <vapier@gentoo.org>
14161 Date: Sun Oct 12 21:41:06 2008 -0400
14162
14163 Blackfin: cm-bf537e: new board port
14164
14165 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14166
14167 commit e82d8a1f028bedb12c4ab88a35a935010d92898c
14168 Author: Mike Frysinger <vapier@gentoo.org>
14169 Date: Sun Oct 12 21:36:22 2008 -0400
14170
14171 Blackfin: cm-bf533: new board port
14172
14173 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14174
14175 commit dd14af7640f7d48d8e9768eeeb09592e6f94ed38
14176 Author: Mike Frysinger <vapier@gentoo.org>
14177 Date: Thu Nov 27 16:50:32 2008 -0500
14178
14179 Blackfin: new spibootldr command
14180
14181 Newer Blackfin parts can an on-chip ROM that can boot LDRs over SPI flashes,
14182 so add a new 'spibootldr' command to take advantage of it.
14183
14184 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14185
14186 commit 67c2829b646bb5b859088b36fbc89e971b9c1960
14187 Author: Mike Frysinger <vapier@gentoo.org>
14188 Date: Mon Oct 6 04:42:33 2008 -0400
14189
14190 Blackfin: support embedding the environment into loader files (LDRs)
14191
14192 For the most part, the Blackfin processor boots files in the LDR format
14193 rather than binary/ELF files. So we want to export the environment as a
14194 raw blob to the LDR utility so it can embed it at the right location.
14195
14196 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14197
14198 commit 31f30c9eb60d9ab0bd702e31f66345f99b34bdc6
14199 Author: Mike Frysinger <vapier@gentoo.org>
14200 Date: Sun Jun 14 11:03:48 2009 -0400
14201
14202 add %.c->%.i and %.c->%.s rules
14203
14204 The Linux kernel has some helper rules which allow you to quickly produce
14205 some of the intermediary files from C source. Specifically, you can
14206 create .i files which is the preprocessed output and you can create .s
14207 files which is the assembler output. This is useful when you are trying
14208 to track down header/macro expansion errors or inline assembly errors.
14209
14210 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14211 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14212
14213 commit 6d1ce387874c1060f27656f70151a52c511cd0e3
14214 Author: Mike Frysinger <vapier@gentoo.org>
14215 Date: Sat May 30 01:02:03 2009 -0400
14216
14217 make sure toplevel $(SUBDIRS) is always declared
14218
14219 The $(SUBDIRS) variable is only declared when U-Boot has been configured,
14220 but it gets used all the time. In the non-configured case, it is used to
14221 generate a helpful error message, but it needs to be set properly for that
14222 to occur.
14223
14224 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14225
14226 commit 1260233982f7dfbdfd1adee12daa95a0c0e84a43
14227 Author: Grzegorz Bernacki <gjb@semihalf.com>
14228 Date: Fri Jun 12 11:33:55 2009 +0200
14229
14230 digsy mtc: Add description to GPIO initial configuration.
14231
14232 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14233
14234 commit 12304871bc7839145f2b4238923e9023616d7399
14235 Author: Grzegorz Bernacki <gjb@semihalf.com>
14236 Date: Fri Jun 12 11:33:54 2009 +0200
14237
14238 digsy MTC: Add 'mtc' command.
14239
14240 New command allows to:
14241 o check FW version
14242 o set LED status
14243 o set digital output status
14244 o get digital input status
14245
14246 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14247
14248 commit f1f66edfc76f4a9f5b9f63972d90309784a8cae5
14249 Author: Grzegorz Bernacki <gjb@semihalf.com>
14250 Date: Fri Jun 12 11:33:53 2009 +0200
14251
14252 digsy MTC: Add SPI support.
14253
14254 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14255
14256 commit 6325b7780dad8be26ba6fc25ef88ba338c50205b
14257 Author: Grzegorz Bernacki <gjb@semihalf.com>
14258 Date: Fri Jun 12 11:33:52 2009 +0200
14259
14260 mpc52xx: Add SPI driver.
14261
14262 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
14263
14264 commit 5ec5529b82f314ca2cf9c262cdfc985d5fc468a0
14265 Author: Mike Frysinger <vapier@gentoo.org>
14266 Date: Sun Jun 14 09:33:00 2009 -0400
14267
14268 allow boards to customize compiler options on a per-file/dir basis
14269
14270 With our Blackfin boards, we like to build the compression routines with
14271 -O2 as our tests show a pretty good size/speed tradeoff. For the rest of
14272 U-Boot though, we want to stick with the default -Os as that is mostly
14273 control code. So in our case, we would add a line like so to the board
14274 specific config.mk file:
14275 CFLAGS_lib_generic += -O2
14276
14277 Now all files under lib_generic/ will have -O2 appended to their build.
14278
14279 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14280 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14281
14282 commit 6b1f78ae6ad037382ad430b07064105c88f7ac02
14283 Author: Wolfgang Denk <wd@denx.de>
14284 Date: Sun Jun 14 21:30:39 2009 +0200
14285
14286 Prepare v2009.06
14287
14288 Update CHANGELOG, fix minor coding stylke issue. Update Makefile.
14289
14290 Signed-off-by: Wolfgang Denk <wd@denx.de>
14291
14292 commit c3147c1762f8caf99649051116a2411bdf887c10
14293 Author: Wolfgang Denk <wd@denx.de>
14294 Date: Sun Jun 14 20:31:36 2009 +0200
14295
14296 Revert "SMC911x driver fixed for NFS boot"
14297
14298 This reverts commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43,
14299 which causes compile warnings ("large integer implicitly truncated
14300 to unsigned type") on all systems that use this driver. The warning
14301 results from passing long constants (TX_CFG, RX_CFG) into
14302 smc911x_set_mac_csr() which is declared to accept "unsigned
14303 character" arguments only.
14304
14305 Being close to a release, with nobody available to actually test the
14306 code or the suggested fixes, it seems better to revert the patch.
14307
14308 commit 388517e4b745b00256c2fa201ce7bccb67b4f245
14309 Author: Peter Tyser <ptyser@xes-inc.com>
14310 Date: Fri May 22 10:26:37 2009 -0500
14311
14312 xes: Update Freescale clock code to work with 86xx processors
14313
14314 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14315 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14316
14317 commit 25623937bb81cae788d767e6c59a11c96fc82866
14318 Author: Peter Tyser <ptyser@xes-inc.com>
14319 Date: Fri May 22 10:26:36 2009 -0500
14320
14321 xes: Update Freescale DDR code to work with 86xx processors
14322
14323 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14324 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14325
14326 commit bef3013908bbc68f24084174a3ca86cc2a3eb986
14327 Author: Peter Tyser <ptyser@xes-inc.com>
14328 Date: Fri May 22 10:26:35 2009 -0500
14329
14330 xes: Update Freescale PCI code to work with 86xx processors
14331
14332 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14333 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14334
14335 commit 6442b71b522face775c1c31bd43121db3b4bf7d6
14336 Author: Peter Tyser <ptyser@xes-inc.com>
14337 Date: Fri May 22 10:26:32 2009 -0500
14338
14339 85xx: Add PORBMSR and PORDEVSR shift defines
14340
14341 Add defines similar to those already used for the the 86xx architecture.
14342 This will ease sharing of PCI code between the 85xx and 86xx
14343 architectures.
14344
14345 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14346 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14347
14348 commit 2f21ce4d546d31289ac49a680f78bcc9a792c6ec
14349 Author: Peter Tyser <ptyser@xes-inc.com>
14350 Date: Thu May 21 12:10:00 2009 -0500
14351
14352 fsl/85xx, 86xx: Sync up DMA code
14353
14354 The following changes were made to sync up the DMA code between the 85xx
14355 and 86xx architectures which will make it easier to break out common
14356 8xxx DMA code:
14357
14358 85xx:
14359 - Don't set STRANSINT and SPCIORDER fields in SATR register. These bits
14360 only have an affect when the SBPATMU bit is set.
14361 - Write 0xffffffff instead of 0xfffffff to clear errors in the DMA
14362 status register. We may as well clear all 32 bits of the register...
14363
14364 86xx:
14365 - Add CONFIG_SYS_MPC86xx_DMA_ADDR define to address DMA registers
14366 - Add clearing of errors in the DMA status register when initializing
14367 the controller
14368 - Clear the channel start bit in the DMA mode register after a transfer
14369
14370 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14371 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14372
14373 commit b1f12650d332eadac1306a772cab6096abee6ddd
14374 Author: Peter Tyser <ptyser@xes-inc.com>
14375 Date: Thu May 21 12:09:59 2009 -0500
14376
14377 fsl: Create common fsl_dma.h for 85xx and 86xx cpus
14378
14379 Break out DMA structures for the Freescale MPC85xx and MPC86xx cpus to
14380 reduce a large amount of code duplication
14381
14382 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14383 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14384
14385 commit 3bd8e532b5de20647aeaff94a1cbf33fb8b897b9
14386 Author: Haiying Wang <Haiying.Wang@freescale.com>
14387 Date: Wed May 20 12:30:41 2009 -0400
14388
14389 85xx: Add UEC6 and UEC8 at SGMII mode for MPC8569MDS
14390
14391 On MPC8569MDS board, UCC6 and UCC8 can be configured to work at SGMII mode via
14392 UEM on PB board. Since MPC8569 supports up to 4 Gigabit Ethernet ports, we
14393 disable UEC6 and UEC8 by default.
14394
14395 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14396 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14397
14398 commit e8efef7c1b457442583a8b9d38d8a5b667661616
14399 Author: Haiying Wang <Haiying.Wang@freescale.com>
14400 Date: Thu Jun 4 16:12:42 2009 -0400
14401
14402 drivers/qe: add sgmii support in for UEC driver
14403
14404 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14405 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14406
14407 commit 8e55258f144764de8902e9f078a7ad4c6c022c2f
14408 Author: Haiying Wang <Haiying.Wang@freescale.com>
14409 Date: Thu Jun 4 16:12:41 2009 -0400
14410
14411 qe: Pass in uec_info struct through uec_initialize
14412
14413 The uec driver contains code to hard code configuration information for the uec
14414 ethernet controllers. This patch creates an array of uec_info structures, which
14415 are then parsed by the corresponding driver instance to determine configuration.
14416 It also creates function uec_standard_init() to initialize all UEC interfaces
14417 for 83xx and 85xx.
14418
14419 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14420 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14421
14422 commit 9a6110897fc9282ade598bbba70ad72b940436e3
14423 Author: Haiying Wang <Haiying.Wang@freescale.com>
14424 Date: Thu Jun 4 16:12:40 2009 -0400
14425
14426 fsl: Update the number of ethxaddr in reading system eeprom
14427
14428 We support up to 8 mac addresses in system eeprom, so we define the macro
14429 MAX_NUM_PORTS to limit the mac_count to 8, and update the number of ethxaddr
14430 according to mac_count.
14431
14432 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14433 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14434
14435 commit f82107f637f167a77803c0933f9b24741a91c711
14436 Author: Haiying Wang <Haiying.Wang@freescale.com>
14437 Date: Wed May 20 12:30:37 2009 -0400
14438
14439 85xx: Add RMII support for MPC8569MDS
14440
14441 This patch supports UCC working at RMII mode on PIB board, fixup fdt blob to
14442 support rmii in kernel. It also changes the name of enable_mpc8569mds_qe_mdio to
14443 enalbe_mpc8569mds_qe_uec which is more accurate.
14444
14445 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14446 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14447
14448 commit 750098d33bc362ac4263863e92da158cf011063f
14449 Author: Haiying Wang <Haiying.Wang@freescale.com>
14450 Date: Wed May 20 12:30:36 2009 -0400
14451
14452 85xx: Add UEC3 and UEC4 support for MPC8569MDS
14453
14454 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14455 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14456
14457 commit 4e7b25e4fe777f525e426cbd58c3a3976c564f2e
14458 Author: Haiying Wang <Haiying.Wang@freescale.com>
14459 Date: Wed May 20 12:30:35 2009 -0400
14460
14461 drivers/qe: Add more SNUM number for QE
14462
14463 Some QE chips like 8569 need more SNUM numbers for supporting 4 UECs in RGMII-
14464 1000 mode.
14465
14466 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14467 Acked-by: Timur Tabi <timur@freescale.com>
14468 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14469
14470 commit 7211fbfa18f3061858696150ee6e9e093d9eceae
14471 Author: Haiying Wang <Haiying.Wang@freescale.com>
14472 Date: Thu May 21 15:34:14 2009 -0400
14473
14474 drivers/qe: Change QE RISC ALLOCATION to support 4 RISCs
14475
14476 Also define the QE_RISC_ALLOCATION_RISCs to MACROs instead of using enum, and
14477 define MAX_QE_RISC for QE based silicons.
14478
14479 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14480 Acked-by: Timur Tabi <timur@freescale.com>
14481 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14482
14483 commit b3d7f20f43a0f8d11c65e2f92153b5512b11580c
14484 Author: Haiying Wang <Haiying.Wang@freescale.com>
14485 Date: Wed May 20 12:30:29 2009 -0400
14486
14487 85xx: Add QE clk support
14488
14489 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14490 Acked-by: Timur Tabi <Timur@freescale.com>
14491 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14492
14493 commit 71b358cc26792889bbac35054d8e89d59b3fabc4
14494 Author: Kumar Gala <galak@kernel.crashing.org>
14495 Date: Wed May 20 01:11:33 2009 -0500
14496
14497 85xx: Added MPC8535/E identifiers
14498
14499 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14500
14501 commit 22419d77976bbd0df9fcf45513f1b96bd73e50d1
14502 Author: Kumar Gala <galak@kernel.crashing.org>
14503 Date: Thu May 21 08:36:43 2009 -0500
14504
14505 85xx: Always attempt ethernet device tree fixup
14506
14507 Its reasonable that we may have ethernet devices but dont have drivers
14508 or support enabled for them in u-boot and want the device tree fixed up.
14509 Unconditionally calling the ethernet fixup is fine since if we dont have
14510 ethernet nodes that match (or aliases) we will not attempt to do
14511 anything.
14512
14513 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14514 Acked-by: Timur Tabi <timur@freescale.com>
14515
14516 commit 52d6ad5ecfb22938441c8e3e62935fbd7b0f0920
14517 Author: Haiying Wang <Haiying.Wang@freescale.com>
14518 Date: Thu May 21 15:32:13 2009 -0400
14519
14520 drivers/qe: Rename the camel-case identifiers in uec
14521
14522 Rename riscRx/riscTx to risc_rx/risc_tx to comply with Codingstyle.
14523
14524 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
14525
14526 commit feb7838f979ec2b581df3c791b9ae3284c36bb47
14527 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14528 Date: Fri Apr 3 15:36:13 2009 -0500
14529
14530 85xx: Add P2020DS support
14531
14532 The patch adds support for P2020DS reference platform.
14533 DDR3 interface uses hard-coded initialization rather than SPD
14534 for now and was tested at 667Mhz. Some PIXIS register
14535 definitions and associated code sections need to be fixed.
14536 TSEC1/2/3, NOR flash, MAC/SYS ID EEPROM, PCIE1/2/3 are all
14537 tested under u-boot.
14538
14539 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14540 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
14541 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14542
14543 commit 229549a56d9ae413c00f64fd7c728c6879a1b54b
14544 Author: Stefan Roese <sr@denx.de>
14545 Date: Tue Jun 9 16:57:47 2009 +0200
14546
14547 mpc512x: MPC5121ADS: Add NAND support
14548
14549 This patch adds NAND support to the MPC5121ADS board. Please
14550 note that the image size increased since NAND support didn't
14551 fit in the current image size (256k).
14552
14553 Signed-off-by: Stefan Roese <sr@denx.de>
14554 Signed-off-by: Wolfgang Denk <wd@denx.de>
14555 Cc: Wolfgang Denk <wd@denx.de>
14556
14557 commit 35f2edbb6cad043ccd5ea6e78fe9b7aa21d8395f
14558 Author: Stefan Roese <sr@denx.de>
14559 Date: Tue Jun 9 16:57:03 2009 +0200
14560
14561 nand/mpc512x: Add MPC512x NAND support (NFC)
14562
14563 This patch adds NAND Flash Controller driver for MPC5121 revision 2.
14564 All device features, except hardware ECC and power management, are
14565 supported.
14566
14567 This NFC driver replaces the one orignally posted by John Rigby:
14568
14569 "[PATCH] Freescale NFC NAND driver"
14570
14571 It's a port of the Linux driver version posted by Piotr Ziecik a few
14572 weeks ago. Using this driver has the following advantages (from my
14573 point of view):
14574
14575 - Compatibility with the Linux NAND driver (e.g. ECC usage)
14576 - Better code quality in general
14577 - Resulting U-Boot image is a bit smaller (approx. 3k)
14578 - Better to sync with newer Linux driver versions
14579
14580 The only disadvantage I can see, is that HW-ECC is not supported right
14581 now. But this could be added later (e.g. port from Linux driver after
14582 it's supported there). Using HW-ECC on the MCP5121 NFC has a general
14583 problem because of the ECC usage in the spare area. This collides with
14584 JFFS2 for example.
14585
14586 Signed-off-by: Stefan Roese <sr@denx.de>
14587 Cc: Piotr Ziecik <kosmo@semihalf.com>
14588 Cc: Wolfgang Denk <wd@denx.de>
14589 Cc: John Rigby <jcrigby@gmail.com>
14590 Cc: Scott Wood <scottwood@freescale.com>
14591
14592 commit e53b507cee5d976953134a565c72fd32c967d7dd
14593 Author: Stefan Roese <sr@denx.de>
14594 Date: Tue Jun 9 11:50:40 2009 +0200
14595
14596 mpc512x: Add esd gmbh mecp5123 board support
14597
14598 MECP5123 is a MPC5121E based module by esd gmbh.
14599
14600 Signed-off-by: Stefan Roese <sr@denx.de>
14601 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14602
14603 commit 6bd55cc65d0c3aa84d719518254fb3c650239ed9
14604 Author: Stefan Roese <sr@denx.de>
14605 Date: Tue Jun 9 11:50:05 2009 +0200
14606
14607 mcp512x: Add macros for SCFR LPC divisor access
14608
14609 Thos macros will be used by the esd mecp5123 board.
14610
14611 Signed-off-by: Stefan Roese <sr@denx.de>
14612
14613 commit c60dc8527dbb2a1318c03bc18bdebcfbd0164551
14614 Author: Stefan Roese <sr@denx.de>
14615 Date: Mon Jun 8 09:38:07 2009 +0200
14616
14617 mpc512x: Fix problem with I2C access before relocation
14618
14619 This is needed for the upcoming esd MECP5123 board port which uses
14620 I2C EEPROM for environment storage.
14621
14622 Signed-off-by: Stefan Roese <sr@denx.de>
14623 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14624 Acked-by: Heiko Schocher<hs@denx.de>
14625
14626 commit 58f10460b05e0928d986b15edd4f2e1e99403f7e
14627 Author: Stefan Roese <sr@denx.de>
14628 Date: Thu Jun 4 13:35:39 2009 +0200
14629
14630 74xx_7xx: CPCI750: Add CPCI adapter/target support
14631
14632 The CPCI750 can be built as CPCI host or adapter/target board. This patch
14633 adds support for runtime detection of those variants.
14634
14635 Signed-off-by: Stefan Roese <sr@denx.de>
14636 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14637
14638 commit ae7a2739d7a0704437376e229bb21940952c55be
14639 Author: Stefan Roese <sr@denx.de>
14640 Date: Fri Jun 5 05:45:41 2009 +0200
14641
14642 74xx_7xx: CPCI750: Enable access to PCI function > 0
14643
14644 The Marvell bridge 64360 supports serveral PCI functions, not only 0. This
14645 patch enables access to those functions.
14646
14647 Signed-off-by: Stefan Roese <sr@denx.de>
14648 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14649
14650 commit e5b563e9ec54c3f6d702c8fa2b711b4a6150243a
14651 Author: Stefan Roese <sr@denx.de>
14652 Date: Thu Jun 4 13:35:37 2009 +0200
14653
14654 74xx_7xx: CPCI750: Minor coding style cleanup of cpci750.c
14655
14656 Signed-off-by: Stefan Roese <sr@denx.de>
14657 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14658
14659 commit 0e5ef07d0d91bd3d87ebea0534f538561aa974d5
14660 Author: Stefan Roese <sr@denx.de>
14661 Date: Thu Jun 4 13:35:36 2009 +0200
14662
14663 74xx_7xx: CPCI750: Add loadpci command
14664
14665 This command is used to load/boot an OS-image which is transferred from
14666 the CPCI host to the CPCI target/adapter.
14667
14668 Signed-off-by: Stefan Roese <sr@denx.de>
14669 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14670
14671 commit 0a14d6b8f4d21ff59a9b7686a49a77069a9fcd2a
14672 Author: Stefan Roese <sr@denx.de>
14673 Date: Thu Jun 4 13:35:35 2009 +0200
14674
14675 74xx_7xx: CPCI750: Add commandline editing/history
14676
14677 Signed-off-by: Stefan Roese <sr@denx.de>
14678 Cc: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
14679
14680 commit 60cfe87bd39e6f07f2b92eb4bff82bfd105f4724
14681 Author: Stefan Roese <sr@denx.de>
14682 Date: Thu Jun 4 16:55:34 2009 +0200
14683
14684 UBI: Add compile-time check for correct malloc area configuration
14685
14686 UBI is quite memory greedy and requires at least approx. 512k of malloc
14687 area. This patch adds a compile-time check, so that boards will not
14688 build with less memory reserved for this area (CONFIG_SYS_MALLOC_LEN).
14689
14690 Signed-off-by: Stefan Roese <sr@denx.de>
14691
14692 commit 7ce6031afc8671c8b47c6135b3678d43fcd02852
14693 Author: Prafulla Wadaskar <prafulla@marvell.com>
14694 Date: Mon Apr 6 21:24:43 2009 +0530
14695
14696 sf: new Macronix MX25xx SPI flash driver
14697
14698 Added macronix SF driver for MTD framework
14699 MX25L12805D is supported and tested
14700 TBD: sector erase implementation, other deivces support
14701
14702 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
14703 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14704
14705 commit 2a6cc58869305f346e389eefdfa96dea5146cb0c
14706 Author: Todor I Mollov <tmollov@ucsd.edu>
14707 Date: Sat Apr 4 07:14:44 2009 -0400
14708
14709 sf: atmel: implement power-of-two write/erase funcs
14710
14711 Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
14712 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
14713 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14714
14715 commit 4bc6eb79be2a7317425575184324b94e3b43fbc2
14716 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14717 Date: Mon May 25 17:23:18 2009 +0530
14718
14719 mpc85xx: 8536ds: Add USB related CONFIGs
14720
14721 This patch adds CONFIGs for enabling USB in mpc8536ds and also
14722 adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
14723 Copyright.
14724
14725 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14726 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14727
14728 commit 6823e9b01290977c4d9c90381459c01f66e12e79
14729 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14730 Date: Mon May 25 17:23:17 2009 +0530
14731
14732 mpc83xx: 8315erdb: Add USB related CONFIGs
14733
14734 This patch adds CONFIGs for enabling USB in mpc8315erdb and also
14735 adds usb_phy_type in CONFIG_EXTRA_ENV_SETTINGS. Also revamps its
14736 Copyright.
14737
14738 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14739 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14740
14741 commit a07bf180efc3c0de4a89a3bd49a7c7584dfb95a8
14742 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14743 Date: Thu May 21 17:32:48 2009 +0530
14744
14745 mpc85xx: USB: Add support
14746
14747 The following patch adds 85xx-specific USB support and also
14748 revamps Copyright in immap_85xx.h
14749
14750 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14751 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14752
14753 commit 4ef01010aa4799c759d75e67007fdd3a38c88c8a
14754 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14755 Date: Mon May 25 17:23:16 2009 +0530
14756
14757 mpc83xx: USB: Reorganized its support
14758
14759 The following patch reorganizes/reworks the USB support for mpc83xx
14760 as under:-
14761
14762 * Moves the 83xx USB clock init from drivers/usb/host/ehci-fsl.c to
14763 cpu/mpx83xx/cpu_init.c
14764
14765 * Board specific usb_phy_type is read from the environment
14766
14767 * Adds USB EHCI specific structure in include/usb/ehci-fsl.h
14768
14769 * Copyrights revamped in most of the following files
14770
14771 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14772 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14773
14774 commit ed90d2c87158e5114b6009fa95bb6417e4b27b3e
14775 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14776 Date: Thu May 21 17:32:27 2009 +0530
14777
14778 mpc8xxx: USB: Relocates ehci-fsl.h to include/usb
14779
14780 The following patch moves 8xxx-specifc USB #defines from
14781 drivers/usb/host/ehci-fsl.h to include/usb.
14782
14783 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14784 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14785
14786 commit cfd39cdf9422d3d25e9b3c058865f4c1f66f34da
14787 Author: Vivek Mahajan <vivek.mahajan@freescale.com>
14788 Date: Thu May 21 17:32:15 2009 +0530
14789
14790 mpc8xxx: USB: Removed reenablement of its interface
14791
14792 To prepare for the 85xx USB support, which requires interface enablement
14793 only once in (specified) order, no different than instructions for
14794 enabling the interface under 83xx. It is unknown why the original author
14795 enabled the interface twice (checked for references in errata, etc).
14796
14797 Signed-off-by: Vivek Mahajan <vivek.mahajan@freescale.com>
14798 Signed-off-by: Remy Bohmer <linux@bohmer.net>
14799
14800 commit 2c7920afaf96d9779304202cd8a355b4f7576a83
14801 Author: Peter Tyser <ptyser@xes-inc.com>
14802 Date: Fri May 22 17:23:25 2009 -0500
14803
14804 83xx: Replace CONFIG_MPC83[0-9]X with MPC83[0-9]x
14805
14806 Use the standard lowercase "x" capitalization that other Freescale
14807 architectures use for CPU defines to prevent confusion and errors
14808
14809 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14810 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14811
14812 commit 0f898604945af4543c1525fc33b6bae621a3b805
14813 Author: Peter Tyser <ptyser@xes-inc.com>
14814 Date: Fri May 22 17:23:24 2009 -0500
14815
14816 83xx: Replace CONFIG_MPC83XX with CONFIG_MPC83xx
14817
14818 Use the standard lowercase "xx" capitalization that other Freescale
14819 architectures use for CPU defines to prevent confusion and errors
14820
14821 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
14822 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
14823
14824 commit ba4feae90ca71de1681d5808f17e73224d8f03c4
14825 Author: Stefan Roese <sr@denx.de>
14826 Date: Tue Jun 2 16:53:16 2009 +0200
14827
14828 mpc512x: Use serial_setbrg() in serial_init() to not duplicate the code
14829
14830 This patch removes the duplicated code for baudrate generator configuration
14831 in the PSC serial_init() implementation by calling serial_setbrg() instead
14832 of duplicating the code.
14833
14834 Signed-off-by: Stefan Roese <sr@denx.de>
14835
14836 commit b8c1d6a54ff8195488b68e163de8ec31f1603496
14837 Author: Stefan Roese <sr@denx.de>
14838 Date: Tue Jun 2 16:53:15 2009 +0200
14839
14840 mpc512x: Fix PSC divisor calculation for baudrate setting
14841
14842 The wrong input frequency was used in serial_setbrg(). This patch fixes
14843 this by using ips_clk as input frequency for the PSC baudrate generator.
14844
14845 Signed-off-by: Stefan Roese <sr@denx.de>
14846
14847 commit 52568c3654b2b257016d52167805ae132faac14e
14848 Author: Wolfgang Denk <wd@denx.de>
14849 Date: Sat May 16 10:47:46 2009 +0200
14850
14851 MPC512x: add support for ARIA board
14852
14853 ARIA is a MPC5121E based COM Express module by Dave/DENX.
14854
14855 Signed-off-by: Wolfgang Denk <wd@denx.de>
14856 Cc: John Rigby <jcrigby@gmail.com>
14857
14858 commit 3b74e7ec58e2cc352b0a396a614065cfeb8d138f
14859 Author: Wolfgang Denk <wd@denx.de>
14860 Date: Sat May 16 10:47:45 2009 +0200
14861
14862 MPC512x: remove include/mpc512x.h
14863
14864 Move needed definitions (register descriptions etc.) from
14865 include/mpc512x.h into include/asm-ppc/immap_512x.h.
14866
14867 Instead of using a #define'd register offset, use a function that
14868 provides the PATA controller's base address.
14869
14870 All the rest of include/mpc512x.h are register offset definitions
14871 which can be eliminated by proper use of C structures.
14872
14873 There are only a few register offsets remaining that are needed in
14874 cpu/mpc512x/start.S; for these we provide cpu/mpc512x/asm-offsets.h
14875 which is intended as a temporary workaround only. In a later patch
14876 this file will be removed, too, and then auto-generated from the
14877 respective C structs.
14878
14879 Signed-off-by: Wolfgang Denk <wd@denx.de>
14880 Cc: John Rigby <jcrigby@gmail.com>
14881
14882 commit a927e491b2a326c1e9c4313e3ce4042988422697
14883 Author: Wolfgang Denk <wd@denx.de>
14884 Date: Sat May 16 10:47:44 2009 +0200
14885
14886 MPC512x FEC: get rid of duplicated struct ethernet_regs
14887
14888 Use existing struct fec512x instead.
14889
14890 Signed-off-by: Wolfgang Denk <wd@denx.de>
14891 Cc: John Rigby <jcrigby@gmail.com>
14892 Acked-by: Ben Warren <biggerbadderben@gmail.com>
14893
14894 commit 843efb1192cc8fd4f904a23dbab4e0fe3e1c5bc2
14895 Author: Wolfgang Denk <wd@denx.de>
14896 Date: Sat May 16 10:47:43 2009 +0200
14897
14898 MPC512x: use I/O accessors instead of pointer accesses
14899
14900 This commit changes the MPC512x code to use I/O accessor calls (i.e.
14901 out_*() and in_*()) instead of using deprecated pointer accesses.
14902
14903 Signed-off-by: Wolfgang Denk <wd@denx.de>
14904 Cc: John Rigby <jcrigby@gmail.com>
14905
14906 commit 19dc7e179268be148e550c36203208c662610d76
14907 Author: Wolfgang Denk <wd@denx.de>
14908 Date: Sat May 16 10:47:42 2009 +0200
14909
14910 MPC512x: add more hardware description to immap_512x.h
14911
14912 - add GPIO module description
14913 - add Address Latch Timing Register description
14914 - add IO Control Memory Map
14915 - add FEC Memory Map
14916
14917 Also change board/freescale/mpc5121ads/mpc5121ads.c and
14918 cpu/mpc512x/iopin.c as needed.
14919
14920 Signed-off-by: Wolfgang Denk <wd@denx.de>
14921 Cc: John Rigby <jcrigby@gmail.com>
14922
14923 commit 72601d04fdfdd4c7597afcf1f6aab654bd99366c
14924 Author: Wolfgang Denk <wd@denx.de>
14925 Date: Sat May 16 10:47:41 2009 +0200
14926
14927 Rename ads5121 board into mpc5121ads
14928
14929 We rename the board so we use a consistent name in U-Boot and in
14930 Linux. Also, we use this opportunity to move the board into the
14931 Freecale vendor directory.
14932
14933 Signed-off-by: Wolfgang Denk <wd@denx.de>
14934 Cc: John Rigby <jcrigby@gmail.com>
14935
14936 commit debf87415579c0f50aab9e0832976d4506babe0f
14937 Author: Wolfgang Denk <wd@denx.de>
14938 Date: Sat May 16 10:47:40 2009 +0200
14939
14940 cpu/mpc512x/diu.c: fix warning: assignment from incompatible pointer type
14941
14942 Signed-off-by: Wolfgang Denk <wd@denx.de>
14943 Cc: John Rigby <jcrigby@gmail.com>
14944
14945 commit 8b251263191ec554967dd1add6237c1ba7f7eb25
14946 Author: Wolfgang Denk <wd@denx.de>
14947 Date: Sat May 16 10:47:39 2009 +0200
14948
14949 cpu/mpc512x/pci.c: minor coding style cleanup
14950
14951 Get rid of variable declaration in the middle of the code.
14952
14953 Signed-off-by: Wolfgang Denk <wd@denx.de>
14954 Cc: John Rigby <jcrigby@gmail.com>
14955
14956 commit de26ef99bddbce4ed225f93afcf0bee99c3b6f87
14957 Author: Wolfgang Denk <wd@denx.de>
14958 Date: Sat May 16 10:47:38 2009 +0200
14959
14960 mpc512x: Move common files to share them by several boards
14961
14962 We will soon see several new MPC521x based boards added. This patch
14963 moves files that are not board specific to a common directory so they
14964 can be shared by all such ports. It also splits off common IDE code
14965 into a new file, cpu/mpc512x/ide.c .
14966
14967 Signed-off-by: Wolfgang Denk <wd@denx.de>
14968 Cc: John Rigby <jcrigby@gmail.com>
14969
14970 commit 03e069dc0a765d506f78a68319acf33d432e035b
14971 Author: Wolfgang Denk <wd@denx.de>
14972 Date: Sat May 16 10:47:37 2009 +0200
14973
14974 mpc512x: change cpu/mpc512x/Makefile to use Kconfig style
14975
14976 Signed-off-by: Wolfgang Denk <wd@denx.de>
14977 Cc: John Rigby <jcrigby@gmail.com>
14978
14979 commit a89c33db96a1e55319a286dd4c3c05ca64ac6bfd
14980 Author: Wolfgang Denk <wd@denx.de>
14981 Date: Sun May 24 17:06:54 2009 +0200
14982
14983 General help message cleanup
14984
14985 Many of the help messages were not really helpful; for example, many
14986 commands that take no arguments would not print a correct synopsis
14987 line, but "No additional help available." which is not exactly wrong,
14988 but not helpful either.
14989
14990 Commit ``Make "usage" messages more helpful.'' changed this
14991 partially. But it also became clear that lots of "Usage" and "Help"
14992 messages (fields "usage" and "help" in struct cmd_tbl_s respective)
14993 were actually redundant.
14994
14995 This patch cleans this up - for example:
14996
14997 Before:
14998 => help dtt
14999 dtt - Digital Thermometer and Thermostat
15000
15001 Usage:
15002 dtt - Read temperature from digital thermometer and thermostat.
15003
15004 After:
15005 => help dtt
15006 dtt - Read temperature from Digital Thermometer and Thermostat
15007
15008 Usage:
15009 dtt
15010
15011 Signed-off-by: Wolfgang Denk <wd@denx.de>
15012
15013 commit 94796d8544d4248028141bad11c6a74b840e9d6e
15014 Author: Wolfgang Denk <wd@denx.de>
15015 Date: Sun May 24 19:17:29 2009 +0200
15016
15017 Make "usage" messages more helpful.
15018
15019 In case of incorrect command invocations U-Boot used to print pretty
15020 useless "usage" messages, for example:
15021
15022 => nand markbad
15023 Usage:
15024 nand - NAND sub-system
15025
15026 In the result, the user would have to run the "help" command to get
15027 the (available) information about correct command usage. Change this,
15028 so that this information gets always printed.
15029
15030 Note that this changes the user interface of all commands, but
15031 hopefully to the better.
15032
15033 Signed-off-by: Wolfgang Denk <wd@denx.de>
15034
15035 commit 4c94f6c54bbc4dc5f418da01d8ec01e2adf636be
15036 Author: Mike Frysinger <vapier@gentoo.org>
15037 Date: Sun May 24 02:26:19 2009 -0400
15038
15039 nvedit: speed up printing of environment
15040
15041 The printing code would check the same environment byte multiple times and
15042 write to the console one byte at a time. For some devices (such as the
15043 Blackfin JTAG console which operates in 8 bytes at a time), this is pretty
15044 damned slow. So create a small 16 byte buffer to fill up and send to puts
15045 as needed. In the process, unify the different print functions, shrink
15046 the resulting code (source and compiled), and avoid excess env reads as
15047 those too can be somewhat expensive depending on the board.
15048
15049 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15050
15051 commit 3112030a430553768de5d30c05bedf8710784452
15052 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15053 Date: Fri May 22 19:28:52 2009 +0200
15054
15055 config.mk: remove un-needed REMOTE_BUILD check
15056
15057 as $(obj) is empty when in tree build
15058
15059 %.s: %.S
15060 $(CPP) $(AFLAGS) -o $@ $<
15061
15062 and
15063
15064 $(obj)%.s: %.S
15065 $(CPP) $(AFLAGS) -o $@ $<
15066
15067 are the same
15068
15069 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15070 Acked-by: Mike Frysinger <vapier@gentoo.org>
15071
15072 commit 651351fe980b20217b014b9a888398f18d77951c
15073 Author: Tom Rix <Tom.Rix@windriver.com>
15074 Date: Wed May 20 07:55:41 2009 -0500
15075
15076 FAT replace compare_sign with strncmp.
15077
15078 The static function compare_sign is only used to compare the fs_type string
15079 and does not do anything more than what strncmp does.
15080
15081 The addition of the trailing '\0' to fs_type, while legal, is not needed
15082 because the it is never printed out and strncmp does not depend on NULL
15083 terminated strings.
15084
15085 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15086
15087 commit ecb1dc892297d5d99876907328fed732feefeab2
15088 Author: Mike Frysinger <vapier@gentoo.org>
15089 Date: Wed May 20 04:35:14 2009 -0400
15090
15091 Add support for Linux-like kallsysms
15092
15093 The kernel stores address<->symbol names in it so things can be decoded at
15094 runtime. Do it in U-Boot, and we get nice symbol decoding when crashing.
15095
15096 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
15097
15098 commit 36c9169aa6f79ddf604a3bca64e145654f94888b
15099 Author: Wolfgang Denk <wd@denx.de>
15100 Date: Sun May 17 16:01:54 2009 +0200
15101
15102 cmd_mtdparts.c: allow to omit definitions for default settings
15103
15104 There is actually no good reason to enforce that all board
15105 configuations must define default settings for "mtdids" and
15106 "mtdparts". Actually this may be difficult to handle, especially on
15107 boards where different sizes of flash chips can be fit, so there is no
15108 real "default" partition map for all boards.
15109
15110 Lift this arbitrary limitation.
15111
15112 Signed-off-by: Wolfgang Denk <wd@denx.de>
15113
15114 commit 864aa034f3a0e10ce710e8bbda171df3cab59414
15115 Author: Stefan Roese <sr@denx.de>
15116 Date: Tue May 12 14:31:56 2009 +0200
15117
15118 cmd_mtdparts: Move to common handling of FLASH devices via MTD layer
15119
15120 This patch removes all references to the direct CFI FLASH interface
15121 (via flash_info[]). Now that all FLASH types currently handled in
15122 mtdparts are available (if selected, see below) via the MTD infrastructure.
15123 This is NOR, NAND and OneNAND right now. This can be achieved by defining
15124 the following options:
15125
15126 CONFIG_MTD_DEVICE (for all FLASH types)
15127
15128 plus
15129
15130 CONFIG_FLASH_CFI_MTD (for NOR FLASH)
15131
15132 So we need to add those defines to the board config headers currently
15133 using the mtdparts commands. This is done via another patch, so
15134 we shouldn't break mtdparts compatibility.
15135
15136 One big advantage from this solution is that the cmd_mtdparts.c is
15137 *much* cleaner now. Lot's of #ifdef's are removed and the code itself
15138 is smaller. Additionally the newly added MDT concatenation feature
15139 can new be used via the mtdparts infrastructure and therefor via
15140 UBI etc.
15141
15142 Signed-off-by: Stefan Roese <sr@denx.de>
15143 Cc: Ladislav Michl <ladis@linux-mips.org>
15144 Cc: Scott Wood <scottwood@freescale.com>
15145
15146 commit d558107c18708050f05b6639b2192efb67c905dc
15147 Author: Stefan Roese <sr@denx.de>
15148 Date: Tue May 12 14:31:18 2009 +0200
15149
15150 mtd: Introduce CONFIG_MTD_DEVICE to select compilation of mtdcore.o
15151
15152 This new define enables mtdcore.c compilation and with this we can
15153 select the MTD device infrastructure needed for the reworked mtdparts
15154 command.
15155
15156 We now have the 2 MTD infrastructure defines, CONFIG_MTD_DEVICE and
15157 CONFIG_MTD_PARTITIONS. CONFIG_MTD_DEVICE is needed (as explained above)
15158 for the "mtdparts" command and CONFIG_MTD_PARTITIONS is needed for UBI.
15159
15160 Signed-off-by: Stefan Roese <sr@denx.de>
15161 Cc: Scott Wood <scottwood@freescale.com>
15162
15163 commit 942556a92a8c1eb1bd76584a5143f6f57dcb25ad
15164 Author: Stefan Roese <sr@denx.de>
15165 Date: Tue May 12 14:32:58 2009 +0200
15166
15167 mtd: MTD related config header changes (mtdparts command)
15168
15169 By changing the cmd_mtdparts to only use the MTD infrastructure and
15170 not the direct interface to the CFI NOR FLASH driver we now need
15171 to add the MTD infrastructure to all boards using those mtdparts
15172 commands. This patch adds those components:
15173
15174 CONFIG_MTD_DEVICE (for all FLASH types)
15175
15176 plus
15177
15178 CONFIG_FLASH_CFI_MTD (for NOR FLASH)
15179
15180 To all board maintainers: Please test this on your platforms and
15181 report any problems/issues found. Thanks.
15182
15183 Signed-off-by: Stefan Roese <sr@denx.de>
15184 Cc: Wolfgang Denk <wd@denx.de>
15185 Cc: Ron Madrid <info@sheldoninst.com>
15186 Cc: Georg Schardt <schardt@team-ctech.de>
15187 Cc: Michal Simek <monstr@monstr.eu>
15188 Cc: Ladislav Michl <ladis@linux-mips.org>
15189 Cc: Martin Krause <martin.krause@tqs.de>
15190 Cc: Gary Jennejohn <garyj@denx.de>
15191 Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
15192
15193 commit 8d2effea23e938631126a7888008a0637e13b389
15194 Author: Stefan Roese <sr@denx.de>
15195 Date: Mon May 11 16:03:55 2009 +0200
15196
15197 mtd: Update MTD infrastructure to support 64bit device size
15198
15199 This patch brings the U-Boot MTD infrastructure in sync with the current
15200 Linux MTD version (2.6.30-rc3). Biggest change is the 64bit device size
15201 support and a resync of the mtdpart.c file which has seen multiple fixes
15202 meanwhile.
15203
15204 Signed-off-by: Stefan Roese <sr@denx.de>
15205 Cc: Scott Wood <scottwood@freescale.com>
15206 Cc: Kyungmin Park <kmpark@infradead.org>
15207
15208 commit 0a57265533c412adf6024f4b4955141f4346b2b9
15209 Author: Stefan Roese <sr@denx.de>
15210 Date: Tue May 12 14:29:39 2009 +0200
15211
15212 mtd: Add MTD concat support to concatenate multiple MTD NOR devices
15213
15214 This patch adds concatenation support to the U-Boot MTD infrastructure.
15215 By enabling CONFIG_MTD_CONCAT this MTD CFI wrapper will concatenate
15216 all found NOR devices into one single MTD device. This can be used by
15217 e.g by UBI to access a partition that spans over multiple NOR chips.
15218
15219 Signed-off-by: Stefan Roese <sr@denx.de>
15220
15221 commit 55e0ed6078b10b0d425b6a0677f38a015c277df6
15222 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15223 Date: Sat Apr 25 14:57:52 2009 +0200
15224
15225 make MODEM SUPPORT generic instead of duplicate it
15226
15227 and fix comment
15228
15229 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15230
15231 Adjusted Copyright message.
15232
15233 Signed-off-by: Wolfgang Denk <wd@denx.de>
15234
15235 commit a30f519bd0cde78ba46b424314de94fdab863726
15236 Author: Tom Rix <Tom.Rix@windriver.com>
15237 Date: Tue Jun 2 20:53:56 2009 -0500
15238
15239 ZOOM2 detect the version of the zoom2 board at runtime.
15240
15241 There are currently 3 versions of the zoom2 board.
15242 The production board, that is currently being released.
15243 The beta board, similar in form to the production board but not released.
15244 The alpha board, a set of PCBs with a very limited circulation.
15245
15246 GPIO 94 is used to determine the version of the board. If GPIO 94 is clear,
15247 the board is a production board, otherwise it is a beta board.
15248
15249 The alpha board will likely be mistaken for a beta board. An alpha board
15250 was unavailible for testing.
15251
15252 This has been tested on the beta and production boards.
15253
15254 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15255 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15256
15257 commit 718763c4745fd3d987a5576d2a67325e9444f9d4
15258 Author: Tom Rix <Tom.Rix@windriver.com>
15259 Date: Wed Jun 3 01:53:57 2009 -0500
15260
15261 Beagle Convert the board version detection to use the OMAP3 GPIO interface.
15262
15263 There is no new functionality in the change.
15264
15265 This change is a conversion from the using raw register access to using
15266 the OMAP3 GPIO API described in doc/README.omap3.
15267
15268 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15269 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15270
15271 commit 7caa13fdd2d3dc957b4e0a228810a3a4a8ba499b
15272 Author: Tom Rix <Tom.Rix@windriver.com>
15273 Date: Wed Jun 3 01:53:55 2009 -0500
15274
15275 Fix a typo in the instructions on using omap3's gpio interface.
15276
15277 Using the example for reading a gpio, shows the problem.
15278 NULL should be the gpio number.
15279
15280 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15281 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15282
15283 commit 0c9520efd651ce13451654a35307ec87d4a13a69
15284 Author: Tom Rix <Tom.Rix@windriver.com>
15285 Date: Fri May 29 18:57:32 2009 -0500
15286
15287 ZOOM2 Define GPIO banks used.
15288
15289 Enable the function and interface clocks for banks 2,3,5 and 6.
15290
15291 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15292 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15293
15294 commit 708cfb74b7c6df9c37d3c48988a154be79daefeb
15295 Author: Tom Rix <Tom.Rix@windriver.com>
15296 Date: Fri May 29 18:57:31 2009 -0500
15297
15298 OMAP3 Turn on the GPIO bank clocks
15299
15300 The function and interface clocks for each GPIO bank, except the first, must
15301 be explicitly turned on. These are controlled by the config level defines
15302 CONFIG_OMAP3_GPIO_n where n is from 2 to 6.
15303
15304 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15305 Acked-by: Dirk Behme <dirk.behme@googlemail.com>
15306
15307 commit 59272620c24549b5bcd03c94ba12ec302c1476a2
15308 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15309 Date: Thu Mar 26 15:26:01 2009 -0400
15310
15311 Coldfire M5271: Activate u-boot system timer interrupt.
15312
15313 This patch assigns the u-boot system timer interrupt to
15314 interrupt level 3, priority 6. Without this patch the interrupt
15315 will be a level 0, priority 0, which disables it and cause
15316 u-boot functions that relies on the timer (e.g. sleep command)
15317 to never return.
15318
15319 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15320
15321 commit dc26965ad3acdfb18780361d77a276b2843a90af
15322 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15323 Date: Mon Mar 23 13:35:48 2009 -0400
15324
15325 Compier warning cleanup
15326
15327 Follow up to git commit: 19b5b533ccd522abeb501d510750693c35e20456
15328
15329 Cleanup on compiler warnings on unused variables now that
15330 bd->bi_enetaddr is no longer used.
15331
15332 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15333
15334 commit 42a83765d54f042b4079e05a3438789542429981
15335 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15336 Date: Fri Mar 20 15:30:10 2009 -0400
15337
15338 Adds WATCHDOG_RESET() function call to lib_m68k dtimer_interrupt.
15339
15340 Ported from lib_ppc/interrupts.c, this adds the ability for
15341 the coldfire system timer to auto-reset the watchdog when
15342 dtimer_interrupts is called.
15343
15344 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
15345
15346 commit a24d96e40e1ca66dde6e6c158e7ecffafc5a2199
15347 Author: Prafulla Wadaskar <prafulla@marvell.com>
15348 Date: Sun May 31 14:53:20 2009 +0200
15349
15350 arch_misc_init support for ARM architectures
15351
15352 This patch is required for Kirkwood support
15353 may be used by other ARM architectures
15354
15355 Signed-off-by: Prafulla Wadaskar <prafulla@marvell.com>
15356
15357 commit b2403589b4d9996394bafc73eca3623f43ac2c31
15358 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15359 Date: Sun May 31 14:53:18 2009 +0200
15360
15361 at91: move cpu info print to cpu
15362
15363 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15364
15365 commit b32e189079fa16e1b647ac6b949fd4e0a9435343
15366 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15367 Date: Sun May 31 12:44:46 2009 +0200
15368
15369 at91: move cpu name define to arm/arch/ cpu header
15370
15371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15372
15373 commit 5bb59b3c906ee01adfaac9565443e5236a793079
15374 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15375 Date: Sun May 31 12:44:45 2009 +0200
15376
15377 at91: extract reset from timer
15378
15379 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15380
15381 commit 61cf851b09cf8b67009ec11fc47c16add6b142a5
15382 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15383 Date: Sun May 31 12:44:43 2009 +0200
15384
15385 omap24xx: rename reset file
15386
15387 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15388
15389 commit 9d4fc99dbdbfda1260aad478e83fca7cdf0e1a32
15390 Author: Dirk Behme <dirk.behme@googlemail.com>
15391 Date: Sun May 31 12:44:42 2009 +0200
15392
15393 OMAP3: Fix CKE1 MUX setting to allow self-refresh
15394
15395 The Beagle rev Cx and Overo boards are using both SDRC CSes. The MUX
15396 setting is needed for the second CS clock signal to allow the 2 RAM
15397 parts to be put in self-refresh correctly. This also works on rev B
15398 Beagle boards with 128M of RAM.
15399
15400 From: Steve Sakoman <steve@sakoman.com>
15401 From: Jean Pihet <jpihet@mvista.com>
15402 Signed-off-by: Jean Pihet <jpihet@mvista.com>
15403 Signed-off-by: Steve Sakoman <steve@sakoman.com>
15404 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15405
15406 commit 3962c4f9fc4482a6547f3c3d3d5e986e625abb8a
15407 Author: Dirk Behme <dirk.behme@googlemail.com>
15408 Date: Sun May 31 12:44:41 2009 +0200
15409
15410 OMAP3: Zoom2: Enable Board and CPU info
15411
15412 With other OMAP3 boards we recently switched to CPU and Board
15413 info API. From parallel merge, this is missing for Zoom2.
15414 Enable it for Zoom2, too.
15415
15416 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15417 Acked-by: Tom Rix <Tom.Rix@windriver.com>
15418
15419 commit 83ae698ff26b81b569ca32f7f2b008ad0da15e66
15420 Author: Tom Rix <Tom.Rix@windriver.com>
15421 Date: Sun May 31 12:44:39 2009 +0200
15422
15423 ZOOM2 Add led support.
15424
15425 This patch controls the large LED on the top left of the zoom2.
15426
15427 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15428
15429 commit 660888b7fb8840ce169dcd2589e49ab44c46b87b
15430 Author: Tom Rix <Tom.Rix@windriver.com>
15431 Date: Sun May 31 12:44:37 2009 +0200
15432
15433 ZOOM2 Add serial support.
15434
15435 Zoom2 serial is in general supplied by one of the 4 UARTS on the debug board.
15436 The default serial is from the USB connector on left side of the debug board.
15437 The USB connector will produce 2 of the 4 UARTS. On your host pick the first
15438 enumeration.
15439
15440 The details of the setting of the serial gpmc setup are not available.
15441 The values were provided by another party.
15442
15443 The serial port set up is the same with Zoom1.
15444 Baud rate 115200, 8 bit data, no parity, 1 stop bit, no flow.
15445
15446 The kernel bootargs are
15447 console=ttyS3,115200n8
15448
15449 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15450
15451 commit 3ea201b016ab259a5ac8824af767569522768c47
15452 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15453 Date: Sun May 31 12:44:27 2009 +0200
15454
15455 lh7a40x: move serial driver to drivers/serial
15456
15457 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15458
15459 commit 379be585eb2343d8814a5cee5fb3da930d846bee
15460 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15461 Date: Sat May 16 22:48:46 2009 +0200
15462
15463 pxa: move serial driver to drivers/serial
15464
15465 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15466
15467 commit ad7e8aac6920f8b8a85b3cc2e93bca7458e99aa1
15468 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15469 Date: Sat May 9 13:21:19 2009 +0200
15470
15471 arm: remove cpu_init
15472
15473 move s3c44b0 to arch_cpu_init and as noone use cpu_init remove it
15474
15475 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15476
15477 commit c358d9c3f16571e8f825e81b75eaf32e228cb669
15478 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15479 Date: Sat May 9 13:21:18 2009 +0200
15480
15481 arm: unify interrupt init
15482
15483 all arm init the IRQ stack the same way
15484 so unify it in lib_arm/interrupts.c and then call arch specific interrupt init
15485
15486 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15487
15488 commit 10a451cd57cffbca875c97bbd8929059c5627ec6
15489 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15490 Date: Fri May 8 20:24:12 2009 +0200
15491
15492 arm: unify linker script
15493
15494 all arm boards except a few use the same cpu linker script
15495 so move it to cpu/$(CPU)
15496
15497 that could be overwrite in following order
15498 SOC
15499 BOARD
15500 via the corresponding config.mk
15501
15502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15503
15504 commit 9475c63c7855edd863c93a9bb0f4b8e240d9d212
15505 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15506 Date: Sat May 16 10:02:05 2009 +0200
15507
15508 afeb9260: fix macb device init
15509
15510 uses PA10, PA11 for ETX2 and ETX3.
15511
15512 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15513
15514 commit 1bbae2b816d4ed38db2ebf42166a973b1ffc0df7
15515 Author: Stefan Roese <sr@denx.de>
15516 Date: Wed May 27 10:34:32 2009 +0200
15517
15518 ppc4xx: Remove PCI async bootup message if PCI is not used
15519
15520 Signed-off-by: Stefan Roese <sr@denx.de>
15521
15522 commit a3455c00510c5abf1e91743c4a02d8393b6df18d
15523 Author: Wolfgang Denk <wd@denx.de>
15524 Date: Fri May 15 09:19:52 2009 +0200
15525
15526 TQM834x: use buffered writes to accelerate writing to flash
15527
15528 Also enable display of 'E'mpty sectors in "flinfo" output.
15529
15530 Signed-off-by: Wolfgang Denk <wd@denx.de>
15531 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15532
15533 commit 4681e673a51c48f4c096aa3c8fae5e6217ffd58d
15534 Author: Wolfgang Denk <wd@denx.de>
15535 Date: Thu May 14 23:18:34 2009 +0200
15536
15537 TQM834x: add FDT support
15538
15539 Signed-off-by: Wolfgang Denk <wd@denx.de>
15540 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15541
15542 commit 929b79a0b5e48303ab04aae9d0abceb0c707f111
15543 Author: Wolfgang Denk <wd@denx.de>
15544 Date: Thu May 14 23:18:33 2009 +0200
15545
15546 TQM834x: fix environment size; add redundant env.
15547
15548 Also reserve more space for U-Boot as it will probably grow soon.
15549
15550 Signed-off-by: Wolfgang Denk <wd@denx.de>
15551 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15552
15553 commit 2ae0f35fd60c7345446835b95a4daff356e1f031
15554 Author: Thomas Lange <thomas@corelatus.se>
15555 Date: Sun May 3 20:07:33 2009 +0200
15556
15557 ARM DaVinci: Reset with watchdog enabled
15558
15559 Once the Davinci watchdog has been enabled, the timeout
15560 value cannot be changed. If the timeout in use is long,
15561 it can take a long time for card to reset. By writing
15562 an invalid service key, we can trigger an immediate reset.
15563
15564 Signed-off-by: Thomas Lange <thomas@corelatus.se>
15565
15566 commit 6cc7ba9ed43106946aa9aa868302aa2faf1d17be
15567 Author: Wolfgang Denk <wd@denx.de>
15568 Date: Fri May 15 10:07:43 2009 +0200
15569
15570 video: Add an option to skip video initialization
15571
15572 This patch adds an option to skip the video initialization on for all
15573 video drivers. This is needed for the CPCI750 which can be built as
15574 CPCI host and adapter/target board. And the adapter board can't
15575 access the video cards located on the CompactPCI bus.
15576
15577 Signed-off-by: Stefan Roese <sr@denx.de>
15578 Cc: Anatolij Gustschin <agust@denx.de>
15579
15580 Rebased against simplifying patch.
15581 Signed-off-by: Wolfgang Denk <wd@denx.de>
15582
15583 commit f62f64692ff7f6226ad221d5df6487ea5ef39bdd
15584 Author: Wolfgang Denk <wd@denx.de>
15585 Date: Fri May 15 10:07:42 2009 +0200
15586
15587 drv_video_init(): simplify logic
15588
15589 Simplify nesting of drv_video_init() and use a consistent way of
15590 indicating failure / success. Before, it took me some time to realize
15591 which of the returns was due to an error condition and which of them
15592 indicated success.
15593
15594 Signed-off-by: Wolfgang Denk <wd@denx.de>
15595 Cc: Anatolij Gustschin <agust@denx.de>
15596
15597 commit 1699da6297b8c22da16cf85b3c79192f1a6d70ca
15598 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15599 Date: Wed May 13 21:01:13 2009 +0200
15600
15601 at91: regroup IP hw init in one file per soc
15602
15603 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15604
15605 commit 28b00324becf3552134ae1e086509dc9c3d6e932
15606 Author: David Brownell <dbrownell@users.sourceforge.net>
15607 Date: Fri May 15 23:48:37 2009 +0200
15608
15609 dm355 evm support
15610
15611 Initial U-Boot support for the DaVinci DM355 EVM. This is a board
15612 from Spectrum Digital. Board docs include schematic and firmware
15613 for its microcontroller:
15614
15615 http://c6000.spectrumdigital.com/evmdm355/revd/
15616
15617 Most of the DM355 chip is fully documented by TI, the most notable
15618 exception being the MPEG/JPEG coprocessor (programmable using codecs
15619 available at no cost from TI), which is omitted from its DM335 sibling:
15620
15621 http://focus.ti.com/docs/prod/folders/print/tms320dm355.html
15622
15623 This version can boot from the on-board DM9000 Ethernet chip, after
15624 being loaded (from NAND, MMC/SD, or UART). In the near future, NAND
15625 and USB support could be added ... NAND support is being held back
15626 until the support for the 4-bit ECC hardware is ready.
15627
15628 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15629
15630 commit 136cf92dc9e84c9a1bf567f1fe741092bf765495
15631 Author: Sanjeev Premi <premi@ti.com>
15632 Date: Fri May 15 23:48:37 2009 +0200
15633
15634 OMAP3EVM: Set default bootfile
15635
15636 The current configuration doesn't define default
15637 bootfile; leading to this warning at execution:
15638
15639 OMAP3_EVM # dhcp
15640 ...
15641 ...
15642 DHCP client bound to address 192.168.1.11
15643 *** Warning: no boot file name; using 'AC18BE16.img'
15644 TFTP from server 0.0.0.0; our IP address is 192.168.1.11;
15645 sending through gateway 192.168.1.1
15646 Filename 'AC18BE16.img'.
15647 Load address: 0x82000000
15648 Loading: *
15649 TFTP error: 'File not found' (1)
15650
15651 Signed-off-by: Sanjeev Premi <premi@ti.com>
15652
15653 commit 1a09d05abfc6d4d4f1fce9f6bd0275bd1c08d4f5
15654 Author: s-paulraj@ti.com <s-paulraj@ti.com>
15655 Date: Fri May 15 23:48:36 2009 +0200
15656
15657 ARM DaVinci: Minor Updates to base addresses
15658
15659 Patch adds base addresses for DaVinci DM365. Updated patches for DM365
15660 will be posted soon.
15661
15662 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
15663
15664 commit de193e8e369f5f029ed3b6e2fc60341098eea766
15665 Author: Tom Rix <Tom.Rix@windriver.com>
15666 Date: Fri May 15 23:48:36 2009 +0200
15667
15668 ZOOM2 Add support for debug board detection.
15669
15670 The logicpd web site is a good source for general information on this board.
15671 Please start looking here if the below links are broken.
15672 http://www.logicpd.com
15673
15674 This is a pdf of the product
15675 http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
15676
15677 This is a pdf of the product quick start guide.
15678 The debug board is described here.
15679 http://support.logicpd.com/downloads/1165/
15680
15681 This is a wiki showing the debug board in use
15682 https://omapzoom.org/gf/project/omapzoom/wiki/?pagename=GettingStartedWithZoomII_AKA_OMAP34XII_MDP
15683
15684 The zoom2 has an auxillary board that contains the serial, net, jtag and
15685 battery simulator. This change supports a runtime check if the debug board is
15686 connected.
15687
15688 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15689
15690 commit 0c872ecd01d6782ae9d37b6eb721404a4a48f356
15691 Author: Tom Rix <Tom.Rix@windriver.com>
15692 Date: Fri May 15 23:48:36 2009 +0200
15693
15694 OMAP3 Port kernel omap gpio interface.
15695
15696 Port version 2.6.27 of the linux kernel's omap gpio interface to u-boot.
15697 The orignal source is in linux/arch/arm/plat-omap/gpio.c
15698
15699 See doc/README.omap3 for instructions on use.
15700
15701 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15702
15703 commit 376aee78dd66ae0dc4ce496cbe93ecc80aaad48e
15704 Author: Tom Rix <Tom.Rix@windriver.com>
15705 Date: Fri May 15 23:48:36 2009 +0200
15706
15707 ZOOM2 Add initial support for Zoom2
15708
15709 Zoom2 is a new board from Texas Instruments and LogicPD
15710
15711 The logicpd web site is a good source for general information on this board.
15712 Please start looking here if the below links are broken.
15713 http://www.logicpd.com
15714
15715 This is a pdf of the product
15716 http://www.logicpd.com/sites/default/files/1012659A_Zoom_OMAP34x-II_MDP_Brief.pdf
15717 This is the product description web page
15718 http://www.logicpd.com/products/development-kits/texas-instruments-zoom%E2%84%A2-omap34x-ii-mdp
15719
15720 This patch provides a zoom2 base target by copying zoom1 and by making some
15721 obvious changes.
15722
15723 To configure, run
15724 make omap3_zoom2_config
15725
15726 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15727
15728 commit 53925acf1b5c1a1e6230cda2697640cd05bd1104
15729 Author: Sandeep Paulraj <s-paulraj@ti.com>
15730 Date: Fri May 15 23:48:33 2009 +0200
15731
15732 ARM DaVinci:Consolidate common u-boot.lds
15733
15734 The u-boot.lds is common for all DaVinci boards. The patch removes
15735 multiple instances and moves the u-boot.lds to /cpu/arm926ejs/davinci
15736 folder. This addresses one of the comments i received while submitting
15737 patches for DM3xx
15738
15739 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
15740
15741 commit 68a531fd465f5c0b3d373e0010afed32e88d37c4
15742 Author: Tom Rix <Tom.Rix@windriver.com>
15743 Date: Fri May 15 23:47:52 2009 +0200
15744
15745 OMAP Consolidate common u-boot.lds to cpu layer.
15746
15747 The u-boot.lds file is common for all omap boards.
15748 Move a cleaned up version to the cpu layer and add makefile logic to use it.
15749
15750 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15751
15752 commit 65a76d4f947a193e57bb8f8093c481f27e059f8f
15753 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15754 Date: Fri May 15 23:47:14 2009 +0200
15755
15756 arm/dcc: add xscale support
15757
15758 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15759
15760 commit 66e8f9da6879fe37f3159b3997bff874842dc51d
15761 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15762 Date: Fri May 15 23:47:14 2009 +0200
15763
15764 arm/dcc: use static support to allow to use it at anytime
15765
15766 the dcc can be used at the start of the cpu
15767
15768 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15769
15770 commit 7893aa1eb6f52c3957efc301b436f1fa11e91a00
15771 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15772 Date: Fri May 15 23:47:13 2009 +0200
15773
15774 ARM: Update mach-types
15775
15776 update against linux v2.6.29
15777
15778 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15779
15780 commit 2907798926ee932f453ac8538e7a6c05c18428a5
15781 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15782 Date: Fri May 15 23:47:13 2009 +0200
15783
15784 arm920/926/926: remove non needed header
15785
15786 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15787
15788 commit 269dfea017b09c5a999d3053d00505c19789c350
15789 Author: David Brownell <david-b@pacbell.net>
15790 Date: Fri May 15 23:47:13 2009 +0200
15791
15792 davinci dm6446evm NAND update
15793
15794 This updates the optional (non-default!) NAND support for the
15795 DaVinci DM6446 EVM:
15796
15797 - include MTD partitioning, defaulting to what Linux uses
15798
15799 - use a flash-based BBT, which among other things speeds bootup
15800
15801 This matches code that's now queued for mainline Linux, and might
15802 even merge in an upcoming 2.6.30-rc; and the MTIDS are set up so
15803 that the U-Boot $mtdparts environment variable can be passed as-is
15804 on the kernel command line as a cmdlinepart override.
15805
15806 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15807
15808 commit 7a4f511b59f08f51dde4ceacbd45f49b8bf2a5cc
15809 Author: David Brownell <dbrownell@users.sourceforge.net>
15810 Date: Fri May 15 23:47:12 2009 +0200
15811
15812 davinci: display correct clock info
15813
15814 Move the clock-rate dumping code into the cpu/.../davinci area
15815 where it should have been, enabled by CONFIG_DISPLAY_CPUINFO,
15816 updating the format and showing the DSP clock (where relevant).
15817
15818 Switch boards to use the cpuinfo() hook for this stuff.
15819
15820 Remove a few now-obsolete PLL #defines.
15821
15822 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15823
15824 commit daea928829098cae3c9ec6b801e52ba616725034
15825 Author: Tom Rix <Tom.Rix@windriver.com>
15826 Date: Fri May 15 23:47:12 2009 +0200
15827
15828 ZOOM1 Remove more legacy NAND defines.
15829
15830 These legacy NAND defines are no longer needed by this target.
15831
15832 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15833
15834 commit 65fd21c80fcaca2bbfe3ab06ab6ac68207408078
15835 Author: Tom Rix <Tom.Rix@windriver.com>
15836 Date: Fri May 15 23:47:12 2009 +0200
15837
15838 LED Add documentation describing the status_led and colour led API.
15839
15840 This document describes the u-boot status LED API.
15841 This allows common u-boot commands to use a board's leds to
15842 provide status for activities like booting and downloading files.
15843
15844 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15845
15846 commit 7cdf804f34378b910b4c4edd2dac7e3ca61c0825
15847 Author: Tom Rix <Tom.Rix@windriver.com>
15848 Date: Fri May 15 23:47:12 2009 +0200
15849
15850 ARM Add blue colour LED to status_led.
15851
15852 There is exiting support for red,yellow,green but no blue.
15853 The main LED on the zoom2 is a blue LED.
15854
15855 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
15856
15857 commit b54384e3ba6b5535751f317fcd3940a53eed0d3a
15858 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15859 Date: Fri May 15 23:47:02 2009 +0200
15860
15861 arm: timer and interrupt init rework
15862
15863 actually the timer init use the interrupt_init as init callback
15864 which make the interrupt and timer implementation difficult to follow
15865
15866 so now rename it as int timer_init(void) and use interrupt_init for interrupt
15867
15868 btw also remane the corresponding file to the functionnality implemented
15869
15870 as ixp arch implement two timer - one based on interrupt - so all the timer
15871 related code is moved to timer.c
15872
15873 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15874
15875 commit 5b4bebe1d20c4f2b70d48b06aed1016785efcc25
15876 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15877 Date: Fri May 15 23:45:22 2009 +0200
15878
15879 OMAP3: Reorganize Makefile style
15880
15881 Reformat COBJS handling.
15882
15883 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15884 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15885
15886 commit b1966982718347f67317b3fb356439743ca68a37
15887 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15888 Date: Fri May 15 23:45:22 2009 +0200
15889
15890 OMAP3: Remove dublicated interrupt code
15891
15892 Remove duplicated interrupt code. Original, identical code can be found
15893 in lib_arm/interrupts.c
15894
15895 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15896 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
15897
15898 commit ac7260a4190315eba4a6e526c764f6cad0bbf8c5
15899 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15900 Date: Fri May 15 23:45:22 2009 +0200
15901
15902 at91rm9200: move reset code to reset.c
15903
15904 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15905
15906 commit 2c75c78d94574ee996db2aa9b511258519471dd6
15907 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15908 Date: Fri May 15 23:45:22 2009 +0200
15909
15910 ixp/interrupts: Move conditional compilation to Makefile
15911
15912 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15913
15914 commit 8fc3bb4b0603516ad641e2de252a400b85fd869b
15915 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15916 Date: Fri May 15 23:45:20 2009 +0200
15917
15918 arm: cleanup remaining CONFIG_INIT_CRITICAL
15919
15920 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15921
15922 commit c20e28f49aaf38c7dede46d8f8fe8234fe90822c
15923 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15924 Date: Fri May 15 23:45:12 2009 +0200
15925
15926 arm946es: remove non used timer
15927
15928 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15929
15930 commit f1d944e30eb8ff89080fa03fb98d8fb5c82388d2
15931 Author: David Brownell <dbrownell@users.sourceforge.net>
15932 Date: Fri May 15 23:44:09 2009 +0200
15933
15934 davinci: add basic dm355/dm350/dm335 support
15935
15936 Add some basic declarations for DaVinci DM355/DM350/DM335 support,
15937 keyed on CONFIG_SOC_DM355. (DM35X isn't quite right because the
15938 DM357 is very different; while the DM355 is like a DM355 without
15939 the MPEG/JPEG coprocessor).
15940
15941 These have different peripherals than the DM6446, and some of
15942 the peripherals are at different addresses. Notably for U-Boot,
15943 there's no EMAC, and the NAND controller address is different
15944
15945 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15946
15947 commit bd36fdc146654f9de4e2ad346126e6bd2990fb19
15948 Author: David Brownell <dbrownell@users.sourceforge.net>
15949 Date: Fri May 15 23:44:09 2009 +0200
15950
15951 davinci: fix dm644x buglets
15952
15953 Fix two buglets in the dm644x support: don't set two must-be-zero
15954 bits in the UART management register; and only include the I2C hooks
15955 if the I2C driver is being included.
15956
15957 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15958
15959 commit f79043681ff44bae435c06f830e51e1546db7e19
15960 Author: David Brownell <dbrownell@users.sourceforge.net>
15961 Date: Fri May 15 23:44:08 2009 +0200
15962
15963 davinci: split out some dm644x-specific bits from psc
15964
15965 Split out DaVinci DM6446-specific bits from more generic bits:
15966
15967 - Add a CONFIG_SOC_DM644X. All current boards use DM6446 chips;
15968 DM6443 and DM6441 chips differ in available peripherals.
15969
15970 - Move most DM644X-specific bits from psc.c to a new dm644x.c file,
15971 which is conditionally built. It provides device-specific setup.
15972
15973 Plus minor coding style and comment updates with respect to the PSC.
15974
15975 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15976
15977 commit 48ef5729555f41f51618b6a3016ac5c53c7c75dc
15978 Author: David Brownell <dbrownell@users.sourceforge.net>
15979 Date: Fri May 15 23:44:08 2009 +0200
15980
15981 davinci: cpu-specific build uses conditional make syntax
15982
15983 Update cpu/arm926ejs/davinci/Makefile to use COBJ-y type syntax.
15984 Add the first conditional: for EMAC driver support. Not all
15985 chips have an EMAC; and boards might not use it, anyway.
15986
15987 This doesn't touch PHY configuration; that should eventually
15988 become conditional too.
15989
15990 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
15991
15992 commit 7b7808ae6dace59287f565e9323cda7b098a5612
15993 Author: David Brownell <dbrownell@users.sourceforge.net>
15994 Date: Fri May 15 23:44:06 2009 +0200
15995
15996 davinci: move psc support board-->cpu
15997
15998 Move DaVinci PSC support from board/* to cpu/* where it belongs.
15999 The PSC module manages clocks and resets for all DaVinci-family
16000 SoCs, and isn't at all board-specific.
16001
16002 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16003
16004 commit 84f7411cb901b8df2391cf7e967ad0737f6194aa
16005 Author: David Brownell <david-b@pacbell.net>
16006 Date: Tue Apr 14 08:52:58 2009 -0700
16007
16008 DaVinci now respects SKIP_LOWLEVEL_INIT
16009
16010 Don't needlessly include lowlevel init code; that's only really
16011 needed with boot-from NOR (not boot-from-NAND). The 2nd stage
16012 loader (UBL) handles that before it loads U-Boot.
16013
16014 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16015
16016 commit 641e0925e4bf7adf8e2e04e3ad81b840fd71cadd
16017 Author: David Brownell <dbrownell@users.sourceforge.net>
16018 Date: Sun Apr 12 22:49:26 2009 -0700
16019
16020 DaVinci Ethernet cleanup
16021
16022 Chips without the EMAC controller won't need the utilities
16023 it uses to read an Ethernet address from EEPROM; so don't
16024 include them needlessly.
16025
16026 Use is_valid_ether() to validate the address from EEPROM.
16027 All-zero addresses aren't the only invalid addresses.
16028 A fully erased EEPROM returns all-ones, also invalid...
16029
16030 Switch those Ethernet utilities to use "%pM" for printing
16031 MAC addresses; and not say ROM when they mean EEPROM.
16032
16033 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
16034 Acked-by: Ben Warren <biggerbadderben@gmail.com>
16035
16036 commit c790b04d230363d03939dc008bcc80f3ba4de1ae
16037 Author: Stefan Roese <sr@denx.de>
16038 Date: Mon May 11 15:50:12 2009 +0200
16039
16040 lib_arch/board.c: Move malloc initialization before flash_init()
16041
16042 This patch moves the malloc initialization before calling flash_init().
16043 Upcoming changes to the NOR FLASH common CFI driver with optional
16044 MTD infrastructure and MTD concatenation support will call malloc().
16045 And nothing really speaks against enabling malloc just a little earlier
16046 in the boot stage. Some architectures already enable malloc before
16047 calling flash_init() so they don't need any changes here.
16048
16049 Signed-off-by: Stefan Roese <sr@denx.de>
16050 Cc: Wolfgang Denk <wd@denx.de>
16051 Cc: Mike Frysinger <vapier@gentoo.org>
16052 Cc: Scott McNutt <smcnutt@psyent.com>
16053 Cc: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
16054 Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
16055 Cc: Daniel Hellstrom <daniel@gaisler.com>
16056 Cc: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16057 Cc: John Rigby <jcrigby@gmail.com>
16058
16059 commit d873133f2ba9bd613d5f6552c31cc70fb13f15d3
16060 Author: Stefan Roese <sr@denx.de>
16061 Date: Mon May 11 13:46:14 2009 +0200
16062
16063 ppc4xx: Add Sequoia RAM-booting target
16064
16065 This patch adds another build target for the AMCC Sequoia PPC440EPx
16066 eval board. This RAM-booting version is targeted for boards without
16067 NOR FLASH (NAND booting) which need a possibility to initially
16068 program their NAND FLASH. Using a JTAG debugger (e.g. BDI2000/3000)
16069 configured to setup the SDRAM, this debugger can load this RAM-
16070 booting image to the target address in SDRAM (in this case 0x1000000)
16071 and start it there. Then U-Boot's standard NAND commands can be
16072 used to program the NAND FLASH (e.g. "nand write ...").
16073
16074 Here the commands to load and start this image from the BDI2000:
16075
16076 440EPX>reset halt
16077 440EPX>load 0x1000000 /tftpboot/sequoia/u-boot.bin
16078 440EPX>go 0x1000000
16079
16080 Please note that this image automatically scans for an already
16081 initialized SDRAM TLB (detected by EPN=0). This TLB will not be
16082 cleared. This TLB doesn't need to be TLB #0, this RAM-booting
16083 version will detect it and preserve it. So booting via BDI2000
16084 will work and booting with a complete different TLB init via
16085 U-Boot works as well.
16086
16087 Signed-off-by: Stefan Roese <sr@denx.de>
16088
16089 commit 837db3d87f4bfe9261629fb4a1bb433506a3056a
16090 Author: Mike Frysinger <vapier@gentoo.org>
16091 Date: Wed May 6 08:41:45 2009 -0400
16092
16093 tools/envcrc: add --binary option to export embedded env
16094
16095 The --binary option to envcrc can be used to export the embedded env as a
16096 binary blob so that it can be manipulated/examined/whatever externally.
16097
16098 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16099
16100 commit 18cc7afd9a153a66854af862d14ba01c5496cf07
16101 Author: Ben Warren <biggerbadderben@gmail.com>
16102 Date: Tue Apr 28 16:50:53 2009 -0700
16103
16104 Enable CONFIG_NET_MULTI on all remaining PPC4xx boards
16105
16106 All in-tree PPC4xx boards now use CONFIG_NET_MULTI
16107
16108 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16109 Signed-off-by: Stefan Roese <sr@denx.de>
16110
16111 commit 70be6c2d40076f14062b892152649f9a62832fc9
16112 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16113 Date: Wed Apr 29 09:51:01 2009 +0200
16114
16115 4xx: Add support for DP405 hardware variants
16116
16117 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16118 Signed-off-by: Stefan Roese <sr@denx.de>
16119
16120 commit de47a34d4de1d007a8951efd072283516d580ffa
16121 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16122 Date: Wed Apr 29 09:51:00 2009 +0200
16123
16124 4xx: Remove binary cpld bitstream from DP405 board
16125
16126 This patch removes the cpld binary bitstream that is
16127 used by esd's cpld command on DP405 boards.
16128
16129 Because u-boot with an external cpld bitstream may not
16130 take more space in flash than before the u-boot binary is
16131 shrinked a little bit. Some unused featues have been
16132 removed therefore.
16133
16134 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16135 Signed-off-by: Stefan Roese <sr@denx.de>
16136
16137 commit 700d553fd3afe804086de8f73d95153315eb0c32
16138 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16139 Date: Wed Apr 29 09:50:59 2009 +0200
16140
16141 4xx: Remove binary cpld bitstream from VOM405 board
16142
16143 This patch removes the cpld binary bitstream that is
16144 used by esd's cpld command on VOM405 boards.
16145
16146 Because u-boot with an external cpld bitstream may not
16147 take more space in flash than before the u-boot binary is
16148 shrinked a little bit.
16149
16150 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16151 Signed-off-by: Stefan Roese <sr@denx.de>
16152
16153 commit 0bb10630364c48d9857cbf5353da609fc4dd6751
16154 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16155 Date: Wed Apr 29 09:50:58 2009 +0200
16156
16157 4xx: Remove binary cpld bitstream from PMC405 board
16158
16159 This patch removes the cpld binary bitstream that is
16160 used by esd's cpld command on PMC405 boards.
16161
16162 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16163 Signed-off-by: Stefan Roese <sr@denx.de>
16164
16165 commit 7cc635fb35f5b94e304fa2243d56758f57f6416b
16166 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16167 Date: Wed Apr 29 09:50:57 2009 +0200
16168
16169 4xx: Remove binary cpld bitstream from CMS700 board
16170
16171 This patch removes the cpld binary bitstream that is
16172 used by esd's cpld command on CMS700 boards.
16173
16174 Because u-boot with an external cpld bitstream may not
16175 take more space in flash than before the u-boot binary is
16176 shrinked a little bit. Some unused featues have been
16177 removed therefore.
16178
16179 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16180 Signed-off-by: Stefan Roese <sr@denx.de>
16181
16182 commit c1b2f79788deec75773b1d944d8aaf4a6d5baf9e
16183 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16184 Date: Wed Apr 29 09:50:56 2009 +0200
16185
16186 esd/common: extend cpld command with address parameter
16187
16188 This patch adds support for an address parameter to esd's
16189 cpld command. This is in preparation to remove compiled-in
16190 binary cpld (xsvf) bitstreams.
16191
16192 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
16193 Signed-off-by: Stefan Roese <sr@denx.de>
16194
16195 commit 9166b776350d16460c7330bfb0a50154ea0a1903
16196 Author: Peter Tyser <ptyser@xes-inc.com>
16197 Date: Sat Apr 18 22:34:06 2009 -0500
16198
16199 cmd_i2c: Fix i2c help command output when CONFIG_I2C_MUX
16200
16201 When CONFIG_I2C_MUX was defined the output of 'help i2c' was not
16202 correct, eg:
16203
16204 => help i2c
16205 i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes.
16206 speed [speed] - show or set I2C bus speed
16207 i2c dev [dev] - show or set current I2C bus
16208 ...
16209
16210 It has been changed to:
16211 i2c speed [speed] - show or set I2C bus speed
16212 i2c bus [muxtype:muxaddr:muxchannel] - add a new bus reached over muxes
16213 i2c dev [dev] - show or set current I2C bus
16214 ...
16215
16216 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16217
16218 commit 0a45a6357b02e5ce5bf899a60db09def6a129fee
16219 Author: Peter Tyser <ptyser@xes-inc.com>
16220 Date: Sat Apr 18 22:34:05 2009 -0500
16221
16222 cmd_i2c: Clean up trivial helper functions
16223
16224 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16225
16226 commit e96ad5d3aba42f8ffe99f7cc5ec1bb9f21810035
16227 Author: Peter Tyser <ptyser@xes-inc.com>
16228 Date: Sat Apr 18 22:34:04 2009 -0500
16229
16230 cmd_i2c: Clean up i2c command argument parsing
16231
16232 argc and argv should only be modified once instead of once for
16233 every i2c sub-command
16234
16235 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16236
16237 commit 0f89c54be92773b23d66ac401ba6acb6144100c3
16238 Author: Peter Tyser <ptyser@xes-inc.com>
16239 Date: Sat Apr 18 22:34:03 2009 -0500
16240
16241 i2c: Update references to individual i2c commands
16242
16243 The individual i2c commands imd, imm, inm, imw, icrc32, iprobe, iloop,
16244 and isdram are no longer available so all references to them have been
16245 updated to the new form of "i2c <cmd>".
16246
16247 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16248
16249 commit d48eb5131d287f52bb85b4c58c8680a2e8e3b641
16250 Author: Peter Tyser <ptyser@xes-inc.com>
16251 Date: Sat Apr 18 22:34:02 2009 -0500
16252
16253 i2c: Remove deprecated individual i2c commands
16254
16255 The following individual I2C commands have been removed: imd, imm, inm,
16256 imw, icrc32, iprobe, iloop, isdram.
16257
16258 The functionality of the individual commands is still available via
16259 the 'i2c' command.
16260
16261 This change only has an impact on those boards which did not have
16262 CONFIG_I2C_CMD_TREE defined.
16263
16264 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16265
16266 commit 655b34a78adf60ef260981688837904208883ae9
16267 Author: Peter Tyser <ptyser@xes-inc.com>
16268 Date: Sat Apr 18 22:34:01 2009 -0500
16269
16270 i2c: Create common default i2c_[set|get]_bus_speed() functions
16271
16272 New default, weak i2c_get_bus_speed() and i2c_set_bus_speed() functions
16273 replace a number of architecture-specific implementations.
16274
16275 Also, providing default functions will allow all boards to enable
16276 CONFIG_I2C_CMD_TREE. This was previously not possible since the
16277 tree-form of the i2c command provides the ability to display and modify
16278 the i2c bus speed which requires i2c_[set|get]_bus_speed() to be
16279 present.
16280
16281 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16282
16283 commit 8229e9c04f7019ddd76aea05d4dca044cbc9a34a
16284 Author: Peter Tyser <ptyser@xes-inc.com>
16285 Date: Sat Apr 18 22:34:00 2009 -0500
16286
16287 cm5200: Make function test command names more unique
16288
16289 Add "_test" to cm5200's function test command names to prevent
16290 overlap with common, global function names. Originally, the
16291 "do_i2c" function test command interfered with
16292 common/cmd_i2c.c's "do_i2c" when CONFIG_I2C_CMD_TREE was defined.
16293
16294 The functions were also made static as they are not globally accessed.
16295
16296 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16297
16298 commit f0722ee762e8dada9d7f74ac2745e043f83aae85
16299 Author: Peter Tyser <ptyser@xes-inc.com>
16300 Date: Fri Apr 24 15:34:09 2009 -0500
16301
16302 tsi108_i2c: Add i2c_init() stub function
16303
16304 Add the i2c_init() function so that the tsi108_i2c.c driver fits
16305 U-Boot's standard I2C API which is utilized by cmd_i2c.c
16306
16307 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16308
16309 commit 8d907e79bc9babb27396e34be54cfdc36ff62fb9
16310 Author: Peter Tyser <ptyser@xes-inc.com>
16311 Date: Fri Apr 24 15:34:08 2009 -0500
16312
16313 mpc7448hpc2: Add CONFIG_SYS_I2C_SPEED define
16314
16315 Add standard CONFIG_SYS_I2C_SPEED define for the mpc7448hpc2 so that
16316 it can use the common 'i2c speed' command. Note that the I2C controller
16317 utilized by the mpc7448hpc2 has a fixed speed and cannot be changed
16318 dynamically.
16319
16320 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16321
16322 commit a056b1ce9e19b4d4ab3dd01c3f897dcd832cd37f
16323 Author: Peter Tyser <ptyser@xes-inc.com>
16324 Date: Fri Apr 24 15:34:07 2009 -0500
16325
16326 Marvell: i2c cleanup
16327
16328 The following changes were made, primarily to bring the Marvell i2c
16329 driver in line with U-Boot's current I2C API:
16330 - Made i2c_init() globally accessible
16331 - Made i2c_read() and i2c_write() return an integer
16332 - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
16333 offhand chance someone adds slave support in the future
16334
16335 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16336
16337 commit 54afc6ee10c8cd09598d814d49e601359b005e49
16338 Author: Peter Tyser <ptyser@xes-inc.com>
16339 Date: Fri Apr 24 15:34:06 2009 -0500
16340
16341 cpci750: i2c cleanup
16342
16343 The following changes were made, primarily to bring the cpci750 i2c
16344 driver in line with U-Boot's current I2C API:
16345 - Made i2c_init() globally accessible
16346 - Made i2c_read() and i2c_write() return an integer
16347 - Updated i2c_init() calls to pass in CONFIG_SYS_I2C_SLAVE in the
16348 offhand chance someone adds slave support in the future
16349
16350 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16351
16352 commit 9c90a2c8e87414007a016b7cd099ac1e32fd301b
16353 Author: Peter Tyser <ptyser@xes-inc.com>
16354 Date: Fri Apr 24 15:34:05 2009 -0500
16355
16356 i2c.h: Provide a default CONFIG_SYS_I2C_SLAVE value
16357
16358 Many boards/controllers/drivers don't support an I2C slave interface,
16359 however CONFIG_SYS_I2C_SLAVE is used in common code so provide a
16360 default
16361
16362 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16363
16364 commit e7563aff174f77aa61dab1ef5d9b47bebaa43702
16365 Author: Kumar Gala <galak@kernel.crashing.org>
16366 Date: Thu Jun 11 23:42:35 2009 -0500
16367
16368 fsl-ddr: Fix handling of >4G of memory when !CONFIG_PHYS_64BIT
16369
16370 The ddr code computes most things as 64-bit quantities and had some places
16371 in the middle that it was using phy_addr_t and phys_size_t.
16372
16373 Instead we use unsigned long long through out and only at the last stage of
16374 setting the LAWs and reporting the amount of memory to the board code do we
16375 truncate down to what we can cover via phys_size_t.
16376
16377 This has the added benefit that the DDR controller itself is always setup
16378 the same way regardless of how much memory we have. Its only the LAW
16379 setup that limits what is visible to the system.
16380
16381 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16382
16383 commit d4b130dc80761b430dc5b410159cd158fca1a348
16384 Author: Kumar Gala <galak@kernel.crashing.org>
16385 Date: Thu Jun 11 23:40:34 2009 -0500
16386
16387 85xx: Use print_size to report amount of memory not mapped by TLBs
16388
16389 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16390
16391 commit 6e2aebc33fa740c068fe28d40eaf0319b7c7287e
16392 Author: Haiying Wang <Haiying.Wang@freescale.com>
16393 Date: Wed May 20 12:30:42 2009 -0400
16394
16395 85xx: Add README for MPC8569MDS
16396
16397 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16398 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16399
16400 commit b2aab386e957ba684d4f2a466bfaa91770e5058a
16401 Author: Haiying Wang <Haiying.Wang@freescale.com>
16402 Date: Wed May 20 12:30:33 2009 -0400
16403
16404 85xx: Add UART1 support for MPC8569MDS
16405
16406 MPC8569 UART1 signals are muxed with PortF bit[9-12], we need to define
16407 those pins before using UART1.
16408
16409 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16410 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16411
16412 commit 399b53cbab0b377ac4c5c16c19c6e41b68a9c719
16413 Author: Haiying Wang <Haiying.Wang@freescale.com>
16414 Date: Wed May 20 12:30:32 2009 -0400
16415
16416 85xx: Add PIB support at CS4/CS5 for MPC8569MDS
16417
16418 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16419 Signed-off-by: Yu Liu <Yu.Liu@freescale.com>
16420 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16421
16422 commit fb27949059f1bc84381a6216a819090f0cdbaa70
16423 Author: Haiying Wang <Haiying.Wang@freescale.com>
16424 Date: Thu Jun 4 16:12:39 2009 -0400
16425
16426 85xx: Fix some settings for MPC8569MDS board
16427
16428 - Increase the size of malloc to 512KB because MPC8569MDS needs more memory for
16429 malloc to support up to eight Ethernet interfaces.
16430 - Move Environment address out of uboot thus the saved environment variables
16431 will not be erased after u-boot is re-programmed.
16432
16433 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16434 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16435
16436 commit c7f60fd29f2d638d080cdf1a49ad985b85f9429d
16437 Author: Haiying Wang <Haiying.Wang@freescale.com>
16438 Date: Wed May 20 12:30:30 2009 -0400
16439
16440 85xx: Fix MURAM size for MPC8569
16441
16442 MPC8569 has 128K bytes MURAM.
16443
16444 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
16445 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16446
16447 commit a53c997dd7fc858f2a27f5a47b200567b9343ae5
16448 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16449 Date: Fri May 22 20:23:51 2009 +0200
16450
16451 at91/cpu.c: add missing Copyright & GPL header
16452
16453 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16454
16455 commit aa446a591aca46ef2b53cc6598ea8091feb45444
16456 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16457 Date: Sun Jun 7 21:45:16 2009 +0900
16458
16459 apollon: Fix a OBJCFLAGS typo
16460
16461 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
16462
16463 commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002
16464 Author: Wolfgang Denk <wd@denx.de>
16465 Date: Wed Jun 10 00:19:28 2009 +0200
16466
16467 Prepare 2009.06-rc3
16468
16469 Update CHANGELOG
16470
16471 Signed-off-by: Wolfgang Denk <wd@denx.de>
16472
16473 commit 3a76ab5c166d5956885f803ce975e7151cc0ca0e
16474 Author: Wolfgang Denk <wd@denx.de>
16475 Date: Wed Jun 10 00:15:11 2009 +0200
16476
16477 rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared
16478
16479 Signed-off-by: Wolfgang Denk <wd@denx.de>
16480
16481 commit 165f9859b64ff59f0cfae3cc70a7e7ded7aaa4a7
16482 Author: Daniel Mack <daniel@caiaq.de>
16483 Date: Thu Jun 4 19:44:12 2009 +0200
16484
16485 ubifs: fix small error path mismatch
16486
16487 In do_readpage(), don't free 'dn' if its allocation failed.
16488
16489 Signed-off-by: Daniel Mack <daniel@caiaq.de>
16490
16491 commit de7cf709ebd3c01fbd094e8853dabb410c0370a1
16492 Author: Wolfgang Denk <wd@denx.de>
16493 Date: Thu Jun 4 00:31:07 2009 +0200
16494
16495 EP88x: fix broken linker script
16496
16497 Signed-off-by: Wolfgang Denk <wd@denx.de>
16498 Tested-by: Mikhail Zaturenskiy <mzaturenskiy@shoppertrak.com>
16499
16500 commit 7a2063bd80d3b58b2dd5d5e58f4411f8d250576c
16501 Author: Wolfgang Denk <wd@denx.de>
16502 Date: Fri May 15 00:16:02 2009 +0200
16503
16504 TQM85xx: minor config file cleanup
16505
16506 Remove "saveenv" from "update" definition: the environment is outside
16507 the U-Boot image on TQM85xx and therefor not affected by updates.
16508
16509 Also "beautify" code a bit (vertical alignment).
16510
16511 Signed-off-by: Wolfgang Denk <wd@denx.de>
16512
16513 commit c0296b1801fc9426d772fa75fe58458db605dfee
16514 Author: Wolfgang Denk <wd@denx.de>
16515 Date: Fri May 15 00:16:01 2009 +0200
16516
16517 TQM85xx: adapt for new flash types
16518
16519 Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM
16520 series while new boards have 'N' type Flashes from the S29GLxxxN
16521 series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB.
16522
16523 We now change the configuration to the new flash types for all
16524 boards; this also works on old boards - we just waste two flash
16525 sectors for the environment which could be smaller there.
16526
16527 Signed-off-by: Wolfgang Denk <wd@denx.de>
16528
16529 commit 6735104924f06340071a6914a9ee3345607fc102
16530 Author: Dave Liu <daveliu@freescale.com>
16531 Date: Mon May 18 17:49:23 2009 +0800
16532
16533 85xx: Fix the wrong SYS_CLK_IN for 8569MDS
16534
16535 The SYS_CLK_IN of MPC8569MDS is 66.66MHz,
16536 The DDR_CLK_IN is same with SYS_CLK_IN in 8569 processor.
16537 so, change the SYS_CLK_IN from 66MHz to 66.66MHz.
16538
16539 Signed-off-by: Dave Liu <daveliu@freescale.com>
16540
16541 commit 16e7559c08b6f29db4596d795b92914c01e6a1b3
16542 Author: Dave Liu <daveliu@freescale.com>
16543 Date: Fri May 15 10:27:44 2009 +0800
16544
16545 85xx: Fix the wrong BCSR address of 8569MDS
16546
16547 The BCSR17[7] = 1 will unlock the write protect of FLASH.
16548 The WP# pin only controls the write protect of top/bottom sector,
16549 That is why we can save env, but we can't write the first sector
16550 before the patch.
16551
16552 Signed-off-by: Dave Liu <daveliu@freescale.com>
16553
16554 commit 90d13b8ac3d515349626d7c8a3dc34ef38c43fa6
16555 Author: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
16556 Date: Tue Jun 2 16:27:10 2009 -0500
16557
16558 85xx: bugfix for reading maximum TLB size on mpc85xx
16559
16560 The MAXSIZE field in the TLB1CFG register is 4 bits, not 8 bits.
16561 This made setup_ddr_tlbs() try to set up a TLB larger than the e500 maximum
16562 (256 MB)
16563 which made u-boot hang in board_init_f() when trying to create a new stack
16564 in RAM.
16565 I have an mpc8540 with one 1GB dimm.
16566
16567 Signed-off-by: Fredrik Arnerup <fredrik.arnerup@edgeware.tv>
16568 Signed-off-by: Andy Fleming <afleming@freescale.com>
16569 Acked-by: Kumar Gala <galak@kernel.crashing.org>
16570
16571 commit 1b5291dddf5f16c7ae10e3cb165882fa96038b26
16572 Author: Dave Liu <daveliu@freescale.com>
16573 Date: Fri Mar 27 14:32:43 2009 +0800
16574
16575 85xx: Fix the clock adjust of mpc8569mds board
16576
16577 Currently the clk_adj is 6 (3/4 cycle), The settings will cause
16578 the DDR controller hang at the data init. Change the clk_adj
16579 from 6 to 4 (1/2 cycle), make the memory system stable.
16580
16581 Signed-off-by: Dave Liu <daveliu@freescale.com>
16582
16583 commit faa14babd7466dfade358f9cac128ae246b9bf1b
16584 Author: RONETIX - Ilko Iliev <iliev@ronetix.at>
16585 Date: Fri Jun 5 16:54:31 2009 +0200
16586
16587 at91: fix a USB problem for AT91SAM9261
16588
16589 This patch corrects the missing PLLB initialization in usb_cpu_init()
16590 for AT91SAM9261.
16591 Because of the missing PLLB initialization, the USB support for all
16592 AT91SAM9261 based boards will work only if the PLLB is configured by a
16593 precedent bootloader.
16594
16595 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
16596 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16597 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16598
16599 commit 0c24dec550ddb7d86b8bfdd8645b18479f73e6e2
16600 Author: Felix Radensky <felix@embedded-sol.com>
16601 Date: Sun May 31 20:44:15 2009 +0300
16602
16603 ppc4xx/net: Fix MDIO clock setup
16604
16605 This patch fixes MDIO clock setup in case when OPB frequency is 100MHz.
16606 Current code assumes that the value of sysinfo.freqOPB is 100000000
16607 when OPB frequency is 100MHz. In reality it is 100000001. As a result
16608 MDIO clock is set to incorrect value, larger than 2.5MHz, thus violating
16609 the standard. This in not a problem on boards equipped with Marvell PHYs
16610 (e.g. Canyonlands), since those PHYs support MDIO clocks up to 8.3MHz,
16611 but can be a problem for other PHYs (e.g. Realtek ones).
16612
16613 Signed-off-by: Felix Radensky <felix@embedded-sol.com>
16614 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16615
16616 commit d65e34d12514de2bbe3b8f519761d641c081bad0
16617 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
16618 Date: Wed Feb 25 14:27:29 2009 +0900
16619
16620 rtl8169: fix PCI system memory address
16621
16622 When PCI device use system memory, some PCI host controller should be
16623 set physical memory address.
16624
16625 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
16626 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16627
16628 commit ca9c8a1e10fac01e6a1129f82a7ce18bd818fa43
16629 Author: Manikandan Pillai <mani.pillai@ti.com>
16630 Date: Wed Apr 8 09:14:35 2009 +0530
16631
16632 SMC911x driver fixed for NFS boot
16633
16634 eth_halt() function in the smc911x drivers used to call the
16635 smc911x_reset() function. eth_halt() used to be called after
16636 tftp transfers. This used to put the ethernet chip in reset
16637 while the linux boots up resulting in the ethernet driver
16638 not coming up. NFS boot used to fail as a result.
16639
16640 This patch calls smc911x_shutdown() instead of smc911x_reset().
16641 Some comments received has also been fixed.
16642
16643 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
16644 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16645
16646 commit e5a3bc2401a23f1890611f020f57f94824a534db
16647 Author: Remy Bohmer <linux@bohmer.net>
16648 Date: Sun May 3 12:11:40 2009 +0200
16649
16650 Add config option for disabling DM9000-SROM support.
16651
16652 Some boards do not have SROM support for the DM9000 network adapter.
16653 Instead of listing these board names in the driver code, make this
16654 option configurable from the board config file.
16655
16656 It also removes a build warning for the at91sam9261ek board:
16657 'dm9000x.c:545: warning: 'read_srom_word' defined but not used'
16658
16659 And it repaires the trizepsiv board build which was broken around the
16660 same routines
16661
16662 Signed-off-by: Remy Bohmer <linux@bohmer.net>
16663 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16664
16665 commit 3c9b1ee17e19bd6d80344678d41a85e52b0be713
16666 Author: Kim Phillips <kim.phillips@freescale.com>
16667 Date: Fri Jun 5 14:11:33 2009 -0500
16668
16669 mpc83xx: don't set SICRH_TSOBI1 to RMII/RTBI operation
16670
16671 In GMII mode (which operates at 3.3V) both SICRH TSEC1/2 output buffer
16672 impedance bits should be clear, i.e., SICRH[TSIOB1] = 0 and SICRH[TSIOB2] = 0.
16673 SICRH[TSIOB1] was erroneously being set high.
16674
16675 U-Boot always operated this PHY interface in GMII mode. It is assumed this
16676 was missed in the clean up by the original board porters, and copied along
16677 to the TQM and sbc boards.
16678
16679 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16680 Acked-by: Ira Snyder <iws@ovro.caltech.edu>
16681 Reviewed-by: David Hawkins <dwh@ovro.caltech.edu>
16682 Tested-by: Paul Gortmaker <paul.gortmaker@windriver.com>
16683 CC: Dave Liu <DaveLiu@freescale.com>
16684
16685 commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7
16686 Author: Daniel Mack <daniel@caiaq.de>
16687 Date: Wed Apr 8 13:23:37 2009 +0200
16688
16689 smc911x: write back the manually set MAC address
16690
16691 If the MAX address is given by the environment, write it back to the
16692 hardware.
16693
16694 Signed-off-by: Daniel Mack <daniel@caiaq.de>
16695 Cc: Sascha Hauer <s.hauer@pengutronix.de>
16696 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16697
16698 commit dfcd7f21607fd847236b04bb1a8d59a7c10ab99c
16699 Author: Wolfgang Denk <wd@denx.de>
16700 Date: Fri May 15 00:16:03 2009 +0200
16701
16702 Redundant Environment: protect full sector size
16703
16704 Several boards used different ways to specify the size of the
16705 protected area when enabling flash write protection for the sectors
16706 holding the environment variables: some used CONFIG_ENV_SIZE and
16707 CONFIG_ENV_SIZE_REDUND, some used CONFIG_ENV_SECT_SIZE, and some even
16708 a mix of both for the "normal" and the "redundant" areas.
16709
16710 Normally, this makes no difference at all. However, things are
16711 different when you have to deal with boards that can come with
16712 different types of flash chips, which may have different sector
16713 sizes.
16714
16715 Here we may have to chose CONFIG_ENV_SECT_SIZE such that it fits the
16716 biggest sector size, which may include several sectors on boards using
16717 the smaller sector flash types. In such a case, using CONFIG_ENV_SIZE
16718 or CONFIG_ENV_SIZE_REDUND to enable the protection may lead to the
16719 case that only the first of these sectors get protected, while the
16720 following ones aren't.
16721
16722 This is no real problem, but it can be confusing for the user -
16723 especially on boards that use CONFIG_ENV_SECT_SIZE to protect the
16724 "normal" areas, while using CONFIG_ENV_SIZE_REDUND for the
16725 "redundant" area.
16726
16727 To avoid such inconsistencies, I changed all sucn boards that I found
16728 to consistently use CONFIG_ENV_SECT_SIZE for protection. This should
16729 not cause any functional changes to the code.
16730
16731 Signed-off-by: Wolfgang Denk <wd@denx.de>
16732 Cc: Paul Ruhland
16733 Cc: Pantelis Antoniou <panto@intracom.gr>
16734 Cc: Stefan Roese <sr@denx.de>
16735 Cc: Gary Jennejohn <garyj@denx.de>
16736 Cc: Dave Ellis <DGE@sixnetio.com>
16737 Acked-by: Stefan Roese <sr@denx.de>
16738
16739 commit b81830f6e3b3e6ed114d071eb107965e49fa9b5a
16740 Author: Ilya Yanok <yanok@emcraft.com>
16741 Date: Thu May 14 14:03:09 2009 +0400
16742
16743 mmc: it's safe to ignore mmc_send_if_cond() return value
16744
16745 Return value of mmc_send_if_cond() can be safely ignored (as it is
16746 done in Linux). This makes older cards work with MXC MCI controller.
16747
16748 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16749
16750 commit dba6fcf6517faa5dda7df8109febe03c9c72a6f5
16751 Author: Stefan Roese <sr@denx.de>
16752 Date: Mon May 11 15:54:13 2009 +0200
16753
16754 cfi_mtd: Fix bug in last sector detection
16755
16756 This patch now enabled this cfi-mtd wrapper to correctly detect and
16757 erase the last sector in an NOR FLASH device.
16758
16759 Signed-off-by: Stefan Roese <sr@denx.de>
16760
16761 commit 4e3d89ba948eef801ffd46ef862cdede5b3f8320
16762 Author: Yauhen Kharuzhy <jekhor@gmail.com>
16763 Date: Thu May 7 00:43:30 2009 +0300
16764
16765 mmc: Fix decoding of SCR & function switch data on little-endian machines
16766
16767 SCR & switch data are read from card as big-endian words and should be
16768 converted to CPU byte order.
16769
16770 Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
16771 Signed-off-by: Andy Fleming <afleming@freescale.com>
16772
16773 commit f33cb34b3971dabe3720d577b0e1b8601c09fe17
16774 Author: Yauhen Kharuzhy <jekhor@gmail.com>
16775 Date: Thu May 7 13:08:53 2009 +0300
16776
16777 mmc: Remove return from mmc_init for non SD 2.0 compatible cards.
16778
16779 Cards which are not compatible with SD 2.0 standard, may return response
16780 for CMD8 command, but it will be invalid in terms of SD 2.0. We should
16781 accept this case as admissible, just like Linux does.
16782
16783 Signed-off-by: Yauhen Kharuzhy <jekhor@gmail.com>
16784 Signed-off-by: Andy Fleming <afleming@freescale.com>
16785
16786 commit 998be3dd59ed0af4bec38324047fecfa88ac45db
16787 Author: Rabin Vincent <rabin@rab.in>
16788 Date: Sun Apr 5 13:30:56 2009 +0530
16789
16790 mmc: drop unnecessary casts
16791
16792 Now that response is a uint, we can drop all the casts.
16793
16794 Signed-off-by: Rabin Vincent <rabin@rab.in>
16795
16796 commit 0b453ffe28bb9227d86ddbe0893bd19c93f04ed7
16797 Author: Rabin Vincent <rabin@rab.in>
16798 Date: Sun Apr 5 13:30:55 2009 +0530
16799
16800 mmc: fix response decoding on little endian
16801
16802 The mmc code defines the response as an array of chars. However, it
16803 access the response bytes both as (i) an array of four uints (with
16804 casts) and (ii) as individual chars. The former case is used more
16805 often, including by the driver when it assigns the response.
16806
16807 The char-wise accesses are broken on little endian systems because they
16808 assume that the bytes in the uints are in big endian byte order.
16809
16810 This patch fixes this by changing the response to be an array of four
16811 uints and replacing the char-wise accesses with equivalent uint-wise
16812 accesses.
16813
16814 Signed-off-by: Rabin Vincent <rabin@rab.in>
16815
16816 commit 9b1f942c09dd942e6de3185caa81c111b14de567
16817 Author: Rabin Vincent <rabin@rab.in>
16818 Date: Sun Apr 5 13:30:54 2009 +0530
16819
16820 mmc: use lldiv to fix arm eabi build
16821
16822 The generic MMC core uses direct long long divisions, which do not build
16823 with ARM EABI toolchains. Use lldiv() instead, which works everywhere.
16824
16825 Signed-off-by: Rabin Vincent <rabin@rab.in>
16826
16827 commit e85649c7e683faea1ccfddc9fa9abc62f38e4201
16828 Author: Rabin Vincent <rabin@rab.in>
16829 Date: Sun Apr 5 13:30:53 2009 +0530
16830
16831 mmc: check find_mmc_device return value
16832
16833 find_mmc_device returns NULL if an invalid device number is specified.
16834 Check for this to avoid dereferencing NULL pointers.
16835
16836 Signed-off-by: Rabin Vincent <rabin@rab.in>
16837
16838 commit ac0865ff33870cdf2cd480165045e1bc311e9fa2
16839 Author: Rabin Vincent <rabin@rab.in>
16840 Date: Sun Apr 5 13:30:52 2009 +0530
16841
16842 mmc: clean up help texts
16843
16844 Remove some repeated words and superfluous newlines in the mmc command
16845 help entries.
16846
16847 Signed-off-by: Rabin Vincent <rabin@rab.in>
16848
16849 commit 7d6900ebe16d679c0e03f8d1584b64057a64ce39
16850 Author: Mike Frysinger <vapier@gentoo.org>
16851 Date: Fri May 29 17:01:48 2009 -0400
16852
16853 Blackfin: spi: fix pin handling of SPI0 SSEL4
16854
16855 CS4 on SPI0 has a dedicated PH8 pin which needs to be enabled as a
16856 peripheral in order to work.
16857
16858 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16859
16860 commit 2157359dad2533987f5eb0181ef543693fad6a33
16861 Author: Mike Frysinger <vapier@gentoo.org>
16862 Date: Tue May 26 02:51:57 2009 -0400
16863
16864 Blackfin: fix if() logic in bootrom evt1 check
16865
16866 A missing set of parenthesis caused the silicon revision to apply only to
16867 the BF533 and not the BF531/BF532 variants.
16868
16869 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16870
16871 commit 76b5883da2cf049cd410901c04ea450e5f5c27c3
16872 Author: Stefan Roese <sr@denx.de>
16873 Date: Sat May 16 12:04:22 2009 +0200
16874
16875 jffs2/mtdparts: Fix problem with usage from JFFS2 and MTDPARTS together
16876
16877 Currently using JFFS2 with MTDPARTS enabled doesn't work. This is because
16878 mtdparts_init() is available in both files, cmd_mtdparts.c and
16879 cmd_jffs2.c. Please note that in the original cmd_jffs2.c file (before
16880 the jffs2/mtdparts command/file split those 2 different versions
16881 already existed. So this is nothing new. The main problem is that the
16882 variables "current_dev" and "current_partnum" are declared in both
16883 files now. This doesn't work.
16884
16885 This patch now changes the names of those variable to more specific
16886 names: "current_mtd_dev" and "current_mtd_partnum". This is because
16887 this patch also changes the declaration from static to global, so
16888 that they can be used from both files.
16889
16890 Please note that my first tests were not successful. The MTD devices
16891 selected via mtdparts are now accessed but I'm failing to see the
16892 directory listed via the "ls" command. Nothing is displayed. Perhaps
16893 I didn't generate the JFFS2 image correctly (I never used JFFS2 in
16894 U-Boot before). Not sure. Perhaps somebody else could take a look at
16895 this as well. I'll continue looking into this on Monday.
16896
16897 Signed-off-by: Stefan Roese <sr@denx.de>
16898 Cc: Wolfgang Denk <wd@denx.de>
16899 Cc: Detlev Zundel <dzu@denx.de>
16900 Cc: Ilya Yanok <yanok@emcraft.com>
16901 Cc: Renaud barbier <renaud.barbier@ge.com>
16902
16903 commit ab687907980fa28940a1a992d3f1c5d17cdbbf5d
16904 Author: Graf Yang <graf.yang@analog.com>
16905 Date: Sun May 24 02:34:34 2009 -0400
16906
16907 Blackfin: bf518f-ezbrd: setup portmux for async flash
16908
16909 The pins for async memory where parallel flash lives are not enabled by
16910 default, so make sure we mux them as needed.
16911
16912 Signed-off-by: Graf Yang <graf.yang@analog.com>
16913 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16914
16915 commit f40f6db278f602b55820693634a7256b0b4e4b80
16916 Author: Stefan Roese <sr@denx.de>
16917 Date: Wed May 20 10:58:03 2009 +0200
16918
16919 nand: Fix problem with ECC ordering for PPC4xx NDFC platforms
16920
16921 This patch enables Smart Media (SMC) ECC byte ordering which is used
16922 on the PPC4xx NAND FLASH controller (NDFC). Without this patch we have
16923 incompatible ECC byte ordering to the Linux kernel NDFC driver.
16924
16925 Signed-off-by: Stefan Roese <sr@denx.de>
16926 Acked-by: Scott Wood <scottwood@freescale.com>
16927
16928 commit 399aab7748bef053d59612211e1bd7a3fabfce18
16929 Author: Stefan Roese <sr@denx.de>
16930 Date: Wed May 20 10:58:02 2009 +0200
16931
16932 ppc4xx: Fix problem with ECC ordering for PPC4xx NDFC platforms
16933
16934 This patch now uses the correct ECC byte order (Smart Media - SMC)
16935 to be used on the 4xx NAND FLASH driver. Without this patch we have
16936 incompatible ECC byte ordering to the Linux kernel NDFC driver.
16937
16938 Please note that we also have to enable CONFIG_MTD_NAND_ECC_SMC in
16939 drivers/mtd/nand/nand_ecc.c for correct operation. This is done with
16940 a seperate patch.
16941
16942 Signed-off-by: Stefan Roese <sr@denx.de>
16943 Acked-by: Scott Wood <scottwood@freescale.com>
16944
16945 commit 5d841fac8249a2b3f9a814da2140132be0a9f60d
16946 Author: Stefan Roese <sr@denx.de>
16947 Date: Wed May 20 10:58:01 2009 +0200
16948
16949 ppc4xx: Move definition for PPC4xx NAND FLASH controller to header
16950
16951 This patch moves the definition for the PPC4xx NAND FLASH controller
16952 (NDFC) CONFIG_NAND_NDFC into include/ppc4xx.h. This is needed for the
16953 upcoming fix for the ECC byte ordering of the NDFC driver.
16954
16955 Signed-off-by: Stefan Roese <sr@denx.de>
16956 Acked-by: Scott Wood <scottwood@freescale.com>
16957
16958 commit 2df72b82bc9e17b88dc82735a067749220beb025
16959 Author: Kim Phillips <kim.phillips@freescale.com>
16960 Date: Tue May 19 12:53:36 2009 -0500
16961
16962 common: fix inline--weak error spotted by gcc 4.4
16963
16964 cmd_ide.c:547: error: inline function 'ide_inb' cannot be declared weak
16965
16966 removing the inline attribute fixes it.
16967
16968 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16969
16970 commit 9fd9abedcc3c10cf89353265cbe05f58609d51f3
16971 Author: Kim Phillips <kim.phillips@freescale.com>
16972 Date: Tue May 19 12:53:32 2009 -0500
16973
16974 TQM834x: remove defines causing gcc4.4 warnings
16975
16976 Configuring for TQM834x board...
16977 cpu_init.c: In function 'cpu_init_f':
16978 cpu_init.c:262: warning: array subscript is above array bounds
16979 cpu_init.c:263: warning: array subscript is above array bounds
16980 cpu_init.c:270: warning: array subscript is above array bounds
16981 ...
16982
16983 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16984
16985 commit 0850301747228a3327f2815a85284d26ade3de95
16986 Author: Andreas Huber <andreas.huber@keymile.com>
16987 Date: Tue May 19 11:06:30 2009 +0200
16988
16989 UBI: fix return code in ubi_volume_read
16990
16991 Return -ENODEV instead of 0 when trying to read from a non existing volume.
16992
16993 Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
16994 Signed-off-by: Stefan Roese <sr@denx.de>
16995
16996 commit ec01481ddc4cf302c7f6d760b776ca94819ec21e
16997 Author: Graf Yang <graf.yang@analog.com>
16998 Date: Tue May 19 04:40:08 2009 -0400
16999
17000 Blackfin: fix timer_init()/timer_reset()
17001
17002 The timer_init() function was not using the right csync instruction, nor
17003 was it doing it right after disabling the core timer.
17004
17005 The timer_reset() function would reset the timestamp, but not the actual
17006 timer, so there was a common edge case where get_timer() return a jump of
17007 one timestamp (couple milliseconds) right after resetting. This caused
17008 many functions to improperly timeout right away.
17009
17010 Signed-off-by: Graf Yang <graf.yang@analog.com>
17011 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17012
17013 commit c06326c73bf90e48a8e1cf8893ad31c575423f50
17014 Author: Shinya Kuribayashi <skuribay@pobox.com>
17015 Date: Sat May 16 09:12:09 2009 +0900
17016
17017 MIPS: lib_mips/board.c: Remove unused variables
17018
17019 This fixes the following build warnings:
17020
17021 board.c: In function 'board_init_r':
17022 board.c:328: warning: unused variable 'i'
17023 board.c:326: warning: unused variable 'e'
17024
17025 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
17026
17027 commit 47f6a36cc3f3427cc8e4f1d0f3e6678be6f33769
17028 Author: Shinya Kuribayashi <skuribay@pobox.com>
17029 Date: Sat May 16 09:12:09 2009 +0900
17030
17031 MIPS: Make all extern-ed functions in bitops.h static
17032
17033 All these functions are expected to be static inline-ed.
17034 This patch also fixes the following build warnings on MIPS targets:
17035
17036 include/asm/bitops.h: In function 'ext2_find_next_zero_bit':
17037 include/asm/bitops.h:862: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
17038 include/asm/bitops.h:885: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
17039 include/asm/bitops.h:887: warning: '__fswab32' is static but used in inline function 'ext2_find_next_zero_bit' which is not static
17040
17041 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
17042
17043 commit 87423d740b91329b8d1d0b73cafd6930993b558a
17044 Author: Thomas Lange <thomas@corelatus.se>
17045 Date: Fri Apr 24 16:22:16 2009 +0200
17046
17047 MIPS: Implement ethernet halt for au1x00
17048
17049 Implement ethernet halt() by putting MAC0 in reset.
17050 If we do not do this, we will get memory corruption
17051 when ethernet frames are received during early OS boot.
17052
17053 Signed-off-by: Thomas Lange <thomas@corelatus.se>
17054 Signed-off-by: Shinya Kuribayashi <skuribay@pobox.com>
17055
17056 commit a2e0ffcf2d9a22c582a93e84a4bef20fd3877f47
17057 Author: Wolfgang Denk <wd@denx.de>
17058 Date: Fri May 15 23:29:23 2009 +0200
17059
17060 Prepare v2009.06-rc2
17061
17062 Update CHANGELOG.
17063
17064 Signed-off-by: Wolfgang Denk <wd@denx.de>
17065
17066 commit f4317ea91942f44cc1c433277927b61618e9b0a5
17067 Author: Daniel Mack <daniel@caiaq.de>
17068 Date: Tue May 5 12:48:29 2009 +0200
17069
17070 ARM: fix PXA build by defining UP2OCR
17071
17072 U-Boot does not currently build for PXA platforms with USB support
17073 enabled:
17074
17075 usb.c:46: error: 'UP2OCR' undeclared (first use in this function)
17076
17077 Signed-off-by: Daniel Mack <daniel@caiaq.de>
17078 Cc: Markus Klotzbuecher <mk@denx.de>
17079
17080 Edited commit message.
17081 Signed-off-by: Wolfgang Denk <wd@denx.de>
17082
17083 commit e26ad0eabd10a8cda51920fbcfe4da5b4ccf0c98
17084 Author: Wolfgang Denk <wd@denx.de>
17085 Date: Fri May 15 22:32:57 2009 +0200
17086
17087 Minor Coding Style fix; update CHANGELOG.
17088
17089 Signed-off-by: Wolfgang Denk <wd@denx.de>
17090
17091 commit af75a45d23b72a59ac5cc0427696c7f634fdc94b
17092 Author: Wolfgang Denk <wd@denx.de>
17093 Date: Fri May 15 09:27:58 2009 +0200
17094
17095 IDE: bail out of dev_print() for unknown device types
17096
17097 Commit 574b319512 introduced a subtle bug by mixing a list of tests
17098 for "dev_desc->type" and "dev_desc->if_type" into one switch(), which
17099 then mostly did not work because "dev_desc->type" cannot take any
17100 "IF_*" type values. A later fix in commit 8ec6e332ea changed the
17101 switch() into testing "dev_desc->if_type", but at this point the
17102 initial test for unknown device types was completely lost, which
17103 resulted in output like that for IDE ports without device attached:
17104
17105 Device 1: Model: Firm: Ser#:
17106 Type: # 1F #
17107 Capacity: not available
17108
17109 This patch re-introduces the missing test for unknown device types.
17110
17111 Signed-off-by: Wolfgang Denk <wd@denx.de>
17112 Cc: Stefan Roese <sr@denx.de>
17113 Cc: Detlev Zundel <dzu@denx.de>
17114 Tested-by: Stefan Roese <sr@denx.de>
17115
17116 commit c21f62d8483fbab44cd98d93ff2e9355a330d225
17117 Author: Stefan Roese <sr@denx.de>
17118 Date: Thu May 14 07:25:13 2009 +0200
17119
17120 74xx_7xx: Fix rounding problem in CPU frequency calculation
17121
17122 This patch fixes a problem in the CPU frequency calculation. Without it
17123 a 798MHz CPU is displayed as 368.503 MHz. And with it it's 798 MHz.
17124
17125 Signed-off-by: Stefan Roese <sr@denx.de>
17126
17127 commit 3ad8a0517b724782ab36f2b554a94de4c00c1adb
17128 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17129 Date: Wed May 13 22:24:12 2009 +0200
17130
17131 console.h: remove unused prototype 'console_realloc'
17132
17133 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17134
17135 commit 84bf7ca522e94ec402a1264b01971b924b7e268f
17136 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17137 Date: Wed May 13 22:16:31 2009 +0200
17138
17139 api: remove un-needed ifdef CONFIG_API already handle by the Makefile
17140
17141 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17142
17143 commit 792a09eb9d5d8c4f74b7e9f2e887316d511a4e80
17144 Author: Detlev Zundel <dzu@denx.de>
17145 Date: Wed May 13 10:54:10 2009 +0200
17146
17147 Fix e-mail address of Gary Jennejohn.
17148
17149 Signed-off-by: Detlev Zundel <dzu@denx.de>
17150
17151 commit 5e2c08c3ac90808e9be64856916bfd6df984823c
17152 Author: Emil Medve <Emilian.Medve@Freescale.com>
17153 Date: Tue May 12 13:48:32 2009 -0500
17154
17155 Remove inline qualifier from show_boot_progress()
17156
17157 The 'inline' is conflicting with the semantic of 'weak' attribute and with the
17158 way the show_boot_progress() function is used.
17159
17160 Also gcc 4.4 is complaining about it:
17161
17162 main.c:51: error: inline function 'show_boot_progress' cannot be declared weak
17163
17164 Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
17165
17166 commit fe6da4837308aa33d537ac3e7f36c2d66e3d9a36
17167 Author: Wolfgang Denk <wd@denx.de>
17168 Date: Tue May 12 15:17:35 2009 +0200
17169
17170 MPC8260: fixup device tree by property instead of path
17171
17172 cpu/mpc8260/cpu.c used to use do_fixup_by_path_u32() to update the
17173 clock frequencies in the device tree, using a CPU path
17174 "/cpus/OF_CPU", with OF_CPU beind defined in the board config file.
17175
17176 However, this does not work when one board config file (here:
17177 MPC8260ADS.h) is intended to be used for several diffrent CPUs and
17178 therefor contains a generic definition like "cpu@0", as the device
17179 trees that will then be loaded will contain specific names like
17180 "PowerPC,8272@0".
17181
17182 We switch to using do_fixup_by_prop_u32() instead, so we can search
17183 for device_type="cpu", as it is done in other architectures, too.
17184
17185 Signed-off-by: Wolfgang Denk <wd@denx.de>
17186 Cc: Heiko Schocher <hs@denx.de>
17187 Acked-by: Heiko Schocher <hs@denx.de>
17188 Tested-by: Heiko Schocher <hs@denx.de>
17189
17190 commit 12a6753155716e5c3c181a8f40e8b2d3d669aefd
17191 Author: Rohit Hagargundgi <h.rohit@samsung.com>
17192 Date: Mon Mar 9 19:45:46 2009 +0530
17193
17194 Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
17195
17196 Add CONFIG_SYS_MONITOR_LEN macro to apollon board config.
17197 CONFIG_SYS_MONITOR_LEN defines the U-Boot image size.
17198 and is used by OneNAND ipl when reading U-Boot image.
17199
17200 Signed-off-by: Rohit Hagargundgi <h.rohit at samsung.com>
17201 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
17202
17203 commit c404cc5884b0c82fd82d751dbd8e8b3f8919a23a
17204 Author: Ben Warren <biggerbadderben@gmail.com>
17205 Date: Tue Apr 28 17:04:51 2009 -0700
17206
17207 Schedule removal of non-CONFIG_NET_MULTI net driver API
17208
17209 This will make CONFIG_NET_MULTI the only net driver configuration and
17210 we'll be able to remove this option.
17211
17212 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17213
17214 commit 60bbcf0cc6e55095dd186e59a557d584b9b56eb1
17215 Author: Detlev Zundel <dzu@denx.de>
17216 Date: Tue May 5 16:04:06 2009 +0200
17217
17218 powerpc/inka4x0: Remove left-over ide reset code.
17219
17220 The pin which was used in preliminary versions of the board for ide
17221 reset is really connected to the rtc clock.
17222
17223 Signed-off-by: Detlev Zundel <dzu@denx.de>
17224
17225 commit f578a2da6770951239ad91ee9a1875fdc71dbe48
17226 Author: Marco Stornelli <marco.stornelli@gmail.com>
17227 Date: Tue Apr 28 19:04:02 2009 +0200
17228
17229 Add imls utility command
17230
17231 This patch adds, under tools folder, a new command called imls. Its
17232 goal is the same of UBoot's imls but it can be used as Linux shell
17233 command. It reads from raw mtd partition and prints the list of the
17234 stored images.
17235
17236 Signed-off-by: Marco Stornelli <marco.stornelli@gmail.com>
17237
17238 commit da95427ce431908714ae5e9f663ee6e2bc3bcc33
17239 Author: Heiko Schocher <hs@denx.de>
17240 Date: Tue Apr 28 08:36:11 2009 +0200
17241
17242 netloop: updates for NetLoop
17243
17244 Fix some issues introduced from commit:
17245 2f70c49e5b9813635ad73666aa30f304c7fdeda9
17246 suggested by Mike Frysinger.
17247
17248 - added some comment for the env_id variable in common_cmd_nvedit.c
17249 - moved some variables in fn scope instead of file scope
17250 - NetInitLoop now static void
17251
17252 Signed-off-by: Heiko Schocher <hs@denx.de>
17253 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17254
17255 commit 3c1d89545de11822f8b5afb5646a57757620bd95
17256 Author: Heiko Schocher <hs@denx.de>
17257 Date: Tue Apr 28 07:48:39 2009 +0200
17258
17259 82xx, ids8247: added ids8247 board to MAKEALL script
17260
17261 Signed-off-by: Heiko Schocher <hs@denx.de>
17262
17263 commit 890a017a8a995c921d1e889d360e8d6538ceecfe
17264 Author: Detlev Zundel <dzu@denx.de>
17265 Date: Thu May 7 13:08:55 2009 +0200
17266
17267 arm/imx31_phycore: Fix bi_arch_number
17268
17269 Signed-off-by: Detlev Zundel <dzu@denx.de>
17270 Cc: Sascha Hauer <s.hauer@pengutronix.de>
17271
17272 commit ee47bfabefeb25bdfc83f49ef3bae0f325d3e69e
17273 Author: Sascha Hauer <s.hauer@pengutronix.de>
17274 Date: Fri May 15 10:21:33 2009 +0200
17275
17276 remove myself as phycore/litekit Maintainer
17277
17278 I never acked a patch that adds me as phycore i.MX31 maintainer nor was
17279 it me who pushed the patches, so remove myself from the maintainer list
17280 so that other people do not longer wait for my ack.
17281
17282 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
17283
17284 commit c63254ef5628efe1c77cb2fdba20753f9666f55d
17285 Author: Sergey Lapin <slapin@ossfans.org>
17286 Date: Tue May 12 12:25:14 2009 +0400
17287
17288 AFEB9260 network fix
17289
17290 AFEB9260 uses PA10, PA11 for ETX2 and ETX3.
17291 Also, due to extarnal pull-up on IRQ line, Micrel PHY ID is 1 after reset sequence,
17292 not 0.
17293
17294 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
17295
17296 commit f8ddcd58221cab63dd25c2324dd2032487f748b1
17297 Author: Graf Yang <graf.yang@analog.com>
17298 Date: Tue May 5 02:26:27 2009 -0400
17299
17300 Blackfin: bf518f-ezbrd: reset ethernet PHY during init
17301
17302 We don't know what state the ethernet PHY is in when starting up, so make
17303 sure we set it to a sane state. This fixes troubles seen when Linux boots
17304 up, configures the PHY is a non-default state, and then the system reboots
17305 into U-Boot which previously expected a reset state only.
17306
17307 Signed-off-by: Graf Yang <graf.yang@analog.com>
17308 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17309
17310 commit 53310b88eaa27fb5cb83144d0b22389190ad87a1
17311 Author: Mike Frysinger <vapier@gentoo.org>
17312 Date: Tue May 5 01:35:41 2009 -0400
17313
17314 Blackfin: bf527-ezkit: fix SPI flash env params
17315
17316 The BF527-EZKIT settings for storing the environment in SPI flash wasn't
17317 using the correct sector settings for the SPI flash part that is actually
17318 on the board.
17319
17320 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17321
17322 commit f58bf804a14324c6c9186a7a664fa23281780e8b
17323 Author: Mike Frysinger <vapier@gentoo.org>
17324 Date: Fri Apr 24 23:54:19 2009 -0400
17325
17326 Blackfin: avoid get_sclk() with early serial debug
17327
17328 When the clock functions were changed to use cached values (and thereby
17329 avoiding expensive math functions), early serial debug broke because the
17330 baud programming is called before external memory is available.
17331
17332 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17333
17334 commit 02778f2f1b4b1a28b492367477db27c58d45ae35
17335 Author: Mike Frysinger <vapier@gentoo.org>
17336 Date: Fri Apr 24 23:39:41 2009 -0400
17337
17338 Blackfin: fix booting with older bootroms (no EVT1)
17339
17340 When dropping jump block support, the assumption was that all bootroms
17341 supported entry point redirection via the EVT1 register. Unfortunately,
17342 this turned out to be incorrect for the oldest Blackfin parts (BF533-0.2
17343 and older and BF561). No one really noticed earlier because these parts
17344 usually are booted by bypassing the bootrom entirely, and older BF533
17345 parts are not supported at all (too many anomalies).
17346
17347 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17348
17349 commit af2c37378f203857d5e6c957e77a14c2da5b59d2
17350 Author: Mike Frysinger <vapier@gentoo.org>
17351 Date: Fri Apr 24 23:22:48 2009 -0400
17352
17353 Blackfin: recurse with early serial initcode
17354
17355 Make sure we recurse through serial_putc() rather than bang on the UART
17356 transmit register directly to avoid hardware overflows when using \n.
17357
17358 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17359
17360 commit 6b8edfde22acc574b5532e9f086e6a7287a9bc78
17361 Author: Wolfgang Denk <wd@denx.de>
17362 Date: Fri May 1 21:59:12 2009 +0200
17363
17364 Prepare v2009.06-rc1
17365
17366 Update CHANGELOG.
17367
17368 Signed-off-by: Wolfgang Denk <wd@denx.de>
17369
17370 commit 6b2beb5626a143ca5347e7d2c6005be9936c1fbb
17371 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17372 Date: Fri May 1 15:38:06 2009 +0200
17373
17374 at91: remove lowlevel_init.S
17375
17376 lowlevel_init.S is not used any more so remove it.
17377 As consequence, we also don't have to generate u-boot.lds
17378 but can use a static version as before.
17379
17380 This also fixes the out-of-tree build problem introduced
17381 with commit f0a2c7b4 "at91: add support for the PM9263 board"
17382
17383 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17384 Signed-off-by: Wolfgang Denk <wd@denx.de>
17385
17386 commit 0ee7a310479640ef17ce2fc0f6c13cf7961d2330
17387 Author: Wolfgang Denk <wd@denx.de>
17388 Date: Fri May 1 00:16:11 2009 +0200
17389
17390 Update CHANGELOG; minor coding style cleanup.
17391
17392 Signed-off-by: Wolfgang Denk <wd@denx.de>
17393
17394 commit d3a513c23ba4100d6983161cdc1f747dfd087bbd
17395 Author: Manikandan Pillai <mani.pillai@ti.com>
17396 Date: Tue Apr 21 17:29:05 2009 +0200
17397
17398 OMAP3: Fix timer handling to 1ms and CONFIG_SYS_HZ to 1000
17399
17400 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17401 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
17402
17403 commit ac9140037a84629c5583066ff1a177396c47d89d
17404 Author: Dirk Behme <dirk.behme@googlemail.com>
17405 Date: Fri Apr 17 14:27:56 2009 +0200
17406
17407 OMAP3: Beagle: Set pinmux conditionally for Rev C boards
17408
17409 The Beagle Rev C boards pull UART2 from an alternate set of balls.
17410
17411 Signed-off-by: Steve Sakoman <steve@sakoman.com>
17412 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17413
17414 commit c1a0fd5f2864e9d381f4a3dc948942cac974e89a
17415 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17416 Date: Mon Apr 27 18:33:33 2009 +0200
17417
17418 ubifs: BUG: Blocks commpressed with zlib
17419
17420 Blocks compressed with zlib dont have the full gzip header.
17421
17422 Without this patch, block compressed with zlib cannot be readed!
17423
17424 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17425
17426 commit 35f6a943f7d92145d607c1d55f5c2e2eae5be630
17427 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17428 Date: Mon Apr 27 18:33:32 2009 +0200
17429
17430 lib_generic: gunzip: New function zunzip
17431
17432 Separate gunzip in
17433
17434 gunzip: Find the end of the header and call zunzip.
17435 zunzip: Inflate gunzip block without header.
17436
17437 UBI fs blocks can be compresed in lzo, zlib or no-compression. The
17438 current implementation of u-boot supported all the compressions but
17439 there was a bug in the implementation of the zlib blocks.
17440
17441 UBIFS's Zlib blocks do not have header but they were compressed using
17442 gunzip, a function used to decompress gunzip files/sectors with a
17443 header.
17444
17445 This patch adds a new function zunzip that uncompress a zlib block with
17446 no header.
17447
17448 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17449
17450 commit a1e5f93185d0d85a4b3fad3b6c743cddcd373b0c
17451 Author: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
17452 Date: Thu Apr 23 15:37:16 2009 +0200
17453
17454 at91: fixed plla calc when no USB support is active
17455
17456 Signed-off-by: Daniel Gorsulowski <Daniel.Gorsulowski@esd.eu>
17457 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17458
17459 commit 3791a1187c1401c33c9512595e6e89dbb46230c5
17460 Author: Ladislav Michl <ladis@linux-mips.org>
17461 Date: Wed Apr 22 01:12:04 2009 +0200
17462
17463 arm925t: Fix CONFIG_SYS_HZ to 1000
17464
17465 Let CONFIG_SYS_HZ to have value of 1000 effectively fixing all users of
17466 get_timer.
17467
17468 Changes since original version:
17469 * Set PTV=2 (divisor 8) for boards using 12MHz timer clock source to
17470 improve timer resolution.
17471
17472 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
17473
17474 commit 42bf4b2248146abdc592bde0009c6ea42067f437
17475 Author: Dirk Behme <dirk.behme@googlemail.com>
17476 Date: Tue Apr 14 20:15:17 2009 +0200
17477
17478 OMAP3: Remove legacy NAND defines
17479
17480 Remove remaining legacy NAND defines for Beagle, EVM, Overo and Pandora.
17481
17482 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17483
17484 commit cba0b778dd5f1ea32959b6825c7f0a31501a99d5
17485 Author: Sanjeev Premi <premi@ti.com>
17486 Date: Mon Apr 27 21:27:54 2009 +0530
17487
17488 OMAP3: Print correct silicon revision
17489
17490 The function display_board_info() displays incorrect
17491 silicon revision - based on the return value from
17492 function get_cpu_rev().
17493
17494 This patch fixes the problem.
17495
17496 Signed-off-by: Sanjeev Premi <premi@ti.com>
17497
17498 commit 90006e9b33bcdbf241b0295d186e3634137907a9
17499 Author: Sanjeev Premi <premi@ti.com>
17500 Date: Mon Apr 27 21:27:44 2009 +0530
17501
17502 OMAP3: Remove unused board-types
17503
17504 The board-types defined in struct omap3_sysinfo seem to be
17505 unused. The function display_board_info() is passed
17506 board type as an argument; which is ignored.
17507
17508 This patch removes all uses of board-type, related definitions
17509 and functions.
17510
17511 Signed-off-by: Sanjeev Premi <premi@ti.com>
17512
17513 commit 6a6b62e3aa4b340c4f8fc67b1487ddb5436c684d
17514 Author: Sanjeev Premi <premi@ti.com>
17515 Date: Mon Apr 27 21:27:27 2009 +0530
17516
17517 OMAP3: Use functions print_cpuinfo() and checkboard()
17518
17519 Use the functions print_cpuinfo() and checkboard() to
17520 display the cpu and board specific information.
17521
17522 These functions reuse content from the existing function
17523 display_board_info() - which has been removed.
17524
17525 Also, updated the existig OMAP3 configurations to
17526 define:
17527 - CONFIG_DISPLAY_CPUINFO
17528 - CONFIG_DISPLAY_BOARDINFO
17529
17530 Signed-off-by: Sanjeev Premi <premi@ti.com>
17531
17532 commit f8e2b3107ee00f2782f8ebf47e3f09cda4e2353a
17533 Author: Stefan Roese <sr@denx.de>
17534 Date: Wed Mar 18 11:17:37 2009 +0100
17535
17536 MTD: Change cfi-mtd to accept non-uniform sector sizes
17537
17538 With this patch non-uniform NOR FLASH chips (chips with multiple erase
17539 regions) can be exported via the cfi-mtd layer and therefor used by UBI.
17540 We select the largest sector size as erasesize. The cfi driver will make
17541 sure that the smaller sectors are handled correctly.
17542
17543 Signed-off-by: Stefan Roese <sr@denx.de>
17544
17545 commit 3dcbe628d66b648e954bc8147d4faff2983206d9
17546 Author: Anatolij Gustschin <agust@denx.de>
17547 Date: Thu Apr 23 12:35:22 2009 +0200
17548
17549 video: fix bug in cfb_console.c code
17550
17551 Fix bug in drawing long version/info strings:
17552 U-Boot version string like
17553 "U-Boot 2009.03-05647-g7c51e06 (Apr 23 2009 - 12:40:00) MPC83XX"
17554 is long and doesn't wrap around correctly while drawing
17555 beside the logo. Such long strings partially overwrite
17556 the logo. This patch is an attempt to fix it.
17557
17558 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17559
17560 commit 4d9eab89b3b2c2ed432b14d355a56f274d8aac75
17561 Author: Wolfgang Denk <wd@denx.de>
17562 Date: Tue Apr 28 08:50:31 2009 +0200
17563
17564 cmd_ext2.c: fix compile warnings
17565
17566 Get rid of these warnings:
17567
17568 cmd_ext2.c:247: warning: format '%ld' expects type 'long int', but argument 2 has type 'int'
17569 cmd_ext2.c:248: warning: format '%lX' expects type 'long unsigned int', but argument 3 has type 'int'
17570
17571 Signed-off-by: Wolfgang Denk <wd@denx.de>
17572
17573 commit 28afe0160f87ff74574150d703055a965f91422a
17574 Author: Heiko Schocher <hs@denx.de>
17575 Date: Mon Apr 27 10:48:20 2009 +0200
17576
17577 ids8247: Remove legacy NAND defines
17578
17579 because legacy NAND support is deprecated converting to current
17580 NAND interface. !This just compile, because I have no more the
17581 hardware to test it.
17582
17583 Signed-off-by: Heiko Schocher <hs@denx.de>
17584
17585 commit dbd33614404b65aa441c5620c3dbd560c4460c09
17586 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17587 Date: Mon Apr 27 09:13:31 2009 +0200
17588
17589 ubifs: BUG realpath string must be ended with NULL
17590
17591 If the memory used to copy the link_make is "dirty" the string wont
17592 be ended with NULL, throwing out multiple memory bugs.
17593
17594 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17595 Acked-by: Stefan Roese <sr@denx.de>
17596
17597 commit 65351a8793c51f3787efbbcf3aa1df0ad543c127
17598 Author: Peter Tyser <ptyser@xes-inc.com>
17599 Date: Fri Apr 24 15:59:56 2009 -0500
17600
17601 bmp_logo: Check return value of fread()
17602
17603 Add basic error handling to fread() function calls. This prevents
17604 compililation warnings such as:
17605
17606 bmp_logo.c: In function ‘main’:
17607 bmp_logo.c:71: warning: ignoring return value of ‘fread’, declared with
17608 attribute warn_unused_result
17609 ...
17610
17611 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17612
17613 commit eea8be86d1c2b570660d1f6c553845e13164231a
17614 Author: Peter Tyser <ptyser@xes-inc.com>
17615 Date: Fri Apr 24 15:59:46 2009 -0500
17616
17617 ncb: Check return value of write()
17618
17619 This prevents the compilation warning:
17620
17621 ncb.c: In function 'main':
17622 ncb.c:32: warning: ignoring return value of ‘write’, declared with
17623 attribute warn_unused_result
17624
17625 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17626
17627 commit dbe29e36a4c2775b69b5a63b0ce2bac89c08e691
17628 Author: Stefan Roese <sr@denx.de>
17629 Date: Fri Apr 24 15:59:35 2009 +0200
17630
17631 mtd: nand/onenand: Register mtd device upon device scanning
17632
17633 With this patch the NAND and OneNAND devices are registered in the MTD
17634 subsystem and can then be referenced by the mtdcore code (e.g.
17635 get_mtd_device_nm()). This is needed for the new "ubi part" command
17636 syntax without the flash type parameter (nor|nand|onenand).
17637
17638 Signed-off-by: Stefan Roese <sr@denx.de>
17639
17640 commit 10bb62d85a0850dbad1fdd34123378686373f166
17641 Author: Stefan Roese <sr@denx.de>
17642 Date: Fri Apr 24 15:58:33 2009 +0200
17643
17644 mtd: nand: Include linux/mtd/partitions.h in nand_base.h
17645
17646 This patch removes this compilation warning when CONFIG_MTD_PARTITIONS is
17647 defined:
17648
17649 nand_base.c: In function 'nand_release':
17650 nand_base.c:2922: warning: implicit declaration of function 'del_mtd_partitions'
17651
17652 Signed-off-by: Stefan Roese <sr@denx.de>
17653
17654 commit 2d579e5060413af5a740cb396dc87e1ff31bf5a9
17655 Author: Stefan Roese <sr@denx.de>
17656 Date: Fri Apr 24 20:24:19 2009 +0200
17657
17658 ubi: Remove flash selection parameter (nor|nand|onenand) from "ubi part"
17659
17660 This patch removes the now unnecessary flash type parameter from the
17661 "ubi part" command. Currently the user has to define the type of flash
17662 he will be using UBI on. Example:
17663
17664 => ubi part nor partition1
17665
17666 With this patch this type parameter is not needed anymore. The user can
17667 now select the partition directly without the flash type paramter.
17668 Example:
17669
17670 => ubi part partition1
17671
17672 This breaks backward compatibility right now because of the change in the
17673 command syntax. But UBI support is still quite fresh and the advantage of
17674 this new command is syntax big enough for this change. Additionally the
17675 code is much cleaner now.
17676
17677 Signed-off-by: Stefan Roese <sr@denx.de>
17678 CC: Kyungmin Park <kyungmin.park@samsung.com>
17679
17680 commit 294f10ca9ea82a15e135dcb0fc658382ab206940
17681 Author: Detlev Zundel <dzu@denx.de>
17682 Date: Thu Apr 23 13:14:20 2009 +0200
17683
17684 mips/vcth: Use generic 16550 uart driver
17685
17686 As the common code also handles baudrate switching, which the board
17687 specific vct.c driver did not support, this is one of the rare
17688 occassions where deleting code actually adds a feature :)
17689
17690 Signed-off-by: Detlev Zundel <dzu@denx.de>
17691 Acked-by: Stefan Roese <sr@denx.de>
17692 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17693
17694 commit 0c8a84916c5dacccdc5b27b63fc463e9f3b04f07
17695 Author: Ladislav Michl <ladis@linux-mips.org>
17696 Date: Tue Apr 21 02:26:31 2009 +0200
17697
17698 Separate mtdparts command from jffs2
17699
17700 On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
17701 > Currently the mtdparts commands are included in the jffs2 command support.
17702 > This doesn't make sense anymore since other commands (e.g. UBI) use this
17703 > infrastructure as well now. This patch separates the mtdparts commands from
17704 > the jffs2 commands making it possible to only select mtdparts when no JFFS2
17705 > support is needed.
17706
17707 One more leftover... Let nboot command know about partitions even if JFFS2
17708 support is not enabled.
17709
17710 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
17711 Acked-by: Stefan Roese <sr@denx.de>
17712
17713 commit 67c2e57c0875139dbfcd6f41c43e6ad0cb2e40c9
17714 Author: Peter Tyser <ptyser@xes-inc.com>
17715 Date: Mon Apr 20 11:22:13 2009 -0500
17716
17717 cmd_ide: Remove unused AmigaOneG3SE code
17718
17719 The output_data_short() and input_data_short() functions for the
17720 AmigaOneG3SE are unused and result in compiler warnings.
17721
17722 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17723
17724 commit c93c102ace00764a56dbdf78bac134a23906721e
17725 Author: Peter Tyser <ptyser@xes-inc.com>
17726 Date: Mon Apr 20 11:21:40 2009 -0500
17727
17728 AmigaOneG3SE: Fix CONFIG_CMD_CONSOLE definition
17729
17730 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17731
17732 commit 54e822f9590cc6c70411bd8cabd42236e07a2aa7
17733 Author: Peter Tyser <ptyser@xes-inc.com>
17734 Date: Mon Apr 20 11:09:05 2009 -0500
17735
17736 Replace __asm references with __asm__
17737
17738 __asm__ follows gcc's documented syntax and is generally more common
17739 than __asm. This change is only asthetic and should not affect
17740 functionality.
17741
17742 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17743
17744 commit f9a109b3adc5e8647535357500e2a38f0558b5c2
17745 Author: Peter Tyser <ptyser@xes-inc.com>
17746 Date: Mon Apr 20 11:08:46 2009 -0500
17747
17748 Replace __attribute references with __attribute__
17749
17750 __attribute__ follows gcc's documented syntax and is generally more
17751 common than __attribute. This change is only asthetic and should not
17752 affect functionality.
17753
17754 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17755
17756 commit 08f077da9298ff65cc6f85f90d2770000a1beee9
17757 Author: David Brownell <dbrownell@users.sourceforge.net>
17758 Date: Thu Apr 16 19:55:48 2009 -0700
17759
17760 mtdpart command: align output columns
17761
17762 Make the headers in the "mtdparts" command output line up
17763 with their columns ... strike the extra TAB character.
17764
17765 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17766
17767 commit 06f41f825c23344d889d5419bb5eaeceb3ed2a02
17768 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17769 Date: Thu Apr 16 10:51:03 2009 +0900
17770
17771 Remove sa1100.h
17772
17773 sa1100.h is not used anywhere, then remove it.
17774
17775 $ find . -name '*.h' -empty -print
17776 ./include/sa1100.h
17777 $ git grep 'sa1100.h' .
17778 $
17779
17780 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17781 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17782
17783 commit 7d3d30b1b3fbd0a07db254ead99fa6fff4f4d992
17784 Author: Stefan Roese <sr@denx.de>
17785 Date: Tue Apr 14 17:51:21 2009 +0200
17786
17787 UBIFS: Remove tnc_commit.c which is not used in the read-only version
17788
17789 I missed removing this file while implementing the UBIFS support. It's
17790 not referenced at all, so let's remove it. Thanks to Artem Bityutskiy
17791 for spotting.
17792
17793 Signed-off-by: Stefan Roese <sr@denx.de>
17794
17795 commit 6356daff70867822bdb23cea49f98e65421a25b8
17796 Author: Adrian Hunter <adrian.hunter@nokia.com>
17797 Date: Tue Apr 14 17:50:38 2009 +0200
17798
17799 UBIFS: fix recovery bug
17800
17801 UBIFS did not recovery in a situation in which it could
17802 have. The relevant function assumed there could not be
17803 more nodes in an eraseblock after a corrupted node, but
17804 in fact the last (NAND) page written might contain anything.
17805 The correct approach is to check for empty space (0xFF bytes)
17806 from then on.
17807
17808 Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
17809 Signed-off-by: Stefan Roese <sr@denx.de>
17810
17811 commit 351f40caf2f7806b2cefb93e077ea619b9f684e8
17812 Author: Gao Guanhua <B22826@freescale.com>
17813 Date: Tue Apr 14 14:37:35 2009 +0800
17814
17815 fs: Fix the wrong type of var
17816
17817 The filelen should be signed type, not unsigned type.
17818 otherwise, The condition as below never take.
17819 if (filelen < 0)
17820
17821 Signed-off-by: Gao Guanhua <B22826@freescale.com>
17822 Signed-off-by: Dave Liu <daveliu@freescale.com>
17823
17824 commit 05f474c4d0469bebc0bb05df60a39dc7fdf28e62
17825 Author: Wolfgang Denk <wd@denx.de>
17826 Date: Tue Apr 28 00:29:34 2009 +0200
17827
17828 Update CHANGELOG
17829
17830 Signed-off-by: Wolfgang Denk <wd@denx.de>
17831
17832 commit ad74cae9ff8790727bc81ee91c6bca7d50dca446
17833 Author: David Brownell <dbrownell@users.sourceforge.net>
17834 Date: Thu Apr 16 23:15:15 2009 -0700
17835
17836 dm9000 EEPROM reading bugfix
17837
17838 Make the U-Boot dm9000 driver read addresses from EEPROM just
17839 like Linux does ... read six bytes, instead of reading twelve
17840 bytes and then discarding every other one.
17841
17842 Using the right Ethernet address is a big win.
17843
17844 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17845 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17846 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17847
17848 commit d4c02e6f5d49880123e7f584b88f857ffd874381
17849 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
17850 Date: Wed Feb 25 14:27:24 2009 +0900
17851
17852 rtl8169: fix cache coherency problem
17853
17854 Fix the problem that cannot access actual data when CPU data cache enabled.
17855
17856 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
17857 Tested-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17858 Acked-by: Ben Warren <biggerbadderben@gmail.com>
17859
17860 commit a85693b3bd4431b05b7df608b6f7733c0f80c53e
17861 Author: Dirk Behme <dirk.behme@googlemail.com>
17862 Date: Tue Apr 21 17:30:51 2009 +0200
17863
17864 OMAP3: Fix changed mmc init command
17865
17866 In recent U-Boot mmcinit changed to mmc init.
17867
17868 Signed-off-by: Steve Sakoman <steve@sakoman.com>
17869 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
17870
17871 commit 34b76a14f676bc6501c27a96564e4dfb4793f033
17872 Author: Wolfgang Denk <wd@denx.de>
17873 Date: Sun Apr 26 20:39:26 2009 +0200
17874
17875 lib_arm/board.c: remove misleading "test-only" comment.
17876
17877 For a long time, the print_cpuinfo() declaration in lib_arm/board.c
17878 had been marked as "test-only", which is plain wrong considering
17879 current usage. Delete this misleading comment.
17880
17881 Signed-off-by: Wolfgang Denk <wd@denx.de>
17882
17883 commit 7239c5da5e9197accb3dfe395be4502c3b9bca8e
17884 Author: David Brownell <dbrownell@users.sourceforge.net>
17885 Date: Sun Apr 12 15:40:16 2009 -0700
17886
17887 minor DaVinci clock cleanup
17888
17889 Minor cleanup to clock-related defines for DaVinci DM6446 boards:
17890
17891 - CONFIG_SYS_CLK_FREQ is unused; remove it.
17892
17893 - CONFIG_SYS_NS16550_CLK must be the same as CONFIG_SYS_HZ_CLOCK
17894
17895 On DM6446 both of those peripheral clocks actually come from the
17896 same source, the primary oscillator. Having them use the same
17897 symbol avoids bugs in the clone'n'modify development cycle.
17898
17899 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17900
17901 commit ffd8c7170d55c34bbfcfd2c84093dcaff796cbf3
17902 Author: Minkyu Kang <mk7.kang@samsung.com>
17903 Date: Mon Apr 6 19:59:29 2009 +0900
17904
17905 s3c64xx: remove unnecessary definition
17906
17907 CONFIG_S3C6400 is must defined at config header file
17908 That definition is unnecessary at this file
17909
17910 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
17911
17912 commit 14b9308d511b53042ef478936e367a67282df66a
17913 Author: Heiko Schocher <hs@denx.de>
17914 Date: Fri Apr 24 06:50:45 2009 +0200
17915
17916 83xx: searching "muram-data" by compatible property
17917
17918 if using CONFIG_BOOTCOUNT_LIMIT feature on a MPC8360 CPU
17919 in the muram-data node, the reg entry needs to be updated.
17920 This is done in fdt_fixup_muram(), but we should use
17921 the compatible "fsl,qe-muram-data" for searching the
17922 node instead of searching the muram-data node with
17923 an absolute path.
17924
17925 Signed-off-by: Heiko Schocher <hs@denx.de>
17926 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17927
17928 commit 8e15088794807944b221c11609d36789efc7f767
17929 Author: Anatolij Gustschin <agust@denx.de>
17930 Date: Thu Apr 23 21:29:34 2009 +0200
17931
17932 mpc83xx: MPC8360ERDK: fix environment offset configuration bug
17933
17934 The size of U-Boot binary for MPC8360ERDK increased
17935 (> 2 flash sectors now), so 'saveenv' will partially
17936 overwrite U-Boot in flash and will brick the board.
17937 This patch moves environment offset to fourth flash
17938 sector and also fixes CONFIG_SYS_MONITOR_LEN.
17939
17940 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17941 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17942
17943 commit 3c172c4fdbbb5858fae38478d6399be4a16be3fc
17944 Author: Michael Zaidman <michael.zaidman@gmail.com>
17945 Date: Sat Apr 4 01:43:00 2009 +0300
17946
17947 NetLoop initialization bug
17948
17949 The patch fixes the bug of partial initialization of global network
17950 parameters.
17951
17952 Upon u-boot's start up the first ping command causes a failure of the
17953 consequent TFTP command. It happens in the recently added mechanism of
17954 the NetLoop initialization where initialization of global network
17955 parameters is separated in the NetInitLoop routine which is called per
17956 env_id change. Thus, ping request will initialize the network parameters
17957 necessary for ping operation only, afterwards the env_changed_id will be
17958 set to the env_id that will prevent all following initialization requests
17959 from other protocols.
17960 The problem is that the initialized by ping subset of network parameters
17961 is not sufficient for other protocols and particularly for TFTP which
17962 requires the NetServerIp also.
17963
17964 Signed-off-by: Michael Zaidman <michael.zaidman@gmail.com>
17965 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17966
17967 commit b11f664f52c2855990107c18f242223377183575
17968 Author: Timur Tabi <timur@freescale.com>
17969 Date: Thu Apr 9 10:27:05 2009 -0500
17970
17971 net: fix ULI 526x macro usage in netdev.h
17972
17973 Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526. CONFIG_ULI526X
17974 is used everywhere else, so that's the correct macro name. Without this fix,
17975 Ethernet will not work on the Freescale MPC8610 HPCD.
17976
17977 Signed-off-by: Timur Tabi <timur@freescale.com>
17978 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17979
17980 commit 7ee38c044ca5041d3378d6507580ea4ec344af96
17981 Author: David Brownell <dbrownell@users.sourceforge.net>
17982 Date: Sun Apr 12 15:38:06 2009 -0700
17983
17984 fix DaVinci NS16550_REG_SIZE regression
17985
17986 Update the DaVinci DM6446 boards to use the new convention
17987 for CONFIG_SYS_NS16550_REG_SIZE ... the size hasn't changed
17988 from the original 4 bytes, but these chips are little-endian.
17989
17990 (Resolves a regression added recently by the include/ns16550.h
17991 patch to "Unify structure declaration for registers". The code
17992 previously worked just fine because the registers were accessed
17993 as host-endian words, not as bytes.)
17994
17995 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
17996
17997 commit dfc99e143fca44a492918ac6cf3f76ee9c2473a9
17998 Author: Mike Frysinger <vapier@gentoo.org>
17999 Date: Sun Apr 12 22:29:20 2009 -0400
18000
18001 cmd_nand: drop duplicate NULL ptr check
18002
18003 The first if statement checks for NULL ptrs, so there is no need to check
18004 it again in later else cases (such as .oob).
18005
18006 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18007 CC: Scott Wood <scottwood@freescale.com>
18008
18009 commit 7732cef2eeb4e339cfcd8553fab773af73a20805
18010 Author: David Brownell <dbrownell@users.sourceforge.net>
18011 Date: Mon Apr 13 08:03:38 2009 -0700
18012
18013 CMD_UBI != MTD_PARTITIONS
18014
18015 Fix dependency goofage: it should certainly be possible to have the
18016 partition support without bringing in UBI commands.
18017
18018 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
18019 Acked-by: Stefan Roese <sr@denx.de>
18020
18021 commit 6ebff365eb63093ca35b687316002535c6a18820
18022 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18023 Date: Thu Apr 16 21:30:48 2009 +0200
18024
18025 at91sam9/at91cap: fix CONFIG_SYS_HZ to 1000
18026
18027 The timer has been rewrote with a precision at ~0,18%
18028
18029 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18030 Tested-by: Sergey Lapin <slapin@ossfans.org>
18031 Tested-by: Eric BENARD <ebenard@free.fr>
18032
18033 commit f0a2c7b4b64eacd06bb272856bcc056be8719f5a
18034 Author: Ilko Iliev <iliev@ronetix.at>
18035 Date: Thu Apr 16 21:30:48 2009 +0200
18036
18037 at91: add support for the PM9263 board of Ronetix GmbH
18038
18039 The PM9263 board is based on the AT91SAM9263-EK board.
18040
18041 Here is the page on Ronetix website:
18042 http://www.ronetix.at/starter_kit_9263.html
18043
18044 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
18045 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18046
18047 commit dc39ae9513c32dfeb9e018dc0d22c6484514fefb
18048 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18049 Date: Thu Apr 16 21:30:44 2009 +0200
18050
18051 at91sam9/at91cap: improve clock framework
18052
18053 calculate dynamically the clock rate and pllb setting for usb
18054
18055 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18056
18057 commit dd7c302099ef5590069bdbf292aaa8230cd59de7
18058 Author: Stefan Roese <sr@denx.de>
18059 Date: Wed Apr 15 14:08:48 2009 +0200
18060
18061 ppc4xx: Disable POST memory test on NAND-booting Kilauea
18062
18063 Don't run the memory POST on the NAND-booting version. It will
18064 overwrite part of the U-Boot image which is already loaded from NAND
18065 to SDRAM. We were just lucky that it booted at all with this SDRAM
18066 test enabled.
18067
18068 Signed-off-by: Stefan Roese <sr@denx.de>
18069
18070 commit 9a929170be89b27bce677504da27e88600c06c49
18071 Author: Stefan Roese <sr@denx.de>
18072 Date: Wed Apr 15 14:06:26 2009 +0200
18073
18074 ppc4xx: Disable POST memory test on NAND-booting Sequoia
18075
18076 Don't run the memory POST on the NAND-booting version. It will
18077 overwrite part of the U-Boot image which is already loaded from NAND
18078 to SDRAM. We were just lucky that it booted at all with this SDRAM
18079 test enabled.
18080
18081 Signed-off-by: Stefan Roese <sr@denx.de>
18082
18083 commit 17c1b0e89b8be7d90f605eb19af9218c6275bfb3
18084 Author: Stefan Roese <sr@denx.de>
18085 Date: Wed Apr 15 11:32:53 2009 +0200
18086
18087 ppc4xx: Remove unused code for Sequoia NAND booting version
18088
18089 The current define of get_bus_freq() in the CONFIG_NAND_SPL #ifdef is not
18090 used at all. This patch changes it's define to the currently used value of
18091 133333333 and removes the unnecessary code.
18092
18093 Signed-off-by: Stefan Roese <sr@denx.de>
18094
18095 commit cf9409885cbe01405bad76790e99f8adf3351f4d
18096 Author: Stefan Roese <sr@denx.de>
18097 Date: Wed Apr 15 10:50:48 2009 +0200
18098
18099 ppc4xx: Add "booting from NAND" to 4xx NAND-booting targets
18100
18101 This additional text in the bootup log helps to see if the board is
18102 configured for NAND-booting. Especially helpful for boards that can
18103 boot from NOR and NAND (e.g. most of the AMCC eval boards).
18104
18105 Signed-off-by: Stefan Roese <sr@denx.de>
18106
18107 commit 5132106a27b8fb302677852b26ffd319b40d17e2
18108 Author: Stefan Roese <sr@denx.de>
18109 Date: Wed Apr 8 10:36:22 2009 +0200
18110
18111 ppc4xx: Fixup chip-selects in dtb for NAND-booting Sequoia
18112
18113 Currently the NOR & NAND support in Linux only works for the "standard"
18114 Sequoia, the version booting for NOR flash. The NAND-booting version
18115 has the chip-selects swapped. Here the chip-select mappings:
18116
18117 "Standard" NOR-booting version:
18118 CS0 NOR
18119 CS3 NAND
18120
18121 NAND-booting version:
18122 CS0 NAND
18123 CS3 NOR
18124
18125 With this path the dtb gets fixed-up, so that the correct chip-select
18126 numbers are patched in the dtb enabling correct NOR & NAND support
18127 in Linux on the NAND-booting Sequoia version.
18128
18129 Signed-off-by: Stefan Roese <sr@denx.de>
18130
18131 commit aad4eca4ba8d597747199d8af723426681557dda
18132 Author: Mike Frysinger <vapier@gentoo.org>
18133 Date: Sat Apr 4 09:10:27 2009 -0400
18134
18135 Blackfin: audit UART for all known anomalies
18136
18137 There is no code change here, just new comments, but this keeps me from
18138 having to do another audit from scratch in the future.
18139
18140 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18141
18142 commit 8ef929afa43c77c9573caa57c6e17a97a33775c0
18143 Author: Mike Frysinger <vapier@gentoo.org>
18144 Date: Sat Apr 4 08:40:13 2009 -0400
18145
18146 Blackfin: add check for anomaly 05000362
18147
18148 DESCRIPTION:
18149 The column address width settings for banks 2 and 3 are misconnected in
18150 the SDRAM controller. Accesses to bank 2 will result in an error if the
18151 Column Address Width for bank 3 (EB3CAW ) is not set to be the same as
18152 that of bank 2.
18153
18154 WORKAROUND:
18155 If using bank 2, make sure that banks 2 and 3 have the same column address
18156 width settings in the EBIU_SDBCTL register. This must be the case
18157 regardless of whether or not bank 3 is enabled.
18158
18159 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18160
18161 commit c2e07449f546fb375289cdac1a608fdc20357873
18162 Author: Mike Frysinger <vapier@gentoo.org>
18163 Date: Sat Apr 4 08:29:55 2009 -0400
18164
18165 Blackfin: add comment about anomaly 05000430 avoidance
18166
18167 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18168
18169 commit 48ab1509254a4c175e4f65c478a978928ffe09ec
18170 Author: Mike Frysinger <vapier@gentoo.org>
18171 Date: Sat Apr 4 08:10:22 2009 -0400
18172
18173 Blackfin: add workaround for anomaly 05000242
18174
18175 DESCRIPTION:
18176 If the DF bit is set prior to a hardware reset, the PLL will continue to
18177 divide CLKIN by 2 after the hardware reset, but the DF bit itself will be
18178 cleared in the PLL_CTL register.
18179
18180 WORKAROUND:
18181 Reprogram the PLL with DF cleared if the desire is to not divide CLKIN by
18182 2 after reset.
18183
18184 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18185
18186 commit ce1fe4ba6bb9df7c57351436fa17d1af8bbe7916
18187 Author: Mike Frysinger <vapier@gentoo.org>
18188 Date: Sat Apr 4 08:09:24 2009 -0400
18189
18190 Blackfin: add workaround for anomaly 05000171
18191
18192 DESCRIPTION:
18193 The Boot ROM is executed at power up/reset and changes the value of the
18194 SICA_IWR registers from their default reset value of 0xFFFF, but does not
18195 restore them.
18196
18197 WORKAROUND:
18198 User code should not rely on the default value of these registers. Set
18199 the desired values explicitly.
18200
18201 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18202
18203 commit 51ee6e057f7a920e2a125cd9f985d10f625e355f
18204 Author: Mike Frysinger <vapier@gentoo.org>
18205 Date: Sat Apr 4 08:22:36 2009 -0400
18206
18207 Blackfin: update anomaly sheets
18208
18209 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18210
18211 commit a343ba87ea0320ca0a4ecfa2c42cd9d4f18883df
18212 Author: Graf Yang <graf.yang@analog.com>
18213 Date: Sat Apr 4 07:45:57 2009 -0400
18214
18215 Blackfin: nand: flush peripheral before polling it
18216
18217 We need to make sure the data written to the nand flash controller makes
18218 it there before we start polling its status register. Otherwise, we may
18219 get stale data and return before the controller is actually ready.
18220
18221 Signed-off-by: Graf Yang <graf.yang@analog.com>
18222 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18223 Acked-by: Scott Wood <scottwood@freescale.com>
18224
18225 commit 3ccbfb25f48af78e7092ac75f3115e924e76c748
18226 Author: Remy Bohmer <linux@bohmer.net>
18227 Date: Sun Apr 5 11:43:28 2009 +0200
18228
18229 Support for PXA27X UDC.
18230
18231 This Patch adds Support for PXA27X UDC.
18232 (Rebased to drivers/usb reorganisation)
18233
18234 Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
18235 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18236
18237 commit 2731b9a86685190d26b1883f27afda5ac8e1a313
18238 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18239 Date: Fri Apr 3 12:46:58 2009 +0200
18240
18241 drivers/usb: regorganisation
18242
18243 move to linux usb driver organisation
18244
18245 as following
18246
18247 drivers/usb/gadget
18248 drivers/usb/host
18249 drivers/usb/musb
18250
18251 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18252 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18253
18254 commit d04371a116d102e587ba7aa4c329b441cdbea3f4
18255 Author: Todor I Mollov <tmollov@ucsd.edu>
18256 Date: Sat Apr 4 06:53:06 2009 -0400
18257
18258 Blackfin: spi: make cs deassert function deterministic
18259
18260 Blackfin SPI driver was not driving the SPI chip-select high before
18261 putting the chip-select signals into tri-state mode. This is probably
18262 something that slipped by unnoticed in most designs. If the signals are
18263 put directly into a tri-state mode, then the board is relying on the
18264 pull-up resistors to pull up the chip-select before the next transaction.
18265 Most of the time this is fine, except when you have two transactions that
18266 follow each other very closely, such as the flash erase and read status
18267 register commands. In this case I was seeing a 500ns separation between
18268 the transactions. In my setup, with a 10kOhm pull-up, it would meet
18269 timing spec about half the time and resulted in intermittent errors. (A
18270 stronger pull up would fix this, but our design is targeted for low power
18271 consumption and a 3.3kOhm @ 3.3v is 3.3mW of needless power consumption.)
18272 I modified the spi_cs_deactivate() function in bfin_spi.c to drive the
18273 chip-selects high before putting them into tri-state. For me, this
18274 resulted in a rise time of 5ns instead of the previous rise time of about
18275 1us, and fully satisfied the timing spec of the chip.
18276
18277 Signed-off-by: Todor I Mollov <tmollov@ucsd.edu>
18278 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18279
18280 commit c6fadb9c73a6a3e0c7f20696e978304a593a8d2d
18281 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18282 Date: Sat Dec 13 21:08:05 2008 +0100
18283
18284 integratorap: fix PCI support
18285
18286 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18287
18288 commit 1c397508c836dfcb01fb2471c71de0727051f117
18289 Author: Dirk Behme <dirk.behme@googlemail.com>
18290 Date: Mon Mar 30 21:15:23 2009 +0200
18291
18292 OMAP3: Update Overo pin mux for new expansion board
18293
18294 A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and
18295 switches. This patch changes the pinmux configuration for those pins.
18296 They were previously set up for unused MMC3_DAT4-7.
18297
18298 Signed-off-by: Steve Sakoman <steve@sakoman.com>
18299 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
18300
18301 commit ab298231518675b3784aea88ee9b978438f99e63
18302 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18303 Date: Sun Apr 5 13:08:03 2009 +0200
18304
18305 arm: unify reset command
18306
18307 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18308
18309 commit b3acb6cd4059dfb29a5e99095d802717f53ff784
18310 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18311 Date: Sun Apr 5 13:06:31 2009 +0200
18312
18313 arm: clean cache management
18314
18315 unify arm cache management except for non standard cache as ARM7TDMI
18316
18317 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18318
18319 commit 677e62f43235de9a1701204d7bcea0fb3d233fa1
18320 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18321 Date: Sun Apr 5 13:02:43 2009 +0200
18322
18323 arm: update co-processor 15 access
18324
18325 import system.h from linux
18326
18327 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18328
18329 commit 23e4af49e066a53cd3e3659b68ef90572d88de84
18330 Author: Guennadi Liakhovetski <lg@denx.de>
18331 Date: Sun Apr 5 00:42:02 2009 +0200
18332
18333 ARM: add the imx31_phycore_eet target to MAINTAINERS
18334
18335 imx31_phycore_eet is a variant of the imx31_phycore board with a few
18336 extensions, which justifies a separate entry in the MAINTAINERS list,
18337 whereas normally all entries sharing a single configuration file and a
18338 board/ directory have only one entry in MAINTAINERS.
18339
18340 Reported-by: Wolfgang Denk <wd@denx.de>
18341 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18342
18343 commit 69c5bf29908b3a7f8e23bd9891b7ecc5b21f23e5
18344 Author: Guennadi Liakhovetski <lg@denx.de>
18345 Date: Sun Apr 5 00:37:07 2009 +0200
18346
18347 ARM: fix out-of-tree build of imx31_phycore_eet
18348
18349 Fix out-of-tree build of the imx31_phycore_eet target.
18350
18351 Reported-by: Wolfgang Denk <wd@denx.de>
18352 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18353
18354 commit 3c853f31d6a8e4407f73a2ca2c63d383a245f237
18355 Author: Jon Smirl <jonsmirl@gmail.com>
18356 Date: Sat Apr 4 17:44:51 2009 -0400
18357
18358 mpc5200: reduce delays in i2c
18359
18360 The previous code waited 1000us before checking i2c
18361 status. Measurement shows i2c is usually ready in
18362 under 50us. Change the polling interval to 15us,
18363 loop 6,667 times to keep the polling timeout constant
18364 at 100ms.
18365
18366 commit 36003268968949110ef145d9f2eaf8439c96d25b
18367 Author: Sanjeev Premi <premi@ti.com>
18368 Date: Fri Apr 3 14:00:07 2009 +0530
18369
18370 OMAP: Fix compile issue
18371
18372 Fixes this compile error:
18373 board.c: In function 'do_switch_ecc':
18374 board.c:339: error: 'cmd_tbl_t' has no member named 'help'
18375 make[1]: *** [board.o] Error 1
18376 make[1]: Leaving directory `/db/psp_git/users/a0756819/u-boot/cpu/arm_cortexa8/omap3'
18377 make: *** [cpu/arm_cortexa8/omap3/libomap3.a] Error 2
18378
18379 This is due to the fact that current command uses long
18380 help for the usage print even if the CONFIG_SYS_LONGHELP
18381 is not enabled. (Thanks Jean-Christophe for explanation).
18382
18383 Signed-off-by: Sanjeev Premi <premi@ti.com>
18384
18385 commit 342c1a5d9ab74febf3226a86216dc5aa05295d46
18386 Author: Minkyu Kang <mk7.kang@samsung.com>
18387 Date: Fri Apr 3 09:56:16 2009 +0900
18388
18389 s3c64xx: fix the wrong gpio offset
18390
18391 This patch fix the wrong gpio offset
18392
18393 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
18394
18395 commit ab0689c316c9b2ee33f4de1c50263b64e539f12a
18396 Author: Kyungmin Park <kmpark@infradead.org>
18397 Date: Wed Nov 26 10:18:13 2008 +0900
18398
18399 Move machine specific code to board at s3c64xx (v2)
18400
18401 Move machine specific code to smdk6400.
18402 Some board use OneNAND instead of NAND.
18403
18404 Some register MP0_CS_CFG[5:0] are controled by both h/w and s/w.
18405 So it's better to use macro instead of hard-coded value.
18406
18407 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18408
18409 commit 767f3acd9f6e1dcb8ada926c333945382eddc7e8
18410 Author: Tom Rix <Tom.Rix@windriver.com>
18411 Date: Wed Apr 1 22:02:19 2009 -0500
18412
18413 ZOOM1 Remove legacy NAND defines
18414
18415 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
18416
18417 commit 5891151707ee5902fe62d554c247f42865815757
18418 Author: Tom Rix <Tom.Rix@windriver.com>
18419 Date: Wed Apr 1 22:02:20 2009 -0500
18420
18421 OMAP3 Fix multiline formatting in board init files.
18422
18423 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
18424
18425 commit c0a14aedc3440d6591b8c86d45861a0a8b46e11d
18426 Author: Wolfgang Denk <wd@denx.de>
18427 Date: Sun Apr 5 00:27:57 2009 +0200
18428
18429 Update CHANGELOG, coding style cleanup.
18430
18431 commit f63728c804ab7413a67d70f6774cd30c3f7b40fb
18432 Author: Wolfgang Denk <wd@denx.de>
18433 Date: Sun Apr 5 00:18:44 2009 +0200
18434
18435 One more fix for building env_embedded.o
18436
18437 In addition to the changes for CONFIG_ENV_IS_IN_FLASH as done in
18438 commit afcbce07, we also need to do the same for
18439 CONFIG_ENV_IS_IN_EEPROM and CONFIG_ENV_IS_IN_NVRAM.
18440
18441 Signed-off-by: Wolfgang Denk <wd@denx.de>
18442
18443 commit e3d1ac7bb1955d36980d267cb4cec40b0f7d30b5
18444 Author: Scott Wood <scottwood@freescale.com>
18445 Date: Thu Apr 2 16:15:10 2009 -0500
18446
18447 common/image.c: Relocate strings in tables.
18448
18449 Without this, u-boot can crash or print garbage if the original link
18450 address no longer points to a valid string.
18451
18452 Signed-off-by: Scott Wood <scottwood@freescale.com>
18453
18454 commit 3a671fc06ae1d9e8eba76600372317c75ae0eb3e
18455 Author: Scott Wood <scottwood@freescale.com>
18456 Date: Thu Apr 2 16:10:36 2009 -0500
18457
18458 mpc8260: Fill in brg's clock-frequency in device tree.
18459
18460 Signed-off-by: Scott Wood <scottwood@freescale.com>
18461
18462 commit c73ed274a211699739d83c2cef92853dc6716e15
18463 Author: Scott Wood <scottwood@freescale.com>
18464 Date: Thu Apr 2 18:20:43 2009 -0500
18465
18466 MPC8260ADS: Add nfsboot/ramboot to default environment.
18467
18468 This brings it in line with other Freescale boards.
18469
18470 Signed-off-by: Scott Wood <scottwood@freescale.com>
18471
18472 commit c203ef5db0476a8c4f6dd86b2e9e9db0ea973f84
18473 Author: Andreas Huber <andreas.huber@keymile.com>
18474 Date: Thu Apr 2 17:15:34 2009 +0200
18475
18476 UBI/cfi-mtd: Fix mtd name for multiple chips
18477
18478 On platforms with multiple NOR chips, currently only the first one
18479 can be selected using the "ubi part" command. This patch fixes this
18480 problem by using different names for the NOR "mtd devices".
18481
18482 It also changes the name of the NOR MTD device from "cfi-mtd" to
18483 "norX" (X indexing the device numer) to better match the mtdparts
18484 defaults.
18485
18486 Signed-off-by: Stefan Roese <sr@denx.de>
18487 Signed-off-by: Andreas Huber <andreas.huber@keymile.com>
18488
18489 commit 6b6bb02f27fcabfb37ea717fb7e243248e1e2acf
18490 Author: Peter Korsgaard <jacmet@sunsite.dk>
18491 Date: Tue Mar 31 17:52:16 2009 +0200
18492
18493 tools/setlocalversion: use git svn instead of git-svn
18494
18495 Use the new "git <subcmd>" syntax instead of the deprecated
18496 "git-<subcmd>".
18497
18498 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
18499
18500 commit 7fa96a9a54eb0d87d73888ec2565cda790ba0dff
18501 Author: Mingkai Hu <Mingkai.hu@freescale.com>
18502 Date: Tue Mar 31 14:09:40 2009 +0800
18503
18504 eSPI: add the eSPI register support
18505
18506 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
18507
18508 commit 869f6bf4def5a053fbd1aecd8b2fc36f05196c0b
18509 Author: Minkyu Kang <mk7.kang@samsung.com>
18510 Date: Mon Mar 30 14:55:51 2009 +0900
18511
18512 cmd_mmc: add support for device command for selecting mmc device
18513
18514 This patch improves device command for selecting mmc device
18515
18516 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
18517
18518 commit 9abc9ef8fbe079bf75a634ce64b7dcdb7b0d8bdc
18519 Author: Alan Carvalho de Assis <acassis@gmail.com>
18520 Date: Sat Mar 28 19:50:16 2009 -0300
18521
18522 Small fix to m5282evb
18523
18524 This is just a small fix to get u-boot on m5282evb.
18525
18526 Signed-off-by: Alan Carvalho de Assis <acassis@gmail.com>
18527
18528 commit febd7e4174e54579c9aa165c85c519fe5288f9d2
18529 Author: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
18530 Date: Fri Mar 27 10:21:14 2009 +0100
18531
18532 UBIFS: add R/O compatibility
18533
18534 Now UBIFS is supported by u-boot. If we ever decide to change the
18535 media format, then people will have to upgrade their u-boots to
18536 mount new format images. However, very often it is possible to
18537 preserve R/O forward-compatibility, even though the write
18538 forward-compatibility is not preserved.
18539
18540 This patch introduces a new super-block field which stores the
18541 R/O compatibility version.
18542
18543 Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
18544 Acked-by: Adrian Hunter <Adrian.Hunter@nokia.com>
18545 Signed-off-by: Stefan Roese <sr@denx.de>
18546
18547 commit 852dbfdd56f68eb67d138b306a64e4de58dabb91
18548 Author: Mike Frysinger <vapier@gentoo.org>
18549 Date: Mon Mar 23 22:27:34 2009 -0400
18550
18551 more command usage cleanup
18552
18553 Fix up a few dangling commands like in "Command usage cleanup" commit.
18554
18555 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18556
18557 commit b93b24bf76f8a8220b236df3a5f30b2204eb4edc
18558 Author: Ladislav Michl <ladis@linux-mips.org>
18559 Date: Mon Mar 23 12:06:07 2009 +0100
18560
18561 Separate mtdparts command from jffs2
18562
18563 On Thu, Mar 19, 2009 at 01:30:36PM +0100, Stefan Roese wrote:
18564 > Currently the mtdparts commands are included in the jffs2 command support.
18565 > This doesn't make sense anymore since other commands (e.g. UBI) use this
18566 > infrastructure as well now. This patch separates the mtdparts commands from
18567 > the jffs2 commands making it possible to only select mtdparts when no JFFS2
18568 > support is needed.
18569
18570 ... and to make it useful for NAND chips as well, we should also remove now
18571 unrelated CONFIG_JFFS2_NAND. Note that struct part_info etc is in
18572 jffs2/load_kernel.h which is a bit misleading filename for that purpose,
18573 but that can be fixed later (tm).
18574
18575 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
18576
18577 commit b196ca75503ce307c535b87bf47d51f05e7530df
18578 Author: Mike Frysinger <vapier@gentoo.org>
18579 Date: Sun Mar 22 22:18:01 2009 -0400
18580
18581 smc91111_eeprom: move board-specific init into SMC91111_EEPROM_INIT()
18582
18583 Rather than sticking Blackfin-specific stuff into the eeprom example, use
18584 an indirect macro so that any board can override it with their own magic
18585 sauce in their board config file.
18586
18587 Also fix some spurious semi-colons in defines while I'm at it ...
18588
18589 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18590 CC: Ben Warren <biggerbadderben@gmail.com>
18591
18592 commit f5cf2ef2ad2a8bf321712ab460ed846120163d74
18593 Author: Sascha Hauer <s.hauer@pengutronix.de>
18594 Date: Sat Mar 21 09:38:46 2009 -0400
18595
18596 mpc52xx phy: initialize only when needed
18597
18598 Do not initialize phy on startup, instead initialize it
18599 when we actually need it.
18600
18601 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
18602
18603 commit 03bab0091948196b9558248684c04f60943ca4b5
18604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18605 Date: Mon Mar 30 16:51:40 2009 +0200
18606
18607 at91sam9263ek: enable hush and auto complete support
18608
18609 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18610 Acked-by: Stelian Pop <stelian@popies.net>
18611
18612 commit 4758ebdd53571d4d183be5c2db8f0ee4ef368915
18613 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18614 Date: Fri Mar 27 23:26:44 2009 +0100
18615
18616 at91: move dataflash spi driver to drivers/spi
18617
18618 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18619
18620 commit 2b7178afce59f71e95da657273f4132012098c1f
18621 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18622 Date: Fri Mar 27 23:26:44 2009 +0100
18623
18624 at91: move usb driver to drivers/usb
18625
18626 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18627
18628 commit f82518d7f443ebac5f8821103a3c521c963aa6ee
18629 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18630 Date: Fri Mar 27 23:26:43 2009 +0100
18631
18632 at91rm9200: Reset update
18633
18634 Update the rm9200 reset sequence to try executing a board-specific reset
18635 function and move specific board reset to board.
18636
18637 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18638
18639 commit 3524049cd053746298e4cfab2449882e75c146fc
18640 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18641 Date: Fri Mar 27 23:26:43 2009 +0100
18642
18643 at91rm9200: move serial shutdown code to serial drivers
18644
18645 introduce serial_exit for this purpose. Use it only when the rm9200
18646 serial driver is active
18647
18648 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18649
18650 commit beebd851cdbc9dd070bcdfec1fd8f17e3cc91bc0
18651 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18652 Date: Fri Mar 27 23:26:43 2009 +0100
18653
18654 at91rm9200: move serial driver to drivers/serial
18655
18656 add CONFIG_AT91RM9200_USART to activate the driver
18657
18658 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18659
18660 commit cb82a532669f6b02225ec3429ea4d49ff2b97d0a
18661 Author: Ulf Samuelsson <ulf@atmel.com>
18662 Date: Fri Mar 27 23:26:43 2009 +0100
18663
18664 Add support for the AT91RM9200EK Board.
18665
18666 The AT91RM9200-EK Evaluation Board supports the AT91RM9200
18667 ARM9-based 32-bit RISC microcontroller and enables real-time code development
18668 and evaluation.
18669
18670 Here is the chip page on Atmel website:
18671 http://www.atmel.com/dyn/products/tools_card.asp?tool_id=3507
18672
18673 with
18674 - NOR (cfi driver)
18675 - DataFlash
18676 - USB OHCI
18677 - Net
18678 - I2C (hard)
18679
18680 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
18681 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18682
18683 commit b9c0e4c29e3ec12668ac50e954e7c9ba8f7aa10a
18684 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18685 Date: Fri Mar 27 23:26:42 2009 +0100
18686
18687 add dataflash mmc mux missing support
18688
18689 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18690
18691 commit 2a325ce3c705ab2d82760afc541c511328472df8
18692 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18693 Date: Fri Mar 27 23:26:42 2009 +0100
18694
18695 at91rm9200dk: Move conditional compilation to Makefile
18696
18697 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18698
18699 commit 90a92a708d5180a20d600ba0fc2352ec76dc3829
18700 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18701 Date: Fri Mar 27 23:26:42 2009 +0100
18702
18703 at91: rename DATAFLASH_MMC_SELECT to CONFIG_DATAFLASH_MMC_SELECT
18704
18705 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18706
18707 commit 843a2654bce74192de2b5a43474fdc27a572ab40
18708 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18709 Date: Fri Mar 27 23:26:42 2009 +0100
18710
18711 at91sam9: add watchdog support
18712
18713 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
18714 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18715
18716 commit a47492ac60657dd9d59c713aa049319ea6eabd52
18717 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18718 Date: Fri Mar 27 13:14:52 2009 +0100
18719
18720 at91sam9/at91cap: spi init add hardware chip select support
18721
18722 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18723
18724 commit 66932ac3929c7a145a6ef6574a96fd7535154951
18725 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18726 Date: Sat Apr 4 19:15:40 2009 +0200
18727
18728 netstar: fix crc32.c dependancy location
18729
18730 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18731
18732 commit 42f9ebff2f758bef524780a00c712eb63a72d99b
18733 Author: Scott Wood <scottwood@freescale.com>
18734 Date: Fri Apr 3 15:24:40 2009 -0500
18735
18736 MPC8260ADS: Define CONFIG_HAS_ETH0.
18737
18738 This is required so that the MAC address will be updated in the device tree.
18739
18740 Signed-off-by: Scott Wood <scottwood@freescale.com>
18741
18742 commit 8701eceffdf77e2908d0b58add0dabc16edf6087
18743 Author: Scott Wood <scottwood@freescale.com>
18744 Date: Fri Apr 3 15:26:45 2009 -0500
18745
18746 PQ2FADS: Enable PCI.
18747
18748 PCI on PQ2FADS is very similar to PCI on MPC8272ADS.
18749
18750 Signed-off-by: Scott Wood <scottwood@freescale.com>
18751
18752 commit 83863df04bd30bfe2430b0c43ca9f78596d3f0bc
18753 Author: Wolfgang Denk <wd@denx.de>
18754 Date: Sat Apr 4 16:57:50 2009 +0200
18755
18756 Fix quoting bug introduced by commit 74de7aef
18757
18758 Signed-off-by: Wolfgang Denk <wd@denx.de>
18759
18760 commit ecf3fb223a56e3c6aa696d94d694eeaca0f44d33
18761 Author: Wolfgang Denk <wd@denx.de>
18762 Date: Sat Apr 4 16:14:51 2009 +0200
18763
18764 Fix implicit declaration of function 'htons'
18765
18766 Include <netinet/in.h> instead of <linux/in.h> to get htons()
18767 prototpye.
18768
18769 Signed-off-by: Wolfgang Denk <wd@denx.de>
18770
18771 commit e6a6789f41f0560ce280089fbd3f1bd0f0f64306
18772 Author: Kumar Gala <galak@kernel.crashing.org>
18773 Date: Sat Apr 4 10:21:02 2009 -0500
18774
18775 fsl_law: Fix bug in calculation of LAW sizing
18776
18777 In set_ddr_laws() when we determined how much of the size requested
18778 to be mapped was covered by the the first LAW we needed to recalculate
18779 the size based on what was actually mapped.
18780
18781 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18782
18783 commit 32049b4048ff8e59bd5ba6160d6d5206d283b2a2
18784 Author: Kumar Gala <galak@kernel.crashing.org>
18785 Date: Thu Apr 2 13:57:05 2009 -0500
18786
18787 fsl_pci: Move prototypes into fsl_pci.h and remove explicit externs
18788
18789 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18790
18791 commit c8514622e2713d9c47919acfe23fce386782afe7
18792 Author: Kumar Gala <galak@kernel.crashing.org>
18793 Date: Thu Apr 2 13:22:48 2009 -0500
18794
18795 fsl_pci: Renamed immap_fsl_pci.h to fsl_pci.h
18796
18797 Rename the pci header for FSL HW so we can move some prototypes
18798 in there and stop doing explicit externs
18799
18800 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18801
18802 commit afcbce07e9323c0e8aeb783ba7ce6104860fd7a7
18803 Author: Wolfgang Denk <wd@denx.de>
18804 Date: Sat Apr 4 16:10:40 2009 +0200
18805
18806 Fix building of env_embedded.o
18807
18808 Since commit a706bfc7 common/env_embedded.o and tools/envcrc were
18809 only built when CONFIG_ENV_IS_EMBEDDED was set, but this breaks
18810 building for many boards.
18811
18812 We always have to build these files when CONFIG_ENV_IS_IN_FLASH is
18813 set.
18814
18815 Signed-off-by: Wolfgang Denk <wd@denx.de>
18816
18817 commit a31e091ad70915278fb15b79d6ae53ea2d44b251
18818 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18819 Date: Sat Apr 4 12:49:11 2009 +0200
18820
18821 rename include/zlib.h to include/u-boot/zlib.h
18822
18823 Some systems have zlib.h installed in /usr/include/. This isn't the
18824 desired file for u-boot code - we want the one in include/zlib.h.
18825 This rename will avoid the conflict.
18826
18827 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18828 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18829
18830 commit ae644c178f097874a92a6d934f364985fc7e075a
18831 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18832 Date: Sat Apr 4 12:46:31 2009 +0200
18833
18834 tools/Makefile: fix image.c dependancy location
18835
18836 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18837 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18838
18839 commit b074a7081124d7f05fd1651a3bc0b5579fdfa473
18840 Author: Mike Frysinger <vapier@gentoo.org>
18841 Date: Sat Apr 4 07:42:25 2009 -0400
18842
18843 tools: add ncb to gitignore
18844
18845 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18846
18847 commit 453c0d7558215cbc8636d94af172886d84e0dbba
18848 Author: Detlev Zundel <dzu@denx.de>
18849 Date: Fri Apr 3 16:45:46 2009 +0200
18850
18851 include/ns16550.h: Unify structure declaration for registers
18852
18853 Instead of special casing the different access patterns, use common
18854 code with light macros sprinkled in to accomodate for the different
18855 layouts of the register structure.
18856
18857 Note that this also changes the types of the registers for the
18858 "positively packed (>1)" cases. As the registers truly are unsigned
18859 chars, this is surely the Right Thing, but it is a semantic change.
18860 Note that for this case depending on the endianness on the bus, we may
18861 see a change of behaviour.
18862
18863 Signed-off-by: Detlev Zundel <dzu@denx.de>
18864
18865 commit 0a145ce6e7075aa0f4869d6f6149a5ff205d95df
18866 Author: Peter Tyser <ptyser@xes-inc.com>
18867 Date: Fri Mar 13 18:54:52 2009 -0500
18868
18869 Delete now unused tools/Makefile.win32
18870
18871 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18872
18873 commit 2f8d396b9302eddcd8d552648e101a46b7a80acd
18874 Author: Peter Tyser <ptyser@xes-inc.com>
18875 Date: Fri Mar 13 18:54:51 2009 -0500
18876
18877 Add support for building native win32 tools
18878
18879 Add support for compiling the host tools in the tools directory using
18880 the MinGW toolchain. This produces executables which can be used on
18881 standard Windows computers without requiring cygwin.
18882
18883 One must specify the MinGW compiler and strip utilities as if they
18884 were the host toolchain in order to build win32 executables, eg:
18885
18886 make HOSTCC=i586-mingw32msvc-gcc HOSTSTRIP=i586-mingw32msvc-strip tools
18887
18888 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18889
18890 commit e50abf662efbf4ce0e731062c8d3c8ec54763ae2
18891 Author: Peter Tyser <ptyser@xes-inc.com>
18892 Date: Fri Mar 13 18:54:50 2009 -0500
18893
18894 tools/Makefile: Simplify HOST_CFLAGS/HOST_LDFLAGS generation
18895
18896 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18897
18898 commit b0d4d7219a4806e46affc96bd1f65397194a6e72
18899 Author: Peter Tyser <ptyser@xes-inc.com>
18900 Date: Fri Mar 13 18:54:49 2009 -0500
18901
18902 tools/Makefile: Create generic build rules
18903
18904 Create a few generic build rules to replace the current method which has
18905 1 build target for each file
18906
18907 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18908
18909 commit 273174ddbcce215c42f6c307470cd5580a3f72bf
18910 Author: Peter Tyser <ptyser@xes-inc.com>
18911 Date: Fri Mar 13 18:54:48 2009 -0500
18912
18913 tools/Makefile: Use auto-generated object file dependencies
18914
18915 Files in the SRCS variable have their dependencies automatically
18916 generated so remove duplicate explicit dependencies
18917
18918 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18919
18920 commit fb8b33c1e6d621ea3347a75ad3a42a386b44e589
18921 Author: Peter Tyser <ptyser@xes-inc.com>
18922 Date: Fri Mar 13 18:54:47 2009 -0500
18923
18924 tools/Makefile: Remove symlinks for remaining source files
18925
18926 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18927
18928 commit eed073315b6447eceadf7468a4c2b757442c7c6f
18929 Author: Peter Tyser <ptyser@xes-inc.com>
18930 Date: Fri Mar 13 18:54:46 2009 -0500
18931
18932 tools/Makefile: Dynamically generate libfdt object dependencies
18933
18934 Add the libfdt files to the SRCS variable so that they have their
18935 dependencies automatically generated
18936
18937 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18938
18939 commit c0170175393b94560fa7a5da6dd31377df5f4a72
18940 Author: Peter Tyser <ptyser@xes-inc.com>
18941 Date: Fri Mar 13 18:54:45 2009 -0500
18942
18943 tools/Makefile: Remove symlinks for fdt targets
18944
18945 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18946
18947 commit 45d6bdff68877ea214ff33cc1c89a29c76e96f51
18948 Author: Peter Tyser <ptyser@xes-inc.com>
18949 Date: Fri Mar 13 18:54:44 2009 -0500
18950
18951 tools/Makefile: Add libfdt/ to the include search path
18952
18953 This change makes the process of symlinking libfdt_internal.h
18954 unnecessary
18955
18956 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18957
18958 commit fba0e3a0814f9bf48c32a4c8a7987c36ae96651b
18959 Author: Peter Tyser <ptyser@xes-inc.com>
18960 Date: Fri Mar 13 18:54:43 2009 -0500
18961
18962 tools: Remove unecessary symlinking of zlib.h
18963
18964 crc32.c uses the zlib.h header in include/u-boot/zlib.h. The symlink
18965 was previously necessary to give U-Boot's version of zlib.h precedence
18966 over the host computer's version of zlib.h.
18967
18968 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18969
18970 commit 40b8d909ace06f6f494dee08ffa64a82493e72e9
18971 Author: Peter Tyser <ptyser@xes-inc.com>
18972 Date: Fri Mar 13 18:54:42 2009 -0500
18973
18974 tools/Makefile: Add tools/ to the include search path
18975
18976 This change makes the process of symlinking mkimage.h and fdt_host.h
18977 unnecessary
18978
18979 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18980
18981 commit 1cd300de5e19c9e8383ee2eb2b6bd3b8b9378c78
18982 Author: Peter Tyser <ptyser@xes-inc.com>
18983 Date: Fri Mar 13 18:54:41 2009 -0500
18984
18985 tools/Makefile: Compile ncb when CONFIG_NETCONSOLE
18986
18987 Also conditionally add ncb.o to OBJ_FILES list
18988
18989 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18990
18991 commit 123c48a21ce08b4a33f36e96cc75f92324e761d7
18992 Author: Peter Tyser <ptyser@xes-inc.com>
18993 Date: Fri Mar 13 18:54:40 2009 -0500
18994
18995 tools/Makefile: Make gen_eth_addr dependent upon CONFIG_CMD_NET
18996
18997 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
18998
18999 commit 4d93a0a807b8ca0289ba5da00c646cd2d54af120
19000 Author: Peter Tyser <ptyser@xes-inc.com>
19001 Date: Fri Mar 13 18:54:39 2009 -0500
19002
19003 tools/Makefile: Make envcrc dependent upon CONFIG_ENV_IS_EMBEDDED
19004
19005 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19006
19007 commit cd26a31a23f9a58ba52870f8ffb57d77d1baee20
19008 Author: Peter Tyser <ptyser@xes-inc.com>
19009 Date: Fri Mar 13 18:54:38 2009 -0500
19010
19011 tools/Makefile: Make inca-swap-bytes dependent on CONFIG_INCA_IP
19012
19013 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19014
19015 commit 7cd5cbc34699ccc15d0277f48375cad928d04faf
19016 Author: Peter Tyser <ptyser@xes-inc.com>
19017 Date: Fri Mar 13 18:54:37 2009 -0500
19018
19019 tools/Makefile: Make ubsha1 dependent upon CONFIG_SHA1_CHECK_UB_IMG
19020
19021 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19022
19023 commit eeba8617908e33f7e7db3b1588c04ca65b856793
19024 Author: Peter Tyser <ptyser@xes-inc.com>
19025 Date: Fri Mar 13 18:54:36 2009 -0500
19026
19027 tools/Makefile: Make img2srec dependent upon CONFIG_CMD_LOADS
19028
19029 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19030
19031 commit 335ffe7e0e0a30e90ce409c3279016a582157d8e
19032 Author: Peter Tyser <ptyser@xes-inc.com>
19033 Date: Fri Mar 13 18:54:35 2009 -0500
19034
19035 tools/Makefile: Build bmp_logo only when LCD or VIDEO logos are enabled
19036
19037 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19038
19039 commit ee3584a5970230ee96aae19505ad3226734ee4ff
19040 Author: Peter Tyser <ptyser@xes-inc.com>
19041 Date: Fri Mar 13 18:54:34 2009 -0500
19042
19043 tools/Makefile: Split variable declarations into multiple lines
19044
19045 Split variable declarations into multiple lines and use the standard
19046 VAR-y convention. Also move object and binary variable declarations to
19047 after config.mk has been included to allow for these lists to utilize
19048 the CONFIG_XXX variables.
19049
19050 These changes lay the groundwork for conditional compilation of files
19051 in the tools directory.
19052
19053 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19054
19055 commit 21d28e95ed874ab1ed9787f939d8a53e99d30ddb
19056 Author: Peter Tyser <ptyser@xes-inc.com>
19057 Date: Fri Mar 13 18:54:33 2009 -0500
19058
19059 tools/Makefile: Remove inappropriate double-tabs
19060
19061 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19062
19063 commit 652f4ba076689fd0acd447561a777b1c440a4b57
19064 Author: Peter Tyser <ptyser@xes-inc.com>
19065 Date: Fri Mar 13 18:54:32 2009 -0500
19066
19067 tools/Makefile: Remove HOSTARCH HOSTOS defines
19068
19069 The values of HOSTARCH and HOSTOS which are exported from the top-level
19070 Makefile should be used
19071
19072 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19073
19074 commit 2eeb4e95fbfafe54645fae7ec0b2594101f0573b
19075 Author: Peter Tyser <ptyser@xes-inc.com>
19076 Date: Fri Mar 13 18:54:31 2009 -0500
19077
19078 gen_eth_addr: Use POSIX rand() and srand()
19079
19080 Replace random()/srandom() use with rand()/srand() to support
19081 compilation with the mingw toolchain. The rand()/srand() functions are
19082 generally more common and are functionally equivalent to the original
19083 random()/srandom() calls.
19084
19085 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19086
19087 commit 24d2ae5e9debe4b75151a55251031a14477fa875
19088 Author: Peter Tyser <ptyser@xes-inc.com>
19089 Date: Fri Mar 13 18:54:28 2009 -0500
19090
19091 elf.h: Use stdint.h to provide standard typedefs for WIN32
19092
19093 The original code provided an incomplete set of typedefs for WIN32
19094 compiles and replicated the standard typedefs that are already
19095 provided by stdint.h
19096
19097 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19098
19099 commit a706bfc7d0e2d1935c5670045288e6cd1ffdfabc
19100 Author: Peter Tyser <ptyser@xes-inc.com>
19101 Date: Fri Mar 13 18:54:27 2009 -0500
19102
19103 common/Makefile: Conditionally compile env_embedded.o
19104
19105 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19106
19107 commit 2b48f7d5f62835f87278efb498397b6ae9e2d117
19108 Author: Peter Tyser <ptyser@xes-inc.com>
19109 Date: Fri Mar 13 18:54:26 2009 -0500
19110
19111 Makefile: Add removal of *.exe files to clean target
19112
19113 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19114
19115 commit d0d6144e0e4a03a68311b781f3dde38dc9316b82
19116 Author: Peter Tyser <ptyser@xes-inc.com>
19117 Date: Fri Mar 13 18:54:25 2009 -0500
19118
19119 Makefile: Make autoconf.mk a dependency of the depend target
19120
19121 The original code did not generate autoconf.mk until after some targets
19122 dependencies had already been calculated, for example the directories in
19123 the SUBDIRS variable
19124
19125 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
19126
19127 commit 75eb82ec7cacb18d059d701b35677b93d2bb7596
19128 Author: unsik Kim <donari75@gmail.com>
19129 Date: Wed Feb 25 11:31:24 2009 +0900
19130
19131 mflash: Initial mflash support
19132
19133 Mflash is fusion memory device mainly targeted consumer eletronic and
19134 mobile phone.
19135 Internally, it have nand flash and other hardware logics and supports
19136 some different operation (ATA, IO, XIP) modes.
19137
19138 IO mode is custom mode for the host that doesn't have IDE interface.
19139 (Many mobile targeted SoC doesn't have IDE bus)
19140
19141 This driver support mflash IO mode.
19142
19143 Followings are brief descriptions about IO mode.
19144
19145 1. IO mode based on ATA protocol and uses some custom command. (read
19146 confirm, write confirm)
19147 2. IO mode uses SRAM bus interface.
19148
19149 Signed-off-by: unsik Kim <donari75@gmail.com>
19150
19151 commit 200779e3e2a9aeda7030b171a8c39d7797019917
19152 Author: Detlev Zundel <dzu@denx.de>
19153 Date: Fri Apr 3 11:53:01 2009 +0200
19154
19155 Rename common ns16550 constants with UART_ prefix to prevent conflicts
19156
19157 Fix problems introduced in commit
19158 7b5611cdd12ca0cc33f994f0d4a4454788fc3124 [inka4x0: Add hardware
19159 diagnosis functions for inka4x0] which redefined MSR_RI which is
19160 already used on PowerPC systems.
19161
19162 Also eliminate redundant definitions in ps2mult.h. More cleanup will
19163 be needed for other redundant occurrences though.
19164
19165 Signed-off-by: Detlev Zundel <dzu@denx.de>
19166
19167 commit 99067b08f4a0ce20ff337a35211239f334d8f451
19168 Author: Scott Wood <scottwood@freescale.com>
19169 Date: Wed Apr 1 15:33:24 2009 -0500
19170
19171 Noisily disable the legacy NAND subsystem.
19172
19173 Legacy NAND is marked for feature removal after April 2009 (i.e. this
19174 upcoming release). There are still several boards that reference it
19175 (though many do so only for disk-on-chip support which has been silently
19176 disabled for a while now). These boards will now fail to build
19177 with #error, though the code is still there if the user removes #error.
19178
19179 The plan is to remove the code outright in the next release, along with
19180 any board code that refers to it (such as board/esd/common/auto_update.c).
19181
19182 Also, remove the legacy NAND API description from README.nand.
19183
19184 Signed-off-by: Scott Wood <scottwood@freescale.com>
19185
19186 commit 69bcabb51686fdd133cb1848c0d3b0a4fc6ca5cf
19187 Author: apgmoorthy <moorthy.apg@samsung.com>
19188 Date: Fri Mar 27 14:45:23 2009 +0530
19189
19190 Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN
19191
19192 Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB.
19193 However, u-boot image for apollon board is 195KB making the board
19194 unbootable with OneNAND.
19195
19196 Fix ipl to read CONFIG_SYS_MONITOR_LEN.
19197 CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size.
19198
19199 Signed-off-by: Rohit Hagargundgi <h.rohit@samsung.com>
19200 Signed-off-by: Gangheyamoorthy <moorthy.apg@samsung.com>
19201 Signed-off-by: Scott Wood <scottwood@freescale.com>
19202
19203 commit 74de7aefd79690bae8cf5a5120f5962d444be089
19204 Author: Wolfgang Denk <wd@denx.de>
19205 Date: Wed Apr 1 23:34:12 2009 +0200
19206
19207 Add "source" command; prepare removal of "autoscr" command
19208
19209 According to the doc/feature-removal-schedule.txt, the "autoscr"
19210 command will be replaced by the "source" command in approximately 6
19211 months from now.
19212
19213 This patch prepares this change and starts a 6 month transition
19214 period as follows:
19215
19216 - The new "source" command has been added, which implements exactly
19217 the same functionlaity as the old "autoscr" command before
19218 - The old "autoscr" command name is kept as an alias for compatibility
19219 - Command sequences, script files atc. have been adapted to use the
19220 new "source" command
19221 - Related environment variables ("autoscript", "autoscript_uname")
19222 have *not* been adapted yet; these will be renamed resp. removed in
19223 a separate patch when the support for the "autoscr" command get's
19224 finally dropped.
19225
19226 Signed-off-by: Wolfgang Denk <wd@denx.de>
19227
19228 commit 78237df55248034a2d7c2daea992b9dbe7ca8e96
19229 Author: Wolfgang Denk <wd@denx.de>
19230 Date: Thu Apr 2 17:31:09 2009 +0200
19231
19232 Add "GPL cleanup" task to feature-removal-schedule.txt
19233
19234 Announce removal of all non-GPL or GPL-incompatible files
19235 after August 2009.
19236
19237 Signed-off-by: Wolfgang Denk <wd@denx.de>
19238
19239 commit d9596ffbdc79cea285010b67dd20a4618303f624
19240 Author: Mike Frysinger <vapier@gentoo.org>
19241 Date: Thu Apr 2 12:51:28 2009 -0400
19242
19243 sf: stmicro: dont send 4 bytes when reading status register
19244
19245 I can't find anywhere in the datasheet that says the status register needs
19246 3 dummy bytes sent to it before being able to read back the first real
19247 result. Tests on a Blackfin board show that after writing the opcode, the
19248 status register starts coming back immediately. So only write out the
19249 read status register opcode before polling the result.
19250
19251 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19252 CC: Jason McMullan <mcmullan@netapp.com>
19253 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19254
19255 commit 1abe365ffcfc29c061e8fd8b45551be5ad1428dd
19256 Author: Mike Frysinger <vapier@gentoo.org>
19257 Date: Thu Apr 2 08:11:31 2009 -0400
19258
19259 sf: set common timeouts in seconds, not milliseconds
19260
19261 Since timeouts are only hit when there is a problem in the system, we
19262 don't want to prematurely timeout on a functioning setup. Thus having
19263 low timeouts (in milliseconds) doesn't gain us anything in the production
19264 case, but rather increases likely hood of causing problems where none
19265 otherwise exist.
19266
19267 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19268 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19269
19270 commit 2a6ce1115b3cbe746965cfa0058ce645b6c1ada1
19271 Author: Mike Frysinger <vapier@gentoo.org>
19272 Date: Thu Apr 2 06:51:49 2009 -0400
19273
19274 sf: stmicro: use common page timeout define
19275
19276 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19277 CC: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19278
19279 commit 0dcdbb172c2fdf60c5c578980308b312fd56496f
19280 Author: Mike Frysinger <vapier@gentoo.org>
19281 Date: Sat Mar 28 06:41:09 2009 -0400
19282
19283 sf: always read 5 bytes for the idcode
19284
19285 Some SPI flash drivers like to have extended id information available
19286 (like the spansion flash), so rather than making it re-issue the ID cmd
19287 to get at the last 2 bytes, have the common code read 5 bytes rather than
19288 just 3. This also matches the Linux behavior where it always reads 5 id
19289 bytes from all flashes.
19290
19291 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19292 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19293 CC: Mingkai Hu <Mingkai.hu@freescale.com>
19294
19295 commit 9726ba4abaa16cd6c385ad350d403f98a8eacf52
19296 Author: Mike Frysinger <vapier@gentoo.org>
19297 Date: Fri Mar 27 16:34:21 2009 -0400
19298
19299 sf: stmicro: drop redundant id read
19300
19301 The common SPI flash code reads the idcode and passes it down to the SPI
19302 flash driver, so there is no need to read it again ourselves.
19303
19304 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19305 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19306 CC: Jason McMullan <mcmullan@netapp.com>
19307 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19308
19309 commit 1c5874374e091b4bb62917c519861f7682fe066e
19310 Author: Mike Frysinger <vapier@gentoo.org>
19311 Date: Fri Mar 27 19:27:58 2009 -0400
19312
19313 sf: add driver for SST flashes
19314
19315 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19316 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19317
19318 commit f773a1bbdb8f3bf1ddab2874f36f043c4f8f044d
19319 Author: Mike Frysinger <vapier@gentoo.org>
19320 Date: Mon Mar 23 23:03:58 2009 -0400
19321
19322 sf: drop DEBUG defines
19323
19324 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19325 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19326
19327 commit 6b850a9fa8a216f3692da2511cb1a6c16409b1af
19328 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19329 Date: Sun Jan 4 07:44:07 2009 +0100
19330
19331 mtd: add some at45 spi flash support
19332
19333 - AT45DB321D
19334 - AT45DB161D
19335 - AT45DB081D
19336 - AT45DB041D
19337 - AT45DB021D
19338 - AT45DB011D
19339
19340 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19341 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19342
19343 commit 6805e4bf83e6f444f7411101228766c8a7aec5f7
19344 Author: Mingkai Hu <Mingkai.hu@freescale.com>
19345 Date: Tue Mar 31 14:09:41 2009 +0800
19346
19347 mtd: SPI Flash: Support the Spansion Flash
19348
19349 Add MTD SPI Flash support for S25FL008A, S25FL016A,
19350 S25FL032A, S25FL064A, S25FL128P.
19351
19352 Signed-off-by: Mingkai Hu <Mingkai.hu@freescale.com>
19353 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19354
19355 commit 40587701924aa0afc86b3840421b4cc6de42c748
19356 Author: Mike Frysinger <vapier@gentoo.org>
19357 Date: Mon Mar 30 20:56:45 2009 -0400
19358
19359 Blackfin: force all boards to HZ of 1000
19360
19361 Since the Blackfin timer code requires HZ to be 1000, barf on any board
19362 that tries to use a different value.
19363
19364 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19365
19366 commit f4032d2eec9d71a59c6c724671e577f67a76839b
19367 Author: Mike Frysinger <vapier@gentoo.org>
19368 Date: Fri Mar 27 21:07:45 2009 -0400
19369
19370 Blackfin: bf533-stamp: drop old spi flash driver
19371
19372 Now that the common SPI flash code supports all the flashes, we can stop
19373 using the old driver.
19374
19375 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19376
19377 commit bc72f50a659d0d1b551817e1910b9b2be1c7e496
19378 Author: Mike Frysinger <vapier@gentoo.org>
19379 Date: Thu Mar 26 15:42:12 2009 -0400
19380
19381 Blackfin: add BF538/BF539 SPI portmux handling
19382
19383 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19384
19385 commit 46ac352f0f9406a5f9aa157ac62867fb4650dfd3
19386 Author: Mike Frysinger <vapier@gentoo.org>
19387 Date: Mon Mar 23 22:36:10 2009 -0400
19388
19389 Blackfin: do not delay on output bytes
19390
19391 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19392
19393 commit dbc6ab9f75bd0c13d3f42692e9463f8ab65fc382
19394 Author: Mike Frysinger <vapier@gentoo.org>
19395 Date: Mon Mar 23 22:17:27 2009 -0400
19396
19397 Blackfin: drop newline from OTP help
19398
19399 Looks like I accidentally added a newline to the OTP help when merging and
19400 older change.
19401
19402 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19403
19404 commit d3c38d96b991d641a33f7748130dae008563cdc9
19405 Author: Mike Frysinger <vapier@gentoo.org>
19406 Date: Sun Mar 22 23:43:31 2009 -0400
19407
19408 Blackfin: convert bfin_sdh to legacy mmc
19409
19410 The Blackfin SDH controller is still using the legacy framework, so update
19411 the driver to use the renamed functions.
19412
19413 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19414
19415 commit d248cfb2d940b742f6bfdba9b832a3df96da3101
19416 Author: Mike Frysinger <vapier@gentoo.org>
19417 Date: Sun Feb 22 16:30:38 2009 -0500
19418
19419 Blackfin: bf537-stamp: split CF/IDE code out into dedicated cf-ide.c
19420
19421 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19422
19423 commit ad9073211ca9e62162a39851e082b8d07a662fb6
19424 Author: Mike Frysinger <vapier@gentoo.org>
19425 Date: Fri Feb 13 17:10:58 2009 -0500
19426
19427 Blackfin: fix crash when booting from external memory
19428
19429 When testing a u-boot binary that hasn't been booted from the bootrom, we
19430 have to make sure the bootstruct structure has sane storage space. If we
19431 don't, the initcode will crash when it tries to dereference an invalid
19432 pointer.
19433
19434 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19435
19436 commit 84a9dda324c3faa56be14449d7519b993d9397a9
19437 Author: Mike Frysinger <vapier@gentoo.org>
19438 Date: Sun Oct 12 21:32:52 2008 -0400
19439
19440 Blackfin: bf518f-ezbrd: new board port
19441
19442 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19443
19444 commit 0c31ddf7b70f77dede42dc82ecab7753a819acaa
19445 Author: Mike Frysinger <vapier@gentoo.org>
19446 Date: Sun Oct 12 21:30:48 2008 -0400
19447
19448 Blackfin: bf526-ezbrd: new board port
19449
19450 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19451
19452 commit 5c45f7cac2f74e2c14aa6b028cd969651cc9ac8e
19453 Author: Mike Frysinger <vapier@gentoo.org>
19454 Date: Sun Oct 12 21:25:33 2008 -0400
19455
19456 Blackfin: bf538f-ezkit: new board port
19457
19458 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19459
19460 commit d9a5d113b93583c984711127ab8503e136ed1e4a
19461 Author: Mike Frysinger <vapier@gentoo.org>
19462 Date: Sun Oct 12 20:59:12 2008 -0400
19463
19464 Blackfin: bf527-ezkit: new board port
19465
19466 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19467
19468 commit 76d21803ddd7dc4bcb81739ea2d3cd679e052f46
19469 Author: Mike Frysinger <vapier@gentoo.org>
19470 Date: Sun Oct 12 05:05:42 2008 -0400
19471
19472 Blackfin: bf548-ezkit: new board port
19473
19474 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19475
19476 commit 67b89c79e72fe86b0ea0199425d880630beb95d8
19477 Author: Laurent Gregoire <laurent.gregoire@tomtom.com>
19478 Date: Tue Mar 3 14:23:59 2009 +0100
19479
19480 libfdt: Fix C++ compile-time cast error on gnu 4.2.1
19481
19482 Allow the inclusion of libfdt.h in C++ source.
19483
19484 Signed-off-by: Laurent Gregoire <laurent.gregoire@tomtom.com>
19485 Acked-by: David Gibson <david@gibson.dropbear.id.au>
19486
19487 commit 13d93f38e86818739317b0206d597265cf9e675e
19488 Author: Emil Medve <Emilian.Medve@Freescale.com>
19489 Date: Mon Feb 23 10:43:36 2009 -0600
19490
19491 Fix a possible overflow case detected by gcc 4.3.2
19492
19493 .../dtc/libfdt/fdt_sw.c: In function 'fdt_end_node':
19494 .../dtc/libfdt/fdt_sw.c:81: error: assuming signed overflow does not occur when assuming that (X + c) < X is always false
19495
19496 Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
19497
19498 commit a22d9cfbb5bcfb3dc6ffd64d391b568e8a0ce383
19499 Author: David Gibson <david@gibson.dropbear.id.au>
19500 Date: Fri Feb 6 14:03:24 2009 +1100
19501
19502 libfdt: Rework/cleanup fdt_next_tag()
19503
19504 Currently, callers of fdt_next_tag() must usually follow the call with
19505 some sort of call to fdt_offset_ptr() to verify that the blob isn't
19506 truncated in the middle of the tag data they're going to process.
19507 This is a bit silly, since fdt_next_tag() generally has to call
19508 fdt_offset_ptr() on at least some of the data following the tag for
19509 its own operation.
19510
19511 This patch alters fdt_next_tag() to always use fdt_offset_ptr() to
19512 verify the data between its starting offset and the offset it returns
19513 in nextoffset. This simplifies fdt_get_property() which no longer has
19514 to verify itself that the property data is all present.
19515
19516 At the same time, I neaten and clarify the error handling for
19517 fdt_next_tag(). Previously, fdt_next_tag() could return -1 instead of
19518 a tag value in some circumstances - which almost none of the callers
19519 checked for. Also, fdt_next_tag() could return FDT_END either because
19520 it encountered an FDT_END tag, or because it reached the end of the
19521 structure block - no way was provided to tell between these cases.
19522
19523 With this patch, fdt_next_tag() always returns FDT_END with a negative
19524 value in nextoffset for an error. This means the several places which
19525 loop looking for FDT_END will still work correctly - they only need to
19526 check for errors at the end. The errors which fdt_next_tag() can
19527 report are:
19528 - -FDT_ERR_TRUNCATED if it reached the end of the structure
19529 block instead of finding a tag.
19530
19531 - -FDT_BADSTRUCTURE if a bad tag was encountered, or if the
19532 tag data couldn't be verified with fdt_offset_ptr().
19533
19534 This patch also updates the callers of fdt_next_tag(), where
19535 appropriate, to make use of the new error reporting.
19536
19537 Finally, the prototype for the long gone _fdt_next_tag() is removed
19538 from libfdt_internal.h.
19539
19540 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
19541
19542 commit 2c0b843e710aa1e2da25c2592e6dbe5d0b0ab7da
19543 Author: David Gibson <david@gibson.dropbear.id.au>
19544 Date: Fri Feb 6 14:01:56 2009 +1100
19545
19546 libfdt: Rework fdt_next_node()
19547
19548 Currently fdt_next_node() will find the next node in the blob
19549 regardless of whether it is above, below or at the same level in the
19550 tree as the starting node - the depth parameter is updated to indicate
19551 which is the case. When a depth parameter is supplied, this patch
19552 makes it instead terminate immediately when it finds the END_NODE tag
19553 for a node at depth 0. In this case it returns the offset immediately
19554 past the END_NODE tag.
19555
19556 This has a couple of advantages. First, this slightly simplifies
19557 fdt_subnode_offset(), which no longer needs to explicitly check that
19558 fdt_next_node()'s iteration hasn't left the starting node. Second,
19559 this allows fdt_next_node() to be used to implement
19560 _fdt_node_end_offset() considerably simplifying the latter function.
19561
19562 The other users of fdt_next_node() either don't need to iterate out of
19563 the starting node, or don't pass a depth parameter at all. Any
19564 callers that really need to iterate out of the starting node, but keep
19565 tracking depth can do so by biasing the initial depth value.
19566
19567 This is a semantic change, but I think it's very unlikely to break any
19568 existing library users.
19569
19570 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
19571
19572 commit c123098035be8bae3859bbfbd06861f197c07631
19573 Author: Scott Wood <scottwood@freescale.com>
19574 Date: Tue Mar 31 17:49:36 2009 -0500
19575
19576 mpc83xx: Set guarded bit on BAT that covers the end of the address space
19577
19578 The mpc8313erdb board currently sets DBAT6 to cover all of the final 256MiB of
19579 address space; however, not all of this space is covered by a device. In
19580 particular, flash sits at 0xfe000000-0xfe7fffff, and nothing is mapped
19581 at the far end of the address space.
19582
19583 In zlib, there is a loop that references p[-1] if p is non-NULL. Under
19584 some circumstances, this leads to the CPU speculatively loading from
19585 0xfffffff8 if p is NULL. This leads to a machine check.
19586
19587 Signed-off-by: Scott Wood <scottwood@freescale.com>
19588
19589 continuation to the remaining mpc83xx boards that suffer from the same problem.
19590
19591 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19592
19593 commit c2eb8be7f760a2efe30a495bfb10857838dcf3fa
19594 Author: Kim Phillips <kim.phillips@freescale.com>
19595 Date: Mon Mar 30 14:28:05 2009 -0500
19596
19597 rtc: remove broken rtc_read and rtc_write declarations
19598
19599 commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g.
19600 EPSON)" introduces the following build error on boards configuring e.g,
19601 the ds1374 rtc:
19602
19603 Configuring for MPC837XEMDS board...
19604 ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration
19605 /home/r1aaha/git/u-boot/include/rtc.h:64: error: previous declaration of 'rtc_read' was here
19606 ds1374.c:104: error: conflicting types for 'rtc_write'
19607 /home/r1aaha/git/u-boot/include/rtc.h:65: error: previous declaration of 'rtc_write' was here
19608
19609 this reverts the erroneous chunk.
19610
19611 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19612 Acked-by: Detlev Zundel <dzu@denx.de>
19613 CC: Detlev Zundel <dzu@denx.de>
19614 CC: Andreas Pfefferle <ap@denx.de>
19615
19616 commit fc39c2fd51e64707de4d61ed49479ebea2847e1b
19617 Author: Kumar Gala <galak@kernel.crashing.org>
19618 Date: Tue Mar 31 17:58:13 2009 -0500
19619
19620 85xx/86xx: Ensure MP boot page is not used
19621
19622 We had a bug on 86xx in which the boot page used to bring up secondary
19623 cores was being overwritten and used for the malloc region in u-boot.
19624
19625 We need to reserve the region of memory that the boot page is going to
19626 be put at so nothing uses it.
19627
19628 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19629 Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
19630
19631 commit c840d26c752141b94bbc24ac748ddd45752a955a
19632 Author: Kumar Gala <galak@kernel.crashing.org>
19633 Date: Tue Mar 31 23:11:05 2009 -0500
19634
19635 85xx: Introduce determine_mp_bootpg() helper.
19636
19637 Match determine_mp_bootpg() that was added for 86xx. We need this to
19638 address a bug introduced in v2009.03 with 86xx MP booting. We have to
19639 make sure to reserve the region of memory used for the MP bootpg() so
19640 other u-boot code doesn't use it.
19641
19642 Also added a comment about how cpu_reset() is dealing w/an errata on
19643 early 85xx MP HW.
19644
19645 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19646
19647 commit 7649a590b53ee548f41428bf20780f74ce9fc099
19648 Author: Kumar Gala <galak@kernel.crashing.org>
19649 Date: Tue Mar 31 23:02:38 2009 -0500
19650
19651 86xx: Cleanup MP support
19652
19653 * Use CONFIG_MP instead of CONFIG_NUM_CPUS to match 85xx
19654 * Introduce determine_mp_bootpg() helper. We'll need this to address a
19655 bug introduced in v2009.03 with 86xx MP booting. We have to make sure
19656 to reserve the region of memory used for the MP bootpg() so other
19657 u-boot code doesn't use it.
19658 * Added dummy versions of cpu_reset(), cpu_status() & cpu_release() to
19659 allow cmd_mp.c to build and work. In the future we should look at
19660 implementing all these functions. This could be common w/85xx if we
19661 use spin tables on 86xx.
19662
19663 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19664
19665 commit f6ef8b7a43ed7f68a4bb524faad5e4f75ea3e3e2
19666 Author: Becky Bruce <beckyb@kernel.crashing.org>
19667 Date: Tue Mar 31 18:38:37 2009 -0500
19668
19669 mpc8641hpcn/sbc8641d: Add missing board_lmb_reserves
19670
19671 We're missing the board_lmb_reserve definitions that allow
19672 cpu_mp_lmb_reserve to be called; this means that Linux
19673 is free to reallocate reserved pages. Linux currently boots
19674 because we're getting lucky - the page we've reserved is
19675 high enough in memory that it isn't allocated by Linux
19676 while we still need it to be in existence.
19677
19678 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
19679 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19680
19681 commit 0fc4f64c59873a47d555dd66bad25797d4ecb0ed
19682 Author: Ladislav Michl <ladis@linux-mips.org>
19683 Date: Tue Mar 31 13:43:10 2009 +0200
19684
19685 NetStar: fix NAND
19686
19687 Fix NAND support broken during new NAND code merge. Move those few lines of
19688 code to board/netstar/netstar.c
19689
19690 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19691
19692 commit d144f94d590b5190a9963bd0f2026b2a7ce67eda
19693 Author: Jens Scharsig <esw@bus-elektronik.de>
19694 Date: Tue Mar 31 08:18:29 2009 +0200
19695
19696 soft_i2c.c compiler/linker error
19697
19698 This patch fix the compiler/linker errors
19699
19700 common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed'
19701 common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed'
19702
19703 if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not
19704 uesd/undef (wrong define order)
19705
19706 and
19707
19708 removes additional empty lines
19709
19710 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
19711
19712 commit 765547dc5e0e8cbe6b8f4ea8a5d6ff237935c352
19713 Author: Haiying Wang <Haiying.Wang@freescale.com>
19714 Date: Fri Mar 27 17:02:45 2009 -0400
19715
19716 MPC85xx: Add MPC8569MDS board support
19717
19718 This patch adds MPC8569MDS board support. The UART, QE UEC1 and UEC2, BRD
19719 EEPROM on I2C2 bus, PCI express and DDR3 SPD are supported in this patch.
19720
19721 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19722 Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
19723 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19724
19725 commit 22b6dbc1696d927d938dd4e16f65d83c0d4fb3f4
19726 Author: Haiying Wang <Haiying.Wang@freescale.com>
19727 Date: Fri Mar 27 17:02:44 2009 -0400
19728
19729 MPC85xx: Add MPC8569 CPU support
19730
19731 There is a workaround for MPC8569 CPU Errata, which needs to set Bit 13 of
19732 LBCR in 4K bootpage. We setup a temp TLB for eLBC controller in bootpage,
19733 then invalidate it after LBCR bit 13 is set.
19734
19735 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19736 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19737
19738 commit 2d4de6ae5be54b367a72a7ef4e0cf36a9cd4881f
19739 Author: Haiying Wang <Haiying.Wang@freescale.com>
19740 Date: Thu Mar 26 17:01:49 2009 -0400
19741
19742 MPC85xx: Load and enable QE microcode patch in IRAM
19743
19744 For the silicon which doesn't have ROM support in QE, it always needs to load
19745 a pre-built ucode binary to IRAM so that QE can work.
19746
19747 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
19748 Signed-off-by: Hillel Avni <Hillel.Avni@freescale.com>
19749
19750 commit 1b3e4044a28a3d95b0aad41bdc52482bb2cc9b2b
19751 Author: Kumar Gala <galak@kernel.crashing.org>
19752 Date: Thu Mar 19 09:16:10 2009 -0500
19753
19754 85xx: Add support for additional e500mc features
19755
19756 * Enable backside L2
19757 * e500mc no longer has timebase enable in HID (moved to CCSR register)
19758
19759 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19760
19761 commit c360ceac0286159f94d9d1a9496fc9858c8d9bec
19762 Author: Dave Liu <daveliu@freescale.com>
19763 Date: Sat Mar 14 12:48:30 2009 +0800
19764
19765 fsl-ddr: add the DDR3 SPD infrastructure
19766
19767 - support mirrored DIMMs, not support register DIMMs
19768 - test passed on P2020DS board with MT9JSF12872AY-1G1D1
19769 - test passed on MPC8569MDS board with MT8JSF12864HY-1G1D1
19770
19771 Signed-off-by: Dave Liu <daveliu@freescale.com>
19772 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
19773
19774 commit 6a8197836702991468cead5ead073f589e2623ad
19775 Author: Dave Liu <daveliu@freescale.com>
19776 Date: Sat Mar 14 12:48:19 2009 +0800
19777
19778 fsl-ddr: Fix two bugs in the ddr infrastructure
19779
19780 1. wr_lat
19781 UM said the total write latency for DDR2 is equal to
19782 WR_LAT + ADD_LAT, the write latency is CL + ADD_LAT - 1.
19783 so, the WR_LAT = CL - 1;
19784 2. rd_to_pre
19785 we missed to add the ADD_LAT for DDR2 case.
19786
19787 Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
19788 Signed-off-by: Dave Liu <daveliu@freescale.com>
19789
19790 commit 540dcf1cb86961e11aa92c47671f27762c581d8c
19791 Author: Kumar Gala <galak@kernel.crashing.org>
19792 Date: Thu Mar 26 01:34:39 2009 -0500
19793
19794 83xx: Use common LSDMR defines from asm/fsl_lbc.h
19795
19796 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19797 Acked-by: Kim Phillips <kim.phillips@freescale.com>
19798
19799 commit b0fe93eda69721aef1fdef576164b668fad83bbd
19800 Author: Kumar Gala <galak@kernel.crashing.org>
19801 Date: Thu Mar 26 01:34:38 2009 -0500
19802
19803 85xx: Use common LSDMR defines from asm/fsl_lbc.h
19804
19805 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19806
19807 commit 0088c298f0eeb90ec001f744e9959dea83dd563a
19808 Author: Kumar Gala <galak@kernel.crashing.org>
19809 Date: Thu Mar 26 01:34:37 2009 -0500
19810
19811 Add LSDMR (SDRAM Mode Register) definition on localbus
19812
19813 The masks for various bit defines of LSDMR are common and thus we can
19814 define them in one place rather than replicating them in each config.h
19815
19816 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19817
19818 commit 89c00fb15859213788f0ad089934c376fb356099
19819 Author: Ladislav Michl <ladis@linux-mips.org>
19820 Date: Mon Mar 30 18:58:41 2009 +0200
19821
19822 OMAP: use {read,write}l to access timer registers
19823
19824 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19825
19826 commit 81472d893fa565c9d300928a40e504a689bde131
19827 Author: Ladislav Michl <ladis@linux-mips.org>
19828 Date: Mon Mar 30 18:58:41 2009 +0200
19829
19830 OMAP: rename timer divisor
19831
19832 Divisor field is called PTV not PVT.
19833
19834 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19835 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19836
19837 commit fe672d60b2a8c9e803596ba4533fa1776015551d
19838 Author: Ladislav Michl <ladis@linux-mips.org>
19839 Date: Mon Mar 30 18:58:40 2009 +0200
19840
19841 OMAP: reindent timer code
19842
19843 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
19844
19845 commit b3f66b0ba09949e0796ce7fad6367f75f15ed890
19846 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19847 Date: Mon Mar 30 18:58:40 2009 +0200
19848
19849 s3c2410: move nand driver to drivers/mtd/nand
19850
19851 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19852
19853 commit d3b635774194404bcd424f6b376419bce22076ad
19854 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19855 Date: Mon Mar 30 18:58:40 2009 +0200
19856
19857 s3c24x0: move i2c driver to drivers/i2c
19858
19859 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19860
19861 commit 300f99f4539dd5caf7e19af5e4ea5eb259445913
19862 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19863 Date: Mon Mar 30 18:58:39 2009 +0200
19864
19865 s3c24x0: move serial driver to drivers/serial
19866
19867 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19868
19869 commit 942ba9969b9efa25f816c238861ecb339c54ed73
19870 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19871 Date: Mon Mar 30 18:58:39 2009 +0200
19872
19873 davinci: move i2c driver to drivers/i2c
19874
19875 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19876
19877 commit ee4f3e2765a1c65c9861c5d2cf2e6feb84b90bd8
19878 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19879 Date: Mon Mar 30 18:58:39 2009 +0200
19880
19881 davinci: move nand driver to drivers/mtd/nand
19882
19883 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19884
19885 commit d3e55d0774a180c1837bd7ddec464015e883bd86
19886 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19887 Date: Mon Mar 30 18:58:38 2009 +0200
19888
19889 imx: move serial driver to drivers/serial
19890
19891 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19892
19893 commit 2344bb8de2354101a8264c2123303c9d8d2aed3c
19894 Author: Detlev Zundel <dzu@denx.de>
19895 Date: Mon Mar 30 00:31:36 2009 +0200
19896
19897 inka4x0: Use proper accessor macros for memory mapped registers.
19898
19899 Signed-off-by: Detlev Zundel <dzu@denx.de>
19900
19901 commit e979e85fd39b06436922bb4d6bb5fafcbc775182
19902 Author: Detlev Zundel <dzu@denx.de>
19903 Date: Mon Mar 30 00:31:35 2009 +0200
19904
19905 inka4x0: Add hardware diagnosis and RTC in configuration.
19906
19907 This patch adds the board specific communication routines needed by
19908 the external 4543 RTC.
19909
19910 Signed-off-by: Detlev Zundel <dzu@denx.de>
19911 Signed-off-by: Andreas Pfefferle <ap@denx.de>
19912
19913 commit 7b5611cdd12ca0cc33f994f0d4a4454788fc3124
19914 Author: Detlev Zundel <dzu@denx.de>
19915 Date: Mon Mar 30 00:31:34 2009 +0200
19916
19917 inka4x0: Add hardware diagnosis functions for inka4x0
19918
19919 This patch adds advanced diagnosis functions for the inka4x0 board.
19920
19921 Signed-off-by: Andreas Pfefferle <ap@denx.de>
19922 Signed-off-by: Detlev Zundel <dzu@denx.de>
19923
19924 commit 04e11cf383ff6231535fd981023bb1306b2133d4
19925 Author: Detlev Zundel <dzu@denx.de>
19926 Date: Mon Mar 30 00:31:33 2009 +0200
19927
19928 rtc: add support for 4543 RTC (manufactured by e.g. EPSON)
19929
19930 Signed-off-by: Detlev Zundel <dzu@denx.de>
19931 Signed-off-by: Andreas Pfefferle <ap@denx.de>
19932
19933 commit 572e6179adb5447ff42ec2aa5cf3a26decf97583
19934 Author: Detlev Zundel <dzu@denx.de>
19935 Date: Mon Mar 30 00:31:32 2009 +0200
19936
19937 drivers/twserial: Add protocol driver for "three wire serial" interface.
19938
19939 This pretty unintelligent interface is used on some RTC chips.
19940
19941 Signed-off-by: Detlev Zundel <dzu@denx.de>
19942
19943 commit a6ef3ddeafbe8007af3662cc4509b897c53ab395
19944 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19945 Date: Sun Mar 29 23:01:42 2009 +0200
19946
19947 arm720t/clps7111: move serial driver to drivers/serial
19948
19949 add CONFIG_CLPS7111_SERIAL to activate the driver
19950
19951 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19952
19953 commit 6790c55704531eb98f76b51d50e0f73d19fa2988
19954 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19955 Date: Sun Mar 29 23:01:42 2009 +0200
19956
19957 lpc2292: move serial driver to drivers/serial
19958
19959 add CONFIG_LPC2292_SERIAL to activate the driver
19960
19961 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19962
19963 commit 176a600d0ecdaccbac483d2ba992d0119f853119
19964 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19965 Date: Sun Mar 29 23:01:42 2009 +0200
19966
19967 ks8695: move serial driver to drivers/serial
19968
19969 add CONFIG_KS8695_SERIAL to activate the driver
19970
19971 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19972
19973 commit 6d27bca15d445fcf07d6e7e30ced95c945c875ea
19974 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19975 Date: Sun Mar 29 23:01:42 2009 +0200
19976
19977 s3c64xx: move usb driver to drivers/usb
19978
19979 add CONFIG_USB_S3C64XX to activate the driver
19980
19981 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19982
19983 commit ecfa8dda2f55e1fbe12dee0b5cc16e7d484674c9
19984 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19985 Date: Sun Mar 29 23:01:41 2009 +0200
19986
19987 imx31: move serial driver to drivers/serial
19988
19989 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19990
19991 commit 9ea91c9fefb3920d735533a7798c1a44a3ed3ffc
19992 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19993 Date: Sun Mar 29 23:01:41 2009 +0200
19994
19995 netarm: move serial driver to drivers/serial
19996
19997 add CONFIG_NETARM_SERIAL to activate the driver
19998
19999 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20000
20001 commit 412ab705888742add435dd6ffc2e8bda14962235
20002 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20003 Date: Sun Mar 29 23:01:41 2009 +0200
20004
20005 sa1100: move serial driver to drivers/serial
20006
20007 add CONFIG_SA1100_SERIAL to activate the driver
20008
20009 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20010
20011 commit b2368754a9202225fd072e159fb78da7d2cdb623
20012 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20013 Date: Sun Mar 29 23:01:41 2009 +0200
20014
20015 s3c44b0: extract cache from cpu.c
20016
20017 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20018
20019 commit 40fd626223eae5363719bcb9a6896f08ceeee90a
20020 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20021 Date: Sun Mar 29 23:01:41 2009 +0200
20022
20023 s3c44b0: move serial driver to drivers/serial
20024
20025 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20026
20027 commit 5fe1377cc46199fe71c47be4b1aa81440ae96f9f
20028 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20029 Date: Sun Mar 29 23:01:40 2009 +0200
20030
20031 s3c44b0: move rtc driver to drivers/rtc
20032
20033 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20034
20035 commit 50f601cca8985615f9e3de4c34887448ade8a64b
20036 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20037 Date: Sun Mar 29 23:01:40 2009 +0200
20038
20039 s3c44b0: move i2c driver to drivers/i2c
20040
20041 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20042
20043 commit 281dfb0c0c531194f99e60d6285cca4e2a9fb1b6
20044 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20045 Date: Sun Mar 29 23:01:36 2009 +0200
20046
20047 s3c4510b: move specific code to soc directory
20048
20049 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20050
20051 commit 04531f3c11c693dc54924f82c41979d960309c9d
20052 Author: Ladislav Michl <ladis@linux-mips.org>
20053 Date: Wed Mar 25 23:43:58 2009 +0100
20054
20055 NetStar: add RTC support
20056
20057 Add RTC support.
20058
20059 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
20060
20061 commit 71f7bd305d9768bcb7ddbe4b5823cbf3b3597b11
20062 Author: Ladislav Michl <ladis@linux-mips.org>
20063 Date: Wed Mar 25 23:43:50 2009 +0100
20064
20065 NetStar: use generic flash driver
20066
20067 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
20068
20069 commit 3f464b0fc009d41d2734c08e472eb6d445f73a5c
20070 Author: Ladislav Michl <ladis@linux-mips.org>
20071 Date: Mon Mar 16 23:31:20 2009 +0100
20072
20073 NetStar: update crcit utility
20074
20075 Make crc32 function to match its prototype. Use more meaningful identifiers.
20076
20077 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
20078
20079 commit 488f5d8790c451fc527fe5d2ef218f2a5e40ea17
20080 Author: Ladislav Michl <ladis@linux-mips.org>
20081 Date: Mon Mar 23 17:46:27 2009 +0100
20082
20083 Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZ
20084
20085 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
20086
20087 commit 88685b5f62274167ad2ba8a58e108d89ff71955b
20088 Author: Wolfgang Denk <wd@denx.de>
20089 Date: Sun Mar 29 00:58:16 2009 +0100
20090
20091 VCMA9: fix compile errors
20092
20093 Fix these:
20094 cmd_vcma9.c:82: warning: implicit declaration of function 'eth_getenv_enetaddr'
20095 cmd_vcma9.c:89: error: 'enetaddr' undeclared (first use in this function)
20096
20097 Signed-off-by: Wolfgang Denk <wd@denx.de>
20098
20099 commit 26e42cbd786241fec370a0b92ad591f4e9cc423b
20100 Author: Wolfgang Denk <wd@denx.de>
20101 Date: Sun Mar 29 00:54:21 2009 +0100
20102
20103 ARM: fix warning: 'print_eth' defined but not used
20104
20105 This warning got issued for all ARM systems that don't have
20106 CONFIG_CMD_NET enabled.
20107
20108 Signed-off-by: Wolfgang Denk <wd@denx.de>
20109
20110 commit fd88d91a639ce41b825c8d50dc2182050e98fe53
20111 Author: Ladislav Michl <ladis@linux-mips.org>
20112 Date: Mon Mar 23 18:16:34 2009 +0100
20113
20114 cs8900 compile fix
20115
20116 cs8900.c: In function 'eth_init':
20117 cs8900.c:164: warning: passing argument 2 of 'eth_getenv_enetaddr' from incompatible pointer type
20118 cs8900.c:165: error: invalid operands to binary <<
20119 cs8900.c:166: error: invalid operands to binary <<
20120 cs8900.c:167: error: invalid operands to binary <<
20121
20122 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
20123 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20124
20125 commit d2567be915036720693f3ddd00c39b5b4d86fb8d
20126 Author: Wolfgang Denk <wd@denx.de>
20127 Date: Sat Mar 28 20:16:16 2009 +0100
20128
20129 Fix implicit declaration of function 'eth_[gs]etenv_enetaddr'
20130
20131 ...and some other compile warnings.
20132
20133 Signed-off-by: Wolfgang Denk <wd@denx.de>
20134
20135 commit 97b05d7d524a6b4f195f07b8f90e98561a85596c
20136 Author: Wolfgang Denk <wd@denx.de>
20137 Date: Sat Mar 28 16:17:29 2009 +0100
20138
20139 mpc8xx/ether.c: fix warning: unused variable 'bd'
20140
20141 Also minor coding style cleanup.
20142
20143 Signed-off-by: Wolfgang Denk <wd@denx.de>
20144
20145 commit 2dce551e10728f9e5655279f761f1d3cc0a8fe90
20146 Author: Detlev Zundel <dzu@denx.de>
20147 Date: Wed Mar 25 17:27:52 2009 +0100
20148
20149 command.c: Expose the core of do_help as _do_help to the rest of u-boot.
20150
20151 Other commands implementing subcommands can reuse this code nicely.
20152
20153 Signed-off-by: Detlev Zundel <dzu@denx.de>
20154 Signed-off-by: Andreas Pfefferle <ap@denx.de>
20155
20156 commit 4e325fbfa4dea04eceb6392e00807c40d214dc6f
20157 Author: Detlev Zundel <dzu@denx.de>
20158 Date: Tue Mar 24 18:02:33 2009 +0100
20159
20160 mpc5xxx: Add structure definition for several more register blocks.
20161
20162 Signed-off-by: Detlev Zundel <dzu@denx.de>
20163
20164 commit 739b0e594677a0676577bc95db4495a5563fc7f8
20165 Author: Detlev Zundel <dzu@denx.de>
20166 Date: Fri Mar 27 15:03:55 2009 +0100
20167
20168 MAINTAINERS: Add entry for 'inka4x0' board.
20169
20170 Signed-off-by: Detlev Zundel <dzu@denx.de>
20171
20172 commit e55ecec45340755ef47cbbb13fb35ceed60eb115
20173 Author: Detlev Zundel <dzu@denx.de>
20174 Date: Fri Mar 27 15:03:54 2009 +0100
20175
20176 MAINTAINERS: Keep list sorted.
20177
20178 Signed-off-by: Detlev Zundel <dzu@denx.de>
20179
20180 commit 0baeca4b09b703728f8e66b52418039fd8f8ce35
20181 Author: Mike Frysinger <vapier@gentoo.org>
20182 Date: Thu Mar 26 11:17:41 2009 -0400
20183
20184 karef/metrobox/xpedite1k: fix eth_setenv_enetaddr typos
20185
20186 The function is called "eth_setenv_enetaddr", not "eth_putenv_enetaddr".
20187
20188 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20189 CC: Ben Warren <biggerbadderben@gmail.com>
20190
20191 commit 76756e41cde0a617e781a604cc47dfaef63697cd
20192 Author: Heiko Schocher <hs@denx.de>
20193 Date: Thu Mar 26 07:33:59 2009 +0100
20194
20195 ppc: cleanup compiler errors/warnings
20196
20197 Current u-boot top of tree builds with warnings/errors for
20198 the following boards:
20199
20200 ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823
20201 RPXClassic debris PN62
20202
20203 following patch solves this.
20204
20205 Signed-off-by: Heiko Schocher <hs@denx.de>
20206 Acked-by: Mike Frysinger <vapier@gentoo.org>
20207
20208 commit 3edf68c47fdd52f19c1e840771c19ba90cf5ced1
20209 Author: Stefan Roese <sr@denx.de>
20210 Date: Thu Mar 26 16:14:13 2009 +0100
20211
20212 ppc4xx: Sequoia: Fix TLB reassignment in NAND booting code
20213
20214 This patch fixes a bug in the Sequoia TLB init code to reconfigure
20215 the correct TLB (boot space) after running from RAM. This bug was
20216 introduced with patch 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
20217 [ppc4xx: Make Sequoia boot vxWorks] which changed the order of the
20218 TLB in the Sequoia init.S file.
20219
20220 Signed-off-by: Stefan Roese <sr@denx.de>
20221
20222 commit e2b66fe453a3679f807b37fc5923d89214302764
20223 Author: Wolfgang Denk <wd@denx.de>
20224 Date: Thu Mar 26 10:00:57 2009 +0100
20225
20226 ads5121: enable instruction cache
20227
20228 Enabling the instruction cache significantly accelerates U-Boot
20229 operations like CRC checking, image uncompression, etc.
20230
20231 Kudos to Andrea Scian for pointing out.
20232
20233 Signed-off-by: Wolfgang Denk <wd@denx.de>
20234
20235 commit 33e88c557b29c84c52039ba05993fa70fe62afe3
20236 Author: Jon Smirl <jonsmirl@gmail.com>
20237 Date: Sun Mar 22 22:55:45 2009 -0400
20238
20239 mpc5200: suppress printf until console initialized
20240
20241 On boards which have the environment in eeprom, i2c_init() is called
20242 before the console and RAM are initialized.
20243 Suppress printfs until the console is initialized.
20244
20245 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
20246 Acked-by: Heiko Schocher <hs@denx.de>
20247
20248 commit 0c6926736effbb9a19047949b7e9b3e8feab7c46
20249 Author: Guennadi Liakhovetski <lg@denx.de>
20250 Date: Wed Mar 25 11:36:50 2009 +0100
20251
20252 ARM: Add the imx31_phycore_eet board to MAKEALL
20253
20254 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
20255
20256 commit 917cfc70c18b74fa8a80189bdce8395199fa8360
20257 Author: Nishanth Menon <nm@ti.com>
20258 Date: Wed Mar 25 22:13:56 2009 +0100
20259
20260 OMAP3:Beagle: Enable mtdparts
20261
20262 http://www.denx.de/wiki/DULG/UBootCmdGroupFlash#UBootCmdFlMtdparts
20263 provides a flexible way to create and maintain u-boot mtd
20264 partitions. This allows commands such as "nand erase fs"
20265 to work and the user no longer needs to decode the absolute
20266 nand offsets. This patch enables this function for beagleboard
20267
20268 Signed-off-by: Nishanth Menon <nm@ti.com>
20269 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20270
20271 commit 4de1a5daab079ddc8ce1274144700203d692105c
20272 Author: Mike Frysinger <vapier@gentoo.org>
20273 Date: Sun Feb 22 16:26:35 2009 -0500
20274
20275 Blackfin: bf537-stamp: split post code out into dedicated post.c
20276
20277 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20278
20279 commit 5e8f245743ed14c89e495ba2c027703db9813160
20280 Author: Mike Frysinger <vapier@gentoo.org>
20281 Date: Sat Oct 11 22:51:56 2008 -0400
20282
20283 Blackfin: add support for S25FL128 parts
20284
20285 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20286
20287 commit bf1e028bf3eab1d702fa0627cade4460688f3913
20288 Author: Mike Frysinger <vapier@gentoo.org>
20289 Date: Sat Oct 11 22:51:23 2008 -0400
20290
20291 Blackfin: overhaul SPI flash handling to speed things up
20292
20293 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20294
20295 commit efcc08cededa2168b96f12a22a5872340880d334
20296 Author: Mike Frysinger <vapier@gentoo.org>
20297 Date: Sat Oct 11 22:51:05 2008 -0400
20298
20299 Blackfin: add support for SST SPI flashes
20300
20301 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20302
20303 commit 5b8cfbe63f7242ebb1008f30bbbc85a9d54b38cf
20304 Author: Mike Frysinger <vapier@gentoo.org>
20305 Date: Sat Oct 11 22:50:10 2008 -0400
20306
20307 Blackfin: add hack for crappy m25p80
20308
20309 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20310
20311 commit 6f5fd56f0832ea5c254e2e4be84ea21fc8ecd5c5
20312 Author: Mike Frysinger <vapier@gentoo.org>
20313 Date: Wed Jan 21 20:47:12 2009 -0500
20314
20315 Blackfin: bf537-stamp: increase monitor size
20316
20317 The new jffs2 code pushed the code size just over the limit, so increase
20318 the limit a bit more.
20319
20320 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20321
20322 commit f82caaccc87e1f76448ff42a6b930e59797e4f65
20323 Author: Mike Frysinger <vapier@gentoo.org>
20324 Date: Mon Dec 8 16:16:11 2008 -0500
20325
20326 Blackfin: bf537-stamp: bump default SCLK up to 125MHz
20327
20328 Since all of the bf537-stamp and bf537-ezkit boards out there can handle it,
20329 increase the speed of SCLK to 125MHz rather than 100MHz.
20330
20331 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20332
20333 commit 751e54c3b77311b720b794813cce20546f288ada
20334 Author: Mike Frysinger <vapier@gentoo.org>
20335 Date: Sat Oct 11 22:44:14 2008 -0400
20336
20337 Blackfin: bf537-stamp: rewrite MAC-in-flash handling
20338
20339 Use the common net eth functions to setup the env/global data with the MAC
20340 address, and properly handle the case where CONFIG_SYS_NO_FLASH is defined.
20341
20342 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20343
20344 commit 88f9faffb383bbc6f23b8cc8519c5ffecfa2c8ad
20345 Author: Mike Frysinger <vapier@gentoo.org>
20346 Date: Tue Dec 9 13:47:39 2008 -0500
20347
20348 Blackfin: add clkin_hz= to default kernel command line for ADI boards
20349
20350 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20351
20352 commit 9f64ba2412d3cede9eb1f290987e5c3a28df3232
20353 Author: Mike Frysinger <vapier@gentoo.org>
20354 Date: Sun Oct 12 23:49:13 2008 -0400
20355
20356 Blackfin: bf533-stamp: bump up default clocks
20357
20358 Since the hardware can handle it, bump the default clocks from 80mhz SCLK
20359 and 398mhz CCLK to 100mhz SCLK and 498mhz CCLK.
20360
20361 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20362
20363 commit 23fd959eeaaa0434ac7f9c1191de66c76d97d699
20364 Author: Mike Frysinger <vapier@gentoo.org>
20365 Date: Sat Oct 11 22:40:22 2008 -0400
20366
20367 Blackfin: bf533-stamp: rewrite startup LED notifications
20368
20369 Again, don't clobber pins that we aren't actually using, and use the common
20370 LED framework rather than our own hob-job-but-not-really-working.
20371
20372 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20373
20374 commit cf6f469e2730fc8ab3523808b828be000d6eee77
20375 Author: Mike Frysinger <vapier@gentoo.org>
20376 Date: Sun Jun 1 09:09:48 2008 -0400
20377
20378 Blackfin: unify common ADI board settings
20379
20380 Rather than duplicate the same ADI settings in every ADI board, create a
20381 common ADI config header and have all ADI boards start using that. This
20382 will also make merging the ~10 boards I have to forward port a lot easier.
20383
20384 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20385
20386 commit 196c74311f394c6eb08bd9ab07a35671299b9851
20387 Author: Kyungmin Park <kmpark@infradead.org>
20388 Date: Tue Mar 3 09:05:53 2009 +0900
20389
20390 Reduce OneNAND IPL common code
20391
20392 OneNAND IPL has common codes for RAM init, load data, and jump to 2nd
20393 bootloader, but it's common code used about 300~400 bytes. So board
20394 specific codes, such as lowlevel_init, can't has enough code. It make
20395 a difficult to implement OneNAND IPL.
20396
20397 his patch make this common code as small as possible. and give
20398 lowlevel_init can have more codes.
20399
20400 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20401 Signed-off-by: Scott Wood <scottwood@freescale.com>
20402
20403 commit 16f2f5a351004129e79e79816697a367fd9e5446
20404 Author: Wolfgang Grandegger <wg@grandegger.com>
20405 Date: Wed Feb 11 18:38:24 2009 +0100
20406
20407 Add multi-chip NAND support for the TQM8548 modules
20408
20409 This patches configures the NAND UPM-FSL driver with multi-chip
20410 support for the Micron MT29F8G08FAB NAND flash memory on the
20411 TQM8548 modules.
20412
20413 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20414 Signed-off-by: Scott Wood <scottwood@freescale.com>
20415
20416 commit 33846df28fa1f4cf96a96c18142d48d813caa892
20417 Author: Wolfgang Grandegger <wg@grandegger.com>
20418 Date: Wed Feb 11 18:38:23 2009 +0100
20419
20420 Add wait flags to support board/chip specific delays
20421
20422 The NAND flash on the TQM8548_BE modules requires a short delay after
20423 running the UPM pattern like the MPC8360ERDK board does. The TQM8548_BE
20424 requires a further short delay after writing out a buffer. Normally the
20425 R/B pin should be checked, but it's not connected on the TQM8548_BE.
20426 The corresponding Linux FSL UPM driver uses similar delay points at the
20427 same locations. To manage these extra delays in a more general way, I
20428 introduced the "wait_flags" field allowing the board-specific driver to
20429 specify various types of extra delay.
20430
20431 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20432 Signed-off-by: Scott Wood <scottwood@freescale.com>
20433
20434 commit 06e9f7df054d26d7f49c56bf9a6844b193ad6313
20435 Author: Wolfgang Grandegger <wg@grandegger.com>
20436 Date: Wed Feb 11 18:38:22 2009 +0100
20437
20438 Add support for TQM-specific chip select logic to FSL-UPM
20439
20440 For the NAND chips on the TQM8548 modules, a special chip-select logic is
20441 used. It uses dedicated address lines to be set via UPM machine address
20442 register (mar). This patch adds such support to the FSL-UPM driver.
20443
20444 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20445 Signed-off-by: Scott Wood <scottwood@freescale.com>
20446
20447 commit e93c1c169d49eda7babad9c781f541e2e34f0ff0
20448 Author: Wolfgang Grandegger <wg@grandegger.com>
20449 Date: Wed Feb 11 18:38:21 2009 +0100
20450
20451 Add multi chip support to the FSL-UPM driver
20452
20453 This patch adds support for multi-chip NAND devices to the FSL-UPM
20454 driver. The "dev_ready" callback of the "struct fsl_upm_nand" is now
20455 called with the argument "chip_nr" to allow testing the proper chip
20456 select line. The NAND support of the MPC8360ERDK is updated as well.
20457 No other boards are currently using the FSL UPM driver.
20458
20459 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20460 Signed-off-by: Scott Wood <scottwood@freescale.com>
20461
20462 commit 672ed2aee91b4856f6671fc72cd34168d8f1b624
20463 Author: Wolfgang Grandegger <wg@grandegger.com>
20464 Date: Wed Feb 11 18:38:20 2009 +0100
20465
20466 Enable multi chip support in the NAND layer
20467
20468 This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer.
20469 Multi-chips devices are displayed as shown:
20470
20471 Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB
20472
20473 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20474 Signed-off-by: Scott Wood <scottwood@freescale.com>
20475
20476 commit 74398b23f9c2ffdc137fd92910a46e3333fb93f9
20477 Author: Mike Frysinger <vapier@gentoo.org>
20478 Date: Sat Oct 11 21:58:33 2008 -0400
20479
20480 Blackfin: put memory into self-refresh before/after programming clocks
20481
20482 When initializing the core clocks, stick external memory into self-refresh.
20483 This gains us a few cool things:
20484 - support suspend-to-RAM with Linux
20485 - reprogram clocks automatically when doing "go" on u-boot.bin in RAM
20486 - make sure settings are stable before flashing new version
20487 - finally fully unify initialize startup code path between LDR/non-LDR
20488
20489 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20490
20491 commit d347d572ab1f2d47bf257c9f7ca2e602038a136b
20492 Author: Mike Frysinger <vapier@gentoo.org>
20493 Date: Sat Oct 11 21:56:08 2008 -0400
20494
20495 Blackfin: do not program voltage regulator on parts that do not have one
20496
20497 Some newer Blackfins (like the BF51x) do not have an on-chip voltage
20498 regulator, so do not attempt to program the memory as if it does.
20499
20500 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20501
20502 commit 0d4f24b70f7a979f58174f3eb271874950b551b6
20503 Author: Mike Frysinger <vapier@gentoo.org>
20504 Date: Sun Jun 1 01:28:24 2008 -0400
20505
20506 Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
20507
20508 If the board config does not specify an explicit EBIU_SDBCTL value, set it
20509 up with sane values based on other configuration options.
20510
20511 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20512
20513 commit 3986e981f565c08f10c7e526af8cb518d741c349
20514 Author: Mike Frysinger <vapier@gentoo.org>
20515 Date: Sat Dec 6 18:06:58 2008 -0500
20516
20517 Blackfin: handle reboot anomaly 432
20518
20519 Workaround anomaly 432:
20520 The bfrom_SysControl() firmware function does not clear the SIC_IWR1
20521 register before executing the PLL programming sequence. Therefore, any
20522 interrupt enabled in the SIC_IWR1 register prior to the call to
20523 bfrom_SysControl() can prematurely terminate the idle sequence required
20524 for the PLL to relock properly. SIC_IWR0 is properly handled.
20525
20526 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20527
20528 commit 7e1d212b6da492c6ea32c62af92e185284f41291
20529 Author: Mike Frysinger <vapier@gentoo.org>
20530 Date: Sat Oct 18 04:04:49 2008 -0400
20531
20532 Blackfin: kill off LDR jump block
20533
20534 The Boot ROM uses EVT1 as the entry point so set that rather than having
20535 to use a tiny jump block in the default EVT1 location.
20536
20537 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20538
20539 commit a75fa148d60b1975403441e45565621bba50d2d9
20540 Author: Mike Frysinger <vapier@gentoo.org>
20541 Date: Tue Jan 6 10:00:48 2009 -0500
20542
20543 Blackfin: simplify symbol_lookup() a bit
20544
20545 No need to skip a byte as the symbol table handles this.
20546
20547 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20548
20549 commit 59f0978a7e78d20277ddbde7caf0ea877f3cfd98
20550 Author: Mike Frysinger <vapier@gentoo.org>
20551 Date: Sat Feb 7 05:43:21 2009 -0500
20552
20553 Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
20554
20555 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20556
20557 commit 58130f8920151d9e8942bbdf3388f2defb47e415
20558 Author: Mike Frysinger <vapier@gentoo.org>
20559 Date: Sat Feb 7 05:41:17 2009 -0500
20560
20561 Blackfin: drop SPORT_TX read helper macros
20562
20563 The SPORT_TX registers cannot be read (the hardware will trigger an error),
20564 so drop the read helper macros.
20565
20566 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20567
20568 commit 820b076c449688bcd4af6db5a33ae424d1a60d0e
20569 Author: Mike Frysinger <vapier@gentoo.org>
20570 Date: Sat Feb 7 05:25:35 2009 -0500
20571
20572 Blackfin: unify duplicate CPU port definitions
20573
20574 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20575
20576 commit 744fd240d181b0b05b1436e1b655c9a62526c752
20577 Author: Mike Frysinger <vapier@gentoo.org>
20578 Date: Fri Feb 6 00:59:50 2009 -0500
20579
20580 Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
20581
20582 With the new CONFIG_XXX system and CONFIG_CMD_XXX handling, these defines
20583 are no longer used/needed.
20584
20585 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20586
20587 commit 45c48953e8a4038bd49c46813fcff5a207867ae4
20588 Author: Mike Frysinger <vapier@gentoo.org>
20589 Date: Mon Oct 6 04:01:26 2008 -0400
20590
20591 Blackfin: print out Flash: before checking it
20592
20593 If there is some problem in the flash init/checking code, it's nicer to see
20594 the message "Flash:" before crashing. This way the source of the problem
20595 is a bit more straightforward.
20596
20597 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20598
20599 commit 1c7a79a04eb916f685f7275520b5eea6968a1559
20600 Author: Mike Frysinger <vapier@gentoo.org>
20601 Date: Thu Aug 7 15:33:09 2008 -0400
20602
20603 Blackfin: safely flush data caches when in writeback mode
20604
20605 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20606
20607 commit c06f2b13022703611bc3e512bd34f9014a46f448
20608 Author: Mike Frysinger <vapier@gentoo.org>
20609 Date: Thu Aug 7 13:21:48 2008 -0400
20610
20611 Blackfin: update lockbox api according to latest documentation
20612
20613 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20614
20615 commit 2decc2a8d17a5397cb5956e46c8466c736e305a2
20616 Author: Mike Frysinger <vapier@gentoo.org>
20617 Date: Sat Oct 11 21:49:06 2008 -0400
20618
20619 Blackfin: mark bfin_reset static
20620
20621 The function is only used locally, so mark it static.
20622
20623 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20624
20625 commit 974473caa732f63312687ef2bd2d22dad8e99b9a
20626 Author: Sonic Zhang <Sonic.Zhang@analog.com>
20627 Date: Fri Mar 20 19:28:20 2009 -0400
20628
20629 Blackfin: spi: there is no PORTJ_FER MMR on BF537
20630
20631 Since the PORTJ on the BF537 is peripheral-only (no GPIO functionality),
20632 then there is no PORTJ_FER register for us to worry about.
20633
20634 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
20635 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20636
20637 commit e82b762f293debc53c5afa90f37264f6b07520f9
20638 Author: Mike Frysinger <vapier@gentoo.org>
20639 Date: Tue Mar 17 13:58:23 2009 -0400
20640
20641 Blackfin: fix jtag console tstc
20642
20643 The jtag tstc operation was checking the hardware to see if data is
20644 available from it (which is fine for the jtag getc operation), but the
20645 higher layers need to know whether any data is available. Since we have
20646 to read up to 4 bytes at a time from the hardware, the higher layers need
20647 to know they can consume the cached bytes as well.
20648
20649 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20650
20651 commit bc683f58b1f1d8d20546fe019483967a51a49df1
20652 Author: Mike Frysinger <vapier@gentoo.org>
20653 Date: Sun Feb 22 16:23:41 2009 -0500
20654
20655 Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
20656
20657 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20658
20659 commit 8996d1608acb8f59fcb186dc7ed7d87f8fee1297
20660 Author: Mike Frysinger <vapier@gentoo.org>
20661 Date: Sun Feb 22 16:02:27 2009 -0500
20662
20663 Blackfin: unify net-related init code
20664
20665 Unify all of the net-related init code in the common Blackfin board init
20666 code to clean up the ifdef mess a bit.
20667
20668 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20669
20670 commit c6ea30e52ea82af4858d2b6f99e0fd2ea276d657
20671 Author: Mike Frysinger <vapier@gentoo.org>
20672 Date: Wed Feb 18 12:51:48 2009 -0500
20673
20674 Blackfin: fix SWRST/SYSCR register sizes
20675
20676 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20677
20678 commit a9d6777d39154978b9ef9c682b2627a3480b194c
20679 Author: Mike Frysinger <vapier@gentoo.org>
20680 Date: Wed Feb 18 12:51:31 2009 -0500
20681
20682 Blackfin: update anomaly lists
20683
20684 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20685
20686 commit 4d7c32dad2e787f890ebcd51bfb723a126913c90
20687 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20688 Date: Thu Mar 19 18:31:38 2009 +0100
20689
20690 avr32: fix cacheflush.h location introducted by d8f2aa3298610b
20691
20692 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20693 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20694
20695 commit 3a3baf3ee61e6b28af3b49ebabc9ab4f6015aa48
20696 Author: Eric Schumann <E.Schumann@phytec.de>
20697 Date: Sat Mar 21 09:59:34 2009 -0400
20698
20699 Make flash protection work, when the environment is in EEPROM
20700
20701 On the pcm030 the environment is located in the onboard EEPROM. But we want
20702 to handle flash sector protection in a safe manner. So we must read the
20703 unlock environment variable from EEPROM instead from flash.
20704
20705 This patch is required as long the evironment is saved into the EEPROM.
20706
20707 Stefan: Additional change as suggested by Wolfgang, use bigger char array
20708 (instead of 4).
20709
20710 Signed-off-by: Eric Schumann <E.Schumann@phytec.de>
20711 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
20712 Acked-by: Wolfgang Denk <wd@denx.de>
20713 Signed-off-by: Stefan Roese <sr@denx.de>
20714
20715 commit de3ce8c59f48f99779d7d7379a5432ded12ec06c
20716 Author: Jon Smirl <jonsmirl@gmail.com>
20717 Date: Sat Mar 21 11:17:56 2009 -0400
20718
20719 Add define for mpc5200 CDM_CLK_ENA
20720
20721 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
20722
20723 commit df486b1fa3f750b153eac7daa0b3bf1f594e5098
20724 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
20725 Date: Sun Mar 22 14:48:16 2009 +0100
20726
20727 at91: Support for the at91sam9g20 : Atmel 400Mhz ARM 926ej-s SOC.
20728
20729 AT91sam9g20 is an evolution of the at91sam9260 with a faster clock speed.
20730
20731 The AT91SAM9G20-EK board is an updated revision of the AT91SAM9260-EK board.
20732 It is essentially the same, with a few minor differences.
20733
20734 Here is the chip page on Atmel website:
20735 http://www.atmel.com/dyn/products/product_card.asp?part_id=4337
20736
20737 Signed-off-by: Justin Waters <justin.waters@timesys.com>
20738 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
20739 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20740
20741 commit 118d168035cc93f586da4812c89cb153eb9f4243
20742 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20743 Date: Sun Mar 22 14:28:14 2009 +0100
20744
20745 cmc_pu2: fix implicit declaration of function 'eth_setenv_enetaddr'
20746
20747 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20748
20749 commit 176c4a982c6531f96426afaa1126cf9a5e2d5e03
20750 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20751 Date: Sun Mar 22 14:28:13 2009 +0100
20752
20753 cmc_pu2: fix misc_init_r prototype
20754
20755 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20756
20757 commit 53158aea995221706b42c7bad9f717b31ae20414
20758 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20759 Date: Sun Jan 11 03:32:01 2009 +0100
20760
20761 at91sam9xeek: fix soc name
20762
20763 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20764
20765 commit 74c076d6c33d6d42ab065541a38383587879e7b7
20766 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20767 Date: Sun Mar 22 10:22:34 2009 +0100
20768
20769 at91sam9/at91cap: move nand drivers to drivers/mtd/nand
20770
20771 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20772
20773 commit 163966087d62680547f188a93c61d01c8155254e
20774 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20775 Date: Sat Mar 21 21:08:01 2009 +0100
20776
20777 atmel/at91/boards: compile dataflash partition only when dataflash is
20778
20779 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20780
20781 commit e2c0476f958f8e0b269a1118f4ba4a5cd475aa56
20782 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20783 Date: Sat Mar 21 21:08:00 2009 +0100
20784
20785 at91sam9/at91cap: move common macb initialisation to cpu
20786
20787 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20788
20789 commit f3f91f886bc8927fd692ac411b7423a87ffec532
20790 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20791 Date: Sat Mar 21 21:08:00 2009 +0100
20792
20793 at91sam9/at91cap: move common usb host initialisation to cpu
20794
20795 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20796
20797 commit a484b00b86e72ac6da6ee4fce13dbc6b256672fe
20798 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20799 Date: Sat Mar 21 21:08:00 2009 +0100
20800
20801 at91sam9/at91cap: move common led management to cpu
20802
20803 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20804
20805 commit 7ebafb7ec1a0285af8380623c009576f92583b98
20806 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20807 Date: Sat Mar 21 21:07:59 2009 +0100
20808
20809 at91sam9/at91cap: move common spi initialisation to cpu
20810
20811 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20812
20813 commit 1332a2a0694c8e10a5bade397cf83645b2c3fd7e
20814 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20815 Date: Sat Mar 21 21:07:59 2009 +0100
20816
20817 at91sam9/at91cap: move common serial initialisation to cpu
20818
20819 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20820
20821 commit e60beb13cf0135dc71c541021487b5ccc4d269cb
20822 Author: Wolfgang Denk <wd@denx.de>
20823 Date: Sat Mar 21 22:04:41 2009 +0100
20824
20825 Prepare 2009.03
20826
20827 Update CHANGELOG
20828
20829 Signed-off-by: Wolfgang Denk <wd@denx.de>
20830
20831 commit 9e78dae2b276c5bf9ab92cd85173f6cb92b1b7d5
20832 Author: Vivek Kutal <vivek.kutal@azingo.com>
20833 Date: Mon Feb 23 21:35:11 2009 +0530
20834
20835 Replaced endpoint numbers with appropriate macros in usbtty.c.
20836
20837 Signed-off-by: Vivek Kutal <vivek.kutal@azingo.com>
20838 Signed-off-by: Remy Bohmer <linux@bohmer.net>
20839
20840 commit faac4fd852e39cb1d7a740801b060e41aeacef1f
20841 Author: Michael Lawnick <ml.lawnick@gmx.de>
20842 Date: Thu Mar 19 10:06:41 2009 +0100
20843
20844 UBIFS: Missing offset relocation for compressor 'none'
20845
20846 On systems where U-Boot is linked to another address than it really lays
20847 (e.g. backup image), calls via function pointers must be fixed with a
20848 '+= gd->reloc_off'.
20849 This was not done for none_compr in ubifs_compressors_init() what leads
20850 to system crash on ubifsmount command.
20851
20852 Signed-off-by: Michael Lawnick <ml.lawnick@gmx.de>
20853 Acked-by: Stefan Roese <sr@denx.de>
20854
20855 commit ce6d0c8de031f345bde745f3b855082adf1c4e45
20856 Author: Stefan Roese <sr@denx.de>
20857 Date: Thu Mar 19 15:35:50 2009 +0100
20858
20859 UBIFS: Add UBIFS commands
20860
20861 This patchset adds these UBIFS related commands:
20862
20863 - ubifsmount
20864 Mount an UBIFS volume
20865
20866 - ubifsls
20867 List a directory of the mounted UBIFS volume
20868
20869 - ubifsload
20870 Load a file from the mounted UBIFS volume to memory
20871
20872 Signed-off-by: Stefan Roese <sr@denx.de>
20873
20874 commit 9eefe2a2b37a838558e3d213a9f5519503d0c180
20875 Author: Stefan Roese <sr@denx.de>
20876 Date: Thu Mar 19 15:35:05 2009 +0100
20877
20878 UBIFS: Implement read-only UBIFS support in U-Boot
20879
20880 The U-Boot UBIFS implementation is largely a direct copy from the current
20881 Linux version (2.6.29-rc6). As already done in the UBI version we have an
20882 "abstraction layer" to redefine or remove some OS calls (e.g. mutex_lock()
20883 ...). This makes it possible to use the original Linux code with very
20884 little changes. And by this we can better update to later Linux versions.
20885
20886 I removed some of the Linux features that are not used in the U-Boot
20887 version (e.g. garbage-collection, write support).
20888
20889 Signed-off-by: Stefan Roese <sr@denx.de>
20890 CC: Artem Bityutskiy <dedekind@infradead.org>
20891 CC: Adrian Hunter <ext-Adrian.Hunter@nokia.com>
20892
20893 commit b1b4e89a0f3b75854c39a62cae41bad56d210adf
20894 Author: Stefan Roese <sr@denx.de>
20895 Date: Thu Mar 19 15:34:56 2009 +0100
20896
20897 Add LZO decompressor support
20898
20899 This patch adds LZO decompression support to U-Boot. It is needed for
20900 the upcoming UBIFS support, since UBIFS uses LZO as default compressor/
20901 decompressor. Since we only support read-only in UBIFS, only the
20902 decompressor is needed.
20903
20904 All this is copied with minor changes from the current Linux kernel
20905 version (2.6.28-rc8).
20906
20907 This patch only implements this LZO decompressor support for PPC.
20908 Other platforms using UBIFS will have to add the required
20909 "include/asm/unaligned.h" as well. It should be fairly easy to copy this
20910 from the Linux source tree as I have done it for PPC in this patch.
20911
20912 Signed-off-by: Stefan Roese <sr@denx.de>
20913
20914 commit 68d7d65100e84df00bca971c114092731b441090
20915 Author: Stefan Roese <sr@denx.de>
20916 Date: Thu Mar 19 13:30:36 2009 +0100
20917
20918 Separate mtdparts command from jffs2
20919
20920 Currently the mtdparts commands are included in the jffs2 command support.
20921 This doesn't make sense anymore since other commands (e.g. UBI) use this
20922 infrastructure as well now. This patch separates the mtdparts commands from
20923 the jffs2 commands making it possible to only select mtdparts when no JFFS2
20924 support is needed.
20925
20926 Signed-off-by: Stefan Roese <sr@denx.de>
20927 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20928
20929 commit 02a301cd5087eaffdf456e0a5cec1100c4d9a398
20930 Author: Stefan Roese <sr@denx.de>
20931 Date: Wed Feb 25 12:11:15 2009 +0100
20932
20933 powerpc: Only use eth_getenv_enetaddr() if networking is enabled
20934
20935 Signed-off-by: Stefan Roese <sr@denx.de>
20936
20937 commit 5c4fa9b474af95d60f019ec6369cbe77b9dab4b5
20938 Author: Grzegorz Bernacki <gjb@semihalf.com>
20939 Date: Tue Mar 17 10:06:40 2009 +0100
20940
20941 Add support for the digsy MTC board.
20942
20943 This is the InterControl custom device based on the MPC5200B chip.
20944
20945 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
20946
20947 commit ff7dc067369e30066744f096995aef7d97574d15
20948 Author: Stefan Roese <sr@denx.de>
20949 Date: Mon Feb 23 16:52:36 2009 +0100
20950
20951 powerpc: Fix compilation warning in board.c
20952
20953 Fix this warning:
20954
20955 board.c: In function 'board_init_r':
20956 board.c:653: warning: unused variable 'i'
20957 board.c:651: warning: unused variable 'e'
20958
20959 Signed-off-by: Stefan Roese <sr@denx.de>
20960
20961 commit 9cd690160d3ce1a7fb4ceeee6c99cedb1ac1d49c
20962 Author: Stefan Roese <sr@denx.de>
20963 Date: Mon Feb 23 16:42:51 2009 +0100
20964
20965 ppc4xx: Don't write the MAC address into the internal SoC registers
20966
20967 Remove this code. It's not needed. The 4xx EMAC driver stores the MAC
20968 addresses into the SoC registers instead.
20969
20970 Signed-off-by: Stefan Roese <sr@denx.de>
20971
20972 commit bb57ad4be76d0e2e7f9ec56678235cc9872ff40f
20973 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20974 Date: Fri Feb 20 10:19:19 2009 +0100
20975
20976 ppc4xx: Use correct io accessors for esd 405/440 boards
20977
20978 This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
20979 macros. Also volatile pointer references are replaced by the
20980 new accessors.
20981
20982 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
20983 Signed-off-by: Stefan Roese <sr@denx.de>
20984
20985 commit 049216f045fd8e0f45bcef121c2bb1c7d3de6988
20986 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
20987 Date: Fri Feb 20 10:19:18 2009 +0100
20988
20989 ppc4xx: Use correct io accessors for esd 405 boards
20990
20991 This patch replaces in/out8/16/32 macros by in/out_8/_be16/_be32
20992 macros. Also volatile pointer references are replaced by the
20993 new accessors.
20994
20995 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
20996 Signed-off-by: Stefan Roese <sr@denx.de>
20997
20998 commit a59205d1519375d027f97a545ad642ab20fce6f8
20999 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21000 Date: Fri Feb 20 10:19:17 2009 +0100
21001
21002 ppc4xx: Cleanup linker scripts of esd 4xx boards
21003
21004 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
21005 Signed-off-by: Stefan Roese <sr@denx.de>
21006
21007 commit 2f103ee284e68934a648732db5e0b6ceb4a1ed8f
21008 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21009 Date: Fri Feb 20 10:19:16 2009 +0100
21010
21011 ppc4xx: Update TEXT_BASE for DASA_SIM boards
21012
21013 Fix building DASA_SIM boards by increasing U-Boot's size in flash.
21014
21015 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
21016 Signed-off-by: Stefan Roese <sr@denx.de>
21017
21018 commit 09db8f4de6805f1dde510c167f20e56a5405d29e
21019 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21020 Date: Fri Feb 20 10:19:15 2009 +0100
21021
21022 ppc4xx: DU405 maintenance fix
21023
21024 -strip unused features
21025 -fix resetting phy
21026
21027 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd.eu>
21028 Signed-off-by: Stefan Roese <sr@denx.de>
21029
21030 commit 75511b47ac2647be48218dbb93af05b21f404f67
21031 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21032 Date: Fri Feb 20 10:19:14 2009 +0100
21033
21034 ppc4xx: Abort autoboot only by space key on CPCI405 boards
21035
21036 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
21037 Signed-off-by: Stefan Roese <sr@denx.de>
21038
21039 commit e17ee157ca9ff0d4cc5841d06c4b70c1603df29c
21040 Author: Graeme Russ <graeme.russ@gmail.com>
21041 Date: Tue Feb 24 21:14:56 2009 +1100
21042
21043 Add basic relocation to i386 port
21044
21045 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
21046
21047 commit 8c63d47651f77d9fb887cad433370b866eb0a193
21048 Author: Graeme Russ <graeme.russ@gmail.com>
21049 Date: Tue Feb 24 21:14:45 2009 +1100
21050
21051 Implement SC520 timers
21052
21053 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
21054
21055 commit 6d7f610b09f813b1239eedcbfe921cfd439aea25
21056 Author: Graeme Russ <graeme.russ@gmail.com>
21057 Date: Tue Feb 24 21:14:32 2009 +1100
21058
21059 Factor out SC520 sub-features
21060
21061 Moved sub-features of the SC520 code which is currently selectively compiled
21062 using #ifdef out of sc520.c into individual files selectively compiled via
21063 the makefile
21064
21065 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
21066
21067 commit abf0cd3dff227cfb6e82ad13be62e28e6e89d5df
21068 Author: Graeme Russ <graeme.russ@gmail.com>
21069 Date: Tue Feb 24 21:13:40 2009 +1100
21070
21071 Rewrite i386 interrupt handling
21072
21073 Rewrite interrupt handling functionality for the i386 port. Separated
21074 functionality into separate CPU and Architecture components.
21075
21076 It appears as if the i386 interrupt handler functionality was intended
21077 to allow multiple handlers to be installed for a given interrupt.
21078 Unfortunately, this functionality was not fully implemented and also
21079 had the problem that irq_free_handler() does not allow the passing
21080 of the handler function pointer and therefore could never be used to
21081 free specific handlers that had been installed for a given IRQ.
21082
21083 There were also various issues with array bounds not being fully
21084 tested.
21085
21086 I had two objectives in mind for the new implementation:
21087
21088 1) Keep the implementation as similar as possible to existing
21089 implementations. To that end, I have used the leon2/3
21090 implementations as the reference
21091
21092 2) Seperate CPU and Architecture specific elements. All specific i386
21093 interrupt functionality is now in cpu/i386/ with the high level
21094 API and architecture specific code in lib_i386. Functionality
21095 specific to the PC/AT architecture (i.e. cascaded i8259 PICs) has
21096 been further split out into an individual file to allow for the
21097 implementation of the PIC architecture of the SC520 CPU (supports
21098 more IRQs)
21099
21100 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
21101
21102 commit ece444b42b71eb5bce34a24ec584573b3c8c4a98
21103 Author: Graeme Russ <graeme.russ@gmail.com>
21104 Date: Tue Feb 24 21:12:35 2009 +1100
21105
21106 Move ali512x.h
21107
21108 Moved ali512x.h from include/asm-i386/ic/ to /include
21109
21110 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
21111
21112 commit 6d83e3ac61dcdbcb7f04664309a9689fe01c5704
21113 Author: Graeme Russ <graeme.russ@gmail.com>
21114 Date: Tue Feb 24 21:12:20 2009 +1100
21115
21116 Rename SC520 Configuration Options
21117
21118 Options are now all uniformly CONFIG_SYS_SC520_<option>
21119
21120 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
21121
21122 commit f62fb99941c625605aa16a0097b396a5c16d2c88
21123 Author: Trent Piepho <xyzzy@speakeasy.org>
21124 Date: Wed Feb 18 15:22:05 2009 -0800
21125
21126 Fix all linker script to handle all rodata sections
21127
21128 A recent gcc added a new unaligned rodata section called '.rodata.str1.1',
21129 which needs to be added the the linker script. Instead of just adding this
21130 one section, we use a wildcard ".rodata*" to get all rodata linker section
21131 gcc has now and might add in the future.
21132
21133 However, '*(.rodata*)' by itself will result in sub-optimal section
21134 ordering. The sections will be sorted by object file, which causes extra
21135 padding between the unaligned rodata.str.1.1 of one object file and the
21136 aligned rodata of the next object file. This is easy to fix by using the
21137 SORT_BY_ALIGNMENT command.
21138
21139 This patch has not be tested one most of the boards modified. Some boards
21140 have a linker script that looks something like this:
21141
21142 *(.text)
21143 . = ALIGN(16);
21144 *(.rodata)
21145 *(.rodata.str1.4)
21146 *(.eh_frame)
21147
21148 I change this to:
21149
21150 *(.text)
21151 . = ALIGN(16);
21152 *(.eh_frame)
21153 *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
21154
21155 This means the start of rodata will no longer be 16 bytes aligned.
21156 However, the boundary between text and rodata/eh_frame is still aligned to
21157 16 bytes, which is what I think the real purpose of the ALIGN call is.
21158
21159 Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
21160
21161 commit 566b652c7cdb0e5e0529bb3d1eaffbd2bf45a032
21162 Author: Mike Frysinger <vapier@gentoo.org>
21163 Date: Wed Feb 11 18:26:08 2009 -0500
21164
21165 remove bi_enet*addr from global data for all arches
21166
21167 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21168 CC: Ben Warren <biggerbadderben@gmail.com>
21169 CC: Daniel Hellstrom <daniel@gaisler.com>
21170 CC: Michal Simek <monstr@seznam.cz>
21171 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21172 CC: Scott McNutt <smcnutt@psyent.com>
21173 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21174
21175 commit eb85aa594c1b57a1e3be9689b65171a137a36432
21176 Author: Mike Frysinger <vapier@gentoo.org>
21177 Date: Wed Feb 11 20:07:19 2009 -0500
21178
21179 ppc: mark global bi_enet*addr as legacy
21180
21181 The environment is the canonical storage location of the mac address, so
21182 we're killing off the global data location and moving everything to
21183 querying the env directly.
21184
21185 In the ppc case, these things are part of the legacy ABI, so keep them
21186 around but mark them as legacy so no new code will touch them.
21187
21188 Also stop calling load_sernum_ethaddr() since all boards now implement
21189 this as a stub.
21190
21191 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21192 CC: Ben Warren <biggerbadderben@gmail.com>
21193
21194 commit 9c150102bc1de375d36d97a1cc2dd0e9639b15df
21195 Author: Mike Frysinger <vapier@gentoo.org>
21196 Date: Wed Feb 11 20:09:52 2009 -0500
21197
21198 boards: get mac address from env and move load_sernum_ethaddr() to board init
21199
21200 The environment is the canonical storage location of the mac address, so
21201 we're killing off the global data location and moving everything to
21202 querying the env directly.
21203
21204 Rather than have common ppc code call a board-specific function like
21205 load_sernum_ethaddr(), have each board call it in its own board-specific
21206 misc_init_r() function.
21207
21208 The boards that get converted here are:
21209 - kup4k/kup4x
21210 - pcs440ep
21211 - tqm8xx
21212
21213 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21214 CC: Ben Warren <biggerbadderben@gmail.com>
21215 CC: Stefan Roese <sr@denx.de>
21216
21217 commit 92b50ffef978f05858a0ff4cbe88430bc51a28a2
21218 Author: Mike Frysinger <vapier@gentoo.org>
21219 Date: Wed Feb 11 19:55:01 2009 -0500
21220
21221 cmc_pu2: get mac address from environment
21222
21223 The environment is the canonical storage location of the mac address, so
21224 we're killing off the global data location and moving everything to
21225 querying the env directly.
21226
21227 Also rename load_sernum_ethaddr() to misc_init_r() so we don't need to
21228 handle this board specially in common ARM code.
21229
21230 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21231 CC: Ben Warren <biggerbadderben@gmail.com>
21232
21233 commit d8d21e699d7fcfb6ab11635110266dd09b7edc62
21234 Author: Mike Frysinger <vapier@gentoo.org>
21235 Date: Mon Feb 16 18:03:14 2009 -0500
21236
21237 boards: move board_get_enetaddr() into board-specific init
21238
21239 The environment is the canonical storage location of the mac address, so
21240 we're killing off the global data location and moving everything to
21241 querying the env directly.
21242
21243 Rather than have the common ppc code have board-specific hooks, move the
21244 board_get_enetaddr() function into the board-specific init functions.
21245
21246 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21247 CC: Ben Warren <biggerbadderben@gmail.com>
21248
21249 commit f11e6ff5b1859d9213f0d501b3309e065f487543
21250 Author: Mike Frysinger <vapier@gentoo.org>
21251 Date: Wed Feb 11 19:39:55 2009 -0500
21252
21253 arm: get mac address from environment
21254
21255 The environment is the canonical storage location of the mac address, so
21256 we're killing off the global data location and moving everything to
21257 querying the env directly.
21258
21259 Some warts are remaining and should be killed off (by moving the func to
21260 the appropriate board init code):
21261 - davinci_eth_set_mac_addr
21262 - cs8900_get_enetaddr
21263 - smc_set_mac_addr
21264
21265 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21266 CC: Ben Warren <biggerbadderben@gmail.com>
21267
21268 commit 0107cf66f7346e8c7d6cf0fe99d2f265134afd59
21269 Author: Mike Frysinger <vapier@gentoo.org>
21270 Date: Wed Feb 11 19:36:20 2009 -0500
21271
21272 nx823: get mac address from environment
21273
21274 The environment is the canonical storage location of the mac address, so
21275 we're killing off the global data location and moving everything to
21276 querying the env directly.
21277
21278 For the nx823, the serial number is moved out of load_sernum_ethaddr() and
21279 into misc_init_r() as is the env setup. This lets us kill off the former
21280 function in the process.
21281
21282 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21283 CC: Ben Warren <biggerbadderben@gmail.com>
21284
21285 commit 19b5b533ccd522abeb501d510750693c35e20456
21286 Author: Mike Frysinger <vapier@gentoo.org>
21287 Date: Wed Feb 11 18:27:18 2009 -0500
21288
21289 lib_*/board.c: do not initialize bi_enet*addr in global data
21290
21291 Since everyone is using the environment for mac address storage, there is
21292 no point in seeding the global data.
21293
21294 The arches that are converted here:
21295 i386
21296 m68k
21297 microblaze
21298 mips
21299 nios
21300 nios2
21301 sh
21302 sparc
21303
21304 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21305 CC: Ben Warren <biggerbadderben@gmail.com>
21306 CC: Daniel Hellstrom <daniel@gaisler.com>
21307 CC: Michal Simek <monstr@seznam.cz>
21308 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21309 CC: Scott McNutt <smcnutt@psyent.com>
21310 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21311
21312 commit 740e8ba7d475c49c1b76058e1bf354e376b5c4e0
21313 Author: Mike Frysinger <vapier@gentoo.org>
21314 Date: Wed Feb 11 19:19:54 2009 -0500
21315
21316 npe: get mac address from environment
21317
21318 The environment is the canonical storage location of the mac address, so
21319 we're killing off the global data location and moving everything to
21320 querying the env directly.
21321
21322 The resulting code can also be simplified even further.
21323
21324 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21325 CC: Stefan Roese <sr@denx.de>
21326 CC: Ben Warren <biggerbadderben@gmail.com>
21327
21328 commit 6bacfa6a8e9b264d37c1262fc1f3e948d1feab81
21329 Author: Mike Frysinger <vapier@gentoo.org>
21330 Date: Wed Feb 11 19:18:41 2009 -0500
21331
21332 cpu/: get mac address from environment
21333
21334 The environment is the canonical storage location of the mac address, so
21335 we're killing off the global data location and moving everything to
21336 querying the env directly.
21337
21338 The cpus that get converted here:
21339 at91rm9200
21340 mpc512x
21341 mpc5xxx
21342 mpc8260
21343 mpc8xx
21344 ppc4xx
21345
21346 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21347 CC: Ben Warren <biggerbadderben@gmail.com>
21348 CC: John Rigby <jrigby@freescale.com>
21349 CC: Stefan Roese <sr@denx.de>
21350
21351 commit 03f3d8d3b39cf85c0ce7ca903b436701e8aa610b
21352 Author: Mike Frysinger <vapier@gentoo.org>
21353 Date: Wed Feb 11 19:09:54 2009 -0500
21354
21355 lan91c96/smc91111/smc911x: get mac address from environment
21356
21357 The environment is the canonical storage location of the mac address, so
21358 we're killing off the global data location and moving everything to
21359 querying the env directly.
21360
21361 Also, do not bother checking the EEPROM if the env is setup. This
21362 simplifies the code greatly.
21363
21364 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21365 Signed-off-by: Wolfgang Dnek <wd@denx.de>
21366 CC: Ben Warren <biggerbadderben@gmail.com>
21367 CC: Rolf Offermanns <rof@sysgo.de>
21368 CC: Erik Stahlman <erik@vt.edu>
21369 CC: Daris A Nevil <dnevil@snmc.com>
21370 CC: Sascha Hauer <s.hauer@pengutronix.de>
21371
21372 commit c527ce92511cbf723c2ca77bee1cf9ecf83dac81
21373 Author: Mike Frysinger <vapier@gentoo.org>
21374 Date: Wed Feb 11 19:14:09 2009 -0500
21375
21376 sh_eth: get mac address from environment
21377
21378 The environment is the canonical storage location of the mac address, so
21379 we're killing off the global data location and moving everything to
21380 querying the env directly.
21381
21382 The sh_eth driver can also be simplified a bit by using enetaddr member of
21383 the eth_device structure.
21384
21385 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21386 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21387 CC: Carlos Munoz <carlos@kenati.com>
21388 CC: Ben Warren <biggerbadderben@gmail.com>
21389
21390 commit 0a5238cea90665c230297a8fd77bb0b3b61ca177
21391 Author: Mike Frysinger <vapier@gentoo.org>
21392 Date: Wed Feb 11 19:06:09 2009 -0500
21393
21394 cs8900: get mac address from environment
21395
21396 The environment is the canonical storage location of the mac address, so
21397 we're killing off the global data location and moving everything to
21398 querying the env directly.
21399
21400 The cs8900 driver also changes slightly in that the hardware is not
21401 consulted if the mac address in the env is sane.
21402
21403 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21404 CC: Marius Groeger <mgroeger@sysgo.de>
21405 CC: Ben Warren <biggerbadderben@gmail.com>
21406
21407 commit c4b8762f11d337e6a9d90c227b2871d65d372469
21408 Author: Mike Frysinger <vapier@gentoo.org>
21409 Date: Wed Feb 11 19:04:25 2009 -0500
21410
21411 bcm570x: get mac address from environment
21412
21413 The environment is the canonical storage location of the mac address, so
21414 we're killing off the global data location and moving everything to
21415 querying the env directly.
21416
21417 Since the address is in the PLM_DEVICE_BLOCK structure already, there is
21418 no need to pass the NodeAddress as a second parameter. So drop the second
21419 argument to the LM_SetMacAddress() function (and update the tigon3 driver
21420 accordingly).
21421
21422 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21423 CC: Ben Warren <biggerbadderben@gmail.com>
21424
21425 commit d3f871482f06f6a4eaf4a3fafde84846bad87b4f
21426 Author: Mike Frysinger <vapier@gentoo.org>
21427 Date: Wed Feb 11 19:01:26 2009 -0500
21428
21429 drivers/net/: get mac address from environment
21430
21431 The environment is the canonical storage location of the mac address, so
21432 we're killing off the global data location and moving everything to
21433 querying the env directly.
21434
21435 The drivers that get converted here:
21436 3c589
21437 4xx_enet
21438 dc2114x
21439 dm9000x
21440 enc28j60
21441 fsl_mcdmafec
21442 ks8695eth
21443 mcffec
21444 rtl8019
21445 rtl8169
21446 s3c4510b_eth
21447 xilinx_emac
21448 xilinx_emaclite
21449
21450 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21451 CC: Ben Warren <biggerbadderben@gmail.com>
21452 CC: Rolf Offermanns <rof@sysgo.de>
21453 CC: Stefan Roese <sr@denx.de>
21454 CC: Sascha Hauer <saschahauer@web.de>
21455 CC: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21456 CC: Greg Ungerer <greg.ungerer@opengear.com>
21457 CC: Xue Ligong <lgxue@hotmail.com>
21458 CC: Masami Komiya <mkomiya@sonare.it>
21459 CC: Curt Brune <curt@cucy.com>
21460 CC: Michal SIMEK <monstr@monstr.eu>
21461
21462 commit b6b4625d175019e387e5b0f65a17322a78f6bb90
21463 Author: Mike Frysinger <vapier@gentoo.org>
21464 Date: Wed Feb 11 18:38:38 2009 -0500
21465
21466 boards: get mac address from environment
21467
21468 The boards that get converted here to use the environment for the mac
21469 address rather than global data:
21470 debris
21471 mgcoge
21472 mgsuvd
21473 muas3001
21474 netstal
21475 pn62
21476 sixnet
21477 vcma9
21478 xilinx (the ones that use xilinx_enet)
21479
21480 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21481 CC: Ben Warren <biggerbadderben@gmail.com>
21482 CC: Sangmoon Kim <dogoil@etinsys.com>
21483 CC: Heiko Schocher <hs@denx.de>
21484 CC: David Mueller <d.mueller@elsoft.ch>
21485 CC: Niklaus Giger <niklaus.giger@netstal.com>
21486 CC: Wolfgang Grandegger <wg@denx.de>
21487 CC: Dave Ellis <DGE@sixnetio.com>
21488 CC: Ricardo Ribalda <ricardo.ribalda@uam.es>
21489
21490 commit 06a0c4381a65ed500c816a05b9ae7b207c3b1d4b
21491 Author: Mike Frysinger <vapier@gentoo.org>
21492 Date: Wed Feb 11 18:36:45 2009 -0500
21493
21494 AmigaOneG3SE/enet: get mac address from environment
21495
21496 Always use the MAC address that is stored in the environment first before
21497 falling back to the ROM. This also cuts out any comparison steps: if the
21498 mac in the env is sane, the ROM is never consulted.
21499
21500 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21501 CC: Thomas Frieden <ThomasF@hyperion-entertainment.com>
21502 CC: Ben Warren <biggerbadderben@gmail.com>
21503
21504 commit 56b555a644f3cbb1b3929cb52b61d3ce483885f5
21505 Author: Mike Frysinger <vapier@gentoo.org>
21506 Date: Wed Feb 11 18:52:38 2009 -0500
21507
21508 nvedit: do not update global bi_enetaddr and do not call eth_set_enetaddr()
21509
21510 Since the ethernet layer handles updating of device addresses itself from
21511 the environment, there is no point in calling eth_set_enetaddr().
21512
21513 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21514 CC: Ben Warren <biggerbadderben@gmail.com>
21515
21516 commit 5013533467c1de731c2f0c9beb4b41ce3f07cbeb
21517 Author: Mike Frysinger <vapier@gentoo.org>
21518 Date: Wed Feb 11 18:54:07 2009 -0500
21519
21520 lynxkdi: get mac address from environment
21521
21522 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21523 CC: Ben Warren <biggerbadderben@gmail.com>
21524
21525 commit 62c93d92f1b6266b2f33c5f403931b51cbd2a246
21526 Author: Mike Frysinger <vapier@gentoo.org>
21527 Date: Wed Feb 11 18:51:43 2009 -0500
21528
21529 bootvx: get mac address from environment
21530
21531 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21532 CC: Niklaus Giger <niklaus.giger@member.fsf.org>
21533 CC: Ben Warren <biggerbadderben@gmail.com>
21534
21535 commit de2dff6ff89f98c6062f4d224fd434a3ede035d1
21536 Author: Mike Frysinger <vapier@gentoo.org>
21537 Date: Wed Feb 11 18:50:10 2009 -0500
21538
21539 bdinfo: get mac address from environment
21540
21541 Add a new print_eth() function to automate the eth*addr env var acquisition
21542 and display. Affects all arches.
21543
21544 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21545 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21546 CC: Scott McNutt <smcnutt@psyent.com>
21547 CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21548 CC: Michal Simek <monstr@seznam.cz>
21549 CC: Daniel Hellstrom <daniel@gaisler.com>
21550 CC: Ben Warren <biggerbadderben@gmail.com>
21551
21552 commit 95823ca0773356860e622ee3304a4b7cafcbf19a
21553 Author: Mike Frysinger <vapier@gentoo.org>
21554 Date: Wed Feb 11 18:23:48 2009 -0500
21555
21556 net: get mac address from environment and use eth util funcs
21557
21558 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21559 CC: Ben Warren <biggerbadderben@gmail.com>
21560
21561 commit 500b6c51e4c41f4562cb48344af98deb7e342731
21562 Author: Mike Frysinger <vapier@gentoo.org>
21563 Date: Mon Oct 13 15:06:25 2008 -0400
21564
21565 Blackfin: bfin_mac: force boards to setup the MAC themselves
21566
21567 Since the on-chip MAC does not have an eeprom or similar interface, force
21568 all Blackfin boards that use this driver to setup the board data with a
21569 proper MAC.
21570
21571 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21572 CC: Ben Warren <biggerbadderben@gmail.com>
21573
21574 commit 6ff4137f2ad640e4fc8ea1b0455161ddff1f6730
21575 Author: Mike Frysinger <vapier@gentoo.org>
21576 Date: Wed Feb 11 14:12:34 2009 -0500
21577
21578 doc/README.enetaddr: document proper MAC usage
21579
21580 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21581 CC: Ben Warren <biggerbadderben@gmail.com>
21582
21583 commit 3f6e6993e92fd0658da1746d1c84644612ee520b
21584 Author: Mike Frysinger <vapier@gentoo.org>
21585 Date: Thu Jan 29 19:43:44 2009 -0500
21586
21587 net: new utility functions for working with enetaddr's
21588
21589 Declare new utility functions for converting between the environment
21590 variables (eth*addr) and the binary MAC address representation. This way
21591 we can unify all the random places that already do this kind of thing.
21592
21593 The functions in question:
21594 eth_parse_enetaddr - "..." -> {...}
21595 eth_getenv_enetaddr - env -> {...}
21596 eth_setenv_enetaddr - {...} -> env
21597
21598 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21599 CC: Ben Warren <biggerbadderben@gmail.com>
21600
21601 commit b6446b67758ea1e41223f0782924bb73fd0a89d0
21602 Author: Mike Frysinger <vapier@gentoo.org>
21603 Date: Tue Feb 17 00:00:53 2009 -0500
21604
21605 convert print_IPaddr() to %pI4
21606
21607 Now that our printf functions support the %pI4 modifier like the kernel,
21608 let's drop the inflexible print_IPaddr() function and covert over to the
21609 %pI4 modifier.
21610
21611 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21612 CC: Ben Warren <biggerbadderben@gmail.com>
21613
21614 commit 6c6166f52983dac775e3852f9d0f49d033f27108
21615 Author: Mike Frysinger <vapier@gentoo.org>
21616 Date: Mon Feb 16 23:21:36 2009 -0500
21617
21618 vsprintf: pull updates from Linux kernel
21619
21620 This brings in support for the %p modifier which allows us to easily print
21621 out things like ip addresses, mac addresses, and pointers.
21622
21623 It also converts the rarely used 'q' length modifier to the common 'L'
21624 modifier when dealing with quad types.
21625
21626 While this new code is a bit larger (~1k .text), most of it should be made
21627 up by converting the existing ip/mac address code to use format modifiers.
21628
21629 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21630
21631 commit a43ea5cc6d612471fbc74f0a26b2bea5864aa1d6
21632 Author: Jon Smirl <jonsmirl@gmail.com>
21633 Date: Thu Mar 19 23:04:18 2009 -0400
21634
21635 .gitignore for generated files in api_examples directory
21636
21637 Add .gitignore for generated files in api_examples directory
21638
21639 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
21640 Signed-off-by: Wolfgang Denk <wd@denx.de>
21641
21642 commit 40281a9ca21a6b6d7b996b4d4eeaa19026337231
21643 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21644 Date: Wed Mar 18 12:27:04 2009 +0900
21645
21646 net: sh_eth: Remove sh_eth_reset() from halt function
21647
21648 sh_eth_reset is function to reset Ether IP.
21649 The MAC address is stored in IP, but it is initialized by this function.
21650 OS (e.g. Linux Kernel) can not use this device when initialized.
21651 This revises this problem.
21652
21653 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21654
21655 commit f8853d105da7d69bc92a5b4578f9b85234e558ec
21656 Author: Anatolij Gustschin <agust@denx.de>
21657 Date: Fri Mar 20 12:45:50 2009 +0100
21658
21659 ppc4xx: Fix bug in PCI outbound map configuration for canyonlands
21660
21661 PCI outbound address map configuration doesn't match the
21662 PCI memory address range covered by appropriate TLB entry
21663 configuration for canyonlands causing machine check
21664 exceptions while accessing PCI memory regions. This patch
21665 provides a fix for this issue.
21666
21667 Kazuaki Ichinohe observed and reported this issue while
21668 testing display output with PCI ATI video card on canyonlands.
21669
21670 Signed-off-by: Anatolij Gustschin <agust@denx.de>
21671 Signed-off-by: Stefan Roese <sr@denx.de>
21672
21673 commit 7a88601a34132548c3c591ea87ab3468b51121b0
21674 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21675 Date: Fri Mar 6 10:09:37 2009 -0500
21676
21677 CFI: geometry reversal for STMicro M29W320DT
21678
21679 Follow up to the flash_fixup_stm to fix geometry reversal
21680 on STMicro M29W320ET flash chip. The M29W320DT has 4 erase region.
21681
21682 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
21683 Signed-off-by: Stefan Roese <sr@denx.de>
21684
21685 commit 069f4364d807d7fdea3de7385ad2f8d83c587aec
21686 Author: Mike Frysinger <vapier@gentoo.org>
21687 Date: Wed Feb 25 17:29:40 2009 -0500
21688
21689 smc911x_eeprom: update register API
21690
21691 The smc911x driver changed the naming convention for its register funcs,
21692 so update the eeprom code accordingly.
21693
21694 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21695 CC: Ben Warren <biggerbadderben@gmail.com>
21696
21697 commit 6a397ef0e6c58caab8bf427d447714bc9b3bb9d4
21698 Author: Grzegorz Bernacki <gjb@semihalf.com>
21699 Date: Tue Mar 17 10:06:39 2009 +0100
21700
21701 mpc52xx: Get rid of board-specific #ifdef's in cpu/mpc5xxx/ide.c
21702
21703 Total5200 and digsy MTC use I2C port 2 pins as a ATA chip select.
21704 To avoid adding board-specific ifdefs to cpu/mpc5xxx/ide.c new
21705 define CONFIG_SYS_ATA_CS_ON_I2C2 was introduced. It is used by
21706 Total5200 and will be used by digsy MTC and other boards with
21707 ATA CS on I2C pins.
21708
21709 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
21710
21711 commit 1b6275dfb173bd2edb8f208dd050d6f47ae39654
21712 Author: Heiko Schocher <hs@denx.de>
21713 Date: Thu Mar 12 07:37:34 2009 +0100
21714
21715 8xx: add support for new keymile kmsupx4 board.
21716
21717 This patch adds support for the kmsupx4 board from Keymile,
21718 based on a Freescale MPC852T CPU
21719
21720 - serial console on SMC1
21721 - 32 MB SDRAM
21722 - 32 MB NOR Flash
21723 - Ethernet over SCC3
21724 - I2C Bitbang
21725
21726 Signed-off-by: Heiko Schocher <hs@denx.de>
21727
21728 commit d044954fe2a7e7a3dd104eb9c9d2104e38da2911
21729 Author: Heiko Schocher <hs@denx.de>
21730 Date: Thu Mar 12 07:37:28 2009 +0100
21731
21732 8xx, mgsuvd: rename board to a more generic name
21733
21734 renaming the "mgsuvd" board port into "km8xx", because
21735 there come more similar boards from keymile.
21736 Compiling the mgsuvd board with "make mgsuvd_config"
21737 remains.
21738
21739 Signed-off-by: Heiko Schocher <hs@denx.de>
21740
21741 commit 18b2f35bde1672e074a3d5048383cb56fda745cb
21742 Author: Heiko Schocher <hs@denx.de>
21743 Date: Thu Mar 12 07:37:23 2009 +0100
21744
21745 8xx, mgsuvd: Coding Style cleanup config file
21746
21747 Signed-off-by: Heiko Schocher <hs@denx.de>
21748
21749 commit 364123db6730d32330f818b65360d2cd27396667
21750 Author: Heiko Schocher <hs@denx.de>
21751 Date: Thu Mar 12 07:37:18 2009 +0100
21752
21753 powerpc: common updates for keymile boards
21754
21755 - added to keymile-common.h:
21756 - bootcount support
21757 - COMMAND HISTORY
21758 - CONFIG_AUTO_COMPLETE
21759 - CONFIG_SYS_FLASH_PROTECTION
21760 - JFFS2 support
21761 - CONFIG_VERSION_VARIABLE
21762 - extracted common I2C settings for all boards
21763 - common default environment settings summarized
21764
21765 Signed-off-by: Heiko Schocher <hs@denx.de>
21766
21767 commit 506f391888b82d1b83bdd749c3cea9eb2fd64df8
21768 Author: Heiko Schocher <hs@denx.de>
21769 Date: Thu Mar 12 07:37:15 2009 +0100
21770
21771 8xx, icache: enabling ICache not before running from RAM
21772
21773 with the new CONFIG_SYS_DELAYED_ICACHE config option, ICache
21774 is not enabled before code runs from RAM.
21775
21776 Signed-off-by: Heiko Schocher <hs@denx.de>
21777
21778 commit cabf7b9c83bd780a5805ddbb4c0ce431d5b9f9f3
21779 Author: Heiko Schocher <hs@denx.de>
21780 Date: Thu Mar 12 07:37:11 2009 +0100
21781
21782 82xx, mgcoge: fix environment sector size
21783
21784 Size of one environment sector is 0x20000.
21785
21786 Signed-off-by: Heiko Schocher <hs@denx.de>
21787
21788 commit 27057d416c7cc9eb1860953da8836352c07f13e9
21789 Author: Ladislav Michl <ladis@linux-mips.org>
21790 Date: Mon Mar 16 23:27:31 2009 +0100
21791
21792 NetStar: config reindentation
21793
21794 Fix indentation broken by symbol renames. "Sort" driver related definitons.
21795
21796 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
21797
21798 commit 8d8235f84d3ef3f29b7d14e741369b5824b5bb4a
21799 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21800 Date: Tue Mar 17 11:21:43 2009 +0000
21801
21802 ColdFire: Fix incorrect definition
21803
21804 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21805
21806 commit 9017d9325a5067b2ab0d70a2d3c907620c9ab7f8
21807 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21808 Date: Mon Mar 2 19:16:45 2009 +0000
21809
21810 ColdFire: Fix M5329EVB and M5373EVB nand issue
21811
21812 The Nand flash was unable to read and write properly
21813 due to Nand Chip Select (nCE) setup was in reverse
21814 order. Also, increase the Nand time out value to 60.
21815
21816 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21817
21818 commit 42b68af1062f75bb4a91cf47e329a7e8100cd815
21819 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21820 Date: Tue Jan 27 15:19:35 2009 +0000
21821
21822 ColdFire: PLATFORM_CPPFLAGS updates for new compiler
21823
21824 Update PLATFORM_CPPFLAGS to accept 4.3.x version of
21825 ColdFire compiler.
21826
21827 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21828
21829 commit d6e4baf49987fc6f75e8574c0c27301a828b3132
21830 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21831 Date: Tue Jan 27 12:57:47 2009 +0000
21832
21833 ColdFire: Provide gzip image size V2 & V3 platforms
21834
21835 Default gzip bootm size is 8MB. Some platforms require
21836 more than 8MB
21837
21838 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21839
21840 commit c3a9e6374210679a81f611c1bcf968988bc20e41
21841 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21842 Date: Wed Feb 18 11:49:31 2009 +0000
21843
21844 ColdFire: Fix M54451 serial boot dram setup
21845
21846 The serial boot dram extended/standard mode register was not
21847 setup and was using default DRAM setup causing the U-boot was
21848 unstable to boot up in serial mode.
21849
21850 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
21851
21852 commit 32d11d58159a575f08a982cad8a5a941ffe5cc3d
21853 Author: arun c <arun.edarath@gmail.com>
21854 Date: Thu Dec 4 15:57:15 2008 +0530
21855
21856 Coldfire: XL Bus minor fixes
21857
21858 According to coldfire manual data timeout > address time out
21859 also use correct macro to program XARB_CFG
21860
21861 Signed-off-by: Arun C <arunedarath@mistralsolutions.com>
21862
21863 commit 65d8bc94d8214812ccdf3372d3fef845cf4ec2e5
21864 Author: Scott Wood <scottwood@freescale.com>
21865 Date: Tue Mar 17 12:06:04 2009 -0500
21866
21867 NAND: Have nboot accept .e and .i as legacy no-ops.
21868
21869 This was intended to happen before, but a trivial bug prevented it.
21870
21871 Signed-off-by: Scott Wood <scottwood@freescale.com>
21872
21873 commit 0987505540918b2464b73069af3a5b766dbd3ceb
21874 Author: Ladislav Michl <ladis@linux-mips.org>
21875 Date: Fri Mar 13 14:38:19 2009 +0100
21876
21877 NAND: Make nboot skip bad blocks
21878
21879 nboot command currently does not skip bad blocks and gives read error when
21880 loading image stored over bad block. With patch applied, nboot works as
21881 expected:
21882
21883 Device 0 bad blocks:
21884 00780000
21885 014a0000
21886 02000000
21887 02cc0000
21888 04aa0000
21889
21890 Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000
21891 Image Name: Linux-2.6.22-omap1
21892 Created: 2008-11-20 23:44:32 UTC
21893 Image Type: ARM Linux Kernel Image (uncompressed)
21894 Data Size: 1052520 Bytes = 1 MB
21895 Load Address: 10008000
21896 Entry Point: 10008000
21897 Skipping bad block 0x02cc0000
21898 Automatic boot of image at addr 0x10400000 ...
21899 ...
21900
21901 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
21902 Signed-off-by: Scott Wood <scottwood@freescale.com>
21903
21904 commit 0b2f38fe3c4555dd2b81c69880403c13ad723153
21905 Author: Stefan Roese <sr@denx.de>
21906 Date: Thu Mar 12 07:27:25 2009 +0100
21907
21908 ppc4xx: lwmon5: Only use one CS (rank) in DDR2 configuration
21909
21910 This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
21911 the DDR2 configuration to only use one CS (rank). As this code is most
21912 likely copied from the original Sequoia version, this error was copied
21913 as well.
21914
21915 This patch also removes some dead code.
21916
21917 Signed-off-by: Stefan Roese <sr@denx.de>
21918
21919 commit 9199b9cc8f56aca26504b48cf702176208f46e54
21920 Author: Stefan Roese <sr@denx.de>
21921 Date: Thu Mar 12 07:24:40 2009 +0100
21922
21923 ppc4xx: PMC440: Only use one CS (rank) in DDR2 configuration
21924
21925 This patch fixes a problem spotted by Mikhail Zolotaryov on Sequoia with
21926 the DDR2 configuration to only use one CS (rank). As this code is most
21927 likely copied from the original Sequoia version, this error was copied
21928 as well.
21929
21930 Signed-off-by: Stefan Roese <sr@denx.de>
21931
21932 commit ee86fd15e1ccda4be41f1dba82b8c9efea9a3145
21933 Author: Mikhail Zolotaryov <lebon@lebon.org.ua>
21934 Date: Wed Mar 11 10:54:46 2009 +0200
21935
21936 Fix AMCC Sequoia board DDR memory configuration
21937
21938 Sequoia board schematics (DES0211_11_SCH_11.pdf, page 5, unit U1D)
21939 specifies that BankSel#1 is not connected, while bootloader memory
21940 configuration is (board/amcc/sequoia/sdram.c):
21941 mtsdram(DDR0_10, 0x00000300);
21942 i.e. both Chip Selects used - not correct.
21943
21944 If we change to correct value here:
21945 mtsdram(DDR0_10, 0x00000100);
21946 memory is accessible OK also.
21947
21948 Signed-off-by: Mikhail Zolotaryov <lebon@lebon.org.ua>
21949 Signed-off-by: Stefan Roese <sr@denx.de>
21950
21951 commit b3dd629e78870ba2dc9f8032978721c0fa02a856
21952 Author: Wolfgang Denk <wd@denx.de>
21953 Date: Sun Mar 15 22:40:09 2009 +0100
21954
21955 Prepare 2009.03-rc2
21956
21957 Update CHANEGLOG, fix minor coding style issue.
21958
21959 Signed-off-by: Wolfgang Denk <wd@denx.de>
21960
21961 commit 394d30dd1ee23b80fd5e59e17ebe0feca927ab31
21962 Author: Jerry Van Baren <gvb.uboot@gmail.com>
21963 Date: Fri Mar 13 11:40:10 2009 -0400
21964
21965 mpc83xx: Add bank configuration to FSL spd_sdram.c
21966
21967 The routine assumed 4 bank SDRAMs, enhance to configure for 4 or 8
21968 bank SDRAMs.
21969
21970 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21971 Acked-by: Dave Liu <daveliu@freescale.com>
21972 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21973
21974 commit b581626c1e2474a3dadf69d4f0e0582eccbc4235
21975 Author: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
21976 Date: Fri Mar 13 08:58:14 2009 +0100
21977
21978 mpc83xx: correctly set encryption and I2C bus 0 clock
21979
21980 This patch makes sure the correct mask is applied when setting
21981 the encryption and I2C bus 0 clock in SCCR.
21982 Failing to do so may lead to ENCCM being 0 in which case I2C bus 0
21983 won't function.
21984
21985 Signed-off-by: Norbert van Bolhuis <nvbolhuis@aimvalley.nl>
21986 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21987
21988 commit e6a6a704151c2d7e4a7b485545b48a6020ccca17
21989 Author: Dirk Behme <dirk.behme@googlemail.com>
21990 Date: Thu Mar 12 19:30:50 2009 +0100
21991
21992 OMAP3: Add support for OMAP3 die ID
21993
21994 Read and store OMAP3 die ID in U-Boot environment.
21995
21996 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
21997
21998 commit f949bd8d089ec3059c460ac829c0d919e1d7af0e
21999 Author: Jon Smirl <jonsmirl@gmail.com>
22000 Date: Wed Mar 11 15:08:56 2009 -0400
22001
22002 MPC5200 FEC MII speed register
22003
22004 Set a non-zero speed in the MII register so that MII commands will work.
22005
22006 Signed-off-by: Jon Smirl <jonsmirl@gmail.com>
22007
22008 commit 94a353611b93ac4cb4434a5f7e98aa0902da919e
22009 Author: Yusuke.Goda <goda.yusuke@renesas.com>
22010 Date: Fri Mar 13 16:08:18 2009 +0900
22011
22012 sh: ap325rxa: Change the wait cycle in the area 5
22013
22014 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
22015 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22016
22017 commit 2db0e1278b9f11263e0a13326b57d4f99781f7ac
22018 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22019 Date: Wed Feb 25 16:04:26 2009 +0900
22020
22021 sh: Fix cannot work rtl8139 on r2dplus
22022
22023 The rtl8139 driver use pci_mem_to_phys. So it need PCI system memory
22024 registration.
22025
22026 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22027 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22028
22029 commit 64f3c0b8ba99d6651db59273e497ab5e857c8d4f
22030 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
22031 Date: Fri Feb 27 18:35:41 2009 +0900
22032
22033 sh: Add netdev header fixing of warning/build
22034
22035 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
22036 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22037
22038 commit ada9318252f51c2626e9837c623f9812b0308dea
22039 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22040 Date: Tue Mar 3 15:11:17 2009 +0900
22041
22042 sh: Add support 32-Bit Extended Address Mode to sh7785lcr
22043
22044 We can built 'make sh7785lcr_32bit_config'. And add new command "pmb"
22045 for this mode. This command changes PMB for using 512MB system memory.
22046
22047 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22048 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22049
22050 commit 06b18163b57e6b0349b0c299222d50e7b1e41e50
22051 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22052 Date: Wed Feb 25 14:26:42 2009 +0900
22053
22054 sh: Add some register value configurable to PCI of SH7780
22055
22056 Some register value was hardcoded for System memory size 128MB and
22057 memory offset 0x08000000. This patch fixed the problem.
22058
22059 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22060 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22061
22062 commit 06e2735eb85cbea7cecb3c308d6d078b3651b22c
22063 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22064 Date: Wed Feb 25 14:26:52 2009 +0900
22065
22066 sh: Add system memory registration to PCI for SH4
22067
22068 It is necessary for some pci device driver.
22069
22070 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22071 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22072
22073 commit b3061b40db691245a7bb9a55354b4edacbf3902d
22074 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22075 Date: Wed Feb 25 14:26:55 2009 +0900
22076
22077 sh: Add value for PCI system memory registration of sh7785lcr
22078
22079 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22080 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22081
22082 commit 6d84ae3956a6cd7aebd86f661130752594e60124
22083 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22084 Date: Tue Mar 3 15:11:08 2009 +0900
22085
22086 sh: Add macros for SH-4A 32-Bit Address Extended Mode
22087
22088 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22089 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22090
22091 commit 3e3eec39de8fe0ae62e6e4d4e3fa4442ee9ed6b1
22092 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
22093 Date: Tue Feb 3 13:35:05 2009 +0900
22094
22095 sh: use write{8,16,32} in ms7720se lowlevel_init
22096
22097 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
22098 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22099
22100 commit 0452352df118bc9dd684a056aaaa5fb4aed1178a
22101 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
22102 Date: Mon Mar 9 18:07:53 2009 -0500
22103
22104 tsec: report when there is no vendor specific PHY support
22105
22106 Commit af1c2b84 added a generic phy support, with an ID of zero
22107 and a 32 bit mask; meaning that it will match on any PHY ID.
22108
22109 The problem is that there is a test that checked if a matching
22110 PHY was found, and if not, it printed the non-matching ID.
22111 But since there will always be a match (on the generic PHY,
22112 worst case), this test will never trip.
22113
22114 In the case of a misconfigured PHY address, or of a PHY that
22115 isn't explicitly supported outside of the generic support,
22116 you will never see the ID of 0xffffffff, or the ID of the
22117 real (but unsupported) chip. It will silently fall through
22118 onto the generic support.
22119
22120 This change makes that test useful again, and ensures that
22121 the selection of generic PHY support doesn't happen without
22122 some sort of notice. It also makes it explicitly clear that
22123 the generic PHY must be last in the PHY table.
22124
22125 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
22126 Acked-by: Andy Fleming <afleming@freescale.com>
22127
22128 commit c279dfc10186ceba78d3862036f158750e86599a
22129 Author: Wolfgang Denk <wd@denx.de>
22130 Date: Mon Mar 9 10:53:05 2009 +0100
22131
22132 SIMPC8313 board: fix out of tree building.
22133
22134 Fix typo in makefile which broke out of tree builds.
22135
22136 Also use expolicit "rm" instead of "ln -sf" which is known to be
22137 unreliable.
22138
22139 Signed-off-by: Wolfgang Denk <wd@denx.de>
22140 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22141
22142 commit 49b5aff491bd574935ecaf8545152066a25eff3d
22143 Author: ksi@koi8.net <ksi@koi8.net>
22144 Date: Mon Feb 23 10:53:13 2009 -0800
22145
22146 Add eTSEC 1/2 IO override control (corrected)
22147
22148 This adds tsec12ioovcr to include/asm-ppc/immap_85xx.h (was reserved.)
22149
22150 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
22151
22152 commit 48c2b7bb432da84fcce05b4db6efad0be73a93dc
22153 Author: Andy Fleming <afleming@freescale.com>
22154 Date: Fri Mar 6 19:05:52 2009 -0600
22155
22156 fsl: Remove unnecessary debug printfs
22157
22158 These were left in accidentally, and are not really useful unless the
22159 code is as broken as it was when it was being developed.
22160
22161 Signed-off-by: Andy Fleming <afleming@freescale.com>
22162
22163 commit 0ee84b88b78bce425190d8cd7adf4c30cba0c2f0
22164 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
22165 Date: Tue Feb 24 02:37:59 2009 -0600
22166
22167 Fix mpc85xx ddr-gen3 ddr_sdram_cfg.
22168
22169 Commit e1be0d25, "32bit BUg fix for DDR2 on 8572" prevented other
22170 sdram_cfg bits (such as ecc and self_refresh_in_sleep) from being set.
22171
22172 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
22173
22174 commit a922fdb87af25c25c032424908dcf60fbf3250ea
22175 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22176 Date: Tue Feb 24 06:13:10 2009 +0100
22177
22178 PXA: timer use do_div and simplify it
22179
22180 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22181
22182 commit 4b00d1aa82b6af9b4e628a5729a12086e44558b3
22183 Author: Wolfgang Denk <wd@denx.de>
22184 Date: Mon Mar 9 10:51:39 2009 +0100
22185
22186 SIMPC8313 board: fix out of tree building.
22187
22188 Fix typo in makefile which broke out of tree builds.
22189
22190 Also use expolicit "rm" instead of "ln -sf" which is known to be
22191 unreliable.
22192
22193 Signed-off-by: Wolfgang Denk <wd@denx.de>
22194
22195 commit f70fd13e2fe4cf58e251271c27f9c06e141d7f9a
22196 Author: Heiko Schocher <hs@denx.de>
22197 Date: Tue Feb 24 11:30:51 2009 +0100
22198
22199 8360, kmeter1: added bootcount feature.
22200
22201 add CONFIG_BOOTCOUNT_LIMIT feature for 8360 CPU.
22202
22203 The bootcounter uses 8 bytes from the muram,
22204 because no other memory was found on this
22205 CPU for the bootcount feature. So we must
22206 correct the muram size in DTS before booting
22207 Linux.
22208
22209 This feature is actual only implemented for
22210 MPC8360, because not all 83xx CPU have qe,
22211 and therefore no muram, which this feature
22212 uses.
22213
22214 Signed-off-by: Heiko Schocher <hs@denx.de>
22215 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22216
22217 commit 1e7ed2565031e01abc18c713030a0a9829c07684
22218 Author: Heiko Schocher <hs@denx.de>
22219 Date: Tue Feb 24 11:30:48 2009 +0100
22220
22221 83xx, kmeter: QE_ENET10 errata for Silicon Revision 2.1
22222
22223 old code implemented the QE_ENET10 errata only for Silicon
22224 Revision 2.0. New code reads now the Silicon Revision
22225 register and sets dependend on the Silicon Revision the
22226 values as advised in the QE_ENET10 errata.
22227
22228 Signed-off-by: Heiko Schocher <hs@denx.de>
22229 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22230
22231 commit 605f78e34a3f0103693b891f2573edd352e7d495
22232 Author: Heiko Schocher <hs@denx.de>
22233 Date: Tue Feb 24 11:30:44 2009 +0100
22234
22235 83xx, kmeter1: updates for 2009.03
22236
22237 - HRCW update
22238 HRCWH_BOOTSEQ_DISABLE not HRCWH_BOOTSEQ_NORMAL
22239 HRCWH_LALE_EARLY added
22240 - DDR-SDRAM settings modified. This solves sporadically
22241 problems with this memory.
22242 - CS1 now 128 MB window size
22243 - CS3 now 512 MB window size
22244 - PRAM activated
22245 - MTDPARTS_DEFAULT defined
22246 - CONFIG_HOSTNAME added
22247 - MONITOR_LEN now 384 KB
22248
22249 Signed-off-by: Heiko Schocher <hs@denx.de>
22250 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22251
22252 commit 118cbe3c35c898f8d020b29d6dc180307cacf147
22253 Author: Heiko Schocher <hs@denx.de>
22254 Date: Tue Feb 24 11:30:40 2009 +0100
22255
22256 83xx, kmeter1: autodetect size of DDR II RAM
22257
22258 it is possible that some board variants have different DDR II
22259 RAM sizes. So we autodetect the size of the assembled RAM.
22260
22261 Signed-off-by: Heiko Schocher <hs@denx.de>
22262 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22263
22264 commit c1bce4fff750d734b1fa7467eb08f93902c97ca6
22265 Author: Heiko Schocher <hs@denx.de>
22266 Date: Tue Feb 24 11:30:37 2009 +0100
22267
22268 83xx, i2c: add mux support for fsl_i2c
22269
22270 This patch adds I2C mux support for the fsl_i2c driver. This
22271 allows you to add "new" i2c busses, which are reached over
22272 i2c muxes. For more infos, please look in the README and
22273 search for CONFIG_I2C_MUX.
22274
22275 Signed-off-by: Heiko Schocher <hs@denx.de>
22276 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22277
22278 commit 19f0e93041dbfe22f8d39b98e4f7f9ea87b77803
22279 Author: Heiko Schocher <hs@denx.de>
22280 Date: Tue Feb 24 11:30:34 2009 +0100
22281
22282 83xx, kmeter1: add I2C, dtt, eeprom support
22283
22284 This patch adds I2C support for the Keymile kmeter1 board.
22285 It uses the First I2C Controller from the CPU, for
22286 accessing 4 temperature sensors, an eeprom with IVM data
22287 and the booteeprom over a pca9547 mux.
22288
22289 Signed-off-by: Heiko Schocher <hs@denx.de>
22290 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22291
22292 commit db1d72afd77287bc8577210f3f71ab249dcf146f
22293 Author: Heiko Schocher <hs@denx.de>
22294 Date: Tue Feb 24 11:30:30 2009 +0100
22295
22296 i2c, dtt: move dtt_init () to board_init_r ()
22297
22298 In case where a board not uses CONFIG_POST, it is not
22299 necessary to init the DTTs when running from flash.
22300
22301 Signed-off-by: Heiko Schocher <hs@denx.de>
22302 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22303
22304 commit 5b0055547f0246908b79cc300170d87380b69e18
22305 Author: Dave Liu <daveliu@freescale.com>
22306 Date: Wed Feb 25 12:31:32 2009 +0800
22307
22308 83xx: Fix some bugs in spd sdram code
22309
22310 1. RD_TO_PRE missed to add the AL, and need min 2 clocks for
22311 tRTP according to DDR2 JEDEC spec.
22312 2. WRTORD - tWTR need min 2 clocks according to DDR2 JEDEC spec.
22313 3. add the support of DDR2-533,667,800 DIMMs
22314 4. cpo
22315 5. make the AL to min to gain better performance.
22316
22317 The Micron MT9HTF6472CHY-667D1 DIMMs test passed on
22318 MPC837xEMDS platform at 266MHz/333MHz/400MHz data rate.
22319
22320 items 1, 2 and 5:
22321 Acked-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
22322
22323 Reported-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
22324 Signed-off-by: Dave Liu <daveliu@freescale.com>
22325 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22326
22327 commit b7be63abec45858c044f0fbd6aeef524c4663f9b
22328 Author: Valeriy Glushkov <gvv@lstec.com>
22329 Date: Wed Feb 4 18:27:49 2009 +0200
22330
22331 MPC8349ITX: several config issues fixed
22332
22333 The previous version rebooted forever with DDR bigger than 256MB.
22334 Access the DS1339 RTC chip is on I2C1 bus.
22335 Allow DHCP.
22336
22337 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
22338 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22339
22340 commit 7e2ec1de1d2d723b59d7dd2fb85ff71b952d63af
22341 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22342 Date: Thu Feb 19 18:20:39 2009 +0300
22343
22344 mpc83xx: MPC837XEMDS: Initialize SerDes before negating PCIE reset signal
22345
22346 The SerDes initialization should be finished before negating the reset
22347 signal according to the reference manual. This isn't an issue on real
22348 hardware, but we'd better stick to the specifications anyway.
22349
22350 Suggested-by: Liu Dave <DaveLiu@freescale.com>
22351 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22352 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22353
22354 commit 9c2d63ec0e9520948b6d598ea32e9aa4e0de847f
22355 Author: Heiko Schocher <hs@denx.de>
22356 Date: Wed Feb 25 12:28:32 2009 +0100
22357
22358 i2c, dtt: move dtt_init () to board_init_r ()
22359
22360 it is not necessary to init the DTTs so early,
22361 so move this init to board_init_r ().
22362
22363 Signed-off-by: Heiko Schocher <hs@denx.de>
22364
22365 commit 00cc5595a7caac8066b408774383a956c2e26797
22366 Author: Anatolij Gustschin <agust@denx.de>
22367 Date: Wed Feb 25 20:28:13 2009 +0100
22368
22369 lcd: Fix compilation warning in common/lcd.c
22370
22371 Fix following warning while compilation for mcc200 board:
22372
22373 lcd.c: In function 'lcd_display_bitmap':
22374 lcd.c:625: warning: unused variable 'cmap'
22375
22376 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22377
22378 commit f5a77a09c93fe7f04c0c56f64ea436f7d318d674
22379 Author: Graeme Russ <graeme.russ@gmail.com>
22380 Date: Tue Feb 24 21:11:24 2009 +1100
22381
22382 Moved SC520 Files (fix commit 407976185e0dda2c90e89027121a1071b9c77bfb)
22383
22384 Fixes commit 407976185e0dda2c90e89027121a1071b9c77bfb
22385
22386 Signed-off-by: Graeme Russ <graeme.russ at gmail.com>
22387
22388 commit 75ba6d693b8f6247aa4b81323a2ee2fa28222215
22389 Author: Mike Frysinger <vapier@gentoo.org>
22390 Date: Mon Feb 23 10:29:47 2009 -0500
22391
22392 smc911x: split out useful defines/functions into local header
22393
22394 The smc911x driver has a lot of useful defines/functions which can be used
22395 by pieces of code (such as example eeprom programmers). Rather than
22396 forcing each place to duplicate these defines/functions, split them out
22397 of the smdc911x driver into a local header.
22398
22399 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22400 Acked-by: Ben Warren <biggerbadderben@gmail.com>
22401 CC: Sascha Hauer <s.hauer@pengutronix.de>
22402 CC: Guennadi Liakhovetski <lg@denx.de>
22403 CC: Magnus Lilja <lilja.magnus@gmail.com>
22404 CC: Ben Warren <biggerbadderben@gmail.com>
22405
22406 commit a2bb7105a79af8f2ffa9f87256fce6c1cbcbd8e1
22407 Author: Guennadi Liakhovetski <lg@denx.de>
22408 Date: Tue Feb 24 10:44:02 2009 +0100
22409
22410 ARM: add an "eet" variant of the imx31_phycore board
22411
22412 The "eet" variant of the imx31_phycore board has an OLED display, using a
22413 s6e63d6 display controller on the first SPI interface, using GPIO57 as a
22414 chip-select for it. With this configuration you can display 256 colour BMP
22415 images in 16-bit RGB (RGB565) LCD mode.
22416
22417 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22418 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22419
22420 commit 0c99f6ab31c5635874ba7a2e8d37791bfbf02f8f
22421 Author: Guennadi Liakhovetski <lg@denx.de>
22422 Date: Fri Feb 6 10:37:57 2009 +0100
22423
22424 video: add an i.MX31 framebuffer driver
22425
22426 Add a driver for the Synchronous Display Controller and the Display
22427 Interface on i.MX31, using IPU for DMA channel setup. So far only
22428 displaying of bitmaps is supported, no text output.
22429
22430 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22431 Acked-by: Anatolij Gustschin <agust@denx.de>
22432
22433 commit b245e65ee3c4cce3ccf008a21f4528239655876c
22434 Author: Guennadi Liakhovetski <lg@denx.de>
22435 Date: Fri Feb 6 10:37:53 2009 +0100
22436
22437 LCD: support 8bpp BMPs on 16bpp displays
22438
22439 This patch also simplifies some ifdefs in lcd.c, introduces a generic
22440 vidinfo_t, which new drivers are encouraged to use and old drivers to switch
22441 over to.
22442
22443 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22444 Acked-by: Anatolij Gustschin <agust@denx.de>
22445
22446 commit a303dfb0e9a93e516ea9427b5c09543d5f74ade1
22447 Author: Mark Jackson <mpfj@mimc.co.uk>
22448 Date: Fri Feb 6 10:37:49 2009 +0100
22449
22450 Add 16bpp BMP support
22451
22452 This patch adds 16bpp BMP support to the common lcd code.
22453
22454 Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code.
22455
22456 At the moment it's only been tested on the MIMC200 AVR32 board, but extending
22457 this to other platforms should be a simple task !!
22458
22459 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22460 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22461 Acked-by: Anatolij Gustschin <agust@denx.de>
22462
22463 commit 689551c5ff1b394b88412f3df22144e79468d3a9
22464 Author: Guennadi Liakhovetski <lg@denx.de>
22465 Date: Fri Feb 6 10:37:41 2009 +0100
22466
22467 A driver for the S6E63D6 SPI display controller from Samsung
22468
22469 This is a driver for the S6E63D6 SPI OLED display controller from Samsung.
22470 It only provides access to controller's registers so the client can freely
22471 configure it.
22472
22473 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22474 Acked-by: Anatolij Gustschin <agust@denx.de>
22475
22476 commit fc7a93c84f3f134484811a0d9ad751fbc1a7da6d
22477 Author: Guennadi Liakhovetski <lg@denx.de>
22478 Date: Fri Feb 13 09:26:40 2009 +0100
22479
22480 i.MX31: support GPIO as a chip-select in the mxc_spi driver
22481
22482 Some SPI devices have special requirements on chip-select handling.
22483 With this patch we can use a GPIO as a chip-select and strictly follow
22484 the SPI_XFER_BEGIN and SPI_XFER_END flags.
22485
22486 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22487 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22488
22489 commit b30de3cccf8867566cd314e7c7033904afa5dc9d
22490 Author: Guennadi Liakhovetski <lg@denx.de>
22491 Date: Sat Feb 7 01:18:07 2009 +0100
22492
22493 i.MX31: add a simple gpio driver
22494
22495 This is a minimal driver, so far only managing output. It will
22496 be used by the mxc_spi.c driver.
22497
22498 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22499 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22500
22501 commit f9b6a1575d9f1ca192e4cb60e547aa66f08baa3f
22502 Author: Guennadi Liakhovetski <lg@denx.de>
22503 Date: Sat Feb 7 00:09:12 2009 +0100
22504
22505 i.MX31: fix SPI driver for shorter than 32 bit
22506
22507 Fix setting the SPI Control register, 8 and 16-bit transfers
22508 and a wrong pointer in the free routine in the mxc_spi driver.
22509
22510 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
22511 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22512
22513 commit 7e91558032a0c1932dd7f4f562f9c7cc55efc496
22514 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22515 Date: Thu Feb 19 18:20:52 2009 +0300
22516
22517 mpc83xx: MPC837XERDB: Add PCIe support
22518
22519 On MPC8377E-RDB and MPC8378E-RDB boards we have PCIe and mini-PCIe
22520 slots. Let's support them.
22521
22522 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22523 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22524
22525 commit 50a4d08e8f31debbd4ea12caf1265f3643c38d5b
22526 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22527 Date: Thu Feb 19 18:20:50 2009 +0300
22528
22529 mpc83xx: PCI: Fix hard-coded first_busno value
22530
22531 We should use pci_last_busno() in pci_init_bus(), otherwise we'll
22532 erroneously re-use PCI0's first_busno for PCI1 hoses.
22533
22534 NOTE: The patch is untested. All MPC83xx FSL boards I have have
22535 PCI1 in miniPCI form, for which I don't have any cards handy.
22536
22537 But looking in cpu/mpc85xx/pci.c:
22538 ...
22539 #ifdef CONFIG_MPC85XX_PCI2
22540 hose = &pci_hose[1];
22541
22542 hose->first_busno = pci_hose[0].last_busno + 1;
22543
22544 And considering that we do the same for MPC83xx PCI-E support,
22545 I think this patch is correct.
22546
22547 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22548 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22549
22550 commit a5878d427128c1a9226045ebe05fbadaa02eb9dd
22551 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22552 Date: Thu Feb 19 18:20:46 2009 +0300
22553
22554 mpc83xx: PCI: Fix bus-range fdt fixups for PCI1 controllers
22555
22556 This patch fixes copy-paste issue: pci_hose[0]'s first and last
22557 busnos were used to fixup pci1's nodes.
22558
22559 We don't see this bug triggering only because Linux reenumerate
22560 buses anyway.
22561
22562 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22563 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22564
22565 commit b24a99f6666ac278ec9f9c1334518af828833d19
22566 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22567 Date: Thu Feb 19 18:20:44 2009 +0300
22568
22569 mpc83xx: PCIe: Fix CONFIG_PCI_SCAN_SHOW reporting bogus values
22570
22571 This patch fixes an issue in config space read accessors: we should
22572 fill-in the value even if we fail (e.g. skipping devices), otherwise
22573 CONFIG_PCI_SCAN_SHOW reports bogus values during boot up.
22574
22575 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22576 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22577
22578 commit e2d72ba543c7b6924b5b5d393dcd80b2b9c3a022
22579 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22580 Date: Thu Feb 19 18:20:42 2009 +0300
22581
22582 mpc83xx: PCIe: Don't start bus enumeration at 0
22583
22584 Currently we assign first_busno = 0 for the first PCIe hose, but this
22585 scheme won't work if we have ordinary PCI hose already registered (its
22586 first_busno value is 0 too).
22587
22588 The old code worked fine only because we have PCI disabled on
22589 MPC837XEMDS boards in stand-alone mode (see commit 00f7bbae92e3b13f2b3
22590 "mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards").
22591 But on MPC837XERDB boards we have PCI and PCIe, so the bug actually
22592 triggers.
22593
22594 So, to fix the issue, we should use pci_last_busno() + 1 for the
22595 first_busno (i.e. last available busno).
22596
22597 Reported-by: Huang Changming <Chang-Ming.Huang@freescale.com>
22598 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22599 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22600
22601 commit cc2a8c7751ddbae3116660064f446888538b93e9
22602 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
22603 Date: Thu Feb 19 18:20:41 2009 +0300
22604
22605 PCI: Add pci_last_busno() helper
22606
22607 This is just a handy routine that reports last PCI busno: we walk
22608 down all the hoses and return last hose's last_busno.
22609
22610 Will be used by PCI/PCIe initialization code.
22611
22612 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
22613 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22614
22615 commit bd76729bcbfd64b5d016a9b936f058931fc06eaf
22616 Author: Becky Bruce <beckyb@kernel.crashing.org>
22617 Date: Mon Feb 23 13:56:51 2009 -0600
22618
22619 MPC86xx: set CONFIG_MAX_MEM_MAPPED to 2G by default
22620
22621 Currently, we get 256MB as the default, but since all the 86xx
22622 board configs define a 2G BAT mapping for RAM, raise default
22623 to 2G.
22624
22625 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
22626 Acked-by: Jon Loeliger <jdl@freescale.com>
22627
22628 commit 2331e18b9df0ab98ebf3ab44c0efea1311949aaa
22629 Author: Becky Bruce <beckyb@kernel.crashing.org>
22630 Date: Thu Feb 12 10:43:32 2009 -0600
22631
22632 mpc8641hpcn: Indicate 36-bit addr map in boot messages
22633
22634 If 36-bit addressing is enabled, print a message on the console
22635 when we boot.
22636
22637 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
22638
22639 commit 58a518c3d8a2c7de11d414e8b903495daee7dc7e
22640 Author: Mark Jackson <mpfj-list@mimc.co.uk>
22641 Date: Fri Feb 13 15:48:18 2009 +0000
22642
22643 Setup extra MIMC200 chip selects
22644
22645 Added code to setup the extra Flash and FRAM chip selects as used on the
22646 MIMC200 board.
22647
22648 V2 moves the init code from the common "cpu.c" file into the board specific
22649 setup file.
22650
22651 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22652 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22653
22654 commit 80534886a72a0088eef9e781a8e0b7d04ea41f36
22655 Author: Mark Jackson <mpfj@mimc.co.uk>
22656 Date: Mon Nov 24 12:10:56 2008 +0000
22657
22658 MIMC200: tidy GCLK init code
22659
22660 Change the MIMC200 startup code to use the built-in (rather than
22661 hard-coded) funtions for setting up gclk outputs.
22662
22663 We'll also move the code to the new, more-appropriate
22664 board_postclk_init() routine.
22665
22666 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
22667 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22668
22669 commit b423f94063bf04e92047ff85c7e53441eb3b712b
22670 Author: Olav Morken <olavmrk@gmail.com>
22671 Date: Fri Jan 23 12:56:32 2009 +0100
22672
22673 AVR32: Must add NOPs after disabling interrupts for AT32UC3A0512ES
22674
22675 The AT32UC3A0512ES chip has a bug when disabling interrupts. As a
22676 workaround, two NOPs can be inserted.
22677
22678 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
22679 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
22680 Signed-off-by: Olav Morken <olavmrk@gmail.com>
22681 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22682
22683 commit f5f652fa91aa69db8117d211af1b4fe09f2edd3b
22684 Author: Gunnar Rangoy <gunnar@rangoy.com>
22685 Date: Fri Jan 23 12:56:29 2009 +0100
22686
22687 AVR32: Make GPIO implmentation cpu dependent
22688
22689 There are some differences in the implementation of GPIO in the
22690 at32uc chip compared to the ap700x series.
22691
22692 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
22693 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
22694 Signed-off-by: Olav Morken <olavmrk@gmail.com>
22695 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22696
22697 commit a38de083d2979db3680f0d0978c509a172c8fa00
22698 Author: Olav Morken <olavmrk@gmail.com>
22699 Date: Fri Jan 23 12:56:28 2009 +0100
22700
22701 AVR32: Move addrspace.h to arch-directory, and move some functions from io.h to addrspace.h
22702
22703 The AVR32A architecture (which AT32UC3A-series is based on) has a
22704 different memory layout than the AVR32B-architecture. This patch moves
22705 addrspace.h to an arch-dependent directory in preparation for
22706 AT32UC3A-support. It also moves some address-space manipulation
22707 functions from io.h to addrspace.h.
22708
22709 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
22710 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
22711 Signed-off-by: Olav Morken <olavmrk@gmail.com>
22712 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22713
22714 commit d8f2aa3298610b44127dbc4796d8038aa5847e0b
22715 Author: Olav Morken <olavmrk@gmail.com>
22716 Date: Fri Jan 23 12:56:27 2009 +0100
22717
22718 AVR32: Make cacheflush cpu-dependent
22719
22720 The AT32UC3A series of processors doesn't contain any cache, and issuing
22721 cache control instructions on those will cause an exception. This commit
22722 makes cacheflush.h arch-dependent in preparation for the AT32UC3A-support.
22723
22724 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
22725 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
22726 Signed-off-by: Olav Morken <olavmrk@gmail.com>
22727 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22728
22729 commit 2f70c49e5b9813635ad73666aa30f304c7fdeda9
22730 Author: Heiko Schocher <hs@denx.de>
22731 Date: Tue Feb 10 09:38:52 2009 +0100
22732
22733 netloop: speed up NetLoop
22734
22735 NetLoop polls every cycle with getenv some environment variables.
22736 This is horribly slow, especially when the environment is big.
22737
22738 This patch reads only the environment variables in NetLoop,
22739 when they were changed.
22740
22741 Also moved the init part of the NetLoop function in a seperate
22742 function.
22743
22744 Signed-off-by: Heiko Schocher <hs@denx.de>
22745 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22746
22747 commit ad2d16393e9f684e4a9255f42e8bfdd819b67a87
22748 Author: Mike Frysinger <vapier@gentoo.org>
22749 Date: Mon Dec 22 02:56:07 2008 -0500
22750
22751 smc911x_eeprom: new example app for managing newer SMC parts
22752
22753 A forward port of the last version to work with the newer smc911x driver.
22754 I only have a board with a LAN9218 part on it, so that is the only one
22755 I've tested. But there isn't anything in this that would make it terribly
22756 chip specific afaik.
22757
22758 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
22759 CC: Sascha Hauer <s.hauer@pengutronix.de>
22760 CC: Guennadi Liakhovetski <lg@denx.de>
22761 CC: Magnus Lilja <lilja.magnus@gmail.com>
22762 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22763
22764 commit 736323a490b664ec0edc3ddb2c1c4a6824db45c6
22765 Author: Pieter Henning <phenning@vastech.co.za>
22766 Date: Sun Feb 22 23:17:15 2009 -0800
22767
22768 Added Vitesse VSC8211 definitions to TSEC driver
22769
22770 Added the struct containing PHY settings for the Vitesse VSC8211 phy to
22771 the phy_info list in tsec.c
22772
22773 Signed-off-by: Pieter Henning <phenning@vastech.co.za>
22774 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22775
22776 commit 32688e572ff96715b41420e9a7f280db6c399b65
22777 Author: Wolfgang Denk <wd@denx.de>
22778 Date: Mon Feb 23 00:22:21 2009 +0100
22779
22780 Update CHANGELOG; Prepare 2009.03-rc1
22781
22782 Signed-off-by: Wolfgang Denk <wd@denx.de>
22783
22784 commit 80b827c2b78329c6503b271e43d9eb693d644710
22785 Author: Wolfgang Denk <wd@denx.de>
22786 Date: Sun Feb 22 23:45:40 2009 +0100
22787
22788 ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
22789
22790 The file was generated from building versatile_defconfig.
22791
22792 Signed-off-by: Wolfgang Denk <wd@denx.de>
22793
22794 commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
22795 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22796 Date: Sun Feb 22 14:24:11 2009 +0900
22797
22798 MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
22799
22800 Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
22801 like this:
22802
22803 skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
22804 Configuring for dbau1x00 board...
22805 au1x00_eth.c: In function 'au1x00_send':
22806 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22807 au1x00_eth.c: In function 'au1x00_recv':
22808 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22809 au1x00_eth.c: In function 'au1x00_init':
22810 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22811 au1x00_eth.c: In function 'au1x00_recv':
22812 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22813 au1x00_eth.c: In function 'au1x00_init':
22814 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22815 au1x00_eth.c: In function 'au1x00_send':
22816 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
22817
22818 We're passing a volatile pointer to a function which is expecting a non-
22819 volatile pointer. That's potentially dangerous, so gcc warns about it.
22820 Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
22821
22822 To fix this, we add a volatile attribute to the argument in question.
22823 The virt_to_phys function in Linux kernel also does the same thing.
22824
22825 Signed-off-by: Stefan Roese <sr@denx.de>
22826 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22827
22828 commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
22829 Author: Dirk Behme <dirk.behme@googlemail.com>
22830 Date: Fri Feb 20 17:51:28 2009 +0100
22831
22832 OMAP3: Clean up MMC code
22833
22834 Clean up OMAP3 MMC code:
22835
22836 * Convert register access to struct & readx/writex style
22837 * Replace hardcode values by macros
22838 * Remove macro defined twice
22839
22840 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22841
22842 commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
22843 Author: Dirk Behme <dirk.behme@googlemail.com>
22844 Date: Thu Feb 12 18:55:43 2009 +0100
22845
22846 OMAP3: Pandora: Update pin mux
22847
22848 Clock pin must have input enabled for MMC3 to work.
22849 Also enable pull-ups for cmd/data lines to be consistent
22850 with remaining MMC host pin setup.
22851
22852 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
22853
22854 commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
22855 Author: Dirk Behme <dirk.behme@googlemail.com>
22856 Date: Thu Feb 12 18:55:42 2009 +0100
22857
22858 OMAP3: Add OMAP3 auto detection
22859
22860 This patch adds OMAP3 cpu type auto detection based on OMAP3 register
22861 and removes hardcoded values.
22862
22863 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
22864 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22865
22866 commit f956fd0338f4990793a10f767929ba4963665261
22867 Author: Dirk Behme <dirk.behme@googlemail.com>
22868 Date: Thu Feb 12 18:55:41 2009 +0100
22869
22870 OMAP3: Beagle: Add board revision detection
22871
22872 With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
22873 which might need different software handling. For this, GPIO pin 171 (GPIO
22874 module 6, offset 11) can be used to check for board revision. If this pin
22875 is low, we have a rev C board. Else it must be a revision Ax or Bx board.
22876
22877 To handle board differences you can call function beagle_get_revision().
22878 E.g.:
22879
22880 if (beagle_get_revision()) {
22881
22882 /* do special revision C stuff here */
22883
22884 }
22885
22886 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22887
22888 commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
22889 Author: Dirk Behme <dirk.behme@googlemail.com>
22890 Date: Thu Feb 12 18:55:40 2009 +0100
22891
22892 OMAP3: Overo: Clean up pin mux and GPIO configuration
22893
22894 * Make Overo GPIO114 an input for touchscreen PENDOWN
22895 * Make Overo GPIO144-147 readable
22896 * Make Overo EHCI pinmux match beagle rev c setup
22897 * Adjust pinmux for SMSC911X network chip support
22898 * Remove unnecessary GPIO setup
22899 * Fix merge error in Makefile
22900
22901 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
22902 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
22903
22904 commit 2579019b8248e5f166e60e37065766efc8a49dbc
22905 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22906 Date: Sun Feb 22 17:08:41 2009 +0100
22907
22908 nmdk8815: fix onenand support
22909
22910 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22911
22912 commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
22913 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22914 Date: Sun Feb 22 17:56:50 2009 +0100
22915
22916 nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
22917
22918 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22919
22920 commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
22921 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22922 Date: Sun Feb 22 17:49:43 2009 +0100
22923
22924 davinci: fix implicit declaration of function 'davinci_errata_workarounds'
22925
22926 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22927
22928 commit 4f5728987f4f9f7845688482aa2b7f2127768165
22929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22930 Date: Sun Feb 22 15:49:28 2009 +0100
22931
22932 arm: add uart dcc support
22933
22934 Serial driver via the EmbeddedICE macrocell's DCC channel using
22935 co-processor 14.
22936
22937 It does include a timeout to ensure that the system does not
22938 totally freeze when there is nothing connected to read.
22939
22940 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22941
22942 commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
22943 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
22944 Date: Fri Nov 21 14:35:56 2008 -0500
22945
22946 ARM DaVinci: Add common peripherals and modules enable functions.
22947
22948 Taken all the duplicated code for enabling common modules and apply
22949 software workarounds from the board specific code into common
22950 functions. Also added comments explaining the workarounds
22951 (from TI errata documents) and replaced some numerical bit numbers
22952 with more meaningful defines.
22953
22954 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
22955
22956 commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
22957 Author: Alessandro Rubini <rubini@unipv.it>
22958 Date: Mon Feb 9 15:53:33 2009 +0100
22959
22960 Enable Ethernet for Nomadik 8815 Evaluation Kit
22961
22962 This trivially enables Ethernet support in the debug board
22963 by setting up the proper chip select.
22964
22965 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
22966 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
22967
22968 commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
22969 Author: Alessandro Rubini <rubini@unipv.it>
22970 Date: Mon Feb 9 15:53:31 2009 +0100
22971
22972 Nand driver for Nomadik SoC
22973
22974 This driver implements the ECC algorithm described in
22975 the CPU data sheet and uses the OOB layout chosen in
22976 already-released development systems (shipped with a custom-made
22977 u-boot 1.3.1).
22978
22979 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
22980 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
22981
22982 commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
22983 Author: Alessandro Rubini <rubini@unipv.it>
22984 Date: Mon Feb 9 15:53:31 2009 +0100
22985
22986 Added nomadik.h header
22987
22988 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
22989 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
22990
22991 commit 60ece6d8043d1dd80f5dd32c541213716d624b19
22992 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
22993 Date: Wed Oct 29 20:05:18 2008 +0900
22994
22995 r8a66597-hcd: fix cannot use external hub
22996
22997 Fix the problem that cannot use external hub, because this driver
22998 did not control correctly a DEVADDx register.
22999
23000 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
23001 Signed-off-by: Remy Bohmer <linux@bohmer.net>
23002
23003 commit e1ffaee728190e76a4596a3579d94e730143585f
23004 Author: Mike Frysinger <vapier@gentoo.org>
23005 Date: Thu Feb 19 01:20:27 2009 -0500
23006
23007 Blackfin: disable syscontrol code for now
23008
23009 Looks like the initcode updates fell out of order during my merges. The
23010 patch that really fixes up this code is part of power-on overhaul and so
23011 is too large for merging at this point. Instead, we can disable the code
23012 as no currently in-tree board depends on it. The next merge window will
23013 fix things up properly.
23014
23015 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23016
23017 commit 1b228d68f54832edd867ef98520f760f68192ab7
23018 Author: Mike Frysinger <vapier@gentoo.org>
23019 Date: Thu Feb 19 01:19:49 2009 -0500
23020
23021 Blackfin: bf537-stamp: fix I2C board defines
23022
23023 The previous merge for cleaning up the I2C driver incorrectly reverted the
23024 CFG_xxx rename for some of the I2C defines.
23025
23026 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23027 Signed-off-by: Heiko Schocher <hs@denx.de>
23028
23029 commit 09fee8e8677a6265e89144ccc163bf00e321769e
23030 Author: Wolfgang Denk <wd@denx.de>
23031 Date: Sun Feb 22 01:19:52 2009 +0100
23032
23033 Coding Style cleanup; update CHANGELOG
23034
23035 Signed-off-by: Wolfgang Denk <wd@denx.de>
23036
23037 commit 1dcb50afbb63a439320a985380a0af2dca079d1e
23038 Author: Wolfgang Denk <wd@denx.de>
23039 Date: Sun Feb 22 01:17:47 2009 +0100
23040
23041 Makefile: fix cleanup
23042
23043 Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
23044 to adapt the cleanup rules in the Makefile
23045
23046 Signed-off-by: Wolfgang Denk <wd@denx.de>
23047
23048 commit edff7bcc4d5540df8b416274652ff02e94c38b9e
23049 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
23050 Date: Fri Feb 20 13:01:56 2009 -0500
23051
23052 Cleanup the comment for m68k linux boot argument passing.
23053
23054 This patch clarifies the way m68k passes linux boot argument.
23055 The one gotcha here is that the assembly instruction that
23056 the compiler uses to jump to the kernel is 'jsr' which pushes the
23057 program counter for the instruction after the jsr into the stack pointer.
23058
23059 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
23060 Signed-off-by: Wolfgang Denk <wd@denx.de>
23061
23062 commit 4d41650eec959668280a612467bd95c7b8398513
23063 Author: Peter Griffin <pgriffin@mpc-data.co.uk>
23064 Date: Tue Feb 10 16:44:45 2009 +0000
23065
23066 sh: Fix rsk7203 in tree build
23067
23068 Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
23069
23070 commit fca0cecff73db99d99ad094cca7980472b8a11b5
23071 Author: Minkyu Kang <mk7.kang@samsung.com>
23072 Date: Wed Feb 18 09:05:52 2009 +0900
23073
23074 bootm: Reduce the unnecessary memmove
23075
23076 Although load address and image start address are same address,
23077 bootm command always does memmove.
23078 That is unnecessary memmove and can be taken few milliseconds
23079 (about 500 msec to 1000 msec).
23080 If skip this memmove, we can reduce the boot time.
23081
23082 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
23083
23084 commit 670cbde8da83690fed1064c3358f54ae1d693ed2
23085 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
23086 Date: Sun Feb 15 22:29:15 2009 +0100
23087
23088 fpga: Fix Spartan III FPGA booting
23089
23090 This patch does some minor fixing of the Xilinx Spartan III
23091 FPGA boot code:
23092
23093 - Fixed call order of post configuration callback and
23094 success message printing (result of copy-paste?)
23095 - remove obsolete comment
23096 - minor coding style cleanup
23097
23098 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23099
23100 commit 3818b677641038d27b2663fbd6771ad38c932f86
23101 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
23102 Date: Sun Feb 15 22:28:36 2009 +0100
23103
23104 fpga: Fix Spartan II FPGA booting
23105
23106 This patch does some minor fixing of the Xilinx Spartan II
23107 FPGA boot code:
23108
23109 - Fixed call order of post configuration callback and
23110 success message printing (result of copy-paste?)
23111 - relocate post configuration callback only when it
23112 is implemented
23113 - remove obsolete comment
23114 - minor coding style cleanup
23115
23116 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23117
23118 commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
23119 Author: Mike Frysinger <vapier@gentoo.org>
23120 Date: Wed Feb 11 20:26:52 2009 -0500
23121
23122 drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
23123
23124 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23125
23126 commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
23127 Author: Derek Ou <dou@siconix.com>
23128 Date: Tue Feb 3 16:00:07 2009 -0700
23129
23130 lcd_putc bug fix for tab.
23131
23132 Signed-off-by: Derek Ou <dou@siconix.com>
23133
23134 commit 35c9e14d8096e519fe76c953a43d52a09617345c
23135 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23136 Date: Mon Feb 2 09:46:21 2009 +0900
23137
23138 MIPS: cpu/mips/Makefile: Add a missing START line
23139
23140 In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
23141 Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
23142 line. This patch puts it back.
23143
23144 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
23145
23146 commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
23147 Author: Wolfgang Denk <wd@denx.de>
23148 Date: Sat Feb 21 21:51:21 2009 +0100
23149
23150 Enable ext2 support for TQM8xxL/M based boards
23151
23152 Signed-off-by: Wolfgang Denk <wd@denx.de>
23153
23154 commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
23155 Author: Tom Rix <Tom.Rix@windriver.com>
23156 Date: Fri Feb 20 03:47:50 2009 +0100
23157
23158 ARM:PXA Use new definitions in mmc.h
23159
23160 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
23161 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23162
23163 commit 682beeac34dc9ab18fab58b26973d2e29d113717
23164 Author: Andy Fleming <afleming@freescale.com>
23165 Date: Fri Feb 20 03:47:50 2009 +0100
23166
23167 Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
23168
23169 These names are being taken over by the new MMC framework. Hopefuly
23170 the PXA can be easily ported, and these functions will go away entirely.
23171
23172 Signed-off-by: Andy Fleming <afleming@freescale.com>
23173 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23174
23175 commit b03d92e5584935886ff91d5aa0755dc8888b7187
23176 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23177 Date: Fri Feb 20 03:47:50 2009 +0100
23178
23179 pxa: move mmc drivers to drivers/mmc
23180
23181 introduce new macro CONFIG_PXA_MMC to activate it
23182
23183 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23184
23185 commit 9490f465642c80c054854689a2ef1a77d65cf1f3
23186 Author: Tom Rix <Tom.Rix@windriver.com>
23187 Date: Thu Feb 19 19:27:22 2009 -0600
23188
23189 ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
23190
23191 These structures are defined in the common mmc.h
23192
23193 This was compile checked on cerf250.
23194
23195 commit 94a3312920b6f9b5da27309549fb73650718c10a
23196 Author: Micha Kalfon <smichak.uv@gmail.com>
23197 Date: Wed Feb 11 19:50:11 2009 +0200
23198
23199 pxa: fixing get_timer to return time in miliseconds.
23200
23201 Fixing the get_timer function to return time in miliseconds instead of
23202 ticks. Also fixed PXA boards to use the conventional value of 1000 for
23203 CONFIG_SYS_HZ.
23204
23205 Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
23206
23207 commit e5e88c3614b79b54719905f66aefb51f9494bc1f
23208 Author: Tom Rix <Tom.Rix@windriver.com>
23209 Date: Thu Feb 19 16:45:43 2009 -0600
23210
23211 ARM:OMAP3 Change mmc_init to mmc_legacy_init
23212
23213 omap3_mmc.c was changed to define mmc_legacy_init.
23214 Remove unused functions.
23215
23216 Compile tested on all arm
23217 Runtime tested on Zoom1.
23218
23219 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
23220
23221 commit 9e80bb21629988063574f88ca0d28baadff4d963
23222 Author: Heiko Schocher <hs@denx.de>
23223 Date: Thu Feb 19 17:23:58 2009 +0100
23224
23225 82xx, mgcoge: updates for 2009.03
23226
23227 - activate CS4 for accessing the FPGA
23228 - activate Rx buf len > 1 on SMC
23229 - pram activated
23230 - MTDPARTS_DEFAULT defined
23231 - update the size of the flashes in the DTS
23232 before booting Linux
23233 - MONITOR_LEN updated to 384k
23234 - added CONFIG_HOSTNAME
23235 - added CONFIG_ENV_BUFFER_PRINT
23236 - Environment size reduced to 16k
23237
23238 Signed-off-by: Heiko Schocher <hs@denx.de>
23239
23240 commit df909554e2401f307925e1bd45d576e4176d9de9
23241 Author: Heiko Schocher <hs@denx.de>
23242 Date: Thu Feb 19 17:24:01 2009 +0100
23243
23244 8xx, mgsuvd: updates for 2009.03
23245
23246 - activate Rx buf len > 1 on SMC
23247 - pram activated
23248 - MTDPARTS_DEFAULT defined
23249 - update the size of the flash in the DTS
23250 before booting Linux
23251 - MONITOR_LEN updated to 384k
23252 - added CONFIG_HOSTNAME
23253 - added CONFIG_ENV_BUFFER_PRINT
23254 - Environment size reduced to 16k
23255
23256 Signed-off-by: Heiko Schocher <hs@denx.de>
23257
23258 commit 3511b4e208e12be85b532866f1c660aa2e021557
23259 Author: Dirk Behme <dirk.behme@googlemail.com>
23260 Date: Wed Feb 18 19:59:39 2009 +0100
23261
23262 MMC: Don't use new framework code if not enabled
23263
23264 Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
23265 isn't enabled.
23266
23267 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
23268
23269 commit 32482be67775e00b4cbc49fba62347c1ecc6229c
23270 Author: Wolfgang Denk <wd@denx.de>
23271 Date: Thu Feb 19 13:53:29 2009 +0100
23272
23273 TQM8xxL: make some room in low memory for future needs
23274
23275 THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
23276 small boot sectors in the flash. This patch makes some room in the
23277 first sector to prepare for a size increase of lib_generic/vsprintf.o
23278 by a future patch.
23279
23280 Signed-off-by: Wolfgang Denk <wd@denx.de>
23281
23282 commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
23283 Author: Kim Phillips <kim.phillips@freescale.com>
23284 Date: Wed Feb 18 18:06:18 2009 -0600
23285
23286 README: remove duplicate entry
23287
23288 it's been around since the original commit (2ad6b513) that added two
23289 identical entries.
23290
23291 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23292
23293 commit 1bba30efe1717bea13026e15c7c7d906419fac69
23294 Author: Wolfgang Denk <wd@denx.de>
23295 Date: Thu Feb 19 00:41:08 2009 +0100
23296
23297 Coding style cleanup, update CHANGELOG
23298
23299 Signed-off-by: Wolfgang Denk <wd@denx.de>
23300
23301 commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
23302 Author: Kim Phillips <kim.phillips@freescale.com>
23303 Date: Wed Feb 18 17:43:59 2009 -0600
23304
23305 sata_sil3114: fix compiler warning
23306
23307 judging from other printfs in the same file, it seems ata should be
23308 postpended with the interface number, not the address of the global
23309 port variable. Fixes this for current u-boot-mpc83xx tree:
23310
23311 Configuring for MPC8349ITX board...
23312 sata_sil3114.c: In function 'sata_bus_softreset':
23313 sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
23314 sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
23315
23316 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23317
23318 commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
23319 Author: Ron Madrid <ron_madrid@sbcglobal.net>
23320 Date: Wed Feb 18 14:30:44 2009 -0800
23321
23322 Create configuration option for restricted ns16550 functions
23323
23324 This patch will create a configuration option for a minimum configuration for
23325 the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
23326 configuration option to the SIMPC8313.h config file in order to fix the NAND
23327 bootstrap build error. This option will exclude all functions with exception of
23328 NS16550_putc and NS16550_init. This will be used primarily to save space and
23329 remove unused code from builds in which space is limited.
23330
23331 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
23332
23333 commit 7b0bc0219db8981613259473cf19699ac259b4fb
23334 Author: Kim Phillips <kim.phillips@freescale.com>
23335 Date: Wed Feb 18 16:14:29 2009 -0600
23336
23337 mkconfig: include board config.h before asm/config.h
23338
23339 swapping the include order suppresses warnings for board configs
23340 that define their own CONFIG_MAX_MEM_MAPPED:
23341
23342 In file included from /home/r1aaha/git/u-boot/include/config.h:5,
23343 from /home/r1aaha/git/u-boot/include/common.h:35,
23344 from simpc8313.c:26:
23345 /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
23346 "CONFIG_MAX_MEM_MAPPED" redefined
23347 In file included from /home/r1aaha/git/u-boot/include/config.h:4,
23348 from /home/r1aaha/git/u-boot/include/common.h:35,
23349 from simpc8313.c:26:
23350 /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
23351 the location of the previous definition
23352
23353 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23354
23355 commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
23356 Author: Wolfgang Denk <wd@denx.de>
23357 Date: Wed Feb 18 21:35:38 2009 +0100
23358
23359 Fix build errors after making flash_get_info() non-static
23360
23361 Fix for these build problems:
23362 error: static declaration of 'flash_get_info' follows non-static declaration
23363
23364 Signed-off-by: Wolfgang Denk <wd@denx.de>
23365
23366 commit b4996d6b2140e5da7f1c346f37a67b19907b307a
23367 Author: Stefan Roese <sr@denx.de>
23368 Date: Wed Feb 18 13:18:00 2009 +0100
23369
23370 ppc4xx: PCIe: Change 16GB inbound memory to 4GB
23371
23372 This patch fixes a problem recently seen on some 4xx platforms. For
23373 example on Kilauea PCIe slot #0.
23374
23375 Signed-off-by: Stefan Roese <sr@denx.de>
23376
23377 commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
23378 Author: Stefan Roese <sr@denx.de>
23379 Date: Wed Feb 18 14:05:37 2009 +0100
23380
23381 ppc4xx: Some more PMC405 coding-style cleanup
23382
23383 Signed-off-by: Stefan Roese <sr@denx.de>
23384
23385 commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
23386 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
23387 Date: Sun Feb 15 22:27:47 2009 +0100
23388
23389 ppc4xx: Update PMC405 board support
23390
23391 This patch prepares the good old PMC405 board support for
23392 upcoming PMC405V2 patches.
23393
23394 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23395 Signed-off-by: Stefan Roese <sr@denx.de>
23396
23397 commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
23398 Author: Matthias Fuchs <matthias.fuchs@esd.eu>
23399 Date: Sun Feb 15 22:26:54 2009 +0100
23400
23401 ppc4xx: Cleanup PMC405 board support
23402
23403 This patch fixes coding style for PMC405 board support.
23404 Also some unneeded features/code is removed.
23405
23406 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
23407 Signed-off-by: Stefan Roese <sr@denx.de>
23408
23409 commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
23410 Author: Ilya Yanok <yanok@emcraft.com>
23411 Date: Thu Feb 5 04:08:20 2009 +0100
23412
23413 qong: changes to Dave/DENX Qong configuration
23414
23415 1. Changes to the default environment:
23416 - "bootcmd" defined as "run flash_self"
23417 - "saveenv" command removed from "update"
23418 - "uboot" changed to "u-boot" (also in "load")
23419 - "addmtd" variable defined (and added to all boot commands)
23420 2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
23421 3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
23422 4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
23423 with truncated "bootargs" environment variable.
23424
23425 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
23426
23427 commit 5f0320108870e5d62983d1d5c13a2a087dddf686
23428 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23429 Date: Sun Feb 1 17:07:52 2009 +0100
23430
23431 common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
23432
23433 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23434
23435 commit ec6f14994602276660f7264c6ab3b91ef1f7614d
23436 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23437 Date: Sun Feb 1 17:07:51 2009 +0100
23438
23439 common/console: coding style cleanup
23440
23441 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23442
23443 commit daaf74f176b548dfd34a9990231f4189201d57ba
23444 Author: Mike Frysinger <vapier@gentoo.org>
23445 Date: Thu Jan 29 20:02:23 2009 -0500
23446
23447 mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
23448
23449 Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
23450 into the Makefile so we avoid pointless compiling of the file.
23451
23452 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23453
23454 commit 7bd2722e890bc877a3c057d7ccddc80451c99939
23455 Author: Mike Frysinger <vapier@gentoo.org>
23456 Date: Thu Jan 29 20:02:07 2009 -0500
23457
23458 disk: convert part_* files to COBJ-$(CONFIG_XXX) style
23459
23460 Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
23461 avoid pointless compiles.
23462
23463 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23464
23465 commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
23466 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
23467 Date: Thu Jan 29 10:35:40 2009 +0200
23468
23469 include/image.h: Ease grepping of image_* functions
23470
23471 Because the functions have been defined using macros, grepping for
23472 their definitions is not possible. This patch adds the real function
23473 names in comments.
23474
23475 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
23476 Acked-by: Mike Frysinger <vapier@gentoo.org>
23477
23478 commit bdab39d358e63aa47f400a8a76b8d5f283842df3
23479 Author: Mike Frysinger <vapier@gentoo.org>
23480 Date: Wed Jan 28 19:08:14 2009 -0500
23481
23482 rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
23483
23484 The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
23485 rather than a generic "env" command, or anything else related to the
23486 environment. So, let's make sure the define is named accordingly.
23487
23488 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23489
23490 commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
23491 Author: Valeriy Glushkov <gvv@lstec.com>
23492 Date: Fri Jan 23 20:02:17 2009 +0200
23493
23494 disable imls command if no flash is defined
23495
23496 Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
23497
23498 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
23499
23500 commit 923aa48126259c13de95131203f1d28bfa5cb889
23501 Author: Rafal Jaworowski <raj@semihalf.com>
23502 Date: Fri Jan 23 13:27:18 2009 +0100
23503
23504 API: Improve glue mid-layer of the API demo application.
23505
23506 - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
23507 read, which allows for better control and error handling (this introduces
23508 additional error code API_ESYSC returned by the glue mid-layer).
23509
23510 - Clean up definitions naming and usage.
23511
23512 - Other minor cosmetics.
23513
23514 Note these changes do not touch the API proper, so the interface between
23515 U-Boot and standalone applications remains unchanged.
23516
23517 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
23518
23519 commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
23520 Author: Rafal Jaworowski <raj@semihalf.com>
23521 Date: Fri Jan 23 13:27:17 2009 +0100
23522
23523 API: Only output test data when reading was successful.
23524
23525 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23526
23527 commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
23528 Author: Rafal Jaworowski <raj@semihalf.com>
23529 Date: Fri Jan 23 13:27:16 2009 +0100
23530
23531 API: Provide syscall entry point for the ARM architecture.
23532
23533 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23534 Acked-by: Rafal Jaworowski <raj@semihalf.com>
23535
23536 commit b84d7d8f1e1066f810866304a16a3583f88e7c98
23537 Author: Rafal Jaworowski <raj@semihalf.com>
23538 Date: Fri Jan 23 13:27:15 2009 +0100
23539
23540 API: Use stack pointer as API signature search hint in the glue layer.
23541
23542 De-hardcode range in RAM we search for the API signature. Instead use the stack
23543 pointer as a hint to narrow down the range in which the signature could reside
23544 (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
23545 from stack area). Adjust PowerPC code in API demo to the new scheme.
23546
23547 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
23548 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
23549
23550 commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
23551 Author: Wolfgang Denk <wd@denx.de>
23552 Date: Tue Feb 17 10:26:38 2009 +0100
23553
23554 TQM8260: fix locations of kernel and ramdisk images in flash
23555
23556 After introducing redundant environment the kernel images was
23557 overlapping with environment.
23558
23559 Signed-off-by: Wolfgang Denk <wd@denx.de>
23560
23561 commit 2b68b23373f96199a0cafbfd7a9f79ed62381ebb
23562 Author: Heiko Schocher <hs@denx.de>
23563 Date: Wed Feb 11 19:26:15 2009 +0100
23564
23565 83xx: add missing TIMING_CFG1_CASLAT_* defines
23566
23567 Signed-off-by: Heiko Schocher <hs@denx.de>
23568 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23569
23570 commit c9e34fe2e86f7b6cc8260f4b24cbdc7dd81e04c5
23571 Author: Valeriy Glushkov <gvv@lstec.com>
23572 Date: Thu Feb 5 14:35:21 2009 +0200
23573
23574 mpc8349itx: allow SATA boot from the onboard SIL1334
23575
23576 This patch allows using of SATA devices connected
23577 to the onboard PCI SIL1334 SATA controller.
23578
23579 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
23580 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
23581
23582 commit e1ac387f4645499746856adc1aeaa9787da2eca6
23583 Author: Andy Fleming <afleming@freescale.com>
23584 Date: Thu Oct 30 16:50:14 2008 -0500
23585
23586 83xx: Add eSDHC support on 8379 EMDS board
23587
23588 Signed-off-by: Andy Fleming <afleming@freescale.com>
23589
23590 commit 80522dc8369a89938369fbcee572e662373bc9a3
23591 Author: Andy Fleming <afleming@freescale.com>
23592 Date: Thu Oct 30 16:51:33 2008 -0500
23593
23594 85xx: Add eSDHC support for 8536 DS
23595
23596 Signed-off-by: Andy Fleming <afleming@freescale.com>
23597
23598 commit 50586ef24ed5caf6ce5591df76f355009da2cd79
23599 Author: Andy Fleming <afleming@freescale.com>
23600 Date: Thu Oct 30 16:47:16 2008 -0500
23601
23602 Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
23603
23604 This uses the new MMC framework
23605
23606 Some contributions by Dave Liu <daveliu@freescale.com>
23607
23608 Signed-off-by: Andy Fleming <afleming@freescale.com>
23609
23610 commit 272cc70b211e945e4413122aa73868f6ada732a5
23611 Author: Andy Fleming <afleming@freescale.com>
23612 Date: Thu Oct 30 16:41:01 2008 -0500
23613
23614 Add MMC Framework
23615
23616 Here's a new framework (based roughly off the linux one) for managing
23617 MMC controllers. It handles all of the standard SD/MMC transactions,
23618 leaving the host drivers to implement only what is necessary to
23619 deal with their specific hardware.
23620
23621 This also hooks the infrastructure into the PowerPC board code
23622 (similar to how the ethernet infrastructure now hooks in)
23623
23624 Some of this code was contributed by Dave Liu <daveliu@freescale.com>
23625
23626 Signed-off-by: Andy Fleming <afleming@freescale.com>
23627
23628 commit 1de97f9856f697380cc504126ab92561ed238803
23629 Author: Andy Fleming <afleming@freescale.com>
23630 Date: Thu Oct 30 16:31:39 2008 -0500
23631
23632 Eliminated arch-specific mmc header requirement
23633
23634 The current MMC infrastructure relies on the existence of an
23635 arch-specific header file. This isn't necessary, and a couple
23636 drivers were forced to implement dummy files to meet this requirement.
23637 Instead, we move the stuff in those header files into a more appropriate
23638 place, and eliminate the stubs and the #include of asm/arch/mmc.h
23639
23640 Signed-off-by: Andy Fleming <afleming@freescale.com>
23641
23642 commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
23643 Author: Andy Fleming <afleming@freescale.com>
23644 Date: Thu Oct 30 16:21:00 2008 -0500
23645
23646 Convert mmc_init to mmc_legacy_init
23647
23648 This is to get it out of the way of incoming MMC framework
23649
23650 Signed-off-by: Andy Fleming <afleming@freescale.com>
23651
23652 commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
23653 Author: Andy Fleming <afleming@freescale.com>
23654 Date: Thu Oct 30 16:19:25 2008 -0500
23655
23656 Eliminate support for using MMC as memory
23657
23658 MMC cards are not memory, so we stop treating them that way.
23659
23660 Signed-off-by: Andy Fleming <afleming@freescale.com>
23661
23662 commit e1be0d25ecf494ae81245ca438738ba839d6329b
23663 Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
23664 Date: Sun Jan 4 08:46:38 2009 +0530
23665
23666 32bit BUg fix for DDR2 on 8572
23667
23668 This errata fix is required for 32 bit DDR2 controller on 8572.
23669 May also be required for P10XX20XX platforms
23670
23671 Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
23672
23673 commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
23674 Author: Andy Fleming <afleming@freescale.com>
23675 Date: Mon Feb 16 09:40:20 2009 -0600
23676
23677 TQM85xx: Fix a couple warnings in TQM8548 build
23678
23679 The ecm variable in sdram.c was being declared for all 8548, but only
23680 used by specific 8548 boards, so we make that variable require those
23681 specific boards, too
23682
23683 The nand code was using an index "i" into a table, and then re-using "i"
23684 to set addresses for each upm. However, then it relied on the old value
23685 of i still being there to enable things. Changed the second "i" to "j"
23686
23687 Signed-off-by: Andy Fleming <afleming@freescale.com>
23688
23689 commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
23690 Author: Wolfgang Grandegger <wg@grandegger.com>
23691 Date: Wed Feb 11 18:38:26 2009 +0100
23692
23693 MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
23694
23695 This patch adds the workaround for erratum DDR20 according to MPC8548
23696 Device Errata document, Rev. 1: "CKE signal may not function correctly
23697 after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
23698 processor version 2.1 and the work-around must be removed.
23699
23700 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23701
23702 commit 080408fdc71706adcb883d22125637c54f6010b1
23703 Author: Wolfgang Grandegger <wg@grandegger.com>
23704 Date: Wed Feb 11 18:38:25 2009 +0100
23705
23706 MPC85xx: TQM8548: use cache for AG and BE variants
23707
23708 This patch makes accesses to the system memory cachable by removing the
23709 caching-inhibited and guarded flags from the relevant TLB entries for
23710 the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
23711 are configured similarly.
23712
23713 This results in a big averall performace improvement. TFTP downloads,
23714 NAND Flash accesses, kernel boots, etc. are much faster.
23715
23716 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23717
23718 commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
23719 Author: Wolfgang Grandegger <wg@grandegger.com>
23720 Date: Wed Feb 11 18:38:24 2009 +0100
23721
23722 MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
23723
23724 This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
23725 module.
23726
23727 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
23728 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23729
23730 commit 88b0e88d186479349e5a2b771e82775109e10fb4
23731 Author: Wolfgang Grandegger <wg@grandegger.com>
23732 Date: Wed Feb 11 18:38:23 2009 +0100
23733
23734 MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
23735
23736 According to new TQM8548 timing specification:
23737 Refresh Recovery: 34 -> 53 clocks
23738 CKE pulse width: 1 -> 3 cycles
23739 Window for four activities: 13 -> 14 cycles
23740
23741 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
23742 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23743
23744 commit a865bcdac89278cac4dfc07dec8299403110499d
23745 Author: Wolfgang Grandegger <wg@grandegger.com>
23746 Date: Wed Feb 11 18:38:22 2009 +0100
23747
23748 MPC85xx: TQM8548: add support for the TQM8548_AG module
23749
23750 The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
23751 CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
23752 with "$ make TQM8548_AG_config".
23753
23754 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23755
23756 commit ad7ee5d43b0db94079d56521dabca25674f28747
23757 Author: Wolfgang Grandegger <wg@grandegger.com>
23758 Date: Wed Feb 11 18:38:21 2009 +0100
23759
23760 MPC85xx: TQM8548: add support for the TQM8548_BE module
23761
23762 The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
23763 interface. With NAND support, the image is significantly larger and
23764 TEXT_BASE is adjusted accordingly. U-Boot can be built for this
23765 module with "$ make TQM8548_BE_config".
23766
23767 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23768
23769 commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
23770 Author: Wolfgang Grandegger <wg@grandegger.com>
23771 Date: Wed Feb 11 18:38:20 2009 +0100
23772
23773 MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
23774
23775 The TQM8548_AG module does not have the standard PCI/PCI-X interface
23776 connected but just the PCI Express interface . So far it was not
23777 possible to disable it without disabling the complete PCI interface
23778 (CONFIG_PCI) including PCI Express.
23779
23780 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23781
23782 commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
23783 Author: Wolfgang Grandegger <wg@grandegger.com>
23784 Date: Wed Feb 11 18:38:19 2009 +0100
23785
23786 MPC85xx: TQM85xx: fix flash protection for boot loader
23787
23788 As the reset vector is located at 0xfffffffc, all flash sectors from the
23789 beginning of the U-Boot binary to 0xffffffff must be protected. On the
23790 TQM8548-AG having small sectors at the end of the flash it happened that
23791 the last two sector were not protected and an "erase all" left an
23792 un-bootable system behind:
23793
23794 Bank # 2: CFI conformant FLASH (32 x 16) Size: 32 MB in 270 Sectors
23795 AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
23796 Erase timeout: 8192 ms, write timeout: 1 ms
23797
23798 FFFA0000 E RO FFFC0000 RO FFFE0000 RO FFFE4000 RO FFFE8000 RO
23799 FFFEC000 RO FFFF0000 RO FFFF4000 RO FFFF8000 E FFFFC000
23800
23801 The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
23802 board BSPs as well.
23803
23804 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
23805
23806 commit a1c8a719262151f97119e76166043ee3da3f97b2
23807 Author: Peter Tyser <ptyser@xes-inc.com>
23808 Date: Fri Feb 6 14:30:40 2009 -0600
23809
23810 86xx: Update CPU info output on bootup
23811
23812 - Update style of 86xx CPU information on boot to more closely
23813 match 85xx boards
23814 - Fix detection of 8641/8641D
23815 - Use strmhz() to display frequencies
23816 - Display L1 information
23817 - Display L2 cache size
23818 - Fixed CPU/SVR version output
23819
23820 == Before ==
23821 Freescale PowerPC
23822 CPU:
23823 Core: E600 Core 0, Version: 0.2, (0x80040202)
23824 System: Unknown, Version: 2.1, (0x80900121)
23825 Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
23826 L2: Enabled
23827 Board: X-ES XPedite5170 3U VPX SBC
23828
23829 == After ==
23830 CPU: 8641D, Version: 2.1, (0x80900121)
23831 Core: E600 Core 0, Version: 2.2, (0x80040202)
23832 Clock Configuration:
23833 CPU:1066.667 MHz, MPX:533.333 MHz
23834 DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
23835 L1: D-cache 32 KB enabled
23836 I-cache 32 KB enabled
23837 L2: 512 KB enabled
23838 Board: X-ES XPedite5170 3U VPX SBC
23839
23840 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23841
23842 commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
23843 Author: Peter Tyser <ptyser@xes-inc.com>
23844 Date: Thu Feb 5 11:25:24 2009 -0600
23845
23846 86xx: Update Global Utilities structure
23847
23848 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23849
23850 commit 4ef630df773e45806d701bf5d25c328778bb4cde
23851 Author: Peter Tyser <ptyser@xes-inc.com>
23852 Date: Thu Feb 5 11:25:25 2009 -0600
23853
23854 86xx: Reset update
23855
23856 Update the 86xx reset sequence to try executing a board-specific reset
23857 function. If the board-specific reset is not implemented or does not
23858 succeed, then assert #HRESET_REQ. Using #HRESET_REQ is a more standard
23859 reset procedure than the previous method and allows all board
23860 peripherals to be reset if needed.
23861
23862 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
23863
23864 commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
23865 Author: Kumar Gala <galak@kernel.crashing.org>
23866 Date: Tue Feb 10 23:53:40 2009 -0600
23867
23868 fsl-ddr: Allow system to boot if we have more than 4G of memory
23869
23870 Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
23871 an error and hang. Instead of doing that since DDR is mapped in the
23872 lowest priority LAWs we setup the DDR controller and the max amount
23873 of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
23874
23875 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23876 Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
23877
23878 commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
23879 Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
23880 Date: Wed Jan 21 17:17:33 2009 -0600
23881
23882 mpc85xx: Add support for the P2020
23883
23884 Added various p2020 processor specific details:
23885 * SVR for p2020, p2020E
23886 * immap updates for LAWs and DDR on p2020
23887 * LAW defines related to p2020
23888
23889 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
23890 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
23891 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23892
23893 commit cb69e4de8702e108324e1c40363f30ef6f2e2918
23894 Author: Kumar Gala <galak@kernel.crashing.org>
23895 Date: Tue Feb 10 17:36:15 2009 -0600
23896
23897 85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
23898
23899 Added some info that is printed out when we boot to distiquish if we
23900 built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
23901 different address maps.
23902
23903 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23904
23905 commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
23906 Author: Andy Fleming <afleming@freescale.com>
23907 Date: Fri Dec 5 20:10:22 2008 -0600
23908
23909 Fixup SGMII PHY ids in the device tree
23910
23911 The device tree's PHY addresses need to be fixed up if we're using the
23912 SGMII Riser Card.
23913
23914 The 8572, 8536, and 8544 DS boards were modified to call this function.
23915
23916 Code idea taken from Liu Yu <yu.liu@freescale.com>
23917
23918 Signed-off-by: Andy Fleming <afleming@freescale.com>
23919
23920 commit 5dc0cf68f8f101042997d75188081d8526d705ea
23921 Author: Andy Fleming <afleming@freescale.com>
23922 Date: Wed Feb 11 15:10:31 2009 -0600
23923
23924 Make some minor whitespace changes to eliminate line-wrapping
23925
23926 Signed-off-by: Andy Fleming <afleming@freescale.com>
23927
23928 commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
23929 Author: Andy Fleming <afleming@freescale.com>
23930 Date: Wed Feb 11 15:07:24 2009 -0600
23931
23932 Add eth_get_dev_by_index
23933
23934 This allows code to iterate through the ethernet devices
23935
23936 Signed-off-by: Andy Fleming <afleming@freescale.com>
23937
23938 commit b67305120aaf268a6140125346678166d14f1f47
23939 Author: Kumar Gala <galak@kernel.crashing.org>
23940 Date: Mon Feb 9 22:03:04 2009 -0600
23941
23942 85xx: Fix bug in device tree setup in 36-bit physical confg
23943
23944 In the 36-bit physical config for MPC8572DS when need the start address
23945 of memory and it size to be kept in phys_*_t instead of a ulong since
23946 we support >4G of memory in the config and ulong cant represent that.
23947 Otherwise we end up seeing the memory node in the device tree reporting
23948 back we have memory starting @ 0 and of size 0.
23949
23950 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23951
23952 commit ad97dce18445ff05bf326094e691a01aa95aa8dc
23953 Author: Kumar Gala <galak@kernel.crashing.org>
23954 Date: Mon Feb 9 22:03:05 2009 -0600
23955
23956 85xx: Fix address map for 36-bit config of MPC8572DS
23957
23958 When we introduced the 36-bit config of the MPC8572DS board we had the
23959 wrong PCI MEM bus address map. Additionally, the change to the address
23960 map exposes a small issue in our dummy read on the ULI bus. We need
23961 to use the new mapping functions to handle that read properly in the
23962 36-bit config.
23963
23964 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23965
23966 commit f8523cb0815b2d3d2d780b7d49ca614105555f58
23967 Author: Kumar Gala <galak@kernel.crashing.org>
23968 Date: Fri Feb 6 09:56:35 2009 -0600
23969
23970 85xx: Fix how we map DDR memory
23971
23972 Previously we only allowed power-of-two memory sizes and didnt
23973 handle >2G of memory. Now we will map up to CONFIG_MAX_MEM_MAPPED
23974 and should properly handle any size that we can make in the TLBs
23975 we have available to us
23976
23977 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23978
23979 commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
23980 Author: Kumar Gala <galak@kernel.crashing.org>
23981 Date: Fri Feb 6 09:56:34 2009 -0600
23982
23983 fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
23984
23985 If we only have one controller we can completely ignore how
23986 memctl_intlv_ctl is set. Otherwise other levels of code get confused
23987 and think we have twice as much memory.
23988
23989 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23990
23991 commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
23992 Author: Kumar Gala <galak@kernel.crashing.org>
23993 Date: Wed Feb 4 09:35:57 2009 -0600
23994
23995 85xx: Format cpu freq printing to handle 8 cores
23996
23997 Only print 4 cpu freq per line. This way when we have 8 cores its a
23998 bit more readable.
23999
24000 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24001
24002 commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
24003 Author: Abraham, Thomas <t-abraham@ti.com>
24004 Date: Tue Oct 28 16:51:31 2008 +0530
24005
24006 USB: Remove LUN number from CDB
24007
24008 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.
24009
24010 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
24011 Signed-off-by: Remy Bohmer <linux@bohmer.net>
24012
24013 commit f3c0de636252f3a18654c8f9c6370a9574a7e755
24014 Author: Atin Malaviya <atin.malaviya@gmail.com>
24015 Date: Tue Feb 3 15:17:10 2009 -0500
24016
24017 Added usbtty_configured() check. Fixed attribute(packed) warnings.
24018
24019 V3: Fixed line-wrap problem due to user error in mail!
24020
24021 Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
24022 when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
24023 Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
24024
24025 Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
24026 Signed-off-by: Remy Bohmer <linux@bohmer.net>
24027
24028 commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
24029 Author: Guennadi Liakhovetski <lg@denx.de>
24030 Date: Fri Feb 13 09:23:36 2009 +0100
24031
24032 i.MX31: Start the I2C clock on driver initialisation
24033
24034 i.MX31 powers on with most clocks running, so, after a power on this explicit
24035 clock start up is not required. However, as Linux boots it disables most clocks
24036 to save power. This includes the I2C clock. If we then soft reboot from Linux
24037 the I2C clock stays off. This breaks the phycore, which has its environment in
24038 I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
24039 initialisation routine.
24040
24041 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24042 Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24043
24044 commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
24045 Author: Mike Frysinger <vapier@gentoo.org>
24046 Date: Wed Feb 11 20:36:14 2009 -0500
24047
24048 i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
24049
24050 The Blackfin i2c driver has been rewritten thus the special ifdefs in the
24051 common code are no longer needed.
24052
24053 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24054
24055 commit c2d9befa0b4695b89476fb5d259742c09afe243f
24056 Author: Heiko Schocher <hs@denx.de>
24057 Date: Thu Feb 12 08:08:54 2009 +0100
24058
24059 82xx, mgcoge: fix compile error
24060
24061 With actual u-boot compiling the mgcoge port fails, because
24062 since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
24063 necessary to define CONFIG_NET_MULTI.
24064
24065 Seems to me the mgcoge port is the only actual existing 8260
24066 port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
24067 to be fixed.
24068
24069 Signed-off-by: Heiko Schocher <hs@denx.de>
24070
24071 commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
24072 Author: Dirk Eibach <eibach@gdsys.de>
24073 Date: Mon Feb 9 08:18:34 2009 +0100
24074
24075 ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
24076
24077 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
24078 Signed-off-by: Stefan Roese <sr@denx.de>
24079
24080 commit 7369f0e384e2a831be13a7773a58242c9173fa9c
24081 Author: Carolyn Smith <carolyn.smith@tektronix.com>
24082 Date: Thu Feb 12 06:13:44 2009 +0100
24083
24084 ppc4xx: Fix initialization of the SDRAM_CODT register
24085
24086 This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
24087 initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
24088 and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
24089
24090 Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
24091 Signed-off-by: Stefan Roese <sr@denx.de>
24092
24093 commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
24094 Author: Stefan Roese <sr@denx.de>
24095 Date: Wed Feb 11 09:29:33 2009 +0100
24096
24097 ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
24098
24099 Some AMCC eval boards do have a board_eth_init() function calling
24100 pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
24101 with the new eth_init rework.
24102
24103 Signed-off-by: Stefan Roese <sr@denx.de>
24104
24105 commit c645012aefebb301e6907d148c6c8efacac049d4
24106 Author: Adam Graham <agraham@amcc.com>
24107 Date: Mon Feb 9 13:18:12 2009 -0800
24108
24109 ppc4xx: Autocalibration can set RDCC to over aggressive value.
24110
24111 The criteria of the AMCC SDRAM Controller DDR autocalibration
24112 U-Boot code is to pick the largest passing write/read/compare
24113 window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
24114 Cycle Select value.
24115
24116 On some Kilauea boards the DDR autocalibration algorithm can
24117 find a large passing write/read/compare window with a small
24118 SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
24119 value "T1 Sample".
24120
24121 This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
24122 "T1 Sample" proves to be to aggressive when later on U-Boot
24123 relocates into DDR memory and executes.
24124
24125 The memory traces on the Kilauea board are short so on some
24126 Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
24127 value of "T1 Sample" shows up as a potentially valid value for
24128 the DDR autocalibratiion algorithm.
24129
24130 The fix is to define a weak default function which provides
24131 the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
24132 to accept for DDR autocalibration. The default will be the
24133 "T2 Sample" value. A board developer who has a well defined
24134 board and chooses to be more aggressive can always provide
24135 their own board specific string function with the more
24136 aggressive "T1 Sample" value or stick with the default
24137 minimum SDRAM_RDCC.[RDSS] value of "T2".
24138
24139 Also put in a autocalibration loop fix for case where current
24140 write/read/compare passing window size is the same as a prior
24141 window size, then in this case choose the write/read/compare
24142 result that has the associated smallest RDCC T-Sample value.
24143
24144 Signed-off-by: Adam Graham <agraham@amcc.com>
24145 Signed-off-by: Stefan Roese <sr@denx.de>
24146
24147 commit 2ede879fcb67470524847bb4fc8972651bb46184
24148 Author: Stefan Roese <sr@denx.de>
24149 Date: Wed Feb 11 09:37:12 2009 +0100
24150
24151 ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
24152
24153 CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
24154 included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
24155
24156 It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
24157 boards right now.
24158
24159 Signed-off-by: Stefan Roese <sr@denx.de>
24160
24161 commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
24162 Author: Wolfgang Denk <wd@denx.de>
24163 Date: Thu Feb 12 00:08:39 2009 +0100
24164
24165 Coding style cleanup; update CHANGELOG
24166
24167 Signed-off-by: Wolfgang Denk <wd@denx.de>
24168
24169 commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
24170 Author: Peter Tyser <ptyser@xes-inc.com>
24171 Date: Fri Jan 30 16:36:40 2009 -0600
24172
24173 Add feature-removal-schedule.txt
24174
24175 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24176
24177 commit 255d28e1642e8fc32a6753226be1a96b481ce111
24178 Author: Heiko Schocher <hs@denx.de>
24179 Date: Tue Feb 10 09:32:38 2009 +0100
24180
24181 8xx serial, smc: Coding-Style cleanup serial SMC driver
24182
24183 Signed-off-by: Heiko Schocher <hs@denx.de>
24184
24185 commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
24186 Author: Heiko Schocher <hs@denx.de>
24187 Date: Tue Feb 10 09:31:47 2009 +0100
24188
24189 8xx serial, smc: add configurable SMC Rx buffer len
24190
24191 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
24192 With this option it is possible to allow the receive
24193 buffer for the SMC on 8xx to be greater then 1. In case
24194 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
24195 old version.
24196
24197 When defining CONFIG_SYS_SMC_RXBUFLEN also
24198 CONFIG_SYS_MAXIDLE must be defined to setup the maximum
24199 idle timeout for the SMC.
24200
24201 Signed-off-by: Heiko Schocher <hs@denx.de>
24202
24203 commit e915f8bb73d74178bc21d3a457959883b1afd1c0
24204 Author: Mike Frysinger <vapier@gentoo.org>
24205 Date: Thu Feb 5 21:04:36 2009 -0500
24206
24207 common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
24208
24209 Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
24210 the COBJS-$(CONFIG_xxx) in the Makefile. Also delete unused var in kgdb
24211 code in the process.
24212
24213 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24214
24215 commit ab76e9848a1f4db64d14233741d739a3b3360c93
24216 Author: Mike Frysinger <vapier@gentoo.org>
24217 Date: Thu Feb 5 21:04:50 2009 -0500
24218
24219 bzip2: move ifdef handling to Makefile COBJS-$(...)
24220
24221 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24222
24223 commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
24224 Author: Jerry Van Baren <gvb.uboot@gmail.com>
24225 Date: Thu Feb 5 22:18:02 2009 -0500
24226
24227 Fix whitespace damage: double space changed to a tab
24228
24229 At some point an intentional double space at the end of the sentence
24230 got changed into a tab in the GPL header line:
24231 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24232
24233 This patch fixes the damage.
24234
24235 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
24236
24237 commit 4f975678de995b55749d5e84590c268972a7c835
24238 Author: Heiko Schocher <hs@denx.de>
24239 Date: Tue Feb 10 09:53:29 2009 +0100
24240
24241 cfi: make flash_get_info() non static
24242
24243 If on your board is more than one flash, you must know
24244 the size of every single flash, for example, for updating
24245 the DTS before booting Linux. So make this function
24246 flash_get_info() extern, and you can have all info
24247 about your flashes.
24248
24249 Signed-off-by: Heiko Schocher <hs@denx.de>
24250 Signed-off-by: Stefan Roese <sr@denx.de>
24251
24252 commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
24253 Author: Ben Warren <biggerbadderben@gmail.com>
24254 Date: Thu Feb 5 23:58:25 2009 -0800
24255
24256 net: removed board-specific CONFIGs from MPC5xxx FEC driver
24257
24258 Added new CONFIG options for the three type of MAC-PHY interconnect and
24259 applied them all relevant board config files
24260
24261 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24262
24263 commit 638ed3e296e70fab286d157b7adedaaa4a09a474
24264 Author: Mike Frysinger <vapier@gentoo.org>
24265 Date: Thu Feb 5 21:04:47 2009 -0500
24266
24267 net/sntp.c: move ifdef into Makefile COBJS-$(...)
24268
24269 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24270 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24271
24272 commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
24273 Author: Andy Fleming <afleming@freescale.com>
24274 Date: Tue Feb 3 18:26:41 2009 -0600
24275
24276 tsec: Fix a bug in soft-resetting
24277
24278 SOFT_RESET must be asserted for at least 3 TX clocks. Usually, that's about 30
24279 clock cycles, so it's been mostly working. But we had no guarantee, and at
24280 slower bitrates, it's just over a microsecond (over 1000 clock cycles). This
24281 enforces a 2 microsecond gap between assertion and deassertion.
24282
24283 Signed-off-by: Andy Fleming <afleming@freescale.com>
24284 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24285
24286 commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
24287 Author: Simon Munton <simon@nidoran.m5data.com>
24288 Date: Mon Feb 2 09:44:08 2009 +0000
24289
24290 Fix 100Mbs ethernet operation on sh7763 based boards
24291
24292 100Mbs ethernet does not work on sh7763 chips due to the wrong value being
24293 used in the GECMR register. Following diff fixes the problem
24294
24295 Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
24296 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24297
24298 commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
24299 Author: ksi@koi8.net <ksi@koi8.net>
24300 Date: Fri Feb 6 16:27:55 2009 -0800
24301
24302 Fix MPC8260 with ethernet on SCC
24303
24304 This fixes MPC8260 compilation with ethernet on SCC. Probably was a
24305 typo or something...
24306
24307 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
24308 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
24309
24310 commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
24311 Author: Heiko Schocher <hs@denx.de>
24312 Date: Fri Jan 30 12:56:15 2009 +0100
24313
24314 82xx serial, smc: Coding-Style cleanup serial SMC driver
24315
24316 Signed-off-by: Heiko Schocher <hs@denx.de>
24317
24318 commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
24319 Author: Heiko Schocher <hs@denx.de>
24320 Date: Fri Jan 30 12:55:38 2009 +0100
24321
24322 82xx serial, smc: add configurable SMC Rx buffer len
24323
24324 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
24325 With this option it is possible to allow the receive
24326 buffer for the SMC on 82xx to be greater then 1. In case
24327 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
24328 old version.
24329
24330 When defining CONFIG_SYS_SMC_RXBUFLEN also
24331 CONFIG_SYS_MAXIDLE must be defined to setup the maximum
24332 idle timeout for the SMC.
24333
24334 Signed-off-by: Heiko Schocher <hs@denx.de>
24335
24336 commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
24337 Author: Kumar Gala <galak@kernel.crashing.org>
24338 Date: Fri Feb 6 08:08:06 2009 -0600
24339
24340 ppc: Fix roll over bug in flush_cache()
24341
24342 If we call flush_cache(0xfffff000, 0x1000) it would never
24343 terminate the loop since end = 0xffffffff and we'd roll over
24344 our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
24345
24346 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24347
24348 commit 87c9063963561d3d01064be34d0c30855a56587b
24349 Author: Kumar Gala <galak@kernel.crashing.org>
24350 Date: Thu Feb 5 20:40:58 2009 -0600
24351
24352 ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
24353
24354 Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
24355 between the two current users (lib_ppc/board.c, 44x SPD DDR2).
24356
24357 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24358 Acked-by: Stefan Roese <sr@denx.de>
24359
24360 commit 47d41cc3a11a03c6d56146d056145df73f47eb50
24361 Author: Kumar Gala <galak@kernel.crashing.org>
24362 Date: Thu Feb 5 20:40:57 2009 -0600
24363
24364 Add an architecture specific config.h for common defines
24365
24366 We have common defines that we duplicate in various ways. Having an
24367 arch specific config.h gives us a common location for those defines.
24368
24369 Eventually we should be able to replace this when we have proper
24370 Kconfig support.
24371
24372 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24373
24374 commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
24375 Author: Becky Bruce <beckyb@kernel.crashing.org>
24376 Date: Tue Feb 3 18:10:56 2009 -0600
24377
24378 mpc8641hpcn: Change PCI MEM pci bus address
24379
24380 Now that the rest of u-boot can support it, change the PCI bus
24381 address of the PCI MEM regions from 0x80000000 to 0xc0000000,
24382 and use the same bus address for both PCI1 and PCI2. This will
24383 maximize the amount of PCI address space left over to map RAM
24384 on systems with large amounts of memory.
24385
24386 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24387
24388 commit 1785dbeed43599eed1d8875673c96912cd770141
24389 Author: Becky Bruce <beckyb@kernel.crashing.org>
24390 Date: Tue Feb 3 18:10:55 2009 -0600
24391
24392 drivers/block/ahci: Fix pci mapping bug
24393
24394 The code assumes that the pci bus address and the virtual
24395 address used to access a region are the same, but they might
24396 not be. Fix this assumption.
24397
24398 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24399
24400 commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
24401 Author: Becky Bruce <beckyb@kernel.crashing.org>
24402 Date: Tue Feb 3 18:10:54 2009 -0600
24403
24404 MPC8641HPCN: Enable CONFIG_ADDR_MAP
24405
24406 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24407
24408 commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
24409 Author: Becky Bruce <beckyb@kernel.crashing.org>
24410 Date: Tue Feb 3 18:10:53 2009 -0600
24411
24412 mpc8641hpcn: Clean up PCI mapping concepts
24413
24414 Clean up PCI mapping concepts in the 8641 config - rename _BASE
24415 to _BUS, as it's actually a PCI bus address, separate virtual
24416 and physical addresses into _VIRT and _PHYS, and use each
24417 appopriately.
24418
24419 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24420
24421 commit c9315e6b4f244981de0b2eaaa29a7838a165b494
24422 Author: Becky Bruce <beckyb@kernel.crashing.org>
24423 Date: Tue Feb 3 18:10:52 2009 -0600
24424
24425 mpc86xx: Add support to populate addr map based on BATs
24426
24427 If CONFIG_ADDR_MAP is enabled, update the address map
24428 whenever we write a bat.
24429
24430 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24431
24432 commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
24433 Author: Becky Bruce <beckyb@kernel.crashing.org>
24434 Date: Tue Feb 3 18:10:51 2009 -0600
24435
24436 powerpc: Move duplicated BAT defines to mmu.h
24437
24438 The BAT fields are architected; there's no need for these to be in
24439 cpu-specific files. Drop the duplication and move these to
24440 include/asm-ppc/mmu.h. Also, remove the BL_xxx defines that were only
24441 used by the alaska board, and switch to using the BATU_BL_xxx defines
24442 used by all the other boards. The BL_ defines previously in use
24443 had to be shifted into the proper position for use, which was inefficient.
24444
24445 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24446
24447 commit 6e61fae4d360a1380b63e7d007b31477e366bcce
24448 Author: Becky Bruce <beckyb@kernel.crashing.org>
24449 Date: Tue Feb 3 18:10:50 2009 -0600
24450
24451 drivers/pci: Create pci_map_bar function
24452
24453 It is no longer always true that the pci bus address can be
24454 used as the virtual address for pci accesses. pci_map_bar()
24455 is created to return the virtual address for a pci region.
24456
24457 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24458
24459 commit 2ecca3401775b125c3b9ff65766befb23989414b
24460 Author: Becky Bruce <beckyb@kernel.crashing.org>
24461 Date: Tue Feb 3 18:10:49 2009 -0600
24462
24463 mpc8641hpcn: Set up outbound pci windows before inbound
24464
24465 Because the inbound pci windows are mapped generously, set up
24466 the more specific outbound windows first. This way, when we
24467 search the pci regions for something, we will hit on the more
24468 specific region. This can actually be a problem on systems
24469 with large amounts of RAM.
24470
24471 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24472
24473 commit b81b773ead0687114dc8a800f99ea6e504447739
24474 Author: Becky Bruce <beckyb@kernel.crashing.org>
24475 Date: Mon Feb 2 16:34:52 2009 -0600
24476
24477 mpc8641hpcn: Use physical address in flash banks defintion
24478
24479 If the VA and PA of the flash aren't the same, the banks list
24480 should be initialized to hold the physical address. Correct this.
24481
24482 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24483
24484 commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
24485 Author: Ilya Yanok <yanok@emcraft.com>
24486 Date: Tue Feb 10 00:22:31 2009 +0100
24487
24488 qong: support for Dave/DENX QongEVB-LITE board
24489
24490 This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
24491
24492 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
24493 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24494
24495 commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
24496 Author: Ilya Yanok <yanok@emcraft.com>
24497 Date: Mon Feb 9 18:45:28 2009 +0100
24498
24499 dnet: driver for Dave DNET ethernet controller
24500
24501 Driver for Dave DNET ethernet controller (used on Dave/DENX
24502 QongEVB-LITE board).
24503
24504 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
24505 Acked-by: Ben Warren <biggerbadderben@gmail.com>
24506
24507 commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
24508 Author: Kumar Gala <galak@kernel.crashing.org>
24509 Date: Fri Feb 6 09:49:32 2009 -0600
24510
24511 pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
24512
24513 When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
24514 we should give preference to memory regions that aren't system memory.
24515
24516 Its possible that we have over mapped system memory in the regions and
24517 we want to avoid depending on the order of the regions.
24518
24519 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24520
24521 commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
24522 Author: Kumar Gala <galak@kernel.crashing.org>
24523 Date: Fri Feb 6 09:49:31 2009 -0600
24524
24525 pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
24526
24527 The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
24528 can be confusing when reading the code.
24529
24530 Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
24531 for system memory mapping purposes.
24532
24533 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24534
24535 commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
24536 Author: Ilya Yanok <yanok@emcraft.com>
24537 Date: Sun Feb 8 00:59:43 2009 +0300
24538
24539 mx31: add GPIO registers definitions
24540
24541 Added definitions for i.MX31 processor GPIO registers.
24542
24543 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
24544
24545 commit 8da601280a8acbc3385784780ed35130e53812f1
24546 Author: Peter Tyser <ptyser@xes-inc.com>
24547 Date: Wed Feb 4 13:47:22 2009 -0600
24548
24549 NAND: Add timeout for reset command
24550
24551 Without the timeout present an infinite loop can occur if the
24552 NAND device is broken or not present.
24553
24554 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24555 Signed-off-by: Scott Wood <scottwood@freescale.com>
24556
24557 commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
24558 Author: Peter Tyser <ptyser@xes-inc.com>
24559 Date: Wed Feb 4 13:39:40 2009 -0600
24560
24561 NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
24562
24563 Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
24564 for disabling the "No NAND device found!!!" warning when
24565 CONFIG_SYS_NAND_QUIET_TEST was defined. This re-adds support
24566 for silencing the warning.
24567
24568 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
24569 Signed-off-by: Scott Wood <scottwood@freescale.com>
24570
24571 commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
24572 Author: Valeriy Glushkov <gvv@lstec.com>
24573 Date: Mon Jan 19 16:32:59 2009 +0200
24574
24575 NAND: Fixed invalid pointers to static relocated chip names
24576
24577 Dear Wolfgang,
24578
24579 You are right, the patch was ugly.
24580 The new one seems to be better.
24581
24582 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
24583 Signed-off-by: Scott Wood <scottwood@freescale.com>
24584
24585 commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
24586 Author: Nishanth Menon <nm@ti.com>
24587 Date: Mon Feb 2 18:20:12 2009 -0600
24588
24589 ARM:OMAP3:Zoom1: Add nand unlock option
24590
24591 Enable NAND_UNLOCK option for unlocking nand for
24592 erase/write operations
24593
24594 Signed-off-by: Nishanth Menon <nm@ti.com>
24595
24596 commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
24597 Author: derek@siconix.com <derek@siconix.com>
24598 Date: Mon Jan 26 14:08:17 2009 -0700
24599
24600 env_nand: fix env memory release
24601
24602 This fixes a bug that tmp environment memory not being released.
24603
24604 Signed-off-by: Derek Ou <dou@siconix.com>
24605 Signed-off-by: Scott Wood <scottwood@freescale.com>
24606
24607 commit 05fd88776419df59e7f37bac063a209409dd801d
24608 Author: Guennadi Liakhovetski <lg@denx.de>
24609 Date: Fri Feb 6 10:37:45 2009 +0100
24610
24611 ARM: remove unused variable
24612
24613 The "size" variable in start_armboot() in lib_arm/board.c is only really
24614 used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
24615 eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
24616
24617 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24618
24619 commit 6989e4f546d960a407dd5425f800dff9751c8132
24620 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24621 Date: Thu Feb 5 09:33:50 2009 -0500
24622
24623 Coldfire: M527x: Add missing GPIO register address defines
24624
24625 Add missing GPIO registers address definition for Coldfire M5271.
24626
24627 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24628
24629 commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
24630 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24631 Date: Fri Jan 23 14:42:58 2009 -0500
24632
24633 Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
24634
24635 Modified mii_init to support boards with PHYs that are not set to
24636 autonegotiate, but still want to use u-boot's mii commands to probe
24637 the smi bus. Such PHYs will not set the Autonegotiate-done bit.
24638
24639 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24640
24641 commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
24642 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24643 Date: Fri Jan 23 11:44:30 2009 -0500
24644
24645 Coldfire: Applied baudrate formula of serial_init to serial_setbrg
24646
24647 Applied the patch for baudrate divider value truncation for
24648 serial_init to serial_setbrg as well.
24649
24650 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24651
24652 commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
24653 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24654 Date: Fri Jan 23 14:07:05 2009 -0500
24655
24656 Coldfire: M5271EVB: Board header update (dependencies)
24657
24658 Cleanup for M5271EVB:
24659 Added clarification on the use of CONFIG_SYS_CLOCK.
24660 Modified to use u-boot's HUSH parser.
24661 Cleanup on environment settings.
24662 Removed compiler warning by defining CONFIG_SYS_CS0_*
24663
24664 Dependencies:
24665 Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
24666 This depends on a patch to include/asm-m68k/m5271.h
24667 that defines the multiplier and divider ratios.
24668
24669 Removed the definition of CONFIG_SYS_FECI2C.
24670 This depends on a patch that removes the use of it in
24671 cpu/mcf52x2/cpu_init.c
24672
24673 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24674
24675 commit e0db344fabfeb4f9649846f94838f51172f6a1f6
24676 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24677 Date: Thu Jan 29 14:36:06 2009 -0500
24678
24679 Coldfire: M5271: Allow board header file to specify clock multiplier
24680
24681 M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
24682
24683 Allow the board header file to set their own multiplier and divider.
24684 Added the #define for the multiplier and divider to the cpu header file.
24685
24686 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24687
24688 commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
24689 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24690 Date: Fri Jan 23 10:47:13 2009 -0500
24691
24692 Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
24693
24694 Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
24695 Use read-modify-write to activate the FEC pins without disabling I2C.
24696
24697 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24698
24699 commit ee73cc59ab904976af3c33b454fc84f78618b2d1
24700 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24701 Date: Fri Jan 23 09:45:34 2009 -0500
24702
24703 Coldfire: cmd_bdinfo cleanup
24704
24705 CONFIG_M68K bdinfo cleanup:
24706
24707 Fixed compiler warning about baudrate printing.
24708 format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
24709
24710 Added printing of "cpufreq"
24711
24712 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24713
24714 commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
24715 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24716 Date: Fri Jan 23 09:27:00 2009 -0500
24717
24718 Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
24719
24720 Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
24721 was causing the bus clock (not CPU clock) to be declared twice as
24722 fast as it actually is. This causes UARTS to operate at half the
24723 specified baudrate.
24724
24725 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
24726
24727 commit 59d1bda7f92c8a28c3aba94e48063749d425949f
24728 Author: Dirk Eibach <eibach@gdsys.de>
24729 Date: Tue Feb 3 15:15:21 2009 +0100
24730
24731 ppc4xx: Make PCIE support selectable
24732
24733 On some platforms PCIE support is not required, but would be included
24734 because the cpu supports it. To reduce fooprint it is now configurable
24735 via CONFIG_PCI_DISABLE_PCIE.
24736
24737 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
24738 Signed-off-by: Stefan Roese <sr@denx.de>
24739
24740 commit b129eff5ede394cc1faeb6dbf6a987e91abce552
24741 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24742 Date: Tue Feb 3 22:13:16 2009 +0100
24743
24744 ppc4xx: Only fixup opb attached UARTs
24745
24746 This patch updates the fdt UART clock fixup code to
24747 only touch CPU internal UARTs on 4xx systems.
24748 Only these UARTs are definitely clocked by gd->uart_clk.
24749
24750 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
24751 Signed-off-by: Stefan Roese <sr@denx.de>
24752
24753 commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
24754 Author: Mike Frysinger <vapier@gentoo.org>
24755 Date: Tue Jan 13 11:00:29 2009 -0500
24756
24757 Blackfin: move default boot SPI CS to common code
24758
24759 Move the default SPI CS that we boot from into common code so that it can
24760 be used in other SPI drivers and environment settings.
24761
24762 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24763
24764 commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
24765 Author: Mike Frysinger <vapier@gentoo.org>
24766 Date: Wed Dec 10 12:33:54 2008 -0500
24767
24768 Blackfin: dynamically update UART speed when initializing
24769
24770 Previously, booting over the UART required the baud rate to be known ahead
24771 of time. Using a bit of tricky simple math, we can calculate the new board
24772 rate based on the old divisors.
24773
24774 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24775 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
24776
24777 commit 97f265f14f23050f3cb997f617f3a6917b843ea2
24778 Author: Mike Frysinger <vapier@gentoo.org>
24779 Date: Tue Dec 9 17:21:08 2008 -0500
24780
24781 Blackfin: add support for fast SPI reads with Boot ROM
24782
24783 Newer Blackfin boot roms support using the fast SPI read command rather than
24784 just the slow one. If the functionality is available, then use it.
24785
24786 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24787
24788 commit 67619982bfc5cd62710a48e3cbffc304cb78c341
24789 Author: Mike Frysinger <vapier@gentoo.org>
24790 Date: Sat Oct 11 21:46:52 2008 -0400
24791
24792 Blackfin: check for reserved settings in DDR MMRs
24793
24794 Some bits of the DDR MMRs should not be set. If they do, bad things may
24795 happen (like random failures or hardware destruction).
24796
24797 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24798
24799 commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
24800 Author: Mike Frysinger <vapier@gentoo.org>
24801 Date: Sat Oct 11 21:54:00 2008 -0400
24802
24803 Blackfin: set default voltage levels for BF538/BF539 parts
24804
24805 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24806
24807 commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
24808 Author: Mike Frysinger <vapier@gentoo.org>
24809 Date: Sun Jun 1 01:29:57 2008 -0400
24810
24811 Blackfin: use on-chip syscontrol() rom function when available
24812
24813 Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
24814 to be used to properly program the memory and voltage settings as it will
24815 include (possibly critical) factory tested bias values.
24816
24817 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24818
24819 commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
24820 Author: Stefan Roese <sr@denx.de>
24821 Date: Thu Feb 5 11:44:52 2009 +0100
24822
24823 cfi_flash: Fix typo in cfi_flash.c
24824
24825 Patch "flash/cfi_flash: Use virtual sector start address, not phys"
24826 introduced a small typo and compilation warning for systems with CFI
24827 legacy support (e.g. hcu4). This patch fixes it.
24828
24829 Signed-off-by: Stefan Roese <sr@denx.de>
24830
24831 commit 28745db969b72693754991c838f68a7fb4a8b1ab
24832 Author: Stefan Roese <sr@denx.de>
24833 Date: Thu Jan 29 11:21:38 2009 +0100
24834
24835 jedec_flash: Only use manufacturer defines from common flash.h
24836
24837 This patch removes the double defined manufacturer defines from
24838 jedec_flash.c. Since the common defines in flash.h are 32bit
24839 we now need the (16) cast. This patch also removes the compilation
24840 warning (e.g. seen on hcu5):
24841
24842 ./MAKEALL hcu5
24843 Configuring for hcu5 board...
24844 jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
24845
24846 Signed-off-by: Stefan Roese <sr@denx.de>
24847
24848 commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
24849 Author: Stefan Roese <sr@denx.de>
24850 Date: Thu Feb 5 11:25:57 2009 +0100
24851
24852 cfi_flash: Silence compilation warning
24853
24854 Patch "flash/cfi_flash: Use virtual sector start address, not phys"
24855 introduced a small compilation warning. This patch fixes it.
24856
24857 Signed-off-by: Stefan Roese <sr@denx.de>
24858
24859 commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
24860 Author: Becky Bruce <beckyb@kernel.crashing.org>
24861 Date: Mon Feb 2 16:34:51 2009 -0600
24862
24863 flash/cfi_flash: Use virtual sector start address, not phys
24864
24865 include/flash.h was commented to say that the address in
24866 flash_info->start was a physical address. However, from u-boot's
24867 point of view, and looking at most flash code, it makes more
24868 sense for this to be a virtual address. So I corrected the
24869 comment to indicate that this was a virtual address.
24870
24871 The only flash driver that was actually treating the address
24872 as physical was the mtd/cfi_flash driver. However, this code
24873 was using it inconsistently as it actually directly dereferenced
24874 the "start" element, while it used map_physmem to get a
24875 virtual address in other places. I changed this driver so
24876 that the code which initializes the info->start field calls
24877 map_physmem to get a virtual address, eliminating the need for
24878 further map_physmem calls. The code is now consistent.
24879
24880 The *only* place a physical address should be used is when defining the
24881 flash banks list that is used to initialize the flash_info struct,
24882 usually found in the board config file.
24883
24884 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
24885 Signed-off-by: Stefan Roese <sr@denx.de>
24886
24887 commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
24888 Author: Wolfgang Denk <wd@denx.de>
24889 Date: Wed Feb 4 09:42:20 2009 +0100
24890
24891 Fix compiler warning
24892
24893 (shows up only when DEBUG is enabled)
24894
24895 Signed-off-by: Wolfgang Denk <wd@denx.de>
24896
24897 commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
24898 Author: Mike Frysinger <vapier@gentoo.org>
24899 Date: Mon Oct 6 03:45:55 2008 -0400
24900
24901 Blackfin: update anomaly lists
24902
24903 Update the anomaly lists to match latest anomaly sheets.
24904
24905 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24906
24907 commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
24908 Author: Ralph Kondziella <rk@argos-messtechnik.de>
24909 Date: Mon Jan 26 12:34:36 2009 -0700
24910
24911 ADS5121 Add PATA support
24912
24913 Original patch from Ralph Kondziella
24914 plus clean up by Wolfgang Denk
24915 plus changes by John Rigby
24916 use ips clock not lpc
24917 port forward to current u-boot release
24918
24919 Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
24920 Signed-off-by: Wolfgang Denk <wd@denx.de>
24921 Signed-off-by: John Rigby <jrigby@freescale.com>
24922
24923 commit abfbd0ae4967df18102345db4f4b529a13da107b
24924 Author: Martha Marx <mmarx@silicontkx.com>
24925 Date: Mon Jan 26 10:45:07 2009 -0700
24926
24927 ADS5121 Add IC Ident Module (IIM) support
24928
24929 IIM (IC Identification Module) is the fusebox for the mpc5121.
24930 Use #define CONFIG_IIM to turn on the clock for this module
24931 use #define CONFIG_CMD_FUSE to add fusebox commands.
24932 Fusebox commands include the ability to read
24933 the status, read the register cache, override the register cache,
24934 program the fuses and sense them.
24935
24936 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
24937 Signed-off-by: John Rigby <jrigby@freescale.com>
24938
24939 commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
24940 Author: John Rigby <jrigby@freescale.com>
24941 Date: Fri Jan 23 10:33:15 2009 -0700
24942
24943 ADS5121 Fix rev2 silicon pci iopad config
24944
24945 Reset config is not correct
24946
24947 Signed-off-by: John Rigby <jrigby@freescale.com>
24948
24949 commit 4c154252c480b13f69ce1b71a9530b0515da76a6
24950 Author: John Rigby <jrigby@freescale.com>
24951 Date: Wed Nov 19 13:57:34 2008 -0700
24952
24953 ADS5121 DIU Add diu_bmp_addr env
24954
24955 Add support for using a bmp other than
24956 FSL_Logo_BMP for the DIU splash screen.
24957
24958 Can now set the env var "diu_bmp_addr" to
24959 the address of a BMP in flash to use instead
24960 of the default FSL_Logo_BMP.
24961
24962 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
24963 Signed-off-by: John Rigby <jrigby@freescale.com>
24964
24965 commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
24966 Author: John Rigby <jrigby@freescale.com>
24967 Date: Thu Oct 30 16:39:35 2008 -0600
24968
24969 ADS5121 DIU Make inclusion of FSL logo optional
24970
24971 Make inclusion of FSL logo optional and
24972 turn it off by default.
24973
24974 Signed-off-by: John Rigby <jrigby@freescale.com>
24975
24976 commit bd99ec149abe94e7f6b2bda4766d701b4005053f
24977 Author: Remy Bohmer <linux@bohmer.net>
24978 Date: Sun Feb 1 12:27:53 2009 +0100
24979
24980 Compile warning fix in onenand_uboot.h
24981
24982 Regression since merge window after 2009.01
24983
24984 Signed-off-by: Remy Bohmer <linux@bohmer.net>
24985
24986 commit a270d1e7295c3d829f42c0480117941dfc1c6477
24987 Author: Stefan Roese <sr@denx.de>
24988 Date: Thu Jan 29 06:33:55 2009 +0100
24989
24990 USB: Add EHCI support for VCT EHCI controller (really with driver now)
24991
24992 Somehow I missed the real driver part in my last patch version. This patch
24993 now adds the driver.
24994
24995 Signed-off-by: Stefan Roese <sr@denx.de>
24996 Signed-off-by: Remy Bohmer <linux@bohmer.net>
24997
24998 commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
24999 Author: Cliff Cai <cliff.cai@analog.com>
25000 Date: Sat Nov 29 18:22:38 2008 -0500
25001
25002 Blackfin: add driver for on-chip MMC/SD controller
25003
25004 This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
25005
25006 Signed-off-by: Cliff Cai <cliff.cai@analog.com>
25007 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25008
25009 commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
25010 Author: Mike Frysinger <vapier@gentoo.org>
25011 Date: Sat Oct 11 22:47:34 2008 -0400
25012
25013 Blackfin: add port muxing for BF51x SPI
25014
25015 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25016
25017 commit fc68f9f85959664d528daea2aef5ef54974331ce
25018 Author: Mike Frysinger <vapier@gentoo.org>
25019 Date: Tue Jan 6 06:16:19 2009 -0500
25020
25021 Blackfin: output booting source when booting
25022
25023 Knowing the booting source of the part is useful, especially when the part
25024 can switch dynamically between sources.
25025
25026 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25027
25028 commit 8df3ce0f49c37947800ac7c84e751499882619fc
25029 Author: Mike Frysinger <vapier@gentoo.org>
25030 Date: Thu Dec 11 06:30:46 2008 -0500
25031
25032 Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
25033
25034 Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
25035 the Blackfin on-chip bootrom to boot out of SPI flash.
25036
25037 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25038
25039 commit 2b4a486e6fac502d8b883e344cc4012283945b3d
25040 Author: Mike Frysinger <vapier@gentoo.org>
25041 Date: Thu Dec 11 04:06:26 2008 -0500
25042
25043 Blackfin: update asm-blackfin/posix_types.h to latest Linux version
25044
25045 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25046
25047 commit e5eb93e77391bcc308697116c544ea1340aaae8a
25048 Author: Mike Frysinger <vapier@gentoo.org>
25049 Date: Sat Dec 6 02:54:52 2008 -0500
25050
25051 Blackfin: add port I bits
25052
25053 Some people need to access port I, so make sure the pins are defined.
25054
25055 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25056
25057 commit 8a6b272596d43de0db4943eac7af58c3534c4026
25058 Author: Sonic Zhang <Sonic.Zhang@analog.com>
25059 Date: Wed Nov 26 22:16:45 2008 -0500
25060
25061 Blackfin: add driver for on-chip ATAPI controller
25062
25063 This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
25064
25065 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
25066 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25067
25068 commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
25069 Author: Mike Frysinger <vapier@gentoo.org>
25070 Date: Wed Nov 26 21:43:06 2008 -0500
25071
25072 Blackfin: add driver for on-chip NAND controller
25073
25074 This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
25075
25076 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25077
25078 commit 4148e02abae9a099f4444b5e168ebc2b911d2295
25079 Author: Mike Frysinger <vapier@gentoo.org>
25080 Date: Wed Nov 12 07:18:15 2008 -0500
25081
25082 Blackfin: build with -mno-fdpic
25083
25084 Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
25085 up u-boot, including ones that output FDPIC ELF by default.
25086
25087 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25088
25089 commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
25090 Author: Mike Frysinger <vapier@gentoo.org>
25091 Date: Tue Nov 11 05:43:57 2008 -0500
25092
25093 Blackfin: fix up EBIU defines
25094
25095 The EBIU defines for EBSZ 256/512 were incorrect.
25096
25097 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25098
25099 commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
25100 Author: Mike Frysinger <vapier@gentoo.org>
25101 Date: Wed Nov 5 12:45:24 2008 -0500
25102
25103 Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
25104
25105 Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
25106 as usable with the source/destination addresses and the count size.
25107
25108 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25109
25110 commit b93c68648426f906d63b98117496b6415f505f39
25111 Author: Mike Frysinger <vapier@gentoo.org>
25112 Date: Wed Nov 5 08:50:23 2008 -0500
25113
25114 Blackfin: only flag L1 instruction for DMA memcpy
25115
25116 The performance difference from doing an 8 bit DMA memcpy vs an optimized
25117 core memcpy can be pretty big when you add in the overhead of setting up the
25118 MDMA registers, cache flushes, etc... So only use dma_memcpy() when we
25119 actually require it.
25120
25121 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25122
25123 commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
25124 Author: Mike Frysinger <vapier@gentoo.org>
25125 Date: Wed Nov 5 07:20:37 2008 -0500
25126
25127 Blackfin: dma_memcpy(): fix random failures
25128
25129 We have to make sure the DMA channel is actually disabled in hardware before
25130 attempting to reprogram it. Otherwise the new settings are ignored and we
25131 end up with random hangs/failures.
25132
25133 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25134
25135 commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
25136 Author: Mike Frysinger <vapier@gentoo.org>
25137 Date: Tue Nov 4 00:04:03 2008 -0500
25138
25139 Blackfin: rewrite cache handling functions
25140
25141 Take the cache flush functions from the kernel as they use hardware loops in
25142 order to get optimal performance.
25143
25144 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25145
25146 commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
25147 Author: Mike Frysinger <vapier@gentoo.org>
25148 Date: Mon Nov 3 22:30:05 2008 -0500
25149
25150 Blackfin: setup bi_enetaddr for single nets
25151
25152 For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
25153 based on $ethaddr, so set it up.
25154
25155 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25156
25157 commit 40599239e7875b39e2a5c12e6545992041c72c52
25158 Author: Mike Frysinger <vapier@gentoo.org>
25159 Date: Fri Oct 24 22:48:47 2008 -0400
25160
25161 Blackfin: cache core/system clock values
25162
25163 Calculating the clocks requires a bit of calls to gcc math functions, so
25164 cache the values after the first run since they'll most likely never
25165 change once U-Boot is up and running.
25166
25167 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25168
25169 commit 6957a6209b02f6b69607fc47425f13731cc477f1
25170 Author: Mike Frysinger <vapier@gentoo.org>
25171 Date: Fri Oct 24 18:18:16 2008 -0400
25172
25173 Blackfin: enable --gc-sections
25174
25175 Start building all Blackfin boards with -ffunction-sections/-fdata-sections
25176 and linking with --gc-sections.
25177
25178 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25179
25180 commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
25181 Author: Mike Frysinger <vapier@gentoo.org>
25182 Date: Mon Oct 20 21:08:54 2008 -0400
25183
25184 Blackfin: dont check baud if it wont actually get used
25185
25186 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25187
25188 commit 400f5778f375bc99c73c8488c555def261ccfab7
25189 Author: Mike Frysinger <vapier@gentoo.org>
25190 Date: Tue Oct 14 07:54:09 2008 -0400
25191
25192 Blackfin: add driver for on-chip SPI controller
25193
25194 This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
25195
25196 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25197
25198 commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
25199 Author: Mike Frysinger <vapier@gentoo.org>
25200 Date: Sat Oct 18 05:33:51 2008 -0400
25201
25202 Blackfin: only build post code when CONFIG_POST
25203
25204 Save some time by using CONFIG_POST in the Makefile rather than C files.
25205
25206 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25207
25208 commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
25209 Author: Mike Frysinger <vapier@gentoo.org>
25210 Date: Thu Jan 8 11:57:57 2009 -0500
25211
25212 Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
25213
25214 Redo how pointers are managed to get rid of ugly casts and strict pointer
25215 aliasing issues that are highlighted by gcc 4.3.
25216
25217 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25218 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25219
25220 commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
25221 Author: Mike Frysinger <vapier@gentoo.org>
25222 Date: Tue Dec 9 17:46:21 2008 -0500
25223
25224 Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
25225
25226 No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
25227 does exactly the same thing as common "CONFIG_RMII".
25228
25229 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25230 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25231
25232 commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
25233 Author: Mike Frysinger <vapier@gentoo.org>
25234 Date: Wed Nov 5 06:36:15 2008 -0500
25235
25236 Blackfin: bfin_mac: use common debug()
25237
25238 Rather then defining our own DEBUGF(), just use the common debug().
25239
25240 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25241 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25242
25243 commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
25244 Author: Mike Frysinger <vapier@gentoo.org>
25245 Date: Mon Oct 20 13:59:51 2008 -0400
25246
25247 Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
25248
25249 Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
25250 of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
25251
25252 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25253 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25254
25255 commit ac45af4e63ea925f4accc98453aab1a1166c196d
25256 Author: Mike Frysinger <vapier@gentoo.org>
25257 Date: Tue Oct 14 04:52:00 2008 -0400
25258
25259 Blackfin: bfin_mac: cleanup MII/PHY functions
25260
25261 Cleanup and rewrite the MII/PHY related functions so that we can reuse the
25262 existing common linux/miiphy.h code and hook into the `mii` command.
25263
25264 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25265 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25266
25267 commit 6b310a05f0d10c751f22468040932139f71c71d3
25268 Author: Mike Frysinger <vapier@gentoo.org>
25269 Date: Tue Oct 14 00:31:30 2008 -0400
25270
25271 Blackfin: bfin_mac: set MDCDIV based on SCLK
25272
25273 Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
25274 use the real algorithm so it gets set correctly regardless of SCLK.
25275
25276 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25277 Acked-by: Ben Warren <biggerbadderben@gmail.com>
25278
25279 commit 930590f3e49c8f32256edf2e5861e1535a329c6c
25280 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25281 Date: Sat Jan 31 09:10:48 2009 +0100
25282
25283 ixp: move serial to drivers/serial
25284
25285 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25286
25287 commit f90c8022f448bc5e93090e4b714368e52e912f0f
25288 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25289 Date: Sat Jan 31 09:04:58 2009 +0100
25290
25291 ixp: move pci init in arm/board instead of cpu
25292
25293 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25294
25295 commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
25296 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25297 Date: Sat Jan 31 08:56:49 2009 +0100
25298
25299 ixp: move pci drivers to drivers/pci
25300
25301 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25302
25303 commit 012d5bab09a534e4800b02f50cf508e6837202ea
25304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25305 Date: Sat Jan 31 08:53:44 2009 +0100
25306
25307 ixp: Move conditional compilation to Makefile
25308
25309 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25310
25311 commit f693f501d67434df1f815fd1824a71973ae08207
25312 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25313 Date: Sat Jan 31 08:53:44 2009 +0100
25314
25315 ixp: add missing os define
25316
25317 need by arm-elf toolchains and no impact on the arm-linux one
25318
25319 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25320
25321 commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
25322 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25323 Date: Sat Jan 31 09:53:39 2009 +0100
25324
25325 ixp: remove the option to include the Microcode
25326
25327 instead the board will have to load it from flash or ram
25328 which will be specified by npe_ucode env var
25329
25330 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25331
25332 commit 1b017baf2071d8daf643bce87250db898c606c66
25333 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25334 Date: Fri Jan 30 09:45:23 2009 +0100
25335
25336 ixp/npe: Move conditional compilation to Makefile
25337
25338 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25339
25340 commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
25341 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25342 Date: Wed Jan 28 21:58:04 2009 +0100
25343
25344 SX1: add hardware V2 support
25345
25346 In the V2 the 2 flash has been replace by one 32MB flash
25347
25348 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25349
25350 commit f877f2233dbcd7417c2f0babe6a849099b167f3c
25351 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25352 Date: Wed Jan 28 21:58:03 2009 +0100
25353
25354 SX1: Fix second flash mapping
25355
25356 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25357
25358 commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
25359 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25360 Date: Wed Jan 28 21:58:03 2009 +0100
25361
25362 SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
25363
25364 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25365
25366 commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
25367 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25368 Date: Wed Jan 28 21:57:59 2009 +0100
25369
25370 move Samsung's board to board/samsung
25371
25372 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25373
25374 commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
25375 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25376 Date: Thu Jan 29 12:07:21 2009 +0100
25377
25378 move ARM Ltd. to vendor dir
25379
25380 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25381
25382 commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
25383 Author: Larry Johnson <lrj@acm.org>
25384 Date: Wed Jan 28 15:30:37 2009 -0500
25385
25386 ppc4xx: Clean up configuration file for Korat board
25387
25388 This patch updates the default environmental variables for the
25389 Korat PPC 440EPx board, and makes additional minor fixes.
25390
25391 Signed-off-by: Larry Johnson <lrj@acm.org>
25392 Signed-off-by: Stefan Roese <sr@denx.de>
25393
25394 commit f20405e31680efc36293c59b4963db57c9d93df4
25395 Author: Larry Johnson <lrj@acm.org>
25396 Date: Wed Jan 28 15:30:02 2009 -0500
25397
25398 ppc4xx: Add variable "korat_usbcf" for Korat board
25399
25400 The new environment variable "korat_usbcf" selects the USB
25401 port used by the Korat board's CompactFlash controller.
25402
25403 Signed-off-by: Larry Johnson <lrj@acm.org>
25404 Signed-off-by: Stefan Roese <sr@denx.de>
25405
25406 commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
25407 Author: Gunnar Rangoy <gunnar@rangoy.com>
25408 Date: Fri Jan 23 12:56:31 2009 +0100
25409
25410 AVR32: macb - Search for PHY id
25411
25412 This patch adds support for searching through available PHY-addresses in
25413 the macb-driver. This is needed for the ATEVK1100 evaluation board,
25414 where the PHY-address will be initialized to either 1 or 7.
25415
25416 This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
25417 enabled tells the driver to search for the PHY address.
25418
25419 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
25420 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
25421 Signed-off-by: Olav Morken <olavmrk@gmail.com>
25422 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25423
25424 commit af8626e0c08a780d9ded1d9c4883a89355f60e75
25425 Author: Olav Morken <olavmrk@gmail.com>
25426 Date: Fri Jan 23 12:56:26 2009 +0100
25427
25428 Fix IP alignment problem
25429
25430 This patch removes volatile from:
25431 volatile IP_t *ip = (IP_t *)xip;
25432
25433 Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
25434 using volatile, which causes an exception since xip isn't aligned on a word
25435 boundary.
25436
25437 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
25438 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
25439 Signed-off-by: Olav Morken <olavmrk@gmail.com>
25440 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25441
25442 commit 12a8b9db12f82a189ff143a58731007f5469da61
25443 Author: Ron Madrid <ron_madrid@sbcglobal.net>
25444 Date: Wed Jan 28 16:17:21 2009 -0800
25445
25446 Marvell 88E1118 interrupt fix
25447
25448 This patch adjusts the LED control so that interrupt lines are not reading LEDs
25449 and effectively causing indefinite interrupts to the controller.
25450
25451 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
25452 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25453
25454 commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
25455 Author: Stefan Roese <sr@denx.de>
25456 Date: Wed Jan 21 17:14:26 2009 +0100
25457
25458 net: smc911x.c: Add LAN9211 to chip_ids[] array
25459
25460 Signed-off-by: Stefan Roese <sr@denx.de>
25461 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25462
25463 commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
25464 Author: Mike Frysinger <vapier@gentoo.org>
25465 Date: Tue Jan 27 16:53:39 2009 -0500
25466
25467 Move is_valid_ether_addr() to include/net.h
25468
25469 Import the is_valid_ether_addr() function from the Linux kernel.
25470
25471 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25472 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25473
25474 commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
25475 Author: Michal Simek <monstr@monstr.eu>
25476 Date: Mon Jan 5 12:25:13 2009 +0100
25477
25478 net: Sort Makefile labels
25479
25480 Signed-off-by: Michal Simek <monstr@monstr.eu>
25481 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25482
25483 commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
25484 Author: Wolfgang Denk <wd@denx.de>
25485 Date: Wed Jan 28 23:06:42 2009 +0100
25486
25487 85xx: Fix compile breakage with sbc8540 and sbc8560
25488
25489 This fixes an error which raises just a warning:
25490 sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
25491
25492 Signed-off-by: Wolfgang Denk <wd@denx.de>
25493
25494 commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
25495 Author: Mike Frysinger <vapier@gentoo.org>
25496 Date: Wed Jan 28 13:48:55 2009 -0500
25497
25498 SPD823TS: do not define CONFIG_CMD_ENV
25499
25500 Since the SPD823TS board does not actually have any writable flash to save
25501 its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
25502 disabled.
25503
25504 This fixes the build error:
25505 common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
25506 common/cmd_nvedit.c:557: undefined reference to `saveenv'
25507 make: *** [u-boot] Error 1
25508
25509 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25510
25511 commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
25512 Author: Dirk Behme <dirk.behme@googlemail.com>
25513 Date: Wed Jan 28 21:40:16 2009 +0100
25514
25515 OMAP3: Add Zoom1 board support
25516
25517 Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
25518 http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
25519
25520 Signed-off-by: Nishanth Menon <nm@ti.com>
25521 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25522
25523 commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
25524 Author: Dirk Behme <dirk.behme@googlemail.com>
25525 Date: Wed Jan 28 21:39:58 2009 +0100
25526
25527 OMAP3: Add Pandora support
25528
25529 Add Pandora support.
25530
25531 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
25532 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
25533 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25534
25535 commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
25536 Author: Dirk Behme <dirk.behme@googlemail.com>
25537 Date: Wed Jan 28 21:39:58 2009 +0100
25538
25539 OMAP3: Add EVM board
25540
25541 Add EVM board support.
25542
25543 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
25544 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
25545 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25546
25547 commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
25548 Author: Dirk Behme <dirk.behme@googlemail.com>
25549 Date: Wed Jan 28 21:39:57 2009 +0100
25550
25551 OMAP3: Add Overo board
25552
25553 Add Overo board support.
25554
25555 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
25556 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
25557 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25558
25559 commit f904cdbb68167c647887f19929ad295dbaac8862
25560 Author: Dirk Behme <dirk.behme@googlemail.com>
25561 Date: Tue Jan 27 18:19:12 2009 +0100
25562
25563 OMAP3: Add common power code, README, and BeagleBoard
25564
25565 Add BeagleBoard support, common power code and README.
25566
25567 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
25568 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
25569
25570 commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
25571 Author: Kumar Gala <galak@kernel.crashing.org>
25572 Date: Wed Jan 28 08:31:10 2009 -0600
25573
25574 85xx: Fix compile breakage with MPC8540EVAL
25575
25576 Configuring for MPC8540EVAL board...
25577 mpc8540eval.c: In function 'checkboard':
25578 mpc8540eval.c:53: error: invalid operands to binary /
25579 make[1]: *** [mpc8540eval.o] Error 1
25580
25581 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25582
25583 commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
25584 Author: Bryan Wu <bryan.wu@analog.com>
25585 Date: Sun Jan 18 23:04:27 2009 -0500
25586
25587 usb_scan_devices: fix output with no devices
25588
25589 We should check the return of usb_new_device() so that if no USB device is
25590 found, we print out the right message rather than always saying "new usb
25591 device found".
25592
25593 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
25594 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25595 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25596
25597 commit f1c1f540243438246aefb703fdcf16957e3a72e1
25598 Author: Stefan Roese <sr@denx.de>
25599 Date: Thu Jan 22 10:11:21 2009 +0100
25600
25601 USB: Add high-speed (480Mb/s) to all USB related outputs
25602
25603 With this patch the USB related connection speed output ("usb tree" command and
25604 debug output) is now high-speed enabled.
25605
25606 This patch also fixes a compilation warning when debugging is enabled.
25607
25608 Signed-off-by: Stefan Roese <sr@denx.de>
25609 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25610
25611 commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
25612 Author: Stefan Roese <sr@denx.de>
25613 Date: Wed Jan 21 17:12:19 2009 +0100
25614
25615 USB: Add dcache support to the EHCI driver
25616
25617 This patch adds routines to handle (flush/invalidate) the dcache for the
25618 QH and qTD structures and data buffers. This is needed on platforms using
25619 this EHCI support with dcache enabled (like the MIPS VCT board port).
25620
25621 Signed-off-by: Stefan Roese <sr@denx.de>
25622 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25623
25624 commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
25625 Author: Stefan Roese <sr@denx.de>
25626 Date: Wed Jan 21 17:12:28 2009 +0100
25627
25628 USB: Add EHCI support for VCT EHCI controller
25629
25630 Signed-off-by: Stefan Roese <sr@denx.de>
25631 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25632
25633 commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
25634 Author: Stefan Roese <sr@denx.de>
25635 Date: Wed Jan 21 17:12:10 2009 +0100
25636
25637 USB: Add config option to call ehci_hcd_init() again after EHCI reset
25638
25639 This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
25640 to call ehci_hcd_init() again after ehci_reset() is executed. This
25641 is needed for the upcoming VCT EHCI support which needs to re-init
25642 the hcd part again after the EHCI CMD_RESET is executed.
25643
25644 Signed-off-by: Stefan Roese <sr@denx.de>
25645 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25646
25647 commit 597eb28bd9691266b7b804364cda577cdb51d106
25648 Author: Stefan Roese <sr@denx.de>
25649 Date: Wed Jan 21 17:12:01 2009 +0100
25650
25651 USB: Fix speed detection on EHCI cntr with root hub transaction translators
25652
25653 This patch fixes an issue that the speed of USB devices was not detected
25654 correctly on some EHCI controllers. This will be used on the upcoming VCT
25655 EHCI support.
25656
25657 Signed-off-by: Stefan Roese <sr@denx.de>
25658 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25659
25660 commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
25661 Author: Thomas Abraham <t-abraham@ti.com>
25662 Date: Sun Jan 4 09:41:20 2009 +0530
25663
25664 usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
25665
25666 Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
25667 configuration file.
25668
25669 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25670 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25671 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25672 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25673 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25674
25675 commit 538ef967715322f64ee08efa2296d9682111b014
25676 Author: Thomas Abraham <t-abraham@ti.com>
25677 Date: Sun Jan 4 09:41:16 2009 +0530
25678
25679 usb : musb : Enabling DM6446 (TI DaVinci) USB module power
25680
25681 Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
25682 controller hook up to USB core layer.
25683
25684 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25685 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25686 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25687 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25688 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25689
25690 commit e142e9f35f8ec61e74bf8019428b003f5070c33b
25691 Author: Thomas Abraham <t-abraham@ti.com>
25692 Date: Sun Jan 4 09:41:13 2009 +0530
25693
25694 usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
25695
25696 Adding DM6446 (TI DaVinci) platform specific USB functionality for
25697 USB Phy and VBUS initialization.
25698
25699 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25700 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25701 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25702 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25703 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25704
25705 commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
25706 Author: Thomas Abraham <t-abraham@ti.com>
25707 Date: Sun Jan 4 09:41:09 2009 +0530
25708
25709 usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
25710
25711 Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
25712 platform.
25713
25714 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25715 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25716 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25717 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25718 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25719
25720 commit a142896934c755e679ba87e227a8e449f39b0012
25721 Author: Thomas Abraham <t-abraham@ti.com>
25722 Date: Sun Jan 4 09:41:03 2009 +0530
25723
25724 usb : musb : Adding host controller driver for Mentor USB controller
25725
25726 Adding Mentor USB core functionality and Mentor USB Host controller
25727 functionality for Mentor USB OTG controller (musbhdrc).
25728
25729 Signed-off-by: Ravi Babu <ravibabu@ti.com>
25730 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
25731 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25732 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
25733 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25734
25735 commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
25736 Author: Mike Frysinger <vapier@gentoo.org>
25737 Date: Thu Jan 1 18:27:27 2009 -0500
25738
25739 usb.h: use standard __LITTLE_ENDIAN from Linux headers
25740
25741 Rather than forcing people to define a custom "LITTLEENDIAN", just use the
25742 __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
25743 already setting up.
25744
25745 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25746 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25747
25748 commit 7b6e31eb17e3ff76238a60803fc531517d516223
25749 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25750 Date: Wed Dec 31 10:33:56 2008 +0100
25751
25752 USB ehci ixp4xx support
25753
25754 Add USB ehci ixp4xx host controller. Test on ixdp465 board.
25755
25756 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25757 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25758
25759 commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
25760 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25761 Date: Wed Dec 31 10:33:22 2008 +0100
25762
25763 USB ehci remove infinite loop and use handshake function
25764
25765 USB ehci code cleanup. Use handshake instead of infinite while loop
25766 to check the STD_ASS status
25767
25768 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25769 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25770
25771 commit 8fea2914ac974029b65926ef8247d908f84d202d
25772 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25773 Date: Wed Dec 31 10:32:41 2008 +0100
25774
25775 Add initial support for USB ehci pci
25776
25777 Add USB ehci pci support. This patch doesn't include any
25778 pci_ids and it is not tested on real hardware.
25779
25780 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25781 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25782
25783 commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
25784 Author: Bryan Wu <Bryan.Wu@analog.com>
25785 Date: Thu Jan 1 19:48:07 2009 -0500
25786
25787 usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
25788
25789 The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
25790 does not like to be reset, so check for it.
25791
25792 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
25793 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25794 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25795
25796 commit 1eb734fed3b79a5e6106dad16e88041894fdab30
25797 Author: Thomas Abraham <t-abraham@ti.com>
25798 Date: Sun Jan 4 12:15:35 2009 +0530
25799
25800 usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
25801
25802 This patch populates the 'priv' field of the USB keyboard device_t
25803 structure. The 'priv' field is populated with the address of the
25804 'struct usb_device' structure that represents the USB device.
25805
25806 The 'priv' field can then be used in the 'usb_event_poll' function to
25807 determine the USB device that requires to be polled. An
25808 example of its usage in 'usb_event_poll' function is as below.
25809
25810 device_t *dev;
25811 struct usb_device *usb_kbd_dev;
25812
25813 <snip>
25814
25815 dev = device_get_by_name("usbkbd");
25816 usb_kbd_dev = (struct usb_device *)dev->priv;
25817 iface = &usb_kbd_dev->config.if_desc[0];
25818
25819 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
25820 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25821
25822 commit 366523c26b6320af171459b19e6e0e9e3baa83ca
25823 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25824 Date: Thu Dec 18 10:05:37 2008 +0100
25825
25826 USB change speed
25827
25828 USB changes the speed according to the port status
25829
25830 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25831 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25832
25833 commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
25834 Author: Remy Böhmer <linux@bohmer.net>
25835 Date: Sat Dec 13 22:51:58 2008 +0100
25836
25837 EHCI fix code and ixp4xx test.
25838 USB ehci configuration parameter:
25839
25840 #define CONFIG_CMD_USB 1
25841 #define CONFIG_USB_STORAGE 1
25842 #define CONFIG_USB_EHCI
25843 #define CONFIG_USB_EHCI_IXP4XX 1
25844 #define CONFIG_EHCI_IS_TDI 1
25845 #define CONFIG_EHCI_DESC_BIG_ENDIAN 1
25846 #define CONFIG_EHCI_MMIO_BIG_ENDIAN 1
25847 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
25848 #define CONFIG_LEGACY_USB_INIT_SEQ 1
25849
25850 2 USB Device(s) found
25851 scanning bus for storage devices... 0 Storage Device(s) found
25852 => usb tree
25853
25854 Device Tree:
25855 1 Hub (1.5MBit/s, 0mA)
25856 | u-boot EHCI Host Controller
25857 |
25858 |+-2 Mass Storage (12MBit/s, 100mA)
25859 Sony Storage Media 0C07040930296
25860
25861 =>
25862
25863 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25864 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25865
25866 commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
25867 Author: michael <michael@panicking.retis>
25868 Date: Thu Dec 11 13:43:55 2008 +0100
25869
25870 [PATCH] This patch add varius fix to the ehci.
25871 - fix ehci_readl, ehci_writel
25872 - introduce new define in ehci.h
25873 - introduce the handshake function for waiting on a register
25874 - fix usb_ehci_fsl with the new HC_LENGTH macro
25875
25876 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25877 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25878
25879 commit db63299b1dd2894ade542278210bccd046de6435
25880 Author: michael <michael@panicking.retis>
25881 Date: Wed Dec 10 17:55:19 2008 +0100
25882
25883 [PATCH] Fix EHCI usb. I start to test on a
25884 IXP465 board and I find some errors in the code. This
25885 patch fix:
25886 - descriptor initizialization (config, interface and endpoint
25887 must be one next-to the other when the USB_DT_CONFIG message
25888 is send.
25889 - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
25890 and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
25891 - Introduce the linux version of the usb_config_descriptor and
25892 usb_interface descriptor. This descriptor does't contains
25893 u-boot extension.
25894
25895 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25896 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25897
25898 commit 6b92487dcf9afe83a3570153d66940fdb293be76
25899 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25900 Date: Fri Nov 28 13:22:09 2008 +0100
25901
25902 USB ehci freescale support
25903
25904 Add USB ehci freescale support
25905
25906 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25907 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25908
25909 commit aaf098cfeed04595d4c5100ffd39095d79edbf90
25910 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25911 Date: Fri Nov 28 13:20:46 2008 +0100
25912
25913 USB ehci core support
25914
25915 Add USB ehci core support
25916
25917 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25918 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25919
25920 commit 3e126484df7868e341545cce740b24b62b0cd3b7
25921 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25922 Date: Fri Nov 28 13:19:19 2008 +0100
25923
25924 Prepare USB layer for ehci
25925
25926 Prepare USB layer for ehci support
25927
25928 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25929 Signed-off-by: Remy Böhmer <linux@bohmer.net>
25930
25931 commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
25932 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
25933 Date: Wed Dec 10 15:52:06 2008 +0100
25934
25935 USB storage cleanup patch
25936
25937 Cleanup usb storage
25938
25939 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
25940 Signed-off-by: Remy Bohmer <linux@bohmer.net>
25941
25942 commit fe033ad6d0883063fe857237abb9436fab03208c
25943 Author: Mike Frysinger <vapier@gentoo.org>
25944 Date: Sun Oct 12 06:02:55 2008 -0400
25945
25946 Blackfin: fixup misc warnings such as printf's and missing casts
25947
25948 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25949
25950 commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
25951 Author: Mike Frysinger <vapier@gentoo.org>
25952 Date: Sun Oct 12 22:09:26 2008 -0400
25953
25954 Blackfin: convert old boards to use COBJS-y Makefile style
25955
25956 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25957
25958 commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
25959 Author: Mike Frysinger <vapier@gentoo.org>
25960 Date: Sat Oct 11 22:38:37 2008 -0400
25961
25962 Blackfin: bf533-stamp: rewrite resource swap logic
25963
25964 The old swap function tended to clobber unrelated pins and screw up masks.
25965 Rewrite the thing from scratch so it only uses the resources it needs.
25966
25967 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25968
25969 commit 29d4ea0a9073c82469184331010136f52edf8db6
25970 Author: Mike Frysinger <vapier@gentoo.org>
25971 Date: Sat Oct 11 22:08:42 2008 -0400
25972
25973 Blackfin: bootldr: implement BF53x/BF56x LDR loader
25974
25975 The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
25976 arbitrary memory locations, so implement a basic one in software.
25977
25978 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25979
25980 commit 8b35e3aeff6c2d747c37697997b3f8a808432329
25981 Author: Mike Frysinger <vapier@gentoo.org>
25982 Date: Sat Oct 11 22:05:42 2008 -0400
25983
25984 Blackfin: implement real write support for OTP
25985
25986 Now that real documentation has been released for the OTP interface and
25987 the on-chip ROM wrt writing/timings, implement support for reading/writing
25988 as well as dumping/locking.
25989
25990 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25991
25992 commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
25993 Author: Mike Frysinger <vapier@gentoo.org>
25994 Date: Sat Oct 11 22:04:05 2008 -0400
25995
25996 Blackfin: update on-chip ROM API
25997
25998 This brings the API for the on-chip ROM in line with the toolchain and
25999 hardware documentation.
26000
26001 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26002
26003 commit 7633903bff432ec7b27905dce7396958553f2be6
26004 Author: Mike Frysinger <vapier@gentoo.org>
26005 Date: Sat Oct 11 21:52:17 2008 -0400
26006
26007 Blackfin: allow serial console to be disabled
26008
26009 Some devices have no UART device pulled out, so allow people to disable the
26010 driver completely in favor of other methods (like JTAG-console).
26011
26012 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26013
26014 commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
26015 Author: Mike Frysinger <vapier@gentoo.org>
26016 Date: Sat Oct 11 21:51:20 2008 -0400
26017
26018 Blackfin: support console-over-JTAG
26019
26020 The Blackfin JTAG has the ability to pass data via a back-channel without
26021 halting the processor. Utilize that channel to emulate a console.
26022
26023 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26024
26025 commit cf8f2efb5f39c5225da92391c14a07eecbeca881
26026 Author: Mike Frysinger <vapier@gentoo.org>
26027 Date: Sat Oct 11 21:49:06 2008 -0400
26028
26029 Blackfin: handle new anomalies with reset
26030
26031 Workaround fun new anomalies related to software reset of the processor.
26032
26033 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26034
26035 commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
26036 Author: Mike Frysinger <vapier@gentoo.org>
26037 Date: Sat Oct 11 21:44:00 2008 -0400
26038
26039 Blackfin: pass RETX to Linux
26040
26041 Make sure we save the value of RETX at power on and then pass it on to the
26042 kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
26043
26044 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26045
26046 commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
26047 Author: Mike Frysinger <vapier@gentoo.org>
26048 Date: Sat Oct 11 21:40:26 2008 -0400
26049
26050 Blackfin: clarify relocation comment during init
26051
26052 People often ask questions about the init process and when things go
26053 from flash to relocated base, so clarify the comments a bit.
26054
26055 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26056
26057 commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
26058 Author: Mike Frysinger <vapier@gentoo.org>
26059 Date: Sat Oct 11 21:23:41 2008 -0400
26060
26061 Blackfin: just set SP register directly during init
26062
26063 No need to set the SP register indirectly to the configured value when it
26064 can be set directly.
26065
26066 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26067
26068 commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
26069 Author: Mike Frysinger <vapier@gentoo.org>
26070 Date: Sat Oct 11 21:15:53 2008 -0400
26071
26072 Blackfin: add portmuxing for UARTs on the BF51x
26073
26074 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26075
26076 commit 4f6a313240c531042f16909a3a170ab047b95779
26077 Author: Mike Frysinger <vapier@gentoo.org>
26078 Date: Sun Jun 1 01:26:29 2008 -0400
26079
26080 Blackfin: respect CONFIG_CLKIN_HALF
26081
26082 As pointed out by Ivan Koryakovskiy, the initialization code was not
26083 actually respecting the CONFIG_CLKIN_HALF option when configuring the
26084 PLL_CTL register.
26085
26086 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26087
26088 commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
26089 Author: Mike Frysinger <vapier@gentoo.org>
26090 Date: Sun Jun 1 01:21:34 2008 -0400
26091
26092 Blackfin: use common memcpy routine during init
26093
26094 Rather than using a local custom memcpy function, just call the existing
26095 optimized Blackfin version.
26096
26097 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26098
26099 commit 362c943347364e9373af4c5530778491ab56ec2e
26100 Author: Mike Frysinger <vapier@gentoo.org>
26101 Date: Wed Apr 9 02:27:06 2008 -0400
26102
26103 Blackfin: set default boot SPI CS for BF538/BF539
26104
26105 The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
26106 Blackfin parts.
26107
26108 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26109
26110 commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
26111 Author: Mike Frysinger <vapier@gentoo.org>
26112 Date: Wed Apr 9 02:20:59 2008 -0400
26113
26114 Blackfin: punt unused BF533-STAMP definitions
26115
26116 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26117
26118 commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
26119 Author: Mike Frysinger <vapier@gentoo.org>
26120 Date: Fri Apr 18 20:44:11 2008 -0400
26121
26122 Blackfin: resurrect BF533-STAMP video splash driver
26123
26124 This video driver used to live in the Blackfin cpu directory, but it was
26125 lost during the unification process. This brings it back.
26126
26127 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26128
26129 commit a750d038f2548d846ea1e046d873dc932d041319
26130 Author: Mike Frysinger <vapier@gentoo.org>
26131 Date: Wed Apr 9 02:31:29 2008 -0400
26132
26133 Blackfin: tighten up post memory coding style
26134
26135 No functional changes here; just cleanup code style a bit.
26136
26137 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26138
26139 commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
26140 Author: Mike Frysinger <vapier@gentoo.org>
26141 Date: Wed Apr 9 02:29:18 2008 -0400
26142
26143 Blackfin: bf537-stamp nand: fix more style errors in previous commit
26144
26145 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26146
26147 commit 41f3325ae9add641036d7cb362e884b698e53f07
26148 Author: Mike Frysinger <vapier@gentoo.org>
26149 Date: Sat Oct 11 20:31:17 2008 -0400
26150
26151 Blackfin: drop dead/wrong debug code in initdram()
26152
26153 The DEBUG code in initdram() is quite old and was never really useful, so
26154 just drop it altogether. Common Blackfin debug code does a better job.
26155
26156 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26157
26158 commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
26159 Author: Mike Frysinger <vapier@gentoo.org>
26160 Date: Sat Oct 11 20:30:28 2008 -0400
26161
26162 Blackfin: bf533-ezkit: shuffle flash defines a little
26163
26164 Some of the flash defines weren't in the correct location and caused build
26165 problems in some configurations, so let's move types and defines to better
26166 local locations.
26167
26168 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26169
26170 commit be853bf86b41e91f4c422f0f56fdf87ea3191266
26171 Author: Mike Frysinger <vapier@gentoo.org>
26172 Date: Mon Oct 6 04:16:47 2008 -0400
26173
26174 Blackfin: overhaul i2c driver
26175
26176 The current Blackfin i2c driver does not work properly with certain devices
26177 due to it breaking up transfers incorrectly. This is a rewrite of the
26178 driver and relocates it to the newer place in the source tree.
26179
26180 Also remove duplicated I2C speed defines in Blackfin board configs and
26181 disable I2C slave address usage since it isn't implemented.
26182
26183 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26184
26185 commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
26186 Author: Mike Frysinger <vapier@gentoo.org>
26187 Date: Mon Oct 6 04:00:07 2008 -0400
26188
26189 Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
26190
26191 Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
26192 128kB when setting up the default flash protection region for U-Boot
26193 itself.
26194
26195 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26196
26197 commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
26198 Author: Mike Frysinger <vapier@gentoo.org>
26199 Date: Mon Oct 6 03:57:39 2008 -0400
26200
26201 Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
26202
26203 When setting up the global data, rather than relying on sizeof(), use the
26204 common CONFIG_SYS_GBL_DATA_SIZE define.
26205
26206 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26207
26208 commit 01815c2d06c5b838f2cd536703e47bd2c9148194
26209 Author: Mike Frysinger <vapier@gentoo.org>
26210 Date: Mon Oct 6 03:52:24 2008 -0400
26211
26212 Blackfin: implement general support for CONFIG_STATUS_LED
26213
26214 Here are the Blackfin-specific and board-independent pieces for status leds.
26215
26216 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26217
26218 commit 6882b5a79a3247494b62c05015fa672557f1bfaa
26219 Author: Mike Frysinger <vapier@gentoo.org>
26220 Date: Mon Oct 6 03:49:32 2008 -0400
26221
26222 Blackfin: do not init i2c in Blackfin board init
26223
26224 The common code takes care of calling i2c_init() when needed, so no point
26225 in us doing it as well.
26226
26227 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26228
26229 commit 1118ea73698eee6e72ef5cbfc00e41746040304f
26230 Author: Mike Frysinger <vapier@gentoo.org>
26231 Date: Mon Oct 6 03:42:20 2008 -0400
26232
26233 Blackfin: bfin_mac: update port muxing
26234
26235 Adds support more Blackfin parts and fixes broken muxing for older ones.
26236
26237 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26238
26239 commit 05b75e48832fc4afeecf8e76d704349557dffa35
26240 Author: Mike Frysinger <vapier@gentoo.org>
26241 Date: Mon Oct 6 03:35:44 2008 -0400
26242
26243 Blackfin: fix dcache handling when doing dma memcpy's
26244
26245 Our dcache invalidate function doesn't just invalidate, it also flushes.
26246 So rename the function accordingly and fix the dma_memcpy() function so it
26247 doesn't inadvertently corrupt the data destination.
26248
26249 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26250
26251 commit 68e5632494168095d75f120af70043b68afd2476
26252 Author: Mike Frysinger <vapier@gentoo.org>
26253 Date: Thu Aug 7 18:56:56 2008 -0400
26254
26255 Blackfin: dont generate ldrs with --force
26256
26257 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26258
26259 commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
26260 Author: Mike Frysinger <vapier@gentoo.org>
26261 Date: Thu Aug 7 18:55:30 2008 -0400
26262
26263 Blackfin: pass --bmode/--initcode when creating ldr
26264
26265 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26266
26267 commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
26268 Author: Mike Frysinger <vapier@gentoo.org>
26269 Date: Thu Aug 7 18:39:27 2008 -0400
26270
26271 Blackfin: minimize time cache is turned off when replacing cplb entries
26272
26273 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26274
26275 commit 21d631360430cf0ae9099612273cd4de28911ba9
26276 Author: Mike Frysinger <vapier@gentoo.org>
26277 Date: Thu Aug 7 15:31:13 2008 -0400
26278
26279 Blackfin: split cache handling out of dma_memcpy()
26280
26281 Creating a new dma_memcpy() function that skips all cache checks allows us
26282 to use the function in very early init where the cache is not yet setup.
26283
26284 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26285
26286 commit d31eb38512bed377d5d4b3c696662e52120a2e4c
26287 Author: Mike Frysinger <vapier@gentoo.org>
26288 Date: Thu Aug 7 15:30:49 2008 -0400
26289
26290 Blackfin: abort dma_memcpy() for L1 scratchpad
26291
26292 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26293
26294 commit 81b799add709177e838466461f7b9989488b0fd5
26295 Author: Mike Frysinger <vapier@gentoo.org>
26296 Date: Thu Aug 7 15:27:52 2008 -0400
26297
26298 Blackfin: rename bootm.c to boot.c
26299
26300 The boot file contains functions for more than just "bootm", so rename it
26301 accordingly.
26302
26303 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26304
26305 commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
26306 Author: Mike Frysinger <vapier@gentoo.org>
26307 Date: Thu Aug 7 13:22:37 2008 -0400
26308
26309 Blackfin: set more sane default board config values
26310
26311 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26312
26313 commit 36cd52a00794fb15ffab05d640acca92d7482993
26314 Author: Mike Frysinger <vapier@gentoo.org>
26315 Date: Thu Aug 7 15:24:59 2008 -0400
26316
26317 Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
26318
26319 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26320
26321 commit c8054bc12e00669bd7588f2b30fef48aa94babac
26322 Author: Mike Frysinger <vapier@gentoo.org>
26323 Date: Thu Aug 7 13:21:27 2008 -0400
26324
26325 Blackfin: add bit defines for DDR parts
26326
26327 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26328
26329 commit 154502fe0796f3b7a4698378c5d2080ae28a9782
26330 Author: Mike Frysinger <vapier@gentoo.org>
26331 Date: Thu Aug 7 13:21:11 2008 -0400
26332
26333 Blackfin: add defines to describe active bootrom behavior
26334
26335 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26336
26337 commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
26338 Author: Kim Phillips <kim.phillips@freescale.com>
26339 Date: Tue Jan 27 16:03:53 2009 -0600
26340
26341 mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
26342
26343 extend commit c70564e6b1bd08f3230182392238907f3531a87e
26344 "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
26345 to the simpc8313 build and fix this:
26346
26347 ...Large Page NAND...Configuring for SIMPC8313 board...
26348 nand_boot_fsl_elbc.o: In function `nand_boot':
26349 nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
26350 make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
26351 make: *** [nand_spl] Error 2
26352
26353 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26354
26355 commit 54a7cc4912feefa45be961cc47cc159563725d2f
26356 Author: Wolfgang Denk <wd@denx.de>
26357 Date: Wed Jan 28 09:25:31 2009 +0100
26358
26359 mpc8536ds.c: include sata.h to for needed function prototypes
26360
26361 Signed-off-by: Wolfgang Denk <wd@denx.de>
26362
26363 commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
26364 Author: Peter Tyser <ptyser@xes-inc.com>
26365 Date: Tue Jan 27 18:03:12 2009 -0600
26366
26367 Command usage cleanup
26368
26369 Remove command name from all command "usage" fields and update
26370 common/command.c to display "name - usage" instead of
26371 just "usage". Also remove newlines from command usage fields.
26372
26373 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26374
26375 commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
26376 Author: Peter Tyser <ptyser@xes-inc.com>
26377 Date: Tue Jan 27 18:03:11 2009 -0600
26378
26379 amcc: Clean up command usage output
26380
26381 Update taihu and taishan commands to use cmd_usage() function
26382 to display usage messages.
26383
26384 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26385
26386 commit 62c3ae7c6ef215b1afa614abdf61acf077752207
26387 Author: Peter Tyser <ptyser@xes-inc.com>
26388 Date: Tue Jan 27 18:03:10 2009 -0600
26389
26390 Standardize command usage messages with cmd_usage()
26391
26392 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26393
26394 commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
26395 Author: Peter Tyser <ptyser@xes-inc.com>
26396 Date: Tue Jan 27 18:03:09 2009 -0600
26397
26398 pcs440ep: Clean up led command definition
26399
26400 The pcs440ep's led command usage formatting is non-standard. It
26401 was made standard in preparation for larger command usage updates.
26402
26403 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26404
26405 commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
26406 Author: Peter Tyser <ptyser@xes-inc.com>
26407 Date: Tue Jan 27 18:03:08 2009 -0600
26408
26409 Clean up diufb command definitions
26410
26411 The diufb command usage formatting is non-standard. It was
26412 made standard in preparation for larger command usage updates.
26413
26414 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26415
26416 commit 6450a8485836fc80615ae6de6a864c33369b44f5
26417 Author: Wolfgang Denk <wd@denx.de>
26418 Date: Wed Jan 28 00:29:26 2009 +0100
26419
26420 Update CHANGELOG, tiny coding style cleanup.
26421
26422 Signed-off-by: Wolfgang Denk <wd@denx.de>
26423
26424 commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
26425 Author: Mike Frysinger <vapier@gentoo.org>
26426 Date: Tue Jan 27 16:12:21 2009 -0500
26427
26428 SATA: do not auto-initialize during boot
26429
26430 Rather than have the board code initialize SATA automatically during boot,
26431 make the user manually run "sata init". This brings the SATA subsystem in
26432 line with common U-Boot policy.
26433
26434 Rather than having a dedicated weak function "is_sata_supported", people
26435 can override sata_initialize() to do their weird board stuff. Then they
26436 can call the actual __sata_initialize().
26437
26438 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26439
26440 commit 50970839712dda35399e2fa83fe818df9354d618
26441 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
26442 Date: Mon Jan 26 08:45:14 2009 -0500
26443
26444 part_efi: Fix partition size calculation due to inclusive ending LBA.
26445
26446 The ending LBA is inclusive. Hence, the partition size should be
26447 ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
26448
26449 This is confirmed against the results from the parted tool.
26450 (e.g. use parted /dev/sda -s unit S print) and observe the size.
26451
26452 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
26453
26454 commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
26455 Author: Tomasz Figa <tomasz.figa@gmail.com>
26456 Date: Tue Dec 30 18:35:57 2008 +0100
26457
26458 jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
26459
26460 This patch fixes a bug (?) introduced after inclusion of the new
26461 JFFS2 code.
26462
26463 When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
26464 fill in part->sector_size (keeping it as 0), but a correct value is
26465 needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
26466 to be in the same place of the memory, what obviously means
26467 impossibility to use the JFFS2 partition.
26468
26469 This problem is fixed in this patch by including sector size
26470 calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
26471
26472 Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
26473
26474 commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
26475 Author: Mike Frysinger <vapier@gentoo.org>
26476 Date: Tue Dec 30 02:59:25 2008 -0500
26477
26478 saveenv: standardize enablement
26479
26480 Rather than special casing each environment type for enabling the saveenv
26481 command, have them all behave the same. This avoids bitrot as new env
26482 sources are added/removed.
26483
26484 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26485
26486 commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
26487 Author: Andrew Dyer <adyer@righthandtech.com>
26488 Date: Mon Dec 29 17:36:01 2008 -0600
26489
26490 soft_i2c.c add option for repeated start in i2c_read()
26491
26492 This patch adds a #define to optionally change the behaviour of
26493 i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
26494 stop-start between sending the device address pointer write and
26495 reading back the data. The current behaviour is retained as the
26496 default.
26497
26498 While most devices will work either way, I have a smart battery(*)
26499 that requires repeated start, and someone at some point found a
26500 device that required a stop-start.
26501
26502 (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
26503
26504 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
26505
26506 commit 3429071700963ca2f944c51d695a7481af0cee33
26507 Author: Wolfgang Denk <wd@denx.de>
26508 Date: Tue Jan 27 22:07:14 2009 +0100
26509
26510 {delta,zylonite}/lowlevel_init.S: fix typo
26511
26512 Commit 9d803d8c mistakenly changed some constants
26513 from 0x300 into 300 - this patch fixes it.
26514
26515 Pointed out by Tom Evans <tom@ceos.com.au>, see
26516 http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
26517 details.
26518
26519 Signed-off-by: Wolfgang Denk <wd@denx.de>
26520
26521 commit 1bc434373013af241835c14011ac3f291dccbf53
26522 Author: Stefan Althoefer <stefan.althoefer@web.de>
26523 Date: Sat Dec 20 19:40:41 2008 +0100
26524
26525 drivers/net/e1000.c: missing terminator for supported devices
26526
26527 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
26528
26529 commit 65f7d41031a70b1649b35020995c505edca91533
26530 Author: Wolfgang Denk <wd@denx.de>
26531 Date: Tue Jan 27 21:36:28 2009 +0100
26532
26533 fat.c: fix warning: array subscript is above array bounds
26534
26535 Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
26536
26537 Signed-off-by: Wolfgang Denk <wd@denx.de>
26538
26539 commit 107b801cf3fe39612d69d70581ebc3bf5e215554
26540 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26541 Date: Fri Jan 2 15:11:41 2009 +0100
26542
26543 Fix gunzip in case of insufficient output buffer
26544
26545 U-Boot's gunzip() function does not handle the return code
26546 of zlib's inflate() function correctly. gunzip() is implemented
26547 to uncompress all input data in one run. So the correct return
26548 code for the good case is Z_STREAM_END. In case of insufficient
26549 output buffer memory inflate returns Z_OK. For gunzip() this
26550 is an error.
26551
26552 It also makes sense to me to call inflateEnd() also in case
26553 of an error.
26554
26555 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26556
26557 commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
26558 Author: Stefan Roese <sr@denx.de>
26559 Date: Wed Jan 21 17:25:01 2009 +0100
26560
26561 MIPS: Add VCT board series support (Part 3/3)
26562
26563 Signed-off-by: Stefan Roese <sr@denx.de>
26564
26565 commit ae691e5719c48f1d2826cb72722497d1d162765b
26566 Author: Stefan Roese <sr@denx.de>
26567 Date: Wed Jan 21 17:24:49 2009 +0100
26568
26569 MIPS: Add VCT board series support (Part 2/3)
26570
26571 Signed-off-by: Stefan Roese <sr@denx.de>
26572
26573 commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
26574 Author: Stefan Roese <sr@denx.de>
26575 Date: Wed Jan 21 17:24:39 2009 +0100
26576
26577 MIPS: Add VCT board series support (Part 1/3)
26578
26579 Signed-off-by: Stefan Roese <sr@denx.de>
26580
26581 commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
26582 Author: Stefan Roese <sr@denx.de>
26583 Date: Wed Jan 21 17:20:20 2009 +0100
26584
26585 MIPS: Add flush_dcache_range() and invalidate_dcache_range()
26586
26587 This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
26588 Those functions are needed for the upcoming dcache support for the USB
26589 EHCI driver. I chose this API because those cache handling functions are
26590 already present in the PPC architecture.
26591
26592 Signed-off-by: Stefan Roese <sr@denx.de>
26593 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26594
26595 commit de832a99414ff06a4b2cdc9f5280b387da039834
26596 Author: Stefan Roese <sr@denx.de>
26597 Date: Mon Jan 26 10:05:20 2009 +0100
26598
26599 nand_spl: Fix compile problem with board_nand_init() prototype
26600
26601 This patch removes the now obsolete and additionally wrongly defined
26602 board_nand_init() prototype from nand_spl/nand_boot.c.
26603
26604 Signed-off-by: Stefan Roese <sr@denx.de>
26605 Signed-off-by: Scott Wood <scottwood@freescale.com>
26606
26607 commit e8eac437189430d8e04a5d254ed92c58bc534a79
26608 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
26609 Date: Wed Jan 14 08:44:26 2009 -0500
26610
26611 CFI: Add geometry reversal for STMicro M29W320ET
26612
26613 Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
26614
26615 Modeled after flash_fixup_amd, this patch handles the geometry reversal
26616 or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
26617 Since I cannot test all STM's chips, the detection is implemented as
26618 narrow as possible for now.
26619
26620 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
26621 Signed-off-by: Stefan Roese <sr@denx.de>
26622
26623 commit 0f8e851e897b535959a0781171910cd97f33c30c
26624 Author: Jens Gehrlein <sew_s@tqs.de>
26625 Date: Tue Dec 16 17:25:55 2008 +0100
26626
26627 CFI: increase performance of function find_sector()
26628
26629 Tested on TQM5200S-BD with Samsung K8P2815UQB
26630
26631 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
26632 Signed-off-by: Stefan Roese <sr@denx.de>
26633
26634 commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
26635 Author: Jens Gehrlein <sew_s@tqs.de>
26636 Date: Tue Dec 16 17:25:54 2008 +0100
26637
26638 CFI: avoid redundant function call in single word programming mode
26639
26640 The function find_sector() doesn't need to be called twice in
26641 the case of AMD command set.
26642 Tested on TQM5200S-BD with Samsung K8P2815UQB.
26643
26644 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
26645 Signed-off-by: Stefan Roese <sr@denx.de>
26646
26647 commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
26648 Author: Stefan Roese <sr@denx.de>
26649 Date: Mon Jan 26 10:15:23 2009 +0100
26650
26651 ppc4xx: Remove compilation warning in gdppc440etc.c
26652
26653 Signed-off-by: Stefan Roese <sr@denx.de>
26654
26655 commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
26656 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26657 Date: Fri Jan 2 12:19:47 2009 +0100
26658
26659 ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
26660
26661 Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
26662 Either they define or undef it. Because it's not used in any source
26663 files this patch removes any references to it.
26664
26665 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26666 Signed-off-by: Stefan Roese <sr@denx.de>
26667
26668 commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
26669 Author: Dirk Eibach <eibach@gdsys.de>
26670 Date: Tue Dec 9 13:12:40 2008 +0100
26671
26672 ppc4xx: Add GDsys PowerPC 440 ETX board support.
26673
26674 Board support for the Guntermann & Drunck PowerPC 440 ETX module.
26675 Based on the AMCC Yosemite board support by Stefan Roese.
26676
26677 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
26678 Signed-off-by: Stefan Roese <sr@denx.de>
26679
26680 commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
26681 Author: Dirk Eibach <eibach@gdsys.de>
26682 Date: Tue Dec 9 11:00:07 2008 +0100
26683
26684 ppc4xx: Improve DDR autodetect
26685
26686 Added support for a second memory bank to DDR autodetection for 440
26687 platforms.
26688 Made hardcoded values configurable.
26689
26690 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
26691 Signed-off-by: Stefan Roese <sr@denx.de>
26692
26693 commit 71a040f4f556cca4d30f06805d82e717b3ef1020
26694 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26695 Date: Fri Nov 21 12:06:26 2008 +0900
26696
26697 sh: sh7763rdp: Update sh7763rdp config
26698
26699 Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
26700
26701 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26702 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26703
26704 commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
26705 Author: Gary Jennejohn <garyj@denx.de>
26706 Date: Thu Nov 20 12:28:38 2008 +0100
26707
26708 mgcoge make ether_scc.c work with CONFIG_NET_MULTI
26709
26710 This change is needed for mgcoge because it uses two ethernet drivers.
26711
26712 Add a check for the presence of the PIGGY board on mgcoge. Without this
26713 board networking cannot work and the initialization must be aborted.
26714
26715 Only allocate rtx once to prevent DPRAM exhaustion.
26716
26717 Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
26718 soon) in eth.c.
26719
26720 Signed-off-by: Gary Jennejohn <garyj@denx.de>
26721 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26722
26723 commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
26724 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26725 Date: Fri Nov 21 12:04:18 2008 +0900
26726
26727 sh: sh_eth: Change new network API
26728
26729 sh_eth used old network API. This patch changed new API.
26730
26731 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
26732 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26733
26734 commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
26735 Author: Stefan Roese <sr@denx.de>
26736 Date: Wed Nov 12 13:31:02 2008 +0100
26737
26738 net: smc911x: Make register read/write functions weak
26739
26740 This patch changes the reg_read/_write to smc911x_reg_read/_write
26741 and defines then as weak so that they can be overridden by board
26742 specific version.
26743
26744 This will be used by the upcoming VCTH board support.
26745
26746 Signed-off-by: Stefan Roese <sr@denx.de>
26747 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26748
26749 commit 8b69b563039989885969d24465c56f8ac4c07c4c
26750 Author: Heiko Schocher <hs@denx.de>
26751 Date: Thu Nov 20 09:57:14 2008 +0100
26752
26753 powerpc: net: support for the SMSC LAN8700 PHY
26754
26755 Signed-off-by: Heiko Schocher <hs@denx.de>
26756 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26757
26758 commit d5254f149da9e6cd649d887b042ce577ef3ba78d
26759 Author: Alessandro Rubini <rubini@unipv.it>
26760 Date: Sat Jan 24 18:10:37 2009 +0100
26761
26762 Initial support for Nomadik 8815 development board
26763
26764 The NMDK8815 board is distributed by ST Microelectornics.
26765 Other (proprietary) code must be run to unlock the CPU before
26766 U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
26767
26768 This is the initial port, with basic infrastructure and
26769 a working serial port.
26770
26771 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
26772 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
26773 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26774
26775 commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
26776 Author: Dirk Behme <dirk.behme@googlemail.com>
26777 Date: Sun Dec 14 09:47:18 2008 +0100
26778
26779 OMAP3: Add I2C support
26780
26781 Add I2C support.
26782
26783 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26784
26785 commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
26786 Author: Dirk Behme <dirk.behme@googlemail.com>
26787 Date: Sun Dec 14 09:47:17 2008 +0100
26788
26789 OMAP3: Add MMC support
26790
26791 Add MMC support.
26792
26793 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26794
26795 commit 12201a13547ec22ddcdae278e74465e54a3be60c
26796 Author: Dirk Behme <dirk.behme@googlemail.com>
26797 Date: Sun Dec 14 09:47:16 2008 +0100
26798
26799 OMAP3: Add NAND support
26800
26801 Add NAND support.
26802
26803 Signed-off-by: Nishanth Menon <nm@ti.com>
26804 Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
26805 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26806
26807 commit 91eee546737ae21d930af479530997174c342b13
26808 Author: Dirk Behme <dirk.behme@googlemail.com>
26809 Date: Sun Dec 14 09:47:15 2008 +0100
26810
26811 OMAP3: Add common board, interrupt and system info
26812
26813 Add common board, interrupt and system info code.
26814
26815 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26816
26817 commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
26818 Author: Dirk Behme <dirk.behme@googlemail.com>
26819 Date: Sun Dec 14 09:47:14 2008 +0100
26820
26821 OMAP3: Add common clock, memory and low level code
26822
26823 Add common clock, memory and low level code
26824
26825 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26826
26827 commit 0b02b184003e6a5023e05d5f31de54db279b1431
26828 Author: Dirk Behme <dirk.behme@googlemail.com>
26829 Date: Sun Dec 14 09:47:13 2008 +0100
26830
26831 OMAP3: Add common cpu and start code
26832
26833 Add common cpu and start code.
26834
26835 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26836
26837 commit a8b6450546cd507d331b8fde384791d84bde5651
26838 Author: Dirk Behme <dirk.behme@googlemail.com>
26839 Date: Sun Dec 14 09:47:12 2008 +0100
26840
26841 OMAP3: Add OMAP3, memory and function prototype headers
26842
26843 Add OMAP3, memory and function prototype header files for OMAP3.
26844
26845 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26846
26847 commit 2c803210a464abbac35752ca1c737514360b4c32
26848 Author: Dirk Behme <dirk.behme@googlemail.com>
26849 Date: Sun Dec 14 09:47:11 2008 +0100
26850
26851 OMAP3: Add pin mux, clock and cpu headers
26852
26853 Add pin mux, clock and cpu header files for OMAP3.
26854
26855 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
26856
26857 commit 685533646f4ff17a84ec9265cabb60af325b6e1f
26858 Author: Maxim Artamonov <scn1874@yandex.ru>
26859 Date: Wed Dec 3 05:38:17 2008 +0300
26860
26861 bugfix for i.mx31 CCM_UPCTL reg
26862
26863 Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
26864
26865 commit 24113a44ed5cd3257a0237c3961e121812fca6db
26866 Author: Mike Frysinger <vapier@gentoo.org>
26867 Date: Tue Dec 30 03:15:38 2008 -0500
26868
26869 easylogo: add optional gzip support
26870
26871 Some images can be quite large, so add an option to compress the
26872 image data with gzip in the U-Boot image. Then at runtime, the
26873 board can decompress it with the normal zlib functions.
26874
26875 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26876
26877 commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
26878 Author: Bryan Wu <bryan.wu@analog.com>
26879 Date: Fri Jan 2 20:47:45 2009 -0500
26880
26881 fat: fix unaligned errors
26882
26883 A couple of buffers in the fat code are declared as an array of bytes.
26884 But it is then cast up to a structure with 16bit and 32bit members.
26885 Since GCC assumes structure alignment here, we have to force the
26886 buffers to be aligned according to the structure usage.
26887
26888 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
26889 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26890
26891 commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
26892 Author: Brad Bozarth <bflinux@yumbrad.com>
26893 Date: Thu Jan 1 22:45:47 2009 -0500
26894
26895 spi flash: fix crash due to spi flash miscommunication
26896
26897 Higher spi flash layers expect to be given back a pointer that was
26898 malloced so that it can free the result, but the lower layers return
26899 a pointer that is in the middle of the malloced memory. Reorder the
26900 members of the lower spi structures so that things work out.
26901
26902 Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
26903 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26904 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
26905
26906 commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
26907 Author: Yuri Tikhonov <yur@emcraft.com>
26908 Date: Sat Dec 20 14:54:21 2008 +0300
26909
26910 FPU POST: fix warnings when building with 2.18 binutils
26911
26912 When compile u-boot with the 2.18 binutils the following
26913 warning messages for each object file in post/lib_ppc/fpu/ is
26914 produced at the linking stage:
26915
26916 post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
26917 ...
26918
26919 This is because of the fact that, in general, the soft-float and
26920 hard-float ABIs are incompatible; the 2.18 binutils do checking
26921 of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
26922 produce the worning like above if these are not compatible.
26923
26924 The incompatibility of ABIs is concerned only the float values:
26925 e.g. the soft-float ABI assumes the float argument passing in the
26926 pair of rX registers, and the hard-float ABI assumes passing of
26927 the float argument in the fX register. When we don't pass the float
26928 arguments between the functions compiled with different floatness,
26929 then such an application will work correctly.
26930 This is the case for the FPU POST: u-boot (compiled with soft-float)
26931 doesn't pass to (and doesn't get from) the FPU POST functions any
26932 floats; there are no functions exported from the post/lib_ppc/fpu/
26933 objects which would work with float parameters/returns too. So, we
26934 can reassure the linker not to worry about the difference in ABI
26935 attributes of linking files just by setting the 'soft-float'
26936 attribute for the objects in post/lib_ppc/fpu. And this patch does
26937 this.
26938
26939 Also, to avoid passing both soft- and hard-float options in CFLAGS
26940 when compiling the files from post/lib_ppc/fpu (which is OK, but
26941 looks rather dirty) this patch removes the soft-float string from
26942 CFLAGS in post/lib_ppc/fpu/Makefile.
26943
26944 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
26945
26946 commit a7c9310457e85b4598abe5b304108edf11332e2f
26947 Author: Peter Tyser <ptyser@xes-inc.com>
26948 Date: Wed Dec 17 16:36:22 2008 -0600
26949
26950 Add support for Maxim's DS4510 I2C device
26951
26952 Initial support for the DS4510, a CPU supervisor with
26953 integrated EEPROM, SRAM, and 4 programmable non-volatile
26954 GPIO pins. The CONFIG_DS4510 define enables support
26955 for the device while the CONFIG_CMD_DS4510 define
26956 enables the ds4510 command. The additional
26957 CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
26958 CONFIG_DS4510_RST defines add additional sub-commands
26959 to the ds4510 command when defined.
26960
26961 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
26962
26963 commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
26964 Author: Dirk Eibach <eibach@gdsys.de>
26965 Date: Tue Dec 16 14:51:56 2008 +0100
26966
26967 common: Iteration limit for memory test.
26968
26969 The iteration limit is passed to mtest as a fourth parameter:
26970 [start [end [pattern [iterations]]]]
26971 If no fourth parameter is supplied, there is no iteration limit and the
26972 test will loop forever.
26973
26974 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
26975
26976 commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
26977 Author: Stefan Roese <sr@denx.de>
26978 Date: Mon Dec 15 15:40:12 2008 +0100
26979
26980 serial: Rename driver vcth to vct to support other board variants
26981
26982 Moved driver vcth.c to vct.c to better reflect the VCT board series.
26983 This driver is now used by the VCT platforms:
26984
26985 vct_premium
26986 vct_platinum
26987 vct_platinumsvc
26988
26989 Signed-off-by: Stefan Roese <sr@denx.de>
26990
26991 commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
26992 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26993 Date: Fri Dec 12 00:45:27 2008 +0900
26994
26995 nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
26996
26997 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26998
26999 commit c3284b030b1cd492b4f46c576aea01bef258599d
27000 Author: Peter Korsgaard <jacmet@sunsite.dk>
27001 Date: Wed Dec 10 16:24:16 2008 +0100
27002
27003 common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
27004
27005 Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
27006 similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
27007 !CONFIG_AUTOBOOT_KEYED case.
27008
27009 Do this by reversing the loop so we do at least one iteration before
27010 checking for timeout.
27011
27012 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
27013
27014 commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
27015 Author: Niklaus Giger <niklaus.giger@netstal.com>
27016 Date: Mon Dec 8 17:24:08 2008 +0100
27017
27018 Added legacy flash ST Micro M29W040B
27019
27020 commit 626d07348e5f9f302f4ea182161a89f7362a0488
27021 Author: Graeme Russ <graeme.russ@gmail.com>
27022 Date: Mon Dec 8 20:04:51 2008 +1100
27023
27024 Fixed off-by-one errors in lib_m68k/interrupts.c
27025
27026 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27027
27028 commit a5989c42ae5e295f274a795c426c47819bbdbfda
27029 Author: Graeme Russ <graeme.russ@gmail.com>
27030 Date: Sun Dec 7 10:29:05 2008 +1100
27031
27032 Removed all references to CONFIG_SYS_RESET_GENERIC
27033
27034 Generic i386 reset - #define made redundant by weak function
27035
27036 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27037
27038 commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
27039 Author: Graeme Russ <graeme.russ@gmail.com>
27040 Date: Sun Dec 7 10:29:04 2008 +1100
27041
27042 Remove #ifdef CONFIG_SC520 in source code
27043
27044 CONFIG_SC520 is now used for conditional compile
27045
27046 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27047
27048 commit ead056bc206f6b7ee6dc98766678b64635ea20b8
27049 Author: Graeme Russ <graeme.russ@gmail.com>
27050 Date: Sun Dec 7 10:29:03 2008 +1100
27051
27052 Added MMCR reset functionality
27053
27054 Reset function specific to AMD SC520 microcontroller - Is more of a
27055 'hard reset' that the triple fault.
27056
27057 Requires CONFIG_SYS_RESET_SC520 to be defined in config
27058
27059 I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
27060 but ld requires that a object file in a library arhive MUST contain
27061 at least one function which does not override a weak function (and is
27062 called from outside the object file) in order for that object file to
27063 be extracted from the archive. This would be the only function on the
27064 new file, and hence, will never get linked in.
27065
27066 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27067
27068 commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
27069 Author: Graeme Russ <graeme.russ@gmail.com>
27070 Date: Sun Dec 7 10:29:02 2008 +1100
27071
27072 Moved generic (triple fault) reset code
27073
27074 Moved from interrupts.c to cpu.c and made into a weak function to
27075 allow vendor specific override
27076
27077 Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
27078 added to the vendor specific code without the need to remember to
27079 #undef usage of the generic method and if you forget to include your
27080 custom reset method, you will always get the default.
27081
27082 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27083
27084 commit 9933d609020c297788f53f334c8465fa7a99b10c
27085 Author: Graeme Russ <graeme.russ@gmail.com>
27086 Date: Sun Dec 7 10:29:01 2008 +1100
27087
27088 Moved definition of set_vector() to new header file
27089
27090 This allows for future tidy ups and functionality that will require
27091 set_vector ()
27092
27093 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27094
27095 commit 407976185e0dda2c90e89027121a1071b9c77bfb
27096 Author: Graeme Russ <graeme.russ@gmail.com>
27097 Date: Sun Dec 7 10:29:00 2008 +1100
27098
27099 Moved sc520 specific code into new cpu/i386/sc520 folder
27100
27101 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27102 Signed-off-by: Wolfgang Denk <wd@denx.de>
27103
27104 commit 85ffbbd51914925a542d8528be7f072e5ab02157
27105 Author: Graeme Russ <graeme.russ@gmail.com>
27106 Date: Sun Dec 7 10:28:58 2008 +1100
27107
27108 Renamed cpu/i386/reset.S to resetvec.S
27109
27110 Brings i386 in line with other CPUs with a reset vector and frees up reset.c
27111 for CPU reset functions
27112
27113 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27114
27115 commit a3f4c123f569474e80ea012b8db0de46afdb6443
27116 Author: Wolfgang Denk <wd@denx.de>
27117 Date: Sat Jan 24 01:01:49 2009 +0100
27118
27119 Makefile: keep lists sorted.
27120
27121 Signed-off-by: Wolfgang Denk <wd@denx.de>
27122
27123 commit c620c01e96814558470698ed5cab1bf2f504d1b5
27124 Author: Graeme Russ <graeme.russ@gmail.com>
27125 Date: Sun Dec 7 10:28:57 2008 +1100
27126
27127 Added initial eNET board support
27128
27129 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
27130
27131 commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
27132 Author: Gary Jennejohn <garyj@denx.de>
27133 Date: Thu Nov 20 11:37:26 2008 +0100
27134
27135 POWERPC 82xx: add the SCC as an HDLC controller
27136
27137 Right now this is only used by keymile.
27138
27139 Signed-off-by: Gary Jennejohn <garyj@denx.de>
27140
27141 commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
27142 Author: Heiko Schocher <hs@denx.de>
27143 Date: Thu Nov 20 09:59:09 2008 +0100
27144
27145 powerpc, keymile boards: extract identical config options
27146
27147 This patch extracts the identical config options for the
27148 keymile boards mgcoge, mgsuvd and kmeter1 in a new
27149 common config file keymile-common.h.
27150
27151 Signed-off-by: Heiko Schocher <hs@denx.de>
27152
27153 commit 210c8c00aad3328145204adab434bb7d70b06b75
27154 Author: Heiko Schocher <hs@denx.de>
27155 Date: Fri Nov 21 08:29:40 2008 +0100
27156
27157 powerpc: keymile: Add a check for the PIGGY debug board
27158
27159 Check the presence of the PIGGY on the keymile boards mgcoge,
27160 mgsuvd and kmeter1. If the PIGGY is not present, dont register
27161 this Ethernet device.
27162
27163 Signed-off-by: Heiko Schocher <hs@denx.de>
27164 Acked-by: Ben Warren <biggerbadderben@gmail.com>
27165
27166 commit de0443614af4d16675ab436665aeb11ddc9f7214
27167 Author: Heiko Schocher <hs@denx.de>
27168 Date: Thu Nov 20 09:57:47 2008 +0100
27169
27170 powerpc: 83xx: add support for the kmeter1 board
27171
27172 This patch adds support for the kmeter1 board from Keymile,
27173 based on a Freescale MPC8360 CPU.
27174
27175 - serial console on UART 1
27176 - 256 MB DDR2 RAM
27177 - 64 MB NOR Flash
27178 - Ethernet RMII Mode over UCC4
27179 - PHY SMSC LAN8700
27180
27181 Signed-off-by: Heiko Schocher <hs@denx.de>
27182
27183 commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
27184 Author: Sergei Poselenov <sposelenov@emcraft.com>
27185 Date: Tue Nov 4 13:51:18 2008 +0100
27186
27187 Add a do_div() wrapper macro, lldiv().
27188
27189 Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
27190 the dividend and returns the result of division, so it is useful
27191 in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
27192
27193 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
27194
27195 commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
27196 Author: Kumar Gala <galak@kernel.crashing.org>
27197 Date: Fri Jan 23 14:22:14 2009 -0600
27198
27199 85xx: Add a 36-bit physical configuration for MPC8572DS
27200
27201 We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
27202 to allow for larger memory sizes.
27203
27204 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27205
27206 commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
27207 Author: Kumar Gala <galak@kernel.crashing.org>
27208 Date: Fri Jan 23 14:22:13 2009 -0600
27209
27210 85xx: Handle eLBC difference w/36-bit physical
27211
27212 The eLBC only handles 32-bit physical address in systems with 36-bit
27213 physical. The previos generation of LBC handled 34-bit physical
27214 address in 36-bit systems. Added a new CONFIG option to convey
27215 the difference between the LBC and eLBC.
27216
27217 Also added defines for XAM bits used in LBC for the extended 34-bit
27218 support.
27219
27220 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27221
27222 commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
27223 Author: Kumar Gala <galak@kernel.crashing.org>
27224 Date: Fri Jan 23 14:22:12 2009 -0600
27225
27226 85xx: Use BR_ADDR macro for NAND chipselects
27227
27228 Use the new BR_ADDR macro to properly setup the address field of the
27229 localbus chipselects used by NAND.
27230
27231 This allows us to deal with 36-bit phys on these boards in the future.
27232
27233 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27234
27235 commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
27236 Author: Haiying Wang <Haiying.Wang@freescale.com>
27237 Date: Thu Jan 15 11:58:35 2009 -0500
27238
27239 Add secondary CPUs processor frequency for e500 core
27240
27241 This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
27242 and prints each CPU's frequency separately. It also fixes up each CPU's
27243 frequency in "clock-frequency" of fdt blob.
27244
27245 Signed-off-by: James Yang <James.Yang@freescale.com>
27246 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27247
27248 commit bf5b1f0c0d28ce062e1d368680632dfb099de692
27249 Author: Dave Liu <daveliu@freescale.com>
27250 Date: Fri Nov 21 16:31:53 2008 +0800
27251
27252 85xx: enable the auto self refresh for wake up ARP
27253
27254 The wake up ARP feature need use the memory to process
27255 wake up packet, we enable auto self refresh to support it.
27256
27257 Signed-off-by: Dave Liu <daveliu@freescale.com>
27258 Acked-by: Andy Fleming <afleming@freescale.com>
27259
27260 commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
27261 Author: Dave Liu <daveliu@freescale.com>
27262 Date: Fri Nov 21 16:31:43 2008 +0800
27263
27264 fsl-ddr: use the 1T timing as default configuration
27265
27266 For light loaded system, we use the 1T timing to gain better
27267 memory performance, but for some heavily loaded system,
27268 you have to add the 2T timing options to board files.
27269
27270 Signed-off-by: Dave Liu <daveliu@freescale.com>
27271 Acked-by: Andy Fleming <afleming@freescale.com>
27272
27273 commit 22cca7e1cd54590e967c73558b07ffbdccd39504
27274 Author: Dave Liu <daveliu@freescale.com>
27275 Date: Fri Nov 21 16:31:35 2008 +0800
27276
27277 fsl-ddr: make the self refresh idle threshold configurable
27278
27279 Some 85xx processors have the advanced power management feature,
27280 such as wake up ARP, that needs enable the automatic self refresh.
27281
27282 If the DDR controller pass the SR_IT (self refresh idle threshold)
27283 idle cycles, it will automatically enter self refresh. However,
27284 anytime one transaction is issued to the DDR controller, it will
27285 reset the counter and exit self refresh state.
27286
27287 Signed-off-by: Dave Liu <daveliu@freescale.com>
27288 Acked-by: Andy Fleming <afleming@freescale.com>
27289
27290 commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
27291 Author: Dave Liu <daveliu@freescale.com>
27292 Date: Fri Nov 21 16:31:29 2008 +0800
27293
27294 fsl-ddr: clean up the ddr code for DDR3 controller
27295
27296 - The DDR3 controller is expanding the bits for timing config
27297 - Add the DDR3 32-bit bus mode support
27298
27299 Signed-off-by: Dave Liu <daveliu@freescale.com>
27300 Acked-by: Andy Fleming <afleming@freescale.com>
27301
27302 commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
27303 Author: Dave Liu <daveliu@freescale.com>
27304 Date: Fri Nov 21 16:31:22 2008 +0800
27305
27306 fsl-ddr: update the bit mask for DDR3 controller
27307
27308 According to the latest 8572 UM, the DDR3 controller
27309 is expanding the bit mask, and we use the extend ACTTOPRE
27310 mode when tRAS more than 19 MCLK.
27311
27312 Signed-off-by: Dave Liu <daveliu@freescale.com>
27313
27314 commit aca5f018a8386b85469482ed9867e3e29a2437d0
27315 Author: Kumar Gala <galak@kernel.crashing.org>
27316 Date: Tue Dec 2 16:08:40 2008 -0600
27317
27318 85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
27319
27320 Introduce a new define to seperate out the virtual address that PCI
27321 IO space is at from the physical address. In most situations these are
27322 mapped 1:1. However any code accessing the bus should use VIRT.
27323
27324 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27325 Acked-by: Andy Fleming <afleming@freescale.com>
27326
27327 commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
27328 Author: Kumar Gala <galak@kernel.crashing.org>
27329 Date: Tue Dec 2 16:08:39 2008 -0600
27330
27331 85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
27332
27333 Introduce a new define to seperate out the virtual address that PCI
27334 memory is at from the physical address. In most situations these are
27335 mapped 1:1. However any code accessing the bus should use VIRT.
27336
27337 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27338 Acked-by: Andy Fleming <afleming@freescale.com>
27339
27340 commit a6e04c344ad1eefd47a75484441b385da815b8df
27341 Author: Kumar Gala <galak@kernel.crashing.org>
27342 Date: Tue Dec 2 16:08:38 2008 -0600
27343
27344 85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
27345
27346 Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
27347 of TLBs. This is what we should have always been using from the start.
27348
27349 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27350 Acked-by: Andy Fleming <afleming@freescale.com>
27351
27352 commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
27353 Author: Kumar Gala <galak@kernel.crashing.org>
27354 Date: Tue Dec 2 16:08:37 2008 -0600
27355
27356 85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
27357
27358 Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
27359 of _IO_BASE so we are more explicit.
27360
27361 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27362
27363 commit 10795f42cb94e71bcb262b615084f69dd886399a
27364 Author: Kumar Gala <galak@kernel.crashing.org>
27365 Date: Tue Dec 2 16:08:36 2008 -0600
27366
27367 85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
27368
27369 Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
27370 of _MEM_BASE so we are more explicit.
27371
27372 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27373 Acked-by: Andy Fleming <afleming@freescale.com>
27374
27375 commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
27376 Author: Kumar Gala <galak@kernel.crashing.org>
27377 Date: Tue Dec 2 14:19:34 2008 -0600
27378
27379 85xx: separate FLASH BASE virtual from physical address
27380
27381 Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
27382 maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
27383
27384 This allows us to deal with 36-bit phys on these boards in the future.
27385
27386 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27387 Acked-by: Andy Fleming <afleming@freescale.com>
27388
27389 commit 52b565f5ad23b682489055b187767d8bf1c2e444
27390 Author: Kumar Gala <galak@kernel.crashing.org>
27391 Date: Tue Dec 2 14:19:33 2008 -0600
27392
27393 85xx: separate PIXIS virtual from physical address
27394
27395 Added a PIXIS_BASE_PHYS for use as the physical address and maintain
27396 PIXIS_BASE as the virtual address of the PIXIS fpga registers.
27397
27398 This allows us to deal with 36-bit phys on these boards in the future.
27399
27400 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27401 Acked-by: Andy Fleming <afleming@freescale.com>
27402
27403 commit 30837e5b21d5a742983581ab9ee3fac085311d19
27404 Author: Haiying Wang <Haiying.Wang@freescale.com>
27405 Date: Tue Nov 11 08:52:09 2008 -0500
27406
27407 Add README file for MPC8572DS board
27408
27409 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27410 Acked-by: Andy Fleming <afleming@freescale.com>
27411
27412 commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
27413 Author: Mike Frysinger <vapier@gentoo.org>
27414 Date: Mon Oct 20 16:15:04 2008 -0400
27415
27416 Blackfin: use common strmhz() in system output
27417
27418 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27419
27420 commit 5bb907a4925397789c90d074f4f7e92ce6b39402
27421 Author: Ron Madrid <ron_madrid@sbcglobal.net>
27422 Date: Thu Jan 22 15:05:24 2009 -0800
27423
27424 mpc83xx: New board support for SIMPC8313
27425
27426 This patch will create a new board, SIMPC8313, from Sheldon Instruments. This
27427 board boots from NAND devices and is configureable for either large or small
27428 page devices. The board supports non-soldered DDR2, one ethernet port, a
27429 Marvell 88E1118 PHY, and PCI host support. The board also has a FPGA connected
27430 to the eLBC providing glue logic to a TMS320C67xx DSP.
27431
27432 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
27433 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27434
27435 commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
27436 Author: Mike Frysinger <vapier@gentoo.org>
27437 Date: Sun Jan 18 19:46:06 2009 -0500
27438
27439 nand: fixup printf modifiers to match types used
27440
27441 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27442 Signed-off-by: Scott Wood <scottwood@freescale.com>
27443
27444 commit 389e6620e2271096df3316917528003627db4021
27445 Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
27446 Date: Tue Jan 20 16:57:55 2009 +0100
27447
27448 nand read.jffs2 (nand_legacy) in common/cmd_nand.c
27449
27450 Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
27451 With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
27452 "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
27453 tested before ".jffs2s" and only the first two characters are compared.
27454
27455 Correction:
27456 Test for ".jffs2s" first and compare the first 7 characters.
27457
27458 Signed-off-by: Scott Wood <scottwood@freescale.com>
27459
27460 commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
27461 Author: Wolfgang Grandegger <wg@grandegger.com>
27462 Date: Fri Jan 16 18:55:54 2009 +0100
27463
27464 NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
27465
27466 This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
27467 changes the default from 8 to 1 for the legacy and the new MTD
27468 NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
27469 in the board config files because none of the boards use multi
27470 chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
27471 define
27472
27473 #define NAND_MAX_CHIPS CONFIG_SYS_MAX_NAND_DEVICE
27474
27475 but that's bogus and did not work anyhow.
27476
27477 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
27478 Signed-off-by: Scott Wood <scottwood@freescale.com>
27479
27480 commit c70564e6b1bd08f3230182392238907f3531a87e
27481 Author: Dave Liu <daveliu@freescale.com>
27482 Date: Tue Dec 2 11:48:51 2008 +0800
27483
27484 NAND: Fix cache and memory inconsistency issue
27485
27486 We load the secondary stage u-boot image from NAND to
27487 system memory by nand_load, but we did not flush d-cache
27488 to memory, nor invalidate i-cache before we jump to RAM.
27489 When the system has cache enabled and the TLB/page attribute
27490 of system memory is cacheable, it will cause issues.
27491
27492 - 83xx family is using the d-cache lock, so all of d-cache
27493 access is cache-inhibited. so you can't see the issue.
27494 - 85xx family is using d-cache, i-cache enable, partial
27495 cache lock. you will see the issue.
27496
27497 This patch fixes the cache issue.
27498
27499 Signed-off-by: Dave Liu <daveliu@freescale.com>
27500 Signed-off-by: Scott Wood <scottwood@freescale.com>
27501
27502 commit 50657c273278f74378e1ac39b41d612b92fdffa0
27503 Author: Nishanth Menon <menon.nishanth@gmail.com>
27504 Date: Sat Dec 13 09:43:06 2008 -0600
27505
27506 NAND: Enable nand lock, unlock feature
27507
27508 Enable nand lock, unlock and status of lock feature.
27509 Not every device and platform requires this, hence,
27510 it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
27511
27512 Nand unlock and status operate on block boundary instead
27513 of page boundary. Details in:
27514 http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
27515
27516 Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
27517 Includes preliminary suggestions from Scott Wood
27518
27519 Signed-off-by: Nishanth Menon <nm@ti.com>
27520 Signed-off-by: Scott Wood <scottwood@freescale.com>
27521
27522 commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
27523 Author: Mike Frysinger <vapier@gentoo.org>
27524 Date: Sat Dec 6 02:40:55 2008 -0500
27525
27526 NAND: move board_nand_init to nand.h
27527
27528 Rather than putting the function prototype for board_nand_init() in the one
27529 place where it gets called, put it into nand.h so that every place that also
27530 defines it gets the prototype. Otherwise, errors can go silently unnoticed
27531 such as using the wrong return value (void rather than int) when defining
27532 the function.
27533
27534 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27535 Signed-off-by: Scott Wood <scottwood@freescale.com>
27536
27537 commit 1ae39862044ebb1e682234b51f94421e3f871d6a
27538 Author: Stefan Roese <sr@denx.de>
27539 Date: Tue Dec 2 11:06:47 2008 +0100
27540
27541 OneNAND: Additional sync with 2.6.27
27542
27543 - Add subpage write support
27544 - Add onenand_oob_64/32 ecclayout
27545
27546 This has been missing and without it UBI has some incompatibilies issues
27547 with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
27548 placed differently (2048 instead of 512) without this fix.
27549
27550 Signed-off-by: Stefan Roese <sr@denx.de>
27551 Signed-off-by: Scott Wood <scottwood@freescale.com>
27552
27553 commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
27554 Author: Kyungmin Park <kmpark@infradead.org>
27555 Date: Thu Nov 13 15:14:33 2008 +0900
27556
27557 Add markbad function
27558
27559 Add missing markbad function
27560 If not, it's hang when it entered the mtd->mark_bad().
27561
27562 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
27563
27564 commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
27565 Author: Stefan Roese <sr@denx.de>
27566 Date: Wed Nov 12 13:47:24 2008 +0100
27567
27568 OneNAND: Bad block aware read/write command support
27569
27570 Update OneNAND command to support bad block awareness.
27571 Also change the OneNAND command style to better match the
27572 NAND version.
27573
27574 Signed-off-by: Stefan Roese <sr@denx.de>
27575 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
27576
27577 commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
27578 Author: Stefan Roese <sr@denx.de>
27579 Date: Tue Nov 11 10:29:09 2008 +0100
27580
27581 OneNAND: Save version_id in onenand_chip struct
27582
27583 The version (ver_id) was not stored in the onenand_chip structure and
27584 because of this the continuous locking scheme could be enabled on some
27585 chips.
27586
27587 Signed-off-by: Stefan Roese <sr@denx.de>
27588
27589 commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
27590 Author: Stefan Roese <sr@denx.de>
27591 Date: Tue Nov 11 10:28:53 2008 +0100
27592
27593 OneNAND: Fix compiler warnings
27594
27595 Signed-off-by: Stefan Roese <sr@denx.de>
27596
27597 commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
27598 Author: Dave Liu <daveliu@freescale.com>
27599 Date: Tue Nov 4 14:55:06 2008 +0800
27600
27601 mpc83xx: enable eLBC NAND support for MPC8315ERDB board
27602
27603 Signed-off-by: Dave Liu <daveliu@freescale.com>
27604
27605 commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
27606 Author: Kyungmin Park <kmpark@infradead.org>
27607 Date: Tue Nov 4 09:24:07 2008 +0900
27608
27609 Sync with 2.6.27
27610
27611 Sync with OneNAND kernel codes
27612
27613 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
27614
27615 commit e7f325be9edeb84bb457301776bbac1f7257dafc
27616 Author: Michal Simek <monstr@monstr.eu>
27617 Date: Mon Jan 5 13:35:31 2009 +0100
27618
27619 microblaze: Use cache functions (especially cache status)
27620 in systems which are configured without flash
27621
27622 commit e9b737deb2c30125362d20e24170617476026e94
27623 Author: Michal Simek <monstr@monstr.eu>
27624 Date: Mon Jan 5 13:29:32 2009 +0100
27625
27626 microblaze: Add cache flush
27627
27628 commit b4f8dda35bfad447b4106828232705b2e878d168
27629 Author: Michal Simek <monstr@monstr.eu>
27630 Date: Mon Jan 5 13:28:40 2009 +0100
27631
27632 microblaze: Add bootup messages to board.c
27633
27634 commit 330e55459bc9983341da6c1d5c7fe00a664436fe
27635 Author: Michal Simek <monstr@monstr.eu>
27636 Date: Fri Dec 19 13:25:55 2008 +0100
27637
27638 microblaze: Change microblaze-generic config file
27639
27640 Signed-off-by: Michal Simek <monstr@monstr.eu>
27641
27642 commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
27643 Author: Michal Simek <monstr@monstr.eu>
27644 Date: Fri Dec 19 13:14:05 2008 +0100
27645
27646 microblaze: Rename ml401 to microblaze-generic
27647
27648 Signed-off-by: Michal Simek <monstr@monstr.eu>
27649
27650 commit 6677876181cc8772bca8a372479a500d160f3993
27651 Author: Scott Wood <scottwood@freescale.com>
27652 Date: Tue Jan 20 11:56:11 2009 -0600
27653
27654 83xx: Use the proper sequence for updating IMMR.
27655
27656 This ensures that subsequent accesses properly hit the new window.
27657
27658 The dcbi during the NAND loop was accidentally working around this;
27659 it's no longer necessary, as the cache is not enabled.
27660
27661 Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
27662 Signed-off-by: Scott Wood <scottwood@freescale.com>
27663 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27664
27665 commit 8b34557c546e5e9f34ebf83c93413dad973d93df
27666 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27667 Date: Thu Jan 8 04:26:19 2009 +0300
27668
27669 mpc83xx: Add PCI-E support for MPC837XEMDS boards
27670
27671 MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
27672 provides two PCI-E (x2) ports. Though, only one port can be used in x2
27673 mode. Two ports can function simultaneously in x1 mode.
27674
27675 PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
27676
27677 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27678 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27679
27680 commit 8f11e34b31a7be124a3239653f33af9510502045
27681 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27682 Date: Thu Jan 8 04:26:17 2009 +0300
27683
27684 mpc83xx: Add PCI-E support for MPC8315ERDB boards
27685
27686 MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
27687 support them.
27688
27689 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27690 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27691
27692 commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
27693 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27694 Date: Thu Jan 8 04:26:12 2009 +0300
27695
27696 mpc83xx: Add support for MPC83xx PCI-E controllers
27697
27698 This patch adds support for MPC83xx PCI-E controllers in Root Complex
27699 mode.
27700
27701 The patch is based on Tony Li and Dave Liu work[1].
27702
27703 Though unlike the original patch, by default we don't register PCI-E
27704 buses for use in U-Boot, we only configure the controllers for future
27705 use in other OSes (Linux). This is done because we don't have enough
27706 of spare BATs to map all the PCI-E regions.
27707
27708 To actually use PCI-E in U-Boot, users should explicitly define
27709 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
27710 only then U-Boot will able to access PCI-E, but at the cost of disabled
27711 address translation.
27712
27713 [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
27714
27715 Signed-off-by: Tony Li <tony.li@freescale.com>
27716 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27717 Acked-by: Dave Liu <daveliu@freescale.com>
27718 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27719
27720 commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
27721 Author: Ira Snyder <iws@ovro.caltech.edu>
27722 Date: Mon Jan 12 13:33:17 2009 -0800
27723
27724 MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
27725
27726 When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
27727 not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
27728 "Clocking in PCI Agent Mode".
27729
27730 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
27731 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27732
27733 commit 75f35209f702bb26826855ed8c8e4d108ab5f412
27734 Author: Ira Snyder <iws@ovro.caltech.edu>
27735 Date: Mon Jan 12 13:32:26 2009 -0800
27736
27737 83xx: PCI agent mode fixes for multi-board systems
27738
27739 When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
27740 the boards will lock up the PCI bus by scanning against each other.
27741
27742 The boards lock against each other by trying to access the PCI bus before
27743 clearing their configuration lock bit. Both boards end up in a loop,
27744 sending and receiving "Target Not Ready" messages forever.
27745
27746 When running in PCI agent mode, the scanning now takes place after the
27747 boards have cleared their configuration lock bit.
27748
27749 Also, add a missing declaration to the mpc83xx.h header file, fixing a
27750 build warning.
27751
27752 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
27753 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27754
27755 commit 455a46915b82896cc2070eb326d075555c2bc580
27756 Author: Ron Madrid <ron_madrid@sbcglobal.net>
27757 Date: Fri Dec 12 13:12:45 2008 -0800
27758
27759 mpc83xx: Size optimization of start.S
27760
27761 Currently there are in excess of 100 bytes located at the beginning of the image
27762 built by start.S that are not being utilized. This patch moves a few functions
27763 into this part of the image. This will create a greater number of *available*
27764 bytes that can be used by board specific code in NAND builds and will decrease
27765 the size of the assembled code in other builds.
27766
27767 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
27768 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27769
27770 commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
27771 Author: Wolfgang Denk <wd@denx.de>
27772 Date: Wed Jan 21 23:08:12 2009 +0100
27773
27774 Prepare v2009.01
27775
27776 Signed-off-by: Wolfgang Denk <wd@denx.de>
27777
27778 commit 635e5f8fc82365e6e9734b3132bc95135a6de679
27779 Author: Wolfgang Denk <wd@denx.de>
27780 Date: Sun Jan 18 21:37:48 2009 +0100
27781
27782 Prepare 2009.01-rc3
27783
27784 Update CHANGELOG
27785
27786 Signed-off-by: Wolfgang Denk <wd@denx.de>
27787
27788 commit 4cda437898f7873752f0201757cd33f12196ce87
27789 Author: Mike Frysinger <vapier@gentoo.org>
27790 Date: Sat Jan 17 13:32:42 2009 -0500
27791
27792 build system: treat all Darwin's alike
27793
27794 The x86 based version of Darwin behaves the same quirky way as the powerpc
27795 Darwin, so only check HOSTOS when setting up Darwin workarounds.
27796
27797 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27798
27799 commit c088a108c75db565e07292fd668dfa5491e85bc2
27800 Author: Peter Korsgaard <jacmet@sunsite.dk>
27801 Date: Wed Jan 14 13:52:24 2009 +0100
27802
27803 fdt_resize(): fix actualsize calculations with unaligned blobs
27804
27805 The code in fdt_resize() to extend the fdt size to end on a page boundary
27806 is wrong for fdt's not located at an address aligned on a page boundary.
27807 What's even worse, the code would make actualsize shrink rather than grow
27808 if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
27809 causing fdt_add_mem_rsv to fail.
27810
27811 Fix it by aligning end address (blob + size) to a page boundary instead.
27812 For aligned fdt's this is equivalent to what we had before.
27813
27814 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
27815
27816 commit fadad1573fb16c90025f08a2861d6047d093cba7
27817 Author: Mike Frysinger <vapier@gentoo.org>
27818 Date: Fri Jan 9 04:38:17 2009 -0500
27819
27820 ncb: use socklen_t
27821
27822 The recvfrom() function takes a socklen_t, not an int.
27823
27824 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27825
27826 commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
27827 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27828 Date: Sun Jan 11 16:35:16 2009 +0100
27829
27830 sh: serial: use readx/writex accessors
27831
27832 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27833 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27834
27835 commit 9e1fa628bdb64745811cdd26c4f953846c076180
27836 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27837 Date: Sun Jan 11 16:35:15 2009 +0100
27838
27839 sh: serial: coding style cleanup
27840
27841 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27842 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27843
27844 commit c9935c992575922b7ef13eec0656ed8665d324e3
27845 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27846 Date: Sun Jan 11 17:48:56 2009 +0900
27847
27848 sh: Fix compile error on lowlevel_init file
27849
27850 lowlevel_init of SH was corrected to use the write/readXX macro.
27851 However, there was a problem that was not able to be compiled partially.
27852 This patch corrected this.
27853
27854 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27855
27856 commit a5b04d00bfeb940c62232972ce644d50b45797f9
27857 Author: Kieran Bingham <kieranbingham@gmail.com>
27858 Date: Tue Dec 30 01:16:03 2008 +0000
27859
27860 sh: Fix up rsk7203 target for out of tree build
27861
27862 Fix up rsk7203 target to build successfully using out-of-tree build.
27863
27864 Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
27865 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27866
27867 commit f7e78f3b74aae9caca2997bad865a72338326c0a
27868 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27869 Date: Sat Dec 20 19:29:49 2008 +0100
27870
27871 sh: use write{8,16,32} in all lowlevel_init
27872
27873 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27874 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27875
27876 commit e4430779623af500de1cee7892c379f07ef59813
27877 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27878 Date: Sat Dec 20 19:29:48 2008 +0100
27879
27880 sh: lowlevel_init coding style cleanup
27881
27882 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27883 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27884
27885 commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
27886 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27887 Date: Sat Dec 20 15:27:45 2008 +0100
27888
27889 sh: update sh2/sh2a timer coding style
27890
27891 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27892 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27893
27894 commit 1e15ff999322e81af4c0c0c548908f38944ba39c
27895 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27896 Date: Sat Dec 20 15:25:22 2008 +0100
27897
27898 sh: update sh timer coding style
27899
27900 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27901 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27902
27903 commit 0e3ece33801e377be67ffa29f083421ad820f28b
27904 Author: Wolfgang Denk <wd@denx.de>
27905 Date: Wed Jan 14 23:26:05 2009 +0100
27906
27907 Prepare 2009.01-rc2
27908
27909 Update CHANGELOG.
27910
27911 Signed-off-by: Wolfgang Denk <wd@denx.de>
27912
27913 commit e92c9a860e44c14513c8909ce4299e253a775eeb
27914 Author: Wolfgang Denk <wd@denx.de>
27915 Date: Wed Jan 14 22:35:30 2009 +0100
27916
27917 cpu/mpc824x/Makefile: fix warning with parallel builds
27918
27919 Parallel builds would occasionally issue this build warning:
27920
27921 ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
27922
27923 Use "ln -sf" as quick work around for the issue.
27924
27925 Signed-off-by: Wolfgang Denk <wd@denx.de>
27926
27927 commit 3ba605d4beec649438539e7df97b5fedb26592fb
27928 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27929 Date: Fri Jan 2 12:18:49 2009 +0100
27930
27931 ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
27932
27933 This patch adds esd's loadpci BSP command to CPCI4052 and
27934 CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
27935
27936 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27937 Signed-off-by: Stefan Roese <sr@denx.de>
27938
27939 commit 600fe46fb3dab7f07604f9009904f31584415114
27940 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27941 Date: Fri Jan 2 12:18:12 2009 +0100
27942
27943 ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
27944
27945 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27946 Signed-off-by: Stefan Roese <sr@denx.de>
27947
27948 commit f6a1f490d224c600a09137e58d1026d150b8e679
27949 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27950 Date: Fri Jan 2 12:17:36 2009 +0100
27951
27952 ppc4xx: Cleanup CPCI405 board code
27953
27954 This patch cleans up CPCI405 board support:
27955 - wrap long lines
27956 - unification of spaces in function calls
27957 - remove dead code
27958
27959 Use correct io accessors on peripherals.
27960
27961 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27962 Signed-off-by: Stefan Roese <sr@denx.de>
27963
27964 commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
27965 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27966 Date: Fri Jan 2 12:16:35 2009 +0100
27967
27968 ppc4xx: Enable auto RS485 mode on PLU405 boards
27969
27970 This patch turns on the auto RS485 mode in the 2nd external
27971 uart on PLU405 boards. This is a special mode of the used
27972 Exar XR16C2850 uart. Because these boards only have a 485 physical
27973 layer connected it's a good idea to turn it on by default.
27974
27975 Signed-off-by: Matthias Fuchs <mf@esd.eu>
27976 Signed-off-by: Stefan Roese <sr@denx.de>
27977
27978 commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
27979 Author: Haiying Wang <Haiying.Wang@freescale.com>
27980 Date: Tue Jan 13 16:29:28 2009 -0500
27981
27982 Some changes of TLB entry setting for MPC8572DS
27983
27984 - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
27985 all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
27986 can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
27987
27988 - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
27989
27990 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
27991
27992 commit 950264317eb9594b2b5ee2fb65206200a1c6007a
27993 Author: Haiying Wang <Haiying.Wang@freescale.com>
27994 Date: Tue Jan 13 16:29:22 2009 -0500
27995
27996 Change DDR tlb start entry to CONFIG param for 85xx
27997
27998 So that we can locate the DDR tlb start entry to the value other than 8. By
27999 default, it is still 8.
28000
28001 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
28002
28003 commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
28004 Author: Roy Zang <tie-fei.zang@freescale.com>
28005 Date: Fri Jan 9 16:02:35 2009 +0800
28006
28007 Change PCIE1&2 deciide logic on MPC8544DS board more readable
28008
28009 The IO port selection for MPC8544DS board:
28010 Port cfg_io_ports
28011 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
28012 PCIE2 0x4, 0x5, 0x6, 0x7
28013 PCIE3 0x6, 0x7
28014 This patch changes the PCIE12 and PCIE2 logic more readable.
28015 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
28016
28017 commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
28018 Author: Roy Zang <tie-fei.zang@freescale.com>
28019 Date: Fri Jan 9 16:01:52 2009 +0800
28020
28021 PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
28022
28023 PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
28024 PCIE1 bit.
28025 On MPC8572DS board, PCIE refers to PCIE1.
28026 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
28027
28028 commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
28029 Author: Roy Zang <tie-fei.zang@freescale.com>
28030 Date: Fri Jan 9 16:00:55 2009 +0800
28031
28032 Fix IO port selection issue on MPC8544DS and MPC8572DS boards
28033
28034 The IO port selection is not correct on MPC8572DS and MPC8544DS board.
28035 This patch fixes this issue.
28036 For MPC8572
28037 Port cfg_io_ports
28038 PCIE1 0x2, 0x3, 0x7, 0xb, 0xc, 0xf
28039 PCIE2 0x3, 0x7
28040 PCIE3 0x7
28041
28042 For MPC8544
28043 Port cfg_io_ports
28044 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
28045 PCIE2 0x4, 0x5, 0x6, 0x7
28046 PCIE3 0x6, 0x7
28047 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
28048
28049 commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
28050 Author: Becky Bruce <beckyb@kernel.crashing.org>
28051 Date: Wed Dec 3 22:36:44 2008 -0600
28052
28053 mpc8610hpcd: Fix PCI mapping concepts
28054
28055 Rename _BASE to _BUS, as it's actually a PCI bus address,
28056 separate virtual and physical addresses into _VIRT and _PHYS,
28057 and use each appopriately. This makes the code easier to read
28058 and understand, and facilitates mapping changes going forward.
28059
28060 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
28061
28062 commit 79e436cad3b4a7db88408c3f05175028f30d700d
28063 Author: Becky Bruce <beckyb@kernel.crashing.org>
28064 Date: Wed Dec 3 22:36:26 2008 -0600
28065
28066 sbc8641d: Fix PCI mapping concepts
28067
28068 Rename _BASE to _BUS, as it's actually a PCI bus address,
28069 separate virtual and physical addresses into _VIRT and _PHYS,
28070 and use each appopriately. This makes the code easier to read
28071 and understand, and facilitates mapping changes going forward.
28072
28073 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
28074
28075 commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
28076 Author: Wolfgang Denk <wd@denx.de>
28077 Date: Mon Jan 12 14:50:35 2009 +0100
28078
28079 MPC86xx: fix build warnings
28080
28081 Signed-off-by: Wolfgang Denk <wd@denx.de>
28082
28083 commit 032a1c934ef4dc003281f57302b6e693062c1868
28084 Author: Mike Frysinger <vapier@gentoo.org>
28085 Date: Mon Jan 5 16:09:44 2009 -0500
28086
28087 bf537-stamp/nand: fix board_nand_init prototype
28088
28089 The board_nand_init() function should return an int, not void.
28090
28091 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28092
28093 commit 687f952e4119594ab913be11c90f7f018c2a7a79
28094 Author: Mike Frysinger <vapier@gentoo.org>
28095 Date: Thu Dec 11 07:04:48 2008 -0500
28096
28097 Blackfin: drop CONFIG_SPI handling in board init
28098
28099 The eeprom SPI init functions are duplicated as the common code already
28100 executes these for us.
28101
28102 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28103
28104 commit e7e684b10d73a303902208594c7c3e7e0d753282
28105 Author: Mike Frysinger <vapier@gentoo.org>
28106 Date: Fri Oct 24 17:51:57 2008 -0400
28107
28108 Blackfin: fix out-of-tree building with ldscripts
28109
28110 Many of the Blackfin board linker scripts are preprocessed, so make sure we
28111 output the linker script into the build tree rather than the source tree.
28112
28113 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28114
28115 commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
28116 Author: Mike Frysinger <vapier@gentoo.org>
28117 Date: Fri Oct 24 17:48:54 2008 -0400
28118
28119 Blackfin: fix linker scripts to work with --gc-sections
28120
28121 Make sure all .text sections get pulled in and the entry point is properly
28122 referenced so they don't get discarded when linking with --gc-sections.
28123
28124 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28125
28126 commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
28127 Author: Mike Frysinger <vapier@gentoo.org>
28128 Date: Sat Oct 11 20:45:44 2008 -0400
28129
28130 Blackfin: set proper LDRFLAGS for parallel booting LDRs
28131
28132 In order to boot an LDR out of parallel flash, the ldr utility needs a few
28133 flags to tell it to generate the right header.
28134
28135 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28136
28137 commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
28138 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28139 Date: Tue Jan 6 21:41:59 2009 +0100
28140
28141 at91rm9200: move define from lowlevel_init to header
28142
28143 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28144
28145 commit 8a48686fac2030287765f1970ea046bd5734b733
28146 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28147 Date: Sat Jan 3 17:22:26 2009 +0100
28148
28149 m501sk: move to the common memory setup
28150
28151 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28152
28153 commit d481c80d78f954133c035dae6c7d22de3625795d
28154 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28155 Date: Sat Jan 3 17:22:25 2009 +0100
28156
28157 at91rm9200: rename lowlevel init value to CONFIG_SYS_
28158
28159 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28160
28161 commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
28162 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
28163 Date: Tue Jan 6 21:13:14 2009 +0100
28164
28165 at91: add at91sam9xeek board support
28166
28167 At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
28168 it as another entry for at91sam9260 in the Makefile.
28169
28170 Check documentation at :
28171 http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
28172
28173 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
28174 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28175
28176 commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
28177 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28178 Date: Tue Jan 6 21:15:57 2009 +0100
28179
28180 fix bmp_logo.h make dependencies to allow parallel build
28181
28182 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28183
28184 commit e12d9a8fb48d24176efffccc072b445e60a3afe4
28185 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28186 Date: Sat Jan 3 17:22:24 2009 +0100
28187
28188 at91: Fix Atmel's at91sam9 boards out of tree build
28189
28190 introduced in commit 89a7a87f084c
28191
28192 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28193
28194 commit 0668236bafaa1c11c521652a2facebc74beecbf0
28195 Author: Wolfgang Denk <wd@denx.de>
28196 Date: Tue Dec 30 22:56:11 2008 +0100
28197
28198 README: update mailing list name and hits to patch submission.
28199
28200 Signed-off-by: Wolfgang Denk <wd@denx.de>
28201
28202 commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
28203 Author: Peter Tyser <ptyser@xes-inc.com>
28204 Date: Tue Dec 23 16:32:01 2008 -0600
28205
28206 85xx: Enable inbound PCI config cycles for X-ES boards cleanup
28207
28208 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28209
28210 commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
28211 Author: Peter Tyser <ptyser@xes-inc.com>
28212 Date: Tue Dec 23 16:32:00 2008 -0600
28213
28214 XPedite5200 board support cleanup
28215
28216 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28217
28218 commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
28219 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28220 Date: Tue Dec 2 21:58:04 2008 +0100
28221
28222 usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
28223
28224 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28225 Signed-off-by: Remy Böhmer <linux@bohmer.net>
28226
28227 commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
28228 Author: Trent Piepho <tpiepho@freescale.com>
28229 Date: Wed Dec 3 15:16:37 2008 -0800
28230
28231 mpc8[56]xx: Put localbus clock in sysinfo and gd
28232
28233 Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
28234 and print it out, but don't save it.
28235
28236 This changes where its calculated and stored to be more consistent with the
28237 CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
28238
28239 The localbus frequency is added to sysinfo and calculated when sysinfo is
28240 set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
28241
28242 get_clocks() copies the frequency into the global data, as the other
28243 frequencies are, into a new field that is only enabled for MPC85xx and
28244 MPC86xx.
28245
28246 checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
28247 from sysinfo, like the other frequencies, instead of calculating it on the
28248 spot.
28249
28250 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28251 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28252 Acked-by: Jon Loeliger <jdl@freescale.com>
28253
28254 commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
28255 Author: Trent Piepho <tpiepho@freescale.com>
28256 Date: Wed Dec 3 15:16:36 2008 -0800
28257
28258 mpc86xx: Double local bus clock divider
28259
28260 The local bus clock divider should be doubled for both 8610 and 8641.
28261
28262 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28263 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28264 Acked-by: Jon Loeliger <jdl@freescale.com>
28265
28266 commit 446c381e3e16f19857b72ea0d06241267b8b9d58
28267 Author: Trent Piepho <tpiepho@freescale.com>
28268 Date: Wed Dec 3 15:16:35 2008 -0800
28269
28270 mpc8568: Double local bus clock divider
28271
28272 The clock divider for the MPC8568 local bus should be doubled, like the
28273 other newer MPC85xx chips.
28274
28275 Since there are now more chips with a 2x divider than a 1x, and any new
28276 85xx chips will probably be 2x, invert the sense of the #if so that it
28277 lists the 1x chips instead of the 2x ones.
28278
28279 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28280 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28281 Acked-by: Jon Loeliger <jdl@freescale.com>
28282
28283 commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
28284 Author: Dave Liu <daveliu@freescale.com>
28285 Date: Tue Dec 16 12:09:27 2008 +0800
28286
28287 85xx: Fix the boot window issue
28288
28289 If one custom board is using the 8MB flash, it is set
28290 as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
28291 The current start.S code will be broken at switch_as.
28292
28293 It is because the TLB1[15] is set as 16MB page size,
28294 EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
28295
28296 For the 8MB flash case, the EPN = 0xefxxxxxx,
28297 RPN = 0xffxxxxxx. Assume the virt address of switch_as
28298 is 0xef7ff18c, the real address of the instruction at
28299 switch_as should be 0xff7ff18c. the 0xff7ff18c is out
28300 of the range of the default 8MB boot LAW window
28301 0xff800000 - 0xffffffff.
28302
28303 So when we switch to AS1 address space at switch_as,
28304 the core can't fetch the instruction at switch_as any
28305 more. It will cause broken issue.
28306
28307 Signed-off-by: Dave Liu <daveliu@freescale.com>
28308
28309 commit 58da8890d5fbd074746037722a423de9ac408616
28310 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28311 Date: Thu Dec 11 15:47:50 2008 -0500
28312
28313 sbc8548: use proper PHY address
28314
28315 The values given for the PHY address were wrong, so the code
28316 read no valid PHY ID, and fell through to the generic PHY
28317 support, which would work on 1000M but would not auto negotiate
28318 down to 100M or 10M.
28319
28320 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28321
28322 commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
28323 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28324 Date: Thu Dec 11 15:47:51 2008 -0500
28325
28326 sbc8548: enable command line editing by default.
28327
28328 Lets make things a bit more user friendly. It isn't 1985 anymore.
28329
28330 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28331
28332 commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
28333 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28334 Date: Thu Dec 11 15:47:49 2008 -0500
28335
28336 sbc8548: don't enable the 3rd and 4th eTSEC
28337
28338 These interfaces don't have usable connectors on the board, so don't
28339 bother enumerating or configuring them.
28340
28341 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28342
28343 commit 181a3650113883728927928b3ac81ad6dade4b2c
28344 Author: Haiying Wang <Haiying.Wang@freescale.com>
28345 Date: Wed Dec 3 10:08:19 2008 -0500
28346
28347 Set IVPR to kenrel entry point in second core boot page
28348
28349 Assuming the OSes exception vectors start from the base of kernel address, and
28350 the kernel physical starting address can be relocated to an non-zero address.
28351 This patch enables the second core to have a valid IVPR for debugger before
28352 kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
28353 value for second core which runs kernel at different physical address other
28354 than 0x0.
28355
28356 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
28357
28358 commit a5d212a263c58cc746481bf1fc878510533ce7d6
28359 Author: Trent Piepho <tpiepho@freescale.com>
28360 Date: Wed Dec 3 15:16:34 2008 -0800
28361
28362 mpc8xxx: LCRR[CLKDIV] is sometimes five bits
28363
28364 On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
28365 instead of four.
28366
28367 In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems. It
28368 should be safe as the fifth bit was defined as reserved and set to 0.
28369
28370 Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
28371
28372 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28373 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28374 Acked-by: Jon Loeliger <jdl@freescale.com>
28375
28376 commit 58ec4866ed916c7e422f5107bb27b0822084728e
28377 Author: Trent Piepho <tpiepho@freescale.com>
28378 Date: Wed Dec 3 15:16:38 2008 -0800
28379
28380 mpc8[56]xx: Put localbus clock in device tree
28381
28382 Export the localbus frequency in the device tree, the same way the CPU, TB,
28383 CCB, and various other frequencies are exported in their respective device
28384 tree nodes.
28385
28386 Some localbus devices need this information to be programed correctly, so
28387 it makes sense to export it along with the other frequencies.
28388
28389 Unfortunately, when someone wrote the localbus dts bindings, they didn't
28390 bother to define what the "compatible" property should be. So it seems no
28391 one was quite sure what to put in their dts files.
28392
28393 Based on current existing dts files in the kernel source, I've used
28394 "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
28395 of the 85xx devices, and are looked for by the Linux code. The eLBC is
28396 apparently not entirely backward compatible with the pq3 LBC and so eLBC
28397 equipped platforms like 8572 won't use pq3-localbus.
28398
28399 For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
28400 and is also looked for by the Linux code. On MPC8641, I've also used
28401 "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
28402 which don't use "fsl,elbc" or any other acceptable name to match on.
28403
28404 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
28405 Acked-by: Kumar Gala <galak@kernel.crashing.org>
28406 Acked-by: Jon Loeliger <jdl@freescale.com>
28407
28408 commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
28409 Author: Kumar Gala <galak@kernel.crashing.org>
28410 Date: Tue Dec 16 14:59:22 2008 -0600
28411
28412 NAND FSL elbc: Use virt_to_phys to determine which bank is in use
28413
28414 The current code that determines which bank/chipselect is used for a
28415 given NAND instance only worked for 32-bit addresses and assumed
28416 a 1:1 mapping. This breaks in 36-bit physical configs.
28417
28418 The proper way to handle this is to use the virt_to_phys() and
28419 BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
28420 with the the virtual address the NAND code uses.
28421
28422 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28423 Acked-by: Scott Wood <scottwood@freescale.com>
28424
28425 commit 77c8115b1f1871811633eae77a5a700fac1f0e50
28426 Author: Kumar Gala <galak@kernel.crashing.org>
28427 Date: Tue Dec 16 14:59:21 2008 -0600
28428
28429 ppc: Use addrmap in virt_to_phys and map_physmem.
28430
28431 If we have addr map support enabled use the mapping functions to
28432 implement virt_to_phys() and map_physmem().
28433
28434 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28435
28436 commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
28437 Author: Kumar Gala <galak@kernel.crashing.org>
28438 Date: Tue Dec 16 14:59:20 2008 -0600
28439
28440 85xx: Add support to populate addr map based on TLB settings
28441
28442 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28443
28444 commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
28445 Author: Peter Tyser <ptyser@xes-inc.com>
28446 Date: Mon Dec 1 13:47:13 2008 -0600
28447
28448 XPedite5200 board support
28449
28450 Initial support for Extreme Engineering Solutions XPedite5200 -
28451 a MPC8548-based PMC single board computer.
28452
28453 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28454
28455 commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
28456 Author: Peter Tyser <ptyser@xes-inc.com>
28457 Date: Wed Oct 29 12:39:27 2008 -0500
28458
28459 85xx: Enable inbound PCI config cycles for X-ES boards
28460
28461 Update X-ES Freescale boards to allow inbound PCI configuration
28462 cycles when configured as agent/endpoint.
28463
28464 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28465
28466 commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
28467 Author: Peter Tyser <ptyser@xes-inc.com>
28468 Date: Wed Dec 17 16:36:23 2008 -0600
28469
28470 XPedite5370 board support
28471
28472 Initial support for Extreme Engineering Solutions XPedite5370 -
28473 a MPC8572-based 3U VPX single board computer with a PMC/XMC
28474 site.
28475
28476 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28477
28478 commit e92739d34e2d6b6aca93b2598248210710897ce8
28479 Author: Peter Tyser <ptyser@xes-inc.com>
28480 Date: Wed Dec 17 16:36:21 2008 -0600
28481
28482 Add support for PCA953x I2C gpio devices
28483
28484 Initial support for NXP's 4 and 8 bit I2C gpio expanders
28485 (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
28486 enables support for the devices while the CONFIG_CMD_PCA953X
28487 define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
28488 define enables an 'info' sub-command which provides summary
28489 information for the given pca953x device.
28490
28491 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28492
28493 commit 7a8979591171676417ab36852d8811a8c46accd8
28494 Author: Peter Tyser <ptyser@xes-inc.com>
28495 Date: Wed Oct 29 12:39:26 2008 -0500
28496
28497 pci/fsl_pci_init: Enable inbound PCI config cycles
28498
28499 Add fsl_pci_config_unlock() function to enable a
28500 PCI/PCIe interface configured in agent/endpoint mode to
28501 respond to inbound PCI configuration cycles.
28502
28503 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28504
28505 commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
28506 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28507 Date: Wed Dec 17 16:43:18 2008 +0100
28508
28509 avr32: Remove second definition of virt_to_phys()
28510
28511 The second definition introduced by 65e43a1063 conflicts with the
28512 existing one.
28513
28514 Also, convert the existing definition to use phys_addr_t. The volatile
28515 qualifier is still needed due to brain damage elsewhere.
28516
28517 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28518
28519 commit b616f2b545f73757669b37386f0b37bb61fc6797
28520 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28521 Date: Mon Sep 8 22:27:18 2008 +0200
28522
28523 MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
28524
28525 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28526 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28527
28528 commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
28529 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28530 Date: Tue Dec 16 22:10:31 2008 +0100
28531
28532 MIPS: qemu_mips: update doc to use all disk and boot linux kernel
28533
28534 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28535 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28536
28537 commit 13095b2f07dacb1f863772266c1789d47a523a8a
28538 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28539 Date: Tue Dec 16 22:10:30 2008 +0100
28540
28541 MIPS: qemu_mips: move env storage just after u-boot
28542
28543 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28544 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28545
28546 commit aced78d852d0b009e8aaa1445af8cb40861ee549
28547 Author: Wolfgang Denk <wd@denx.de>
28548 Date: Tue Dec 16 23:48:27 2008 +0100
28549
28550 Prepare 2009.01-rc1
28551
28552 Signed-off-by: Wolfgang Denk <wd@denx.de>
28553
28554 commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
28555 Author: Wolfgang Denk <wd@denx.de>
28556 Date: Tue Dec 16 23:13:46 2008 +0100
28557
28558 include/configs/at91cap9adk.h: fix typo.
28559
28560 Signed-off-by: Wolfgang Denk <wd@denx.de>
28561
28562 commit 45ca04f2377361593151d2d4da51f8ba4832d233
28563 Author: Wolfgang Denk <wd@denx.de>
28564 Date: Tue Dec 16 22:32:25 2008 +0100
28565
28566 board/trab/memory.c: Fix compile problems.
28567
28568 Apply changes from commit 44b4dbed to board/trab/memory.c, too.
28569
28570 Actually we'd need a major cleanup here - as it turns out,
28571 board/trab/memory.c is more or less a verbatim copy of
28572 post/drivers/memory.c ... but then, trab is EOL anyway,r
28573 so this is not worth the effort.
28574
28575 Signed-off-by: Wolfgang Denk <wd@denx.de>
28576
28577 commit ff49ea8977b56916edd5b1766d9939010e30b181
28578 Author: Scott Wood <scottwood@freescale.com>
28579 Date: Tue Dec 16 14:24:16 2008 -0600
28580
28581 NAND: Mark the BBT as scanned prior to calling scan_bbt.
28582
28583 Otherwise, recursion can occur if scan_bbt does not find a bad block
28584 table, and tries to write one, and the attempt to erase the BBT area
28585 causes a bad block check.
28586
28587 Signed-off-by: Scott Wood <scottwood@freescale.com>
28588
28589 commit 584eedab66d0828f2d571a24b10526c4e65f547b
28590 Author: Ilya Yanok <yanok@emcraft.com>
28591 Date: Thu Dec 11 05:51:57 2008 +0300
28592
28593 jffs2: include <linux/mtd/compat.h> instead of defining own min_t
28594
28595 Include <linux/mtd/compat.h> header for min_t definition instead of
28596 providing our own one. Removes warnings in case of OneNAND support
28597 enabled.
28598
28599 Although I thinks it's a bit silly to include <linux/mtd/compat.h>
28600 just for min_t...
28601
28602 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
28603 Acked-by: Stefan Roese <sr@denx.de>
28604
28605 commit b1ffecec37b57a59c139042267faac458e5324e9
28606 Author: Becky Bruce <beckyb@kernel.crashing.org>
28607 Date: Wed Dec 3 23:04:37 2008 -0600
28608
28609 powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
28610
28611 Casting a pointer to a phys_addr_t when it's an unsigned long long
28612 on a 32-bit system without first casting to a non-pointer type
28613 generates a compiler warning. Fix this.
28614
28615 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
28616
28617 commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
28618 Author: Wolfgang Denk <wd@denx.de>
28619 Date: Tue Dec 16 16:22:50 2008 +0100
28620
28621 trab: make trab_fkt standalone code independent of libgcc
28622
28623 Use our own local functions in lib_arm/ instead.
28624
28625 Signed-off-by: Wolfgang Denk <wd@denx.de>
28626
28627 commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
28628 Author: Wolfgang Denk <wd@denx.de>
28629 Date: Tue Dec 16 14:44:06 2008 +0100
28630
28631 post/Makefile: fix dependency problem with parallel builds
28632
28633 Parallel builds (using "make -jN") would occasionally fail with error
28634 messages like
28635 ppc_4xxFP-objdump: string.o: File format not recognized
28636 or
28637 post/libpost.a(cpu.o): In function `cpu_post_test':
28638 /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
28639 or similar. We now make sure to run the 'postdeps" step before
28640 attempting to build the specific POST libraries.
28641
28642 Signed-off-by: Wolfgang Denk <wd@denx.de>
28643
28644 commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
28645 Author: Wolfgang Denk <wd@denx.de>
28646 Date: Tue Dec 16 14:41:02 2008 +0100
28647
28648 Makefile: fix dependency problem with parallel builds
28649
28650 Parallel builds (using "make -jN") would occasionally fail with error
28651 messages like
28652 include/autoconf.mk:212: *** missing separator. Stop.
28653 Line numbers and affected boards were changing. Obviously some
28654 Makefiles included autoconf.mk while it was still being written to.
28655 As a fix, we now write to a temporary file first and then rename it,
28656 so that it is really ready to use as soon as it appears.
28657
28658 Signed-off-by: Wolfgang Denk <wd@denx.de>
28659
28660 commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
28661 Author: Wolfgang Denk <wd@denx.de>
28662 Date: Tue Dec 16 01:02:17 2008 +0100
28663
28664 Coding style cleanup, update CHANGELOG.
28665
28666 Signed-off-by: Wolfgang Denk <wd@denx.de>
28667
28668 commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
28669 Author: Mike Frysinger <vapier@gentoo.org>
28670 Date: Thu Dec 11 18:39:08 2008 -0500
28671
28672 spi/stmicro: fix debug() display of cmd
28673
28674 The stmicro_wait_ready() func tries to show the actual opcode that was sent
28675 to the device, but instead it displays the array pointer. Fix it to pull
28676 out the opcode from the start of the array.
28677
28678 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28679
28680 commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
28681 Author: Mike Frysinger <vapier@gentoo.org>
28682 Date: Thu Dec 11 06:23:37 2008 -0500
28683
28684 env_sf: support embedded environments
28685
28686 If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
28687 size is larger than the env size, then it means the env is embedded in a
28688 block. So we have to save/restore the part of the sector which is not the
28689 environment. Previously, saving the environment in SPI flash in this
28690 setup would probably brick the board as the rest of the sector tends to
28691 contain actual U-Boot data/code.
28692
28693 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
28694 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28695
28696 commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
28697 Author: Timur Tabi <timur@freescale.com>
28698 Date: Wed Dec 3 11:28:30 2008 -0600
28699
28700 i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
28701
28702 All implementations of the functions i2c_reg_read() and
28703 i2c_reg_write() are identical. We can save space and simplify the
28704 code by converting these functions into inlines and putting them in
28705 i2c.h.
28706
28707 Signed-off-by: Timur Tabi <timur@freescale.com>
28708 Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28709
28710 commit e39cd81c44740d7355d277ed3d38536cbe1e003d
28711 Author: Dave Liu <daveliu@freescale.com>
28712 Date: Fri Dec 5 15:36:14 2008 +0800
28713
28714 lib_ppc: rework the flush_cache
28715
28716 - It is possible to miss flush/invalidate the last
28717 cache line, we fix it at here.
28718 - add the volatile and memory clobber.
28719
28720 They are pointed by Scott Wood.
28721
28722 Signed-off-by: Dave Liu <daveliu@freescale.com>
28723
28724 commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
28725 Author: Kumar Gala <galak@kernel.crashing.org>
28726 Date: Sat Dec 13 17:20:28 2008 -0600
28727
28728 Introduce addr_map library
28729
28730 Add a library that helps in translating between virtual and physical
28731 addresses. This library can be useful as a simple means to implement
28732 map_physmem() and virt_to_phys() for platforms that need functionality
28733 beyond the simple 1:1 mapping.
28734
28735 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28736
28737 commit 65e43a10631537dcb92c302d36301a12308216c3
28738 Author: Kumar Gala <galak@kernel.crashing.org>
28739 Date: Sat Dec 13 17:20:27 2008 -0600
28740
28741 Introduce virt_to_phys()
28742
28743 virt_to_phys() returns the physical address given a virtual. In most
28744 cases this will be just the input value as the vast majority of
28745 systems run in a 1:1 mode.
28746
28747 However in systems that are not running this way it should report the
28748 physical address or ~0 if no mapping exists for the given virtual
28749 address.
28750
28751 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28752
28753 commit 45845301af3de8675c1f7bbc815c6de35452605a
28754 Author: Yuri Tikhonov <yur@emcraft.com>
28755 Date: Sun Dec 7 22:12:50 2008 +0100
28756
28757 POST Make: fix the sub-dir dependencies missing.
28758
28759 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
28760
28761 commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
28762 Author: Martin Michlmayr <tbm@cyrius.com>
28763 Date: Wed Aug 6 14:44:05 2008 +0300
28764
28765 Fix a typo in fw_env.config
28766
28767 Reported-by: Martin Michlmayr <tbm@cyrius.com>
28768 Signed-off-by: Wolfgang Denk <wd@denx.de>
28769
28770 commit ba490b7761c62b549c222a9723e532dc801a3899
28771 Author: Peter Tyser <ptyser@xes-inc.com>
28772 Date: Mon Dec 1 16:22:45 2008 -0600
28773
28774 Remove unused CONFIG_ADDR_STREAMING defines
28775
28776 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28777
28778 commit d16da93430520d3e46c1ab52eedacf36ab7a2311
28779 Author: Peter Tyser <ptyser@xes-inc.com>
28780 Date: Mon Nov 24 11:54:47 2008 -0600
28781
28782 cmd_mem: Remove unused variable
28783
28784 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
28785
28786 commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
28787 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28788 Date: Sun Dec 14 10:29:39 2008 +0100
28789
28790 Fix new found CFG_
28791
28792 Also fix some minor typos.
28793
28794 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28795 Signed-off-by: Wolfgang Denk <wd@denx.de>
28796
28797 commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
28798 Author: Sergei Poselenov <sposelenov@emcraft.com>
28799 Date: Fri Sep 19 12:07:34 2008 +0200
28800
28801 Remove compiler warning: target CPU does not support interworking
28802
28803 This warning is issued by modern ARM-EABI GCC on non-thumb targets.
28804
28805 Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
28806 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
28807
28808 commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
28809 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28810 Date: Mon Nov 24 13:33:51 2008 +0100
28811
28812 Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
28813
28814 FDT support is used for both FIT style images and for architectures
28815 that can pass a fdt blob to an OS (ppc, m68k, sparc).
28816
28817 For other architectures and boards which do not pass a fdt blob to an
28818 OS but want to use the new uImage format, we just need FIT support.
28819
28820 Now we can have the 4 following configurations :
28821
28822 1) FIT only CONFIG_FIT
28823 2) fdt blob only CONFIG_OF_LIBFDT
28824 3) both CONFIG_OF_LIBFDT & CONFIG_FIT
28825 4) none none
28826
28827 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28828
28829 commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
28830 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28831 Date: Wed Dec 10 15:13:32 2008 +0100
28832
28833 ppc4xx: Disable EEPROM write access on PMC440 boards
28834
28835 This patch disables EEPROM wrtie access by default on PMC440 board.
28836
28837 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28838
28839 commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
28840 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28841 Date: Wed Dec 10 15:12:56 2008 +0100
28842
28843 ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
28844
28845 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28846
28847 commit 71fa0714fe5134bc8718c38d5261d267e88582ba
28848 Author: Stefan Roese <sr@denx.de>
28849 Date: Tue Nov 18 16:36:12 2008 +0100
28850
28851 MIPS: Flush data cache upon relocation
28852
28853 This patch now adds a flush to the data cache upon relocation. The
28854 current implementation is missing this. Only a comment states that it
28855 should be done. So let's really do it now.
28856
28857 Signed-off-by: Stefan Roese <sr@denx.de>
28858 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28859
28860 commit 44174343688dba32571a34550dba08971c65fef1
28861 Author: Stefan Roese <sr@denx.de>
28862 Date: Tue Nov 18 16:36:22 2008 +0100
28863
28864 MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
28865
28866 This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
28867 enables support for boards where the lowlevel initialization is
28868 already done when U-Boot runs (e.g. via OnChip ROM).
28869
28870 This will be used in the upcoming VCTH board support.
28871
28872 Signed-off-by: Stefan Roese <sr@denx.de>
28873 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28874
28875 commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
28876 Author: Stefan Roese <sr@denx.de>
28877 Date: Wed Nov 12 13:18:02 2008 +0100
28878
28879 MIPS: Add board_early_init_f() to init_sequence
28880
28881 This patch adds the board_early_init_f() call to the MIPS init
28882 sequence. A weak dummy implementation is also added which can be
28883 overridden by a board specific version.
28884
28885 This will be used by the upcoming VCTH board support.
28886
28887 Signed-off-by: Stefan Roese <sr@denx.de>
28888 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28889
28890 commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
28891 Author: Stefan Roese <sr@denx.de>
28892 Date: Wed Nov 12 13:18:19 2008 +0100
28893
28894 MIPS: Add onenand_init() to board.c and move nand_init()
28895
28896 This patch adds a call to onenand_init() for OneNAND support and moves
28897 the nand_init() call to an earlier place, so that the environment can
28898 be used from NAND and OneNAND.
28899
28900 Signed-off-by: Stefan Roese <sr@denx.de>
28901 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
28902
28903 commit d8bbc51c7ba9b737a20984333d19fe28a3526431
28904 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28905 Date: Tue Dec 9 11:32:46 2008 +0900
28906
28907 sh: Update sh2/sh2a timer
28908
28909 Renesas SH2/SH2A timer broken.
28910 This patch fix timer function.
28911
28912 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28913 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28914
28915 commit a319f1496210117b73198e3d889ffffaf6825d00
28916 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28917 Date: Fri Dec 5 07:27:37 2008 +0100
28918
28919 sh: r2dplus fix register access
28920
28921 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28922 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28923
28924 commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
28925 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28926 Date: Tue Dec 2 07:40:03 2008 +0100
28927
28928 sh: r2dplus/lowlevel_init: coding style fix
28929
28930 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28931 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28932
28933 commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
28934 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28935 Date: Tue Nov 25 11:05:19 2008 +0900
28936
28937 sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
28938
28939 SH4 is different a value of CACHE_OC_NUM_ENTRIES and
28940 CACHE_OC_WAY_SHIFT every CPU.
28941 This patch corrects these values.
28942
28943 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28944 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28945
28946 commit e9d5f35497885b3c65d494d09a525d443dcccd3b
28947 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28948 Date: Thu Nov 20 16:44:42 2008 +0900
28949
28950 sh: Update sh timer function
28951
28952 Change to write/readX function and fix timer problem.
28953
28954 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28955 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28956
28957 commit b81786cff476c41e332eaeb679158f6527cd67d4
28958 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28959 Date: Tue Nov 4 11:58:58 2008 +0900
28960
28961 sh: Migo-R: Update BSC value
28962
28963 A value of BSC CS4 was wrong, Fixed it.
28964
28965 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28966 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28967
28968 commit 5783758fd260a02f44566ad8f29f899565cd0403
28969 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28970 Date: Mon Nov 17 16:52:09 2008 +0900
28971
28972 sh: Update ms7722se board config
28973
28974 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28975 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28976
28977 commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
28978 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28979 Date: Mon Nov 17 16:53:09 2008 +0900
28980
28981 sh: Update SuperH serial driver
28982
28983 The address of SCFSR register is wrong at SH7720/SH7721.
28984 This patch fix this.
28985
28986 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
28987 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28988
28989 commit 9a1d3557dcd47365c12eeab584b822e57d994352
28990 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28991 Date: Tue Nov 11 22:20:15 2008 +0100
28992
28993 sh: fix rsk7203 and MigoR out of tree build
28994
28995 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
28996 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28997
28998 commit 1951f847f0a851853871b613ad7cf21a5242226c
28999 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29000 Date: Wed Dec 10 14:41:25 2008 +0100
29001
29002 ppc4xx: Update TEXT_BASE for CPCI405 boards
29003
29004 This patch fixes building U-Boot for CPCI405 boards.
29005
29006 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29007 Signed-off-by: Stefan Roese <sr@denx.de>
29008
29009 commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
29010 Author: Stefan Roese <sr@denx.de>
29011 Date: Tue Dec 9 20:08:01 2008 +0100
29012
29013 ppc4xx: Remove some features from ALPR to fit into 256k again
29014
29015 Signed-off-by: Stefan Roese <sr@denx.de>
29016
29017 commit 3b089e4f889a2902449d55e081c886ae607cae89
29018 Author: Stefan Roese <sr@denx.de>
29019 Date: Wed Dec 10 10:32:59 2008 +0100
29020
29021 UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
29022
29023 With this patch we set the type back to NONE upon failing UBI partition
29024 initialization. Otherwise further calls to the UBI subsystem would try
29025 to really access the non-existing UBI partition.
29026
29027 Thanks to Michael Lawnick for pointing this out.
29028
29029 Signed-off-by: Stefan Roese <sr@denx.de>
29030
29031 commit 817329351639a8895cd9b87b33aeff043f3d5a44
29032 Author: Stefan Roese <sr@denx.de>
29033 Date: Wed Dec 10 10:28:33 2008 +0100
29034
29035 UBI: Return -ENOMEM upon failing malloc
29036
29037 Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
29038 failing malloc().
29039
29040 Signed-off-by: Stefan Roese <sr@denx.de>
29041
29042 commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
29043 Author: Ben Warren <biggerbadderben@gmail.com>
29044 Date: Tue Dec 9 23:34:15 2008 -0800
29045
29046 Fix compile error in building MBX860T.
29047
29048 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29049
29050 commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
29051 Author: Michal Simek <monstr@monstr.eu>
29052 Date: Tue Nov 25 11:42:20 2008 +0100
29053
29054 microblaze: Remove XUPV2P board
29055
29056 ---
29057
29058 Microblaze platforms use generic settings and to have
29059 many platforms is confusing that's why I decided to remove this
29060 platform from U-BOOT. ml401 tree is sufficient for covering
29061 all Microblaze platforms.
29062
29063 This change will go through microblaze custodian tree.
29064
29065 commit 99ba6f353582720defff6e6e6761dc455a207d31
29066 Author: Michal Simek <monstr@monstr.eu>
29067 Date: Mon Nov 24 18:25:41 2008 +0100
29068
29069 microblaze: Remove CONFIG_LIBFDT due to error in common files
29070
29071 commit e7d591e823a991513833af7030468409e25a3b13
29072 Author: Michal Simek <monstr@monstr.eu>
29073 Date: Mon Nov 24 11:43:00 2008 +0100
29074
29075 microblaze: Fix ml401 uart16550 setting
29076
29077 Signed-off-by: Michal Simek <monstr@monstr.eu>
29078
29079 commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
29080 Author: Michal Simek <monstr@monstr.eu>
29081 Date: Mon Nov 24 11:38:22 2008 +0100
29082
29083 microblaze: Set up relocation is done
29084
29085 commit bcb6dd9187d4b23c748704767bd12d20c829e996
29086 Author: Mike Frysinger <vapier@gentoo.org>
29087 Date: Tue Dec 9 23:20:31 2008 -0500
29088
29089 tools/netconsole: new script for working with netconsole over UDP
29090
29091 While the doc/README.NetConsole does have a snippet for people to
29092 create their own netcat script, it's a lot easier to make a simple
29093 dedicated script and tell people to use it.
29094
29095 Also spruce it up a bit to make it user friendly.
29096
29097 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29098
29099 commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
29100 Author: Sonic Zhang <Sonic.Zhang@analog.com>
29101 Date: Tue Dec 9 23:20:18 2008 -0500
29102
29103 fs/fat: handle FAT on SATA
29104
29105 The FAT file system driver should also handle FAT on SATA devices.
29106
29107 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
29108 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29109
29110 commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
29111 Author: Ben Warren <biggerbadderben@gmail.com>
29112 Date: Tue Dec 9 23:26:31 2008 -0800
29113
29114 Fix compile error in building MBX860T.
29115 Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
29116
29117 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29118
29119 commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
29120 Author: Jerry Van Baren <gvb.uboot@gmail.com>
29121 Date: Mon Nov 24 08:15:02 2008 -0500
29122
29123 libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
29124
29125 Compiling U-Boot in an old OS environment (RedHat-7.3 :-) gives the
29126 following warnings from FDT:
29127
29128 include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
29129 /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
29130
29131 Fix: Protect the definition of uintptr_t when compiling on the host
29132 system.
29133
29134 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
29135
29136 commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
29137 Author: Graeme Russ <graeme.russ@gmail.com>
29138 Date: Sat Nov 22 08:43:29 2008 +1100
29139
29140 Moved sc520 PCI definitions to stand-alone file
29141
29142 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
29143
29144 commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
29145 Author: Graeme Russ <graeme.russ@gmail.com>
29146 Date: Sat Nov 22 08:43:21 2008 +1100
29147
29148 Fixed path to sc520 SSI include file
29149
29150 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
29151
29152 commit d4f70da544c33db3e4fce6473dea4ecca4322545
29153 Author: Graeme Russ <graeme.russ@gmail.com>
29154 Date: Fri Nov 21 06:28:05 2008 +1100
29155
29156 Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
29157
29158 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
29159
29160 commit c034075a713b60e654c64e88e87da29440f31bb4
29161 Author: Stefan Roese <sr@denx.de>
29162 Date: Wed Nov 12 13:30:10 2008 +0100
29163
29164 serial: Add vcth UART driver
29165
29166 This patch adds the UART driver for the upcoming VCTH board support.
29167
29168 Signed-off-by: Stefan Roese <sr@denx.de>
29169
29170 commit 142a80ffc3b537a9c45acd2444a42a77f147c602
29171 Author: Ilya Yanok <yanok@emcraft.com>
29172 Date: Thu Nov 13 19:49:36 2008 +0300
29173
29174 jffs2: cache data_crc results
29175
29176 As we moved data_crc() invocation from jffs2_1pass_build_lists() to
29177 jffs2_1pass_read_inode() data_crc is going to be calculated on each
29178 inode access. This patch adds caching of data_crc() results. There
29179 is no significant improvement in speed (because of flash access
29180 caching added in previous patch I think, crc in RAM is really fast)
29181 but this patch impacts memory usage -- every b_node structure uses
29182 12 bytes instead of 8.
29183
29184 Signed-off-by: Alexey Neyman <avn@emcraft.com>
29185 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29186
29187 commit 9b7076229ec6a958bd835ab70745f7676297ce82
29188 Author: Ilya Yanok <yanok@emcraft.com>
29189 Date: Thu Nov 13 19:49:35 2008 +0300
29190
29191 jffs2: summary support
29192
29193 This patch adds support for reading fs information from summary
29194 node instead of scanning full eraseblock.
29195
29196 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29197
29198 commit 70741004dc28946cd82c7af6789c4ddb3fc94526
29199 Author: Ilya Yanok <yanok@emcraft.com>
29200 Date: Thu Nov 13 19:49:34 2008 +0300
29201
29202 jffs2: add buffer to cache flash accesses
29203
29204 With this patch JFFS2 code allocates memory buffer of max_totlen size
29205 (size of the largest node, calculated during scan time) and uses it to
29206 store entire node. Speeds up loading. If malloc fails we use old ways
29207 to do things.
29208
29209 Signed-off-by: Alexey Neyman <avn@emcraft.com>
29210 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29211
29212 commit 8a36d31f72411144ac0412ee7e1880e801acd754
29213 Author: Ilya Yanok <yanok@emcraft.com>
29214 Date: Thu Nov 13 19:49:33 2008 +0300
29215
29216 jffs2: rewrite jffs2 scanning code based on Linux one
29217
29218 Rewrites jffs2_1pass_build_lists() function in style of Linux's
29219 jffs2_scan_medium() and jffs2_scan_eraseblock().
29220 This includes:
29221 - Caching flash acceses
29222 - Smart dealing with free space
29223
29224 Signed-off-by: Alexey Neyman <avn@emcraft.com>
29225 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29226
29227 commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
29228 Author: Ilya Yanok <yanok@emcraft.com>
29229 Date: Thu Nov 13 19:49:32 2008 +0300
29230
29231 jffs2: add sector_size field to part_info structure
29232
29233 This patch adds sector_size field to part_info structure (used
29234 by new JFFS2 code).
29235
29236 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29237
29238 commit f73846956778a7dfee83403ef9747aff77198848
29239 Author: Ilya Yanok <yanok@emcraft.com>
29240 Date: Thu Nov 13 19:49:31 2008 +0300
29241
29242 jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
29243
29244 We need to update i_version inside cycle to find really latest version
29245 inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
29246 dump_inode() instead of calling expensive jffs2_1pass_read_inode().
29247
29248 Signed-off-by: Alexey Neyman <avn@emcraft.com>
29249 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
29250
29251 commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
29252 Author: Wolfgang Denk <wd@denx.de>
29253 Date: Tue Dec 9 23:13:51 2008 +0100
29254
29255 evb64260: fix "cast to pointer from integer of different size" warnings
29256
29257 Signed-off-by: Wolfgang Denk <wd@denx.de>
29258
29259 commit d2776827315c3d469b8cb4cec14d58877798daa2
29260 Author: Stefan Althoefer <stefan.althoefer@web.de>
29261 Date: Sun Dec 7 19:39:11 2008 +0100
29262
29263 USB: descriptor handling
29264
29265 Hi,
29266
29267 I found a bug when working with the u-boot USB subsystem on IXP425 processor
29268 (big endian Xscale aka ARMv5).
29269 I recognized that the second usb_endpoint_descriptor of the attached memory
29270 stick was corrupted.
29271
29272 The reason for this are the packed structures below (either u-boot and
29273 u-boot-usb):
29274
29275 --------------
29276 /* Endpoint descriptor */
29277 struct usb_endpoint_descriptor {
29278 unsigned char bLength;
29279 unsigned char bDescriptorType;
29280 unsigned char bEndpointAddress;
29281 unsigned char bmAttributes;
29282 unsigned short wMaxPacketSize;
29283 unsigned char bInterval;
29284 unsigned char bRefresh;
29285 unsigned char bSynchAddress;
29286
29287 } __attribute__ ((packed));
29288 /* Interface descriptor */
29289 struct usb_interface_descriptor {
29290 unsigned char bLength;
29291 unsigned char bDescriptorType;
29292 unsigned char bInterfaceNumber;
29293 unsigned char bAlternateSetting;
29294 unsigned char bNumEndpoints;
29295 unsigned char bInterfaceClass;
29296 unsigned char bInterfaceSubClass;
29297 unsigned char bInterfaceProtocol;
29298 unsigned char iInterface;
29299
29300 unsigned char no_of_ep;
29301 unsigned char num_altsetting;
29302 unsigned char act_altsetting;
29303 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
29304 } __attribute__ ((packed));
29305 ------------
29306
29307 As usb_endpoint_descriptor is only 7byte in length, the start of all
29308 odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
29309 of these structures also not word aligned.
29310
29311 ARMv5 Architecture however does not support non-aligned multibyte
29312 data type (see A2.8 of ARM Architecture Reference Manual).
29313
29314 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
29315 Signed-off-by: Remy Böhmer <linux@bohmer.net>
29316
29317 commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
29318 Author: Kumar Gala <galak@kernel.crashing.org>
29319 Date: Tue Dec 9 10:27:33 2008 -0600
29320
29321 drivers/fsl_pci_init: Fix compile warning
29322
29323 fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
29324 fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
29325
29326 The check only makes sense if we are CONFIG_PHYS_64BIT
29327
29328 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29329
29330 commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
29331 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29332 Date: Sun Dec 7 09:45:35 2008 +0100
29333
29334 usbtty/omap: update to current API
29335
29336 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29337 Signed-off-by: Remy Böhmer <linux@bohmer.net>
29338
29339 commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
29340 Author: Anatolij Gustschin <agust@denx.de>
29341 Date: Tue Dec 9 17:52:05 2008 +0100
29342
29343 video: fix FADS823 and RRvision compiling issues
29344
29345 Since commit 561858ee building for FADS823 and RRvision
29346 doesn't work. Let's include version.h and timestamp.h
29347 unconditionally to fix the problem.
29348
29349 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29350
29351 commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
29352 Author: Stefan Roese <sr@denx.de>
29353 Date: Tue Dec 2 10:53:47 2008 +0100
29354
29355 UBI: Fix size parsing in "ubi create"
29356
29357 Signed-off-by: Stefan Roese <sr@denx.de>
29358
29359 commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
29360 Author: Stefan Roese <sr@denx.de>
29361 Date: Thu Nov 27 14:07:09 2008 +0100
29362
29363 UBI: Enable re-initializing of the "ubi part" command
29364
29365 With this patch now, the user can call "ubi part" multiple times to
29366 re-connect the UBI device to another MTD partition.
29367
29368 Signed-off-by: Stefan Roese <sr@denx.de>
29369
29370 commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
29371 Author: Stefan Roese <sr@denx.de>
29372 Date: Thu Nov 27 14:05:15 2008 +0100
29373
29374 MTD: Fix problem based on non-working relocation (list head mtd_partitions)
29375
29376 Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
29377 first call of add_mtd_partitions(). Otherwise this won't work on platforms
29378 where the relocation is broken (like MIPS or PPC).
29379
29380 Signed-off-by: Stefan Roese <sr@denx.de>
29381
29382 commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
29383 Author: Trent Piepho <tpiepho@freescale.com>
29384 Date: Wed Nov 12 17:29:48 2008 -0800
29385
29386 Section name should be ".data", not "data"
29387
29388 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
29389 Signed-off-by: Wolfgang Denk <wd@denx.de>
29390
29391 commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
29392 Author: Wolfgang Denk <wd@denx.de>
29393 Date: Tue Dec 9 00:39:08 2008 +0100
29394
29395 MAKEALL: Automatically use parallel builds
29396
29397 Add logic to the MAKEALL script to determine the number of CPU cores
29398 on the system, and run a parallel build if there is more than one.
29399 Usually this significantrly accelerates builds.
29400
29401 Allow to manually adjust the number of parallel make jobs by using
29402 the "BUILD_NCPUS" environment variable.
29403
29404 Signed-off-by: Wolfgang Denk <wd@denx.de>
29405
29406 commit 268405fa7c44156c5192a70779920c70906af8d6
29407 Author: Wolfgang Denk <wd@denx.de>
29408 Date: Tue Dec 9 00:24:30 2008 +0100
29409
29410 vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
29411
29412 Signed-off-by: Wolfgang Denk <wd@denx.de>
29413
29414 commit 153176a9414120ca1736f3cc4951623d6e14e6af
29415 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29416 Date: Tue Nov 11 06:08:59 2008 +0100
29417
29418 avr32/bootm: remove unused variable 'ret'
29419
29420 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29421 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
29422
29423 commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
29424 Author: Peter Tyser <ptyser@xes-inc.com>
29425 Date: Wed Nov 12 13:06:48 2008 -0600
29426
29427 Remove unneeded CONFIG_SHELL references
29428
29429 Make should be using the bash shell by default which makes
29430 CONFIG_SHELL unnecessary
29431
29432 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29433
29434 commit cf7a7b99794bac936899819b95539be1dbd71708
29435 Author: Peter Tyser <ptyser@xes-inc.com>
29436 Date: Wed Nov 12 12:33:20 2008 -0600
29437
29438 Use bash for default GNU Make shell application
29439
29440 Some Make script commands rely on bash-specific features like brace
29441 expansion, so default to bash for the SHELL variable with a fallback
29442 to the standard sh shell
29443
29444 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29445
29446 commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
29447 Author: Heiko Schocher <hs@denx.de>
29448 Date: Wed Nov 12 09:50:45 2008 +0100
29449
29450 jffs2: rename devices_init () in common/jffs2.c
29451
29452 rename devices_init () in common/jffs2.c to
29453 jffs2_devices_init (), because there is also a
29454 devices_init () in common/devices.c.
29455
29456 Signed-off-by: Heiko Schocher <hs@denx.de>
29457
29458 commit af5eb847a10f1037590001355d88bab3fe7be48b
29459 Author: Daniel Hellstrom <daniel@gaisler.com>
29460 Date: Mon Nov 10 12:46:20 2008 +0000
29461
29462 SPARC: Fixed compiler error introduced by commit c160a9544743
29463
29464 This patch fixes a build error for the SPARC platform. It was
29465 introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
29466
29467 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
29468
29469 commit 4c60259899aa00f59db0d936b8807f9a26411c0f
29470 Author: Gary Jennejohn <garyj@denx.de>
29471 Date: Sun Nov 9 12:50:59 2008 +0100
29472
29473 mgsuvd add the board-specific part of the HDLC driver
29474
29475 Signed-off-by: Gary Jennejohn <garyj@denx.de>
29476
29477 commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
29478 Author: Gary Jennejohn <garyj@denx.de>
29479 Date: Sun Nov 9 12:45:03 2008 +0100
29480
29481 mgcoge add the board-specific part of the HDLC driver
29482
29483 Signed-off-by: Gary Jennejohn <garyj@denx.de>
29484
29485 commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
29486 Author: Gary Jennejohn <garyj@denx.de>
29487 Date: Sun Nov 9 12:36:15 2008 +0100
29488
29489 keymile add the common parts of the HDLC driver
29490
29491 This implements the ICN protocol used across the backplane and is
29492 needed by all the keymile boards.
29493
29494 Signed-off-by: Gary Jennejohn <garyj@denx.de>
29495
29496 commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
29497 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29498 Date: Fri Nov 7 22:46:22 2008 +0100
29499
29500 drivers/bios_emulator: Move conditional compilation to Makefile
29501
29502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29503
29504 commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
29505 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
29506 Date: Thu Nov 6 14:01:51 2008 -0500
29507
29508 common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
29509
29510 Corrected endian order printing for compact flash serial number.
29511
29512 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
29513
29514 commit 16a28ef219c27423a1ef502f19070c4d375079b8
29515 Author: Gary Jennejohn <garyj@denx.de>
29516 Date: Thu Nov 6 15:04:23 2008 +0100
29517
29518 IOMUX: Add console multiplexing support.
29519
29520 Modifications to support console multiplexing. This is controlled using
29521 CONFIG_SYS_CONSOLE_MUX in the board configuration file.
29522
29523 This allows a user to specify multiple console devices in the environment
29524 with a command like this: setenv stdin serial,nc. As a result, the user can
29525 enter text on both the serial and netconsole interfaces.
29526
29527 All devices - stdin, stdout and stderr - can be set in this manner.
29528
29529 1) common/iomux.c and include/iomux.h contain the environment setting
29530 implementation.
29531 2) doc/README.iomux contains a somewhat more detailed description.
29532 3) The implementation in (1) is called from common/cmd_nvedit.c to
29533 handle setenv and from common/console.c to handle initialization of
29534 input/output devices at boot time.
29535 4) common/console.c also contains the code needed to poll multiple console
29536 devices for input and send output to all devices registered for output.
29537 5) include/common.h includes iomux.h and common/Makefile generates iomux.o
29538 when CONFIG_SYS_CONSOLE_MUX is set.
29539
29540 Signed-off-by: Gary Jennejohn <garyj@denx.de>
29541
29542 commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
29543 Author: Mike Frysinger <vapier@gentoo.org>
29544 Date: Tue Nov 4 16:03:46 2008 -0500
29545
29546 strings: use puts() rather than printf()
29547
29548 When running `strings` on really long strings, the stack tends to get
29549 smashed due to printf(). Switch to puts() instead since we're only passing
29550 the data through.
29551
29552 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29553
29554 commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
29555 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
29556 Date: Mon Nov 3 22:16:18 2008 +0100
29557
29558 Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
29559
29560 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
29561
29562 commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
29563 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
29564 Date: Mon Nov 3 22:15:34 2008 +0100
29565
29566 cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
29567
29568 - fix size too small by one in sprintf
29569 - changed old (pre 2004) device name ibmEmac to emac
29570 - boot device may be overriden in board config
29571 - servername may be defined in board config
29572 - additional parameters may be defined in board config
29573 - fixed some line wrappings
29574 - replaced redundant MAX define by max
29575
29576 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
29577
29578 commit e9084b23d16102f44ace24379a1c0c352497ef80
29579 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
29580 Date: Mon Nov 3 22:14:36 2008 +0100
29581
29582 Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
29583
29584 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
29585
29586 commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
29587 Author: Niklaus Giger <niklaus.giger@member.fsf.org>
29588 Date: Mon Nov 3 22:13:47 2008 +0100
29589
29590 README: Document CONFIG_SYS parameters for vxworks
29591
29592 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
29593
29594 commit ace514837cac656e29c37a19569cb8ea83071126
29595 Author: Peter Tyser <ptyser@xes-inc.com>
29596 Date: Fri Oct 31 11:12:38 2008 -0500
29597
29598 lcd: Let the board code show board-specific info cleanup
29599
29600 remove unneeded version.h from lcd.c
29601
29602 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29603 Signed-off-by: Wolfgang Denk <wd@denx.de>
29604
29605 commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
29606 Author: Peter Tyser <ptyser@xes-inc.com>
29607 Date: Mon Nov 3 09:30:59 2008 -0600
29608
29609 Update U-Boot's build timestamp on every compile
29610
29611 Use the GNU 'date' command to auto-generate a new U-Boot
29612 timestamp on every compile.
29613
29614 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29615
29616 commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
29617 Author: Remy Bohmer <linux@bohmer.net>
29618 Date: Thu Dec 4 22:25:57 2008 +0100
29619
29620 Remove redundant armv4 flag from arm926ejs compile flags
29621
29622 Currently the arm926ejs tree has the armv4 option set during compilation.
29623 This flag does not belong here because a arm926 CPU is always a armv5 CPU.
29624
29625 Signed-off-by: Remy Bohmer <linux@bohmer.net>
29626
29627 commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
29628 Author: Nicolas Ferre <nicolas.ferre@atmel.com>
29629 Date: Sat Dec 6 13:11:14 2008 +0100
29630
29631 at91: Choose environment variables location within make config target
29632
29633 This patch adds the possiblity to choose the media where the environment will
29634 be located. This allow to choose this fundamental configuration without editing
29635 config files.
29636
29637 Documentation file added.
29638
29639 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
29640 Acked-by: Stelian Pop <stelian@popies.net>
29641 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29642
29643 commit 1450c4a6682378567030414a9f1198c39b7730c7
29644 Author: Anatolij Gustschin <agust@denx.de>
29645 Date: Mon Nov 3 15:30:34 2008 +0100
29646
29647 lwmon, tqm8xx: Fix build errors
29648
29649 Commit 6b59e03e0237a40a2305ea385defdfd92000978b
29650 lcd: Let the board code show board-specific info
29651
29652 introduced some bugs which prevent U-Boot building
29653 for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
29654 be defined in the board configuration.
29655
29656 Also "LCD enabled" building for TQM823L doesn't work
29657 since this commit.
29658
29659 This patch fixes above-mentioned issues.
29660
29661 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29662
29663 commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
29664 Author: Mike Frysinger <vapier@gentoo.org>
29665 Date: Sun Nov 2 01:18:18 2008 -0400
29666
29667 ignore .gdb_history files
29668
29669 When using gdb, history files will often get generated. So ignore them.
29670
29671 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29672
29673 commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
29674 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29675 Date: Fri Oct 31 12:26:55 2008 +0100
29676
29677 FPGA: move fpga drivers to drivers/fpga
29678
29679 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29680
29681 commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
29682 Author: Peter Tyser <ptyser@xes-inc.com>
29683 Date: Mon Dec 1 16:29:38 2008 -0600
29684
29685 net: Fix TftpStart() ip:filename bug
29686
29687 The TftpStart() function modifies the 'BootFile'
29688 string when 'BootFile' contains both an IP address
29689 and filename (eg 1.2.3.4:/path/file). This causes
29690 subsequent calls to TftpStart to incorrectly parse
29691 the TFTP filename and server IP address to use.
29692 For example:
29693
29694 => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
29695 Speed: 100, half duplex
29696 Using eTSEC1 device
29697 TFTP from server 10.52.0.62; our IP address is 10.52.253.79
29698 ^^^^^^^^^^ CORRECT
29699 Filename '/home/ptyser/non_existant'.
29700 ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
29701 Load address: 0x100000
29702 Loading: *
29703 TFTP error: 'File not found' (1)
29704 Starting again
29705
29706 eTSEC2: No link.
29707 Speed: 100, half duplex
29708 Using eTSEC1 device
29709 TFTP from server 10.52.0.33; our IP address is 10.52.253.79
29710 ^^^^^^^^^^ WRONG
29711 Filename '10.52.0.62'.
29712 ^^^^^^^^^^ WRONG
29713 Load address: 0x100000
29714 Loading: *
29715 TFTP error: 'File not found' (1)
29716 Starting again
29717
29718 TftpStart() was modified to not modify the 'BootFile' string.
29719
29720 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29721 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29722
29723 commit d32c5be50bf0600bfdc54223ef341ee9c63db445
29724 Author: Peter Tyser <ptyser@xes-inc.com>
29725 Date: Mon Dec 1 16:26:21 2008 -0600
29726
29727 net: Add additional IP fragmentation check
29728
29729 Ignore IP packets which have the "more fragments" flag bit
29730 set. This flag indicates the IP packet is fragmented and
29731 must be ignored by U-Boot.
29732
29733 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29734 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29735
29736 commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
29737 Author: Peter Tyser <ptyser@xes-inc.com>
29738 Date: Mon Dec 1 16:26:20 2008 -0600
29739
29740 net: Define IP flag field values
29741
29742 These defines were pulled from the "Add simple
29743 IP/UDP fragmentation support" patch from Frank
29744 Haverkamp <haver@vnet.ibm.com>.
29745
29746 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29747 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29748
29749 commit 23afaba65ec5206757e589ef334a8b38168c045f
29750 Author: Anatolij Gustschin <agust@denx.de>
29751 Date: Tue Dec 2 10:31:04 2008 +0100
29752
29753 net: tsec: Fix Marvell 88E1121R phy init
29754
29755 This patch tries to ensure that phy interrupt pin
29756 won't be asserted after booting. We experienced
29757 following issues with current 88E1121R phy init:
29758
29759 Marvell 88E1121R phy can be hardware-configured
29760 to share MDC/MDIO and interrupt pins for both ports
29761 P0 and P1 (e.g. as configured on socrates board).
29762 Port 0 interrupt pin will be shared by both ports
29763 in such configuration. After booting Linux and
29764 configuring eth0 interface, port 0 phy interrupts
29765 are enabled. After rebooting without proper eth0
29766 interface shutdown port 0 phy interrupts remain
29767 enabled so any change on port 0 (link status, etc.)
29768 cause assertion of the interrupt. Now booting Linux
29769 and configuring eth1 interface will cause permanent
29770 phy interrupt storm as the registered phy 1 interrupt
29771 handler doesn't acknowledge phy 0 interrupts. This
29772 of course should be fixed in Linux driver too.
29773
29774 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29775 Acked-by: Andy Fleming <afleming@freescale.com>
29776 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29777
29778 commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
29779 Author: Peter Tyser <ptyser@xes-inc.com>
29780 Date: Tue Dec 2 12:59:51 2008 -0600
29781
29782 net: Fix download command parsing
29783
29784 When CONFIG_SYS_HUSH_PARSER is defined network download
29785 commands with 1 argument in the format 'tftp "/path/file"'
29786 do not work as expected. The hush command parser strips
29787 the quotes from "/path/file" which causes the network
29788 commands to interpret "/path/file" as an address
29789 instead of the intended filename.
29790
29791 The previous check for a leading quote in netboot_common()
29792 was replaced with a check which ensures only valid
29793 numbers are treated as addresses.
29794
29795 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29796 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
29797
29798 commit 3c2c2f427905040c1513d0c51d637689cba48346
29799 Author: Remy Bohmer <linux@bohmer.net>
29800 Date: Thu Nov 27 22:30:27 2008 +0100
29801
29802 Remove non-ascii characters from fat code
29803
29804 This code contains some non-ascii characters in comment lines and code.
29805 Most editors do not display those characters properly and editing those
29806 files results always in diffs at these places which are usually not required
29807 to be changed at all. This is error prone.
29808
29809 So, remove those weird characters and replace them by normal C-style
29810 equivalents for which the proper defines were already in the header.
29811
29812 Signed-off-by: Remy Bohmer <linux@bohmer.net>
29813
29814 commit dc889e865356497d3e495570118c2245ebce2631
29815 Author: Dave Liu <daveliu@freescale.com>
29816 Date: Fri Nov 28 20:16:58 2008 +0800
29817
29818 85xx: fix the wrong DDR settings for MPC8572DS
29819
29820 The default DDR freq is 400MHz or 800M data rate,
29821 the old settings is pure wrong for the default case.
29822
29823 Signed-off-by: Dave Liu <daveliu@freescale.com>
29824 Acked-by: Andy Fleming <afleming@freescale.com>
29825
29826 commit 9df59533f77de2829b4b66e5b7620e04edaa391c
29827 Author: Kumar Gala <galak@kernel.crashing.org>
29828 Date: Mon Nov 24 10:29:26 2008 -0600
29829
29830 85xx: init gd as early as possible
29831
29832 Moved up the initialization of GD so C code like set_tlb() can use
29833 gd->flags to determine if we've relocated or not in the future.
29834
29835 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29836 Acked-by: Andy Fleming <afleming@freescale.com>
29837
29838 commit aed461af81012a398a205e9be67ab37667491838
29839 Author: Kumar Gala <galak@kernel.crashing.org>
29840 Date: Mon Nov 24 10:29:25 2008 -0600
29841
29842 85xx: Fix relocation of CCSRBAR
29843
29844 If the virtual address for CCSRBAR is the same after relocation but
29845 the physical address is changing we'd end up having two TLB entries with
29846 the same VA. Instead we new us the new CCSRBAR virt address + 4k as a
29847 temp virt address to access the old CCSRBAR to relocate it.
29848
29849 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29850 Acked-by: Andy Fleming <afleming@freescale.com>
29851
29852 commit ea154a1781135d822eedee7567cc156089eae93c
29853 Author: Kumar Gala <galak@kernel.crashing.org>
29854 Date: Mon Nov 24 10:25:14 2008 -0600
29855
29856 FSL: Moved BR_PHYS_ADDR for localbus to common header
29857
29858 The BR_PHYS_ADDR macro is useful on all machines that have local bus
29859 which is pretty much all 83xx/85xx/86xx chips.
29860
29861 Additionally most 85xx & 86xx will need it if they want to support
29862 36-bit physical addresses.
29863
29864 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29865 Acked-by: Andy Fleming <afleming@freescale.com>
29866
29867 commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
29868 Author: Peter Tyser <ptyser@xes-inc.com>
29869 Date: Mon Dec 1 13:47:12 2008 -0600
29870
29871 85xx: Add PORDEVSR_PCI1 define
29872
29873 Add define used to determine if PCI1 interface is in PCI or PCIX mode.
29874
29875 Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
29876
29877 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29878 Signed-off-by: Andy Fleming <afleming@freescale.com>
29879
29880 commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
29881 Author: Becky Bruce <becky.bruce@freescale.com>
29882 Date: Fri Nov 21 19:24:22 2008 -0600
29883
29884 drivers/fsl_pci_init: Fix inbound window mapping bug
29885
29886 The current code will cause the creation of a 4GB window
29887 starting at 0 if we have more than 4GB of RAM installed,
29888 which overlaps with PCI_MEM space and causes pci_bus_to_phys()
29889 to return erroneous information. Limit the size to 4GB - 1;
29890 which causes the code to create one 2GB and one 1GB window
29891 instead.
29892
29893 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
29894 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29895 Acked-by: Andy Fleming <afleming@freescale.com>
29896
29897 commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
29898 Author: Jon Loeliger <jdl@freescale.com>
29899 Date: Thu Nov 20 15:36:48 2008 -0600
29900
29901 Removed unused CONFIG_L1_INIT_RAM symbol.
29902
29903 Prevent further viral propogation of the unused
29904 symbol CONFIG_L1_INIT_RAM by just removing it.
29905
29906 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29907 Acked-by: Andy Fleming <afleming@freescale.com>
29908
29909 commit 7008d26a40a76f90cae5824c812cfed449fb97b8
29910 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
29911 Date: Wed Oct 29 09:21:44 2008 -0500
29912
29913 fsl ddr skip interleaving if not supported.
29914
29915 Removed while(1) hang if memctl_intlv_ctl is set wrong.
29916 Remove embedded tabs from strings.
29917
29918 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
29919 Acked-by: Kumar Gala <galak@kernel.crashing.org>
29920 Acked-by: Andy Fleming <afleming@freescale.com>
29921
29922 commit dd332e18d082de75eca3fc2c7c778f5d4571a096
29923 Author: Anatolij Gustschin <agust@denx.de>
29924 Date: Thu Nov 13 18:08:57 2008 +0100
29925
29926 85xx: socrates: fix DDR SDRAM tlb entry configuration
29927
29928 since commit be0bd8234b9777ecd63c4c686f72af070d886517
29929 tlb entry for socrates DDR SDRAM will be reconfigured
29930 by setup_ddr_tlbs() from initdram() causing an
29931 inconsistency with previously configured DDR SDRAM tlb
29932 entry from tlb_table:
29933
29934 socrates>l2cam 7 9
29935 IDX PID EPN SIZE V TS RPN U0-U3 WIMGE UUUSSS
29936 7 : 00 00000000 256MB V 0 -> 0_00000000 0000 -I-G- ---RWX
29937 8 : 00 00000000 256MB V 0 -> 0_00000000 0000 ----- ---RWX
29938 9 : 00 10000000 256MB V 0 -> 0_10000000 0000 ----- ---RWX
29939
29940 This patch makes the presence of the DDR SDRAM tlb entry in
29941 the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
29942 inconsistency.
29943
29944 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29945 Acked-by: Andy Fleming <afleming@freescale.com>
29946
29947 commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
29948 Author: Peter Tyser <ptyser@xes-inc.com>
29949 Date: Tue Nov 11 10:17:10 2008 -0600
29950
29951 85xx: Add CPU 2 errata workaround to all 8548 boards
29952
29953 All mpc8548-based boards should implement the suggested workaround
29954 to CPU 2 errata. Without the workaround, its possible for the
29955 8548's core to hang while executing a msync or mbar 0 instruction
29956 and a snoopable transaction from an I/O master tagged to make
29957 quick forward progress is present.
29958
29959 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
29960 Acked-by: Andy Fleming <afleming@freescale.com>
29961
29962 commit e57f0fa1333cdf3ca36110aac2900712a5f82976
29963 Author: Dave Liu <daveliu@freescale.com>
29964 Date: Tue Oct 28 17:53:45 2008 +0800
29965
29966 85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
29967
29968 we need TLB entry for DDR at !SPD case.
29969
29970 Signed-off-by: Dave Liu <daveliu@freescale.com>
29971 Acked-by: Andy Fleming <afleming@freescale.com>
29972
29973 commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
29974 Author: Dave Liu <daveliu@freescale.com>
29975 Date: Tue Oct 28 17:53:38 2008 +0800
29976
29977 85xx: remove the unused ddr_enable_ecc in the board file
29978
29979 The DDR controller of 8548/8544/8568/8572/8536 processors
29980 have the ECC data init feature, and the new DDR code is
29981 using the feature, and we don't need the way with DMA to
29982 init memory any more.
29983
29984 Signed-off-by: Dave Liu <daveliu@freescale.com>
29985 Acked-by: Andy Fleming <afleming@freescale.com>
29986
29987 commit 4a129a57d923f7c15aa1f567028a80a32d66a100
29988 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29989 Date: Sun Nov 30 19:36:53 2008 +0100
29990
29991 at91rm9200dk: Fix typo
29992
29993 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29994
29995 commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
29996 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
29997 Date: Sun Nov 30 19:36:50 2008 +0100
29998
29999 AT91: remove non supported board AT91RM9200DF macro
30000
30001 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30002
30003 commit bd876772ee04095e5dd943d97515a1f14bad4b1c
30004 Author: Ilko Iliev <iliev@ronetix.at>
30005 Date: Tue Dec 2 17:27:54 2008 +0100
30006
30007 mtd/dataflash.c: fix a problem with the last partition
30008
30009 This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
30010 partition can be defined to use the area to the end of dataflash size.
30011 Now it is possible to have only one dataflash partition from 0 to the end
30012 of of dataflash size.
30013
30014 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
30015
30016 commit 03f797793b124dccaae145b977d15d6cb9e74504
30017 Author: Ilko Iliev <iliev@ronetix.at>
30018 Date: Tue Dec 2 17:20:17 2008 +0100
30019
30020 fix some coding style violations.
30021
30022 This patch fix some coding style violations.
30023
30024 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
30025
30026 commit 5e46b1e54112f4b7fd5185665e571510132c12a7
30027 Author: Stefan Roese <sr@denx.de>
30028 Date: Thu Nov 27 14:11:37 2008 +0100
30029
30030 OneNAND: Add missing mtd info struct before calling onenand_erase()
30031
30032 Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
30033 for use in UBI) via CONFIG_MTD_PARTITIONS.
30034
30035 Signed-off-by: Stefan Roese <sr@denx.de>
30036 Signed-off-by: Scott Wood <scottwood@freescale.com>
30037
30038 commit 29382d4064fbaff5daacff4c3209370fa5713966
30039 Author: Becky Bruce <becky.bruce@freescale.com>
30040 Date: Thu Nov 20 16:43:52 2008 -0600
30041
30042 mpc8641: Fix error in README
30043
30044 I made some updates to the code that didn't make it into the
30045 README - fix this
30046
30047 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30048
30049 commit 801a194616d95e6fc426a176d9615ccbf9876c7f
30050 Author: Jon Loeliger <jdl@freescale.com>
30051 Date: Thu Nov 20 12:01:02 2008 -0600
30052
30053 Removed unused CONFIG_L1_INIT_RAM symbol.
30054
30055 Prevent further viral propogation of the unused
30056 symbol CONFIG_L1_INIT_RAM by just removing it.
30057
30058 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30059
30060 commit f698738e46cb461e28c2d58228bb34a2fcf5a475
30061 Author: Jon Loeliger <jdl@freescale.com>
30062 Date: Thu Nov 20 14:02:56 2008 -0600
30063
30064 86xx: Fix non-64-bit compilation problems.
30065
30066 Introducing 64-bit (36-bit) support for the MPC8641HPCN
30067 failed to accomodate the other two 86xx boards.
30068 Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
30069 CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
30070 with nominal 32-bit values.
30071
30072 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30073 Acked-by: Becky Bruce <becky.bruce@freescale.com>
30074
30075 commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
30076 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
30077 Date: Wed Nov 26 17:40:37 2008 +0100
30078
30079 Remove obsolete command (apply afte USB style patch, 80 chars strict)
30080
30081 Remove USB obsolete commmand
30082
30083 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
30084 Signed-off-by: Remy Böhmer <linux@bohmer.net>
30085
30086 commit de39f8c19d7c12017248c49d432dcb81db68f724
30087 Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
30088 Date: Wed Nov 26 17:41:34 2008 +0100
30089
30090 USB style patch, 80 chars strict
30091
30092 USB Code style patch
30093
30094 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
30095 Signed-off-by: Remy Böhmer <linux@bohmer.net>
30096
30097 commit d10c5a87cb8affbb4d35a311370316d4383d598e
30098 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30099 Date: Fri Nov 7 22:46:21 2008 +0100
30100
30101 drivers/usb: Move conditional compilation to Makefile
30102
30103 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30104 Signed-off-by: Remy Böhmer <linux@bohmer.net>
30105
30106 commit 2077e348c2a84901022ad95311b47b70361e6daa
30107 Author: Scott Wood <scottwood@freescale.com>
30108 Date: Tue Nov 25 10:47:02 2008 -0600
30109
30110 NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
30111
30112 This caused the operation to be needlessly repeated if there were
30113 no bad blocks and no errors.
30114
30115 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
30116 Signed-off-by: Scott Wood <scottwood@freescale.com>
30117
30118 commit 89295028e7d8f7a524f485328279d72fdb102385
30119 Author: Michal Simek <monstr@monstr.eu>
30120 Date: Mon Nov 24 12:09:50 2008 +0100
30121
30122 ppc4xx: ml300 remove Xilinx BSP from ml300 folder
30123
30124 This BSP should be outside u-boot source tree.
30125 The second reason is that xilinx ppc405 was moved to generic platform.
30126
30127 Signed-off-by: Michal Simek <monstr@monstr.eu>
30128 Signed-off-by: Stefan Roese <sr@denx.de>
30129
30130 commit 24eea623d4974a169026a975ba12fb23d48154b1
30131 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30132 Date: Mon Nov 24 15:11:10 2008 +0100
30133
30134 ppc4xx: Remove unused features
30135
30136 This patch disables some unused features from the PCI405 configuration
30137 to keep U-Boot image size below 192k.
30138
30139 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30140 Signed-off-by: Stefan Roese <sr@denx.de>
30141
30142 commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
30143 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30144 Date: Mon Nov 24 15:11:09 2008 +0100
30145
30146 ppc4xx: Use correct io accessors for PCI405
30147
30148 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30149 Signed-off-by: Stefan Roese <sr@denx.de>
30150
30151 commit 348c849d86a6f0785752b9bc497a34658713d1d1
30152 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30153 Date: Mon Nov 24 15:11:08 2008 +0100
30154
30155 ppc4xx: Remove unused code from PCI405 code
30156
30157 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
30158 Signed-off-by: Stefan Roese <sr@denx.de>
30159
30160 commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
30161 Author: Heiko Schocher <hs@denx.de>
30162 Date: Thu Nov 20 09:59:09 2008 +0100
30163
30164 powerpc, keymile boards: extract identical config options
30165
30166 This patch extracts the identical config options for the
30167 keymile boards mgcoge, mgsuvd and kmeter1 in a new
30168 common config file keymile-common.h.
30169
30170 Signed-off-by: Heiko Schocher <hs@denx.de>
30171 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30172
30173 commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
30174 Author: Heiko Schocher <hs@denx.de>
30175 Date: Fri Nov 21 08:29:40 2008 +0100
30176
30177 powerpc: keymile: Add a check for the PIGGY debug board
30178
30179 Check the presence of the PIGGY on the keymile boards mgcoge,
30180 mgsuvd and kmeter1. If the PIGGY is not present, dont register
30181 this Ethernet device.
30182
30183 Signed-off-by: Heiko Schocher <hs@denx.de>
30184 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30185
30186 commit 58c696eed839af894e0265064669c402dc28b371
30187 Author: Wolfgang Denk <wd@xpert.denx.de>
30188 Date: Mon Nov 24 21:50:59 2008 +0100
30189
30190 AT91RM9200DK: fix broken boot from NOR flash
30191
30192 Signed-off-by: Wolfgang Denk <wd@denx.de>
30193
30194 commit 8052352f20b33bef8f9872fc983eac73d4693c38
30195 Author: Jens Scharsig <esw@bus-elektronik.de>
30196 Date: Tue Nov 18 10:48:46 2008 +0100
30197
30198 at91rm9200: fix broken boot from nor flash
30199
30200 This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
30201 CONFIG_AT91RM9200 is defined and nor preloader is used.
30202
30203 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
30204
30205 commit 25ea652e907516a283b38237e83712a918f125d7
30206 Author: Piotr Ziecik <kosmo@semihalf.com>
30207 Date: Mon Nov 17 15:58:00 2008 +0100
30208
30209 UBI: Add proof-of-concept CFI flash support
30210
30211 With this patch UBI can be used on CFI flash chips.
30212
30213 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30214 Signed-off-by: Stefan Roese <sr@denx.de>
30215
30216 commit e6a7edbc1778d27431ac663b40a71dafa5d20578
30217 Author: Piotr Ziecik <kosmo@semihalf.com>
30218 Date: Mon Nov 17 15:57:59 2008 +0100
30219
30220 mtd: Remove a printf() from add_mtd_device().
30221
30222 Remove a printf() from add_mtd_device(), which produces spurious output.
30223
30224 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30225 Signed-off-by: Stefan Roese <sr@denx.de>
30226
30227 commit 91809ed51d8327a8dbbf29aa98a091154c282171
30228 Author: Piotr Ziecik <kosmo@semihalf.com>
30229 Date: Mon Nov 17 15:57:58 2008 +0100
30230
30231 cfi-mtd: Add cfi-mtd driver.
30232
30233 Add cfi-mtd driver, which exports CFI flash to MTD layer.
30234 This allows CFI flash devices to be used from MTD layer.
30235
30236 Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
30237 option. Initialization is done by calling cfi_mtd_init() from
30238 flash_init().
30239
30240 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30241 Signed-off-by: Stefan Roese <sr@denx.de>
30242
30243 commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
30244 Author: Piotr Ziecik <kosmo@semihalf.com>
30245 Date: Mon Nov 17 15:49:32 2008 +0100
30246
30247 cfi_flash: Add interface for flash verbosity control
30248
30249 Add interface for flash verbosity control. It allows
30250 to disable output from low-level flash API. It is useful
30251 when calling these low-level functions from context other
30252 than flash commands (for example the MTD/CFI interface
30253 implmentation).
30254
30255 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30256 Signed-off-by: Stefan Roese <sr@denx.de>
30257
30258 commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
30259 Author: Piotr Ziecik <kosmo@semihalf.com>
30260 Date: Thu Nov 20 15:17:38 2008 +0100
30261
30262 cfi_flash: Export flash_sector_size() function.
30263
30264 Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
30265 so that it can be used in the upcoming cfi-mtd driver.
30266
30267 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
30268 Signed-off-by: Stefan Roese <sr@denx.de>
30269
30270 commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
30271 Author: Stefan Roese <sr@denx.de>
30272 Date: Mon Nov 17 14:45:22 2008 +0100
30273
30274 cfi_flash: Make all flash access functions weak
30275
30276 This patch defines all flash access functions as weak so that
30277 they can be overridden by board specific versions.
30278
30279 This will be used by the upcoming VCTH board support where the NOR
30280 FLASH unfortunately can't be accessed memory-mapped. Special
30281 accessor functions are needed here.
30282
30283 To enable this weak functions you need to define
30284 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
30285 Otherwise the "old" default functions will be used resulting
30286 in smaller code.
30287
30288 Signed-off-by: Stefan Roese <sr@denx.de>
30289 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
30290
30291 commit a5c4067017631d903e1afa6ad615f0ce19fea517
30292 Author: Stefan Roese <sr@denx.de>
30293 Date: Mon Nov 24 08:31:16 2008 +0100
30294
30295 UBI: Change parsing of size in commands to default to hex
30296
30297 Currently the size parameters of the UBI commands (e.g. "ubi write") are
30298 decoded as decimal instead of hex as default. This patch now interprets
30299 all these values consistantly as hex, as all other standard U-Boot commands
30300 do.
30301
30302 Signed-off-by: Stefan Roese <sr@denx.de>
30303
30304 commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
30305 Author: Stefan Roese <sr@denx.de>
30306 Date: Fri Nov 21 13:06:06 2008 +0100
30307
30308 ppc4xx: ML2 shouldn't include the 4xx EMAC driver
30309
30310 Signed-off-by: Stefan Roese <sr@denx.de>
30311
30312 commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
30313 Author: Yuri Tikhonov <yur@emcraft.com>
30314 Date: Fri Nov 14 16:19:19 2008 +0300
30315
30316 ppc4xx: katmai: Change default config
30317
30318 This patch enables support for EXT2, and increases the
30319 CONFIG_SYS_BOOTMAPSZ size for the default configuration
30320 of the katmai boards to use them as the RAID-reference
30321 AMCC setups.
30322
30323 EXT2 enabling allows one to boot kernels from the EXT2
30324 formatted Compact Flash cards.
30325
30326 CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
30327 Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
30328 the memory area with DTB file (which is placed at the
30329 end of the bootmap area) will turn out to be overlapped
30330 with the BSS segment of the 256KB kernel, and zeroed
30331 in early_init() of Linux.
30332
30333 Actually, increasing of the bootmap size could be done
30334 via setting of the bootm_size U-Boot variable, but it looks
30335 like the current U-Boot implementation have some bootm_size-
30336 related functionality lost. In many places through the U-Boot
30337 code the CONFIG_SYS_BOOTMAPSZ definition is used directly
30338 (instead of trying to read the corresponding value from the
30339 environment). The same is truth for the boot_jump_linux()
30340 function in lib_ppc/bootm.c, where U-Boot transfers control
30341 to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
30342 value to the booting kernel.
30343
30344 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30345 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
30346 Signed-off-by: Stefan Roese <sr@denx.de>
30347
30348 commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
30349 Author: Dave Mitchell <dmitch71@gmail.com>
30350 Date: Thu Nov 20 14:09:50 2008 -0600
30351
30352 ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
30353
30354 Expanded OCM TLB to allow access to 64K OCM as well as 256K of
30355 internal SRAM.
30356
30357 Adjusted internal SRAM initialization to match updated user
30358 manual recommendation.
30359
30360 OCM & ISRAM are now mapped as follows:
30361 physical virtual size
30362 ISRAM 0x4_0000_0000 0xE300_0000 256k
30363 OCM 0x4_0004_0000 0xE304_0000 64k
30364
30365 A single TLB was used for this mapping.
30366
30367 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
30368 Signed-off-by: Stefan Roese <sr@denx.de>
30369
30370 commit b14ca4b61a681f75f3125676e09d7ce6af66e927
30371 Author: Dave Mitchell <dmitch71@gmail.com>
30372 Date: Thu Nov 20 14:00:49 2008 -0600
30373
30374 ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
30375
30376 Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
30377 L2 cache DCRs from ppc440.h to this new header.
30378
30379 Also converted these DCR defines from lowercase to uppercase and
30380 modified referencing modules to use them.
30381
30382 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
30383 Signed-off-by: Stefan Roese <sr@denx.de>
30384
30385 commit 711e2b2af820d21d9931d4cf8057d3894600fd54
30386 Author: Steven A. Falco <sfalco@harris.com>
30387 Date: Thu Nov 20 14:37:57 2008 -0500
30388
30389 ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
30390
30391 The definitions of bits in SDR_CFG are incorrect, and not used within
30392 U-Boot. Therefore, they can be removed.
30393
30394 The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
30395 and are unused, so they can be removed too.
30396
30397 A definition for SDR0_DDRCFG is added.
30398
30399 Signed-off-by: Steven A. Falco <sfalco@harris.com>
30400 Signed-off-by: Stefan Roese <sr@denx.de>
30401
30402 commit e23c7c95a96eb0f068efe5c532215a10a1512a95
30403 Author: Dirk Behme <dirk.behme@gmail.com>
30404 Date: Mon Nov 10 20:15:25 2008 +0100
30405
30406 ARM: OMAP: Convert IO macros
30407
30408 Convert IO macros to readx/writex.
30409
30410 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
30411
30412 commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
30413 Author: Ilko Iliev <iliev@ronetix.at>
30414 Date: Sun Nov 9 15:53:14 2008 +0100
30415
30416 lib_arm: do_bootm_linux() - correct a small mistake
30417
30418 This patch corrects a small bug in the "if" condition:
30419 the parameter "flag" is 0 and the "if" condition is always true.
30420 The result is - the boom command doesn't start the kernel.
30421 Affected targets: all arm based.
30422
30423 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
30424
30425 commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
30426 Author: Stelian Pop <stelian@popies.net>
30427 Date: Sun Nov 9 00:14:46 2008 +0100
30428
30429 AT91: Enable PLLB for USB
30430
30431 At least some (old ?) versions of the AT91Bootstrap do not set up the
30432 PLLB correctly to 48 MHz in order to make USB host function correctly.
30433
30434 This patch sets up the PLLB to the same values Linux uses, and makes USB
30435 work ok on the following CPUs:
30436 - AT91CAP9
30437 - AT91SAM9260
30438 - AT91SAM9263
30439
30440 This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
30441 the relevant AT91CAP9/AT91SAM9 atmel boards.
30442
30443 Signed-off-by: Stelian Pop <stelian@popies.net>
30444 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30445
30446 commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
30447 Author: Stelian Pop <stelian@popies.net>
30448 Date: Fri Nov 7 13:55:14 2008 +0100
30449
30450 AT91: Use AT91_CPU_CLOCK in displays
30451
30452 Introduce AT91_CPU_CLOCK and use it for displaying the CPU
30453 speed in the LCD driver.
30454
30455 Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
30456 corresponding board clocks.
30457
30458 Signed-off-by: Stelian Pop <stelian@popies.net>
30459
30460 commit fed36ac5ae613773b6cd90e61e292c45440e10c8
30461 Author: Heiko Schocher <hs@denx.de>
30462 Date: Thu Nov 20 09:57:47 2008 +0100
30463
30464 powerpc: 83xx: add support for the kmeter1 board
30465
30466 This patch adds support for the kmeter1 board from Keymile,
30467 based on a Freescale MPC8360 CPU.
30468
30469 - serial console on UART 1
30470 - 256 MB DDR2 RAM
30471 - 64 MB NOR Flash
30472 - Ethernet RMII Mode over UCC4
30473 - PHY SMSC LAN8700
30474
30475 Signed-off-by: Heiko Schocher <hs@denx.de>
30476 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30477
30478 commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
30479 Author: Stefan Roese <sr@denx.de>
30480 Date: Thu Nov 20 11:46:20 2008 +0100
30481
30482 ppc4xx: Clear all potentially pending exceptions in MCSR
30483
30484 This is needed on Canyonlands which still has an exception pending
30485 while running relocate_code(). This leads to a failure after trap_init()
30486 is moved to the top of board_init_r().
30487
30488 Signed-off-by: Stefan Roese <sr@denx.de>
30489
30490 commit facdad5f2602e899a01746916beddbf9e856b5ee
30491 Author: Heiko Schocher <hs@denx.de>
30492 Date: Wed Nov 19 10:10:30 2008 +0100
30493
30494 powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
30495
30496 Signed-off-by: Heiko Schocher <hs@denx.de>
30497 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30498
30499 commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
30500 Author: Howard Gregory <Greg.Howard@freescale.com>
30501 Date: Tue Nov 4 14:55:33 2008 +0800
30502
30503 mpc83xx: Improve the performance of DDR memory
30504
30505 modify the CAS timings. my understanding is that these
30506 settings decrease various wait times in the DDR interface.
30507 Because these wait times are in clock cycles, and the DDR
30508 clock on the 8315 RDB runs slower than on some other 83xx
30509 platforms, we can dial down these values without a problem,
30510 thereby decreasing the latency of memory a little.
30511
30512 Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
30513 Signed-off-by: Dave Liu <daveliu@freescale.com>
30514 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30515
30516 commit 8000b086b33a5a81f3f390f37e178db7956dc08b
30517 Author: Kyungmin Park <kyungmin.park@samsung.com>
30518 Date: Fri Oct 24 14:55:33 2008 +0200
30519
30520 ARM: Add Apollon UBI support
30521
30522 To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
30523 macro.
30524
30525 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30526 Signed-off-by: Stefan Roese <sr@denx.de>
30527
30528 commit 694a0b3f1c0accd0de94b89555155d69f8022824
30529 Author: Kyungmin Park <kyungmin.park@samsung.com>
30530 Date: Wed Nov 19 11:47:05 2008 +0100
30531
30532 UBI: Add UBI command support
30533
30534 This patch adds these UBI commands:
30535
30536 ubi part [nand|onenand] [part] - Show or set current partition
30537 ubi info [l[ayout]] -Display volume and UBI layout information
30538 ubi create[vol] volume [size] [type] - Create volume name with size
30539 ubi write[vol] address volume size - Write volume from address with size
30540 ubi read[vol] address volume [size] - Read volume to address with size
30541 ubi remove[vol] volume - Remove volume
30542
30543 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30544 Signed-off-by: Stefan Roese <sr@denx.de>
30545
30546 commit 58be3a1056d88c6d05f3e914389282807e69923a
30547 Author: Kyungmin Park <kyungmin.park@samsung.com>
30548 Date: Wed Nov 19 16:38:24 2008 +0100
30549
30550 UBI: Add basic UBI support to U-Boot (Part 8/8)
30551
30552 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30553 It's based on the Linux UBI version and basically has a "OS"
30554 translation wrapper that defines most Linux specific calls
30555 (spin_lock() etc.) into no-ops. Some source code parts have been
30556 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30557 this version with the Linux version and simplifies future UBI
30558 ports/bug-fixes from the Linux version.
30559
30560 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30561 Signed-off-by: Stefan Roese <sr@denx.de>
30562
30563 commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
30564 Author: Kyungmin Park <kyungmin.park@samsung.com>
30565 Date: Wed Nov 19 16:36:36 2008 +0100
30566
30567 UBI: Add basic UBI support to U-Boot (Part 7/8)
30568
30569 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30570 It's based on the Linux UBI version and basically has a "OS"
30571 translation wrapper that defines most Linux specific calls
30572 (spin_lock() etc.) into no-ops. Some source code parts have been
30573 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30574 this version with the Linux version and simplifies future UBI
30575 ports/bug-fixes from the Linux version.
30576
30577 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30578 Signed-off-by: Stefan Roese <sr@denx.de>
30579
30580 commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
30581 Author: Kyungmin Park <kyungmin.park@samsung.com>
30582 Date: Wed Nov 19 16:32:36 2008 +0100
30583
30584 UBI: Add basic UBI support to U-Boot (Part 6/8)
30585
30586 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30587 It's based on the Linux UBI version and basically has a "OS"
30588 translation wrapper that defines most Linux specific calls
30589 (spin_lock() etc.) into no-ops. Some source code parts have been
30590 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30591 this version with the Linux version and simplifies future UBI
30592 ports/bug-fixes from the Linux version.
30593
30594 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30595 Signed-off-by: Stefan Roese <sr@denx.de>
30596
30597 commit c91a719daa331b5856109313371e4ece5ec06d96
30598 Author: Kyungmin Park <kyungmin.park@samsung.com>
30599 Date: Wed Nov 19 16:28:06 2008 +0100
30600
30601 UBI: Add basic UBI support to U-Boot (Part 5/8)
30602
30603 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30604 It's based on the Linux UBI version and basically has a "OS"
30605 translation wrapper that defines most Linux specific calls
30606 (spin_lock() etc.) into no-ops. Some source code parts have been
30607 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30608 this version with the Linux version and simplifies future UBI
30609 ports/bug-fixes from the Linux version.
30610
30611 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30612 Signed-off-by: Stefan Roese <sr@denx.de>
30613
30614 commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
30615 Author: Kyungmin Park <kyungmin.park@samsung.com>
30616 Date: Wed Nov 19 16:27:23 2008 +0100
30617
30618 UBI: Add basic UBI support to U-Boot (Part 4/8)
30619
30620 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30621 It's based on the Linux UBI version and basically has a "OS"
30622 translation wrapper that defines most Linux specific calls
30623 (spin_lock() etc.) into no-ops. Some source code parts have been
30624 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30625 this version with the Linux version and simplifies future UBI
30626 ports/bug-fixes from the Linux version.
30627
30628 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30629 Signed-off-by: Stefan Roese <sr@denx.de>
30630
30631 commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
30632 Author: Kyungmin Park <kyungmin.park@samsung.com>
30633 Date: Wed Nov 19 16:26:54 2008 +0100
30634
30635 UBI: Add basic UBI support to U-Boot (Part 3/8)
30636
30637 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30638 It's based on the Linux UBI version and basically has a "OS"
30639 translation wrapper that defines most Linux specific calls
30640 (spin_lock() etc.) into no-ops. Some source code parts have been
30641 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30642 this version with the Linux version and simplifies future UBI
30643 ports/bug-fixes from the Linux version.
30644
30645 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30646 Signed-off-by: Stefan Roese <sr@denx.de>
30647
30648 commit 961df83361aff9a14f226214224eb8a06e05ba24
30649 Author: Kyungmin Park <kyungmin.park@samsung.com>
30650 Date: Wed Nov 19 16:25:44 2008 +0100
30651
30652 UBI: Add basic UBI support to U-Boot (Part 2/8)
30653
30654 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30655 It's based on the Linux UBI version and basically has a "OS"
30656 translation wrapper that defines most Linux specific calls
30657 (spin_lock() etc.) into no-ops. Some source code parts have been
30658 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30659 this version with the Linux version and simplifies future UBI
30660 ports/bug-fixes from the Linux version.
30661
30662 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30663 Signed-off-by: Stefan Roese <sr@denx.de>
30664
30665 commit f399d4a281713d5ef2d764f05d545fe61e3bd569
30666 Author: Kyungmin Park <kyungmin.park@samsung.com>
30667 Date: Wed Nov 19 16:23:06 2008 +0100
30668
30669 UBI: Add basic UBI support to U-Boot (Part 1/8)
30670
30671 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
30672 It's based on the Linux UBI version and basically has a "OS"
30673 translation wrapper that defines most Linux specific calls
30674 (spin_lock() etc.) into no-ops. Some source code parts have been
30675 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
30676 this version with the Linux version and simplifies future UBI
30677 ports/bug-fixes from the Linux version.
30678
30679 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30680 Signed-off-by: Stefan Roese <sr@denx.de>
30681
30682 commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
30683 Author: Kyungmin Park <kyungmin.park@samsung.com>
30684 Date: Wed Nov 19 16:20:36 2008 +0100
30685
30686 MTD: Add MTD paritioning infrastructure
30687
30688 This MTD part infrastructure will be used by the upcoming
30689 UBI support.
30690
30691 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
30692 Signed-off-by: Stefan Roese <sr@denx.de>
30693
30694 commit 9b827cf1720acda2473afa516956eab6f7cca9a1
30695 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
30696 Date: Thu Oct 16 22:54:03 2008 +0530
30697
30698 Align end of bss by 4 bytes
30699
30700 Most of the bss initialization loop increments 4 bytes
30701 at a time. And the loop end is checked for an 'equal'
30702 condition. Make the bss end address aligned by 4, so
30703 that the loop will end as expected.
30704
30705 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
30706 Signed-off-by: Wolfgang Denk <wd@denx.de>
30707
30708 commit 3f510db522d160179dff3ddcce9b18f6241c2c24
30709 Author: Becky Bruce <becky.bruce@freescale.com>
30710 Date: Mon Nov 10 19:45:35 2008 -0600
30711
30712 mpc8641: fix address-cells default in old .dts detection
30713
30714 address-cells defaults to 2, not 1; so in the unlikely
30715 event that it isn't specified, this patch is required
30716 for correct operation.
30717
30718 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30719
30720 commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
30721 Author: Becky Bruce <becky.bruce@freescale.com>
30722 Date: Fri Oct 31 17:14:39 2008 -0500
30723
30724 lib_ppc: Move trap_init to occur earlier
30725
30726 Doing trap_init immediately once we're running from RAM
30727 means we're no longer dependent on the physical location of
30728 the flash on non-BookE platforms. Before trap_init, those
30729 platforms switch to real mode and go to 0xfff00100 on exception.
30730 After the switch, they go to 0x00000100 This makes it easier to
30731 move the flash location.
30732
30733 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30734
30735 commit d52082b12c6e545705a19433a2f4142526536189
30736 Author: Becky Bruce <becky.bruce@freescale.com>
30737 Date: Fri Nov 7 13:46:19 2008 -0600
30738
30739 mpc8641: Try to detect old .dts files
30740
30741 Since we've changed the memory map of the board, be nice and
30742 add some checking to try to catch out-of-date .dts files. We do
30743 this by checking the CCSRBAR location in the .dts and comparing
30744 it to the CCSRBAR location in u-boot. If they don't match, a
30745 warning msg is printed. This isn't foolproof, but it's simple and
30746 will catch most of the cases where an out-of-date .dts is present,
30747 including all of the cases where a new u-boot is used with an old
30748 standard MPC8641 .dts file as supplied with Linux.
30749
30750 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30751
30752 commit 8db0400a27839f91c047dcb83f4a0f09e054a180
30753 Author: Becky Bruce <becky.bruce@freescale.com>
30754 Date: Thu Nov 6 13:04:09 2008 -0600
30755
30756 toplevel Makefile: Add MPC8641HPCN_36BIT target
30757
30758 This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
30759
30760 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30761
30762 commit 3111d32c494e8251b90917447796a7206b757e1e
30763 Author: Becky Bruce <becky.bruce@freescale.com>
30764 Date: Thu Nov 6 17:37:35 2008 -0600
30765
30766 mpc8641: Support 36-bit physical addressing
30767
30768 This patch creates a memory map with all the devices
30769 in 36-bit physical space, in addition to the 32-bit map.
30770 The CCSR relocation is moved (again, sorry) to
30771 allow for the physical address to be 36 bits - this
30772 requires translation to be enabled. With 36-bit physical
30773 addressing enabled, we are no longer running with VA=PA
30774 translations. This means we have to distinguish between
30775 the two in the config file. The existing region name is
30776 used to indicate the virtual address, and a _PHYS variety
30777 is created to represent the physical address.
30778
30779 Large physical addressing is not enabled by default.
30780 Set CONFIG_PHYS_64BIT in the config file to turn this on.
30781
30782 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30783
30784 commit c759a01a0022de9378a3a761f49786f87684c916
30785 Author: Becky Bruce <becky.bruce@freescale.com>
30786 Date: Thu Nov 6 17:36:04 2008 -0600
30787
30788 mpc8641: Change 32-bit memory map
30789
30790 The memory map on the 8641hpcn is modified to look more like
30791 the 85xx boards; this is a step towards a more standardized
30792 layout going forward. As part of this change, we now relocate
30793 the flash.
30794
30795 The regions for some of the mappings were far larger than they
30796 needed to be. I have reduced the mappings to match the
30797 actual sizes supported by the hardware.
30798
30799 In addition I have removed the comments at the head
30800 of the BAT blocks in the config file, rather than updating
30801 them. These get horribly out of date, and it's a simple
30802 matter to look at the defines to see what they are set to
30803 since everything is right here in the same file.
30804
30805 Documentation has been changed to reflect the new map, as this
30806 change is user visible, and affects the OS which runs post-uboot.
30807
30808 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30809
30810 commit bf9a8c34309ed9276258295db9e9212aabb2531a
30811 Author: Becky Bruce <becky.bruce@freescale.com>
30812 Date: Wed Nov 5 14:55:35 2008 -0600
30813
30814 mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
30815
30816 We define CONFIG_MONITOR_BASE_EARLY to define the initial location
30817 of the bootpage in flash. Use this to create an early mapping
30818 definition for the FLASH, and change the early_bats code to use this.
30819
30820 This change facilitates the relocation of the flash since the early
30821 mappings are no longer tied to the final location of the flash.
30822
30823 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30824
30825 commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
30826 Author: Becky Bruce <becky.bruce@freescale.com>
30827 Date: Wed Nov 5 14:55:34 2008 -0600
30828
30829 mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
30830
30831 Using a mtmsr/blr means that you have to be executing at the
30832 same virtual address once you enable translation. This is
30833 unnecessarily restrictive, and is not really how this is
30834 usually done. Change it to use the more common mtspr SRR0/SRR1
30835 and rfi method.
30836
30837 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30838
30839 commit 6bf98b1362f0cb237620355ed3e6762fff82388d
30840 Author: Becky Bruce <becky.bruce@freescale.com>
30841 Date: Wed Nov 5 14:55:33 2008 -0600
30842
30843 mpc8641: make DIAG_ADDR == FLASH_BASE
30844
30845 Currently, that's what it is, but it's hardcoded.
30846
30847 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30848
30849 commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
30850 Author: Becky Bruce <becky.bruce@freescale.com>
30851 Date: Wed Nov 5 14:55:32 2008 -0600
30852
30853 mpc8641: Drop imaginary second flash bank, map 8MB
30854
30855 There's a lot of setup and foo for the second flash
30856 bank. The problem is, this board doesn't actually have one.
30857 Clean this up. Also, the flash is 8M in size. Get rid
30858 of the confusing aliased overmapping, and just map 8M.
30859
30860 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30861
30862 commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
30863 Author: Becky Bruce <becky.bruce@freescale.com>
30864 Date: Wed Nov 5 14:55:31 2008 -0600
30865
30866 mpc8641: only define CONFIG_ENV_SIZE once
30867
30868 It's currently defined twice inside in an if/else block, but
30869 both halves set the same value. Move the define outside
30870 the if.
30871
30872 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30873
30874 commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
30875 Author: Becky Bruce <becky.bruce@freescale.com>
30876 Date: Wed Nov 5 14:55:30 2008 -0600
30877
30878 mpc86xx: Move setup_bats into cpu_init_f
30879
30880 In order to later allow for a physical relocation of the
30881 flash, setup_bats, which sets up the final BAT mapping
30882 for the board, needs to happen *after* init_laws().
30883 Otherwise, there will be no window programmed for the flash
30884 at the new physical location at the point when we change
30885 the mmu translation.
30886
30887 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30888
30889 commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
30890 Author: Becky Bruce <becky.bruce@freescale.com>
30891 Date: Wed Nov 5 14:55:29 2008 -0600
30892
30893 mpc8641: Remove extra "0" from BR2 define
30894
30895 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
30896
30897 commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
30898 Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30899 Date: Thu Oct 23 09:08:18 2008 -0400
30900
30901 drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
30902
30903 Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
30904 This adds support for PHY-less MAC connections to the UEC.
30905
30906 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
30907 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30908
30909 commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
30910 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30911 Date: Thu Oct 23 16:27:24 2008 +0000
30912
30913 ColdFire: Add mii driver in drivers/net
30914
30915 All CF platforms' mii.c are consolidated into one
30916
30917 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
30918 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30919
30920 commit 25a859066b3af1070eb69f12022113c0a91bd813
30921 Author: Ben Warren <biggerbadderben@gmail.com>
30922 Date: Mon Oct 27 23:53:17 2008 -0700
30923
30924 Moved initialization of PPC4xx EMAC to cpu_eth_init()
30925
30926 Removed initialization of the driver from net/eth.c
30927
30928 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30929 Acked-by: Stefan Roese <sr@denx.de>
30930
30931 commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
30932 Author: Ben Warren <biggerbadderben@gmail.com>
30933 Date: Sun Nov 9 21:29:23 2008 -0800
30934
30935 Moved PPC4xx EMAC driver to drivers/net
30936
30937 Also changed path in all linker scripts that reference this driver
30938
30939 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30940 Acked-by: Stefan Roese <sr@denx.de>
30941
30942 commit 96e21f86e8266ed40759e5495ee461265d7f6d28
30943 Author: Ben Warren <biggerbadderben@gmail.com>
30944 Date: Mon Oct 27 23:50:15 2008 -0700
30945
30946 Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
30947
30948 All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
30949
30950 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30951 Acked-by: Stefan Roese <sr@denx.de>
30952
30953 commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
30954 Author: Ben Warren <biggerbadderben@gmail.com>
30955 Date: Thu Oct 23 22:02:49 2008 -0700
30956
30957 Moved initialization of MPC8XX SCC to cpu_eth_init()
30958
30959 Removed initialization of the driver from net/eth.c
30960
30961 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30962
30963 commit a9bec96d6359ac9f90a852962bf3040cad9e0256
30964 Author: Ben Warren <biggerbadderben@gmail.com>
30965 Date: Wed Oct 22 23:47:51 2008 -0700
30966
30967 Moved initialization of MPC8220 FEC to cpu_eth_init()
30968
30969 Removed initialization of the driver from net/eth.c
30970
30971 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30972
30973 commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
30974 Author: Ben Warren <biggerbadderben@gmail.com>
30975 Date: Wed Oct 22 23:32:48 2008 -0700
30976
30977 Moved initialization of QE Ethernet controller to cpu_eth_init()
30978
30979 Removed initialization of the driver from net/eth.c
30980
30981 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30982
30983 commit 3456a148276d5494b53ee40242efb6462d163504
30984 Author: Ben Warren <biggerbadderben@gmail.com>
30985 Date: Wed Oct 22 23:20:29 2008 -0700
30986
30987 Moved initialization of FCC Ethernet controller to cpu_eth_init
30988
30989 Affected boards:
30990 Several MPC8xx boards
30991 Several MPC8260/MPC8272 boards
30992 Several MPC85xx boards
30993
30994 Removed initialization of the driver from net/eth.c
30995
30996 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
30997
30998 commit 62e15b497f5c6334c059512678c8db7940ae4c61
30999 Author: Ben Warren <biggerbadderben@gmail.com>
31000 Date: Thu Oct 30 22:15:35 2008 -0700
31001
31002 Fix typo in cpu/mpc85xx/cpu.c
31003
31004 CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
31005
31006 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31007
31008 commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
31009 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31010 Date: Sun Oct 19 12:08:50 2008 +0900
31011
31012 net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
31013
31014 This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
31015 as a part of ongoing eth_initialize cleanup work. The function ret value
31016 is also fixed as it should be negative on fail.
31017
31018 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31019 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31020
31021 commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
31022 Author: Ben Warren <biggerbadderben@gmail.com>
31023 Date: Fri Sep 5 01:55:22 2008 -0400
31024
31025 Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
31026
31027 Also, removed the driver initialization from net/eth.c
31028
31029 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31030
31031 commit f2a7806fc23e82d30c8548911369e0c530607354
31032 Author: Clive Stubbings <uboot@xentech.co.uk>
31033 Date: Mon Oct 27 15:05:00 2008 +0000
31034
31035 xilinx_emaclite buffer overrun
31036
31037 Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
31038 PKTSIZE_ALIGN bytes long.
31039
31040 Acked-by: Michal Simek <monstr@monstr.eu>
31041
31042 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31043
31044 commit 0115b1953718a2969f6469d3d5da51ba11e12d42
31045 Author: richardretanubun <richardretanubun@ruggedcom.com>
31046 Date: Fri Sep 26 08:59:12 2008 -0400
31047
31048 NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
31049
31050 The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
31051 This patch makes these function use the devname argument that is passed in to
31052 allow access to the phy registers of other devices in devlist[].
31053
31054 Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
31055
31056 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31057
31058 commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
31059 Author: richardretanubun <richardretanubun@ruggedcom.com>
31060 Date: Mon Oct 6 15:31:43 2008 -0400
31061
31062 Adds two more ethernet interface to 83xx
31063
31064 Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
31065 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
31066 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
31067
31068 commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
31069 Author: Stelian Pop <stelian@popies.net>
31070 Date: Fri Nov 7 13:54:31 2008 +0100
31071
31072 AT91: Replace AT91_BASE_EMAC by the board specific values.
31073
31074 AT91_BASE_EMAC is never used outside the board specific files,
31075 so replace its usage by the board specific AT91xxx_BASE_EMAC.
31076
31077 Signed-off-by: Stelian Pop <stelian@popies.net>
31078 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31079
31080 commit c91e17affa175ce06afa89b04752301eb4a61666
31081 Author: Stelian Pop <stelian@popies.net>
31082 Date: Fri Nov 7 12:09:21 2008 +0100
31083
31084 AT91: Replace (undefined) AT91_ID_US* by the board specific values.
31085
31086 AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
31087 Since they are never used outside the board specific files, they can
31088 be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
31089 AT91xxx_ID_US2.
31090
31091 Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
31092
31093 Signed-off-by: Stelian Pop <stelian@popies.net>
31094 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31095
31096 commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
31097 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31098 Date: Sat Nov 1 10:47:59 2008 +0100
31099
31100 Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
31101
31102 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31103
31104 commit 1079432e04ccf71aa3684181186182cd63512f19
31105 Author: Sergey Lapin <slapin@ossfans.org>
31106 Date: Fri Oct 31 12:28:43 2008 +0100
31107
31108 Custom AFEB9260 board support
31109
31110 This patch provides support for AFEB9260 board, a product of
31111 OpenSource hardware and software. Some commertial projects
31112 are made with this design. A board is basically AT91SAM9260-EK
31113 with some modifications and different peripherals and different
31114 parts used. Main purpose of this project is to gain experience in
31115 hardware design.
31116 More info: http://groups.google.com/group/arm9fpga-evolution-board
31117 (In Russian only, sorry).
31118 Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
31119
31120 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
31121
31122 commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
31123 Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
31124 Date: Tue Oct 21 13:17:16 2008 +0900
31125
31126 Change to use "do_div" macro
31127
31128 Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
31129
31130 commit e352495318d8056a00faa21b633b3e4374bfbf52
31131 Author: Roman Mashak <romez777@gmail.com>
31132 Date: Wed Oct 22 16:00:26 2008 -0400
31133
31134 ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
31135
31136 OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
31137 It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
31138
31139 Signed-off-by: Roman Mashak <romez777@gmail.com>
31140
31141 commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
31142 Author: Roman Mashak <romez777@gmail.com>
31143 Date: Tue Oct 21 03:01:41 2008 -0700
31144
31145 ARM/Versatile port: Removed unused functions
31146
31147 Removal of never used functions.
31148
31149 Signed-off-by: Roman Mashak <romez777@gmail.com>
31150
31151 commit 1266df887781c779deaf6d05eea2ef90a470cb34
31152 Author: Becky Bruce <becky.bruce@freescale.com>
31153 Date: Mon Nov 3 15:44:01 2008 -0600
31154
31155 powerpc: change 86xx SMP boot method
31156
31157 We put the bootpg for the secondary cpus into memory and use
31158 BPTR to get to it. This is a step towards converting to the
31159 ePAPR boot methodology. Also, the code is written to
31160 deal properly with more than 4GB of RAM.
31161
31162 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31163
31164 commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
31165 Author: Becky Bruce <becky.bruce@freescale.com>
31166 Date: Fri Oct 31 17:13:49 2008 -0500
31167
31168 8641HPCN: Config file cleanup
31169
31170 There are several items in the config file that were hardcoded
31171 but that should really be based on other config options, since
31172 the regions are contiguous and depend on being so. This cleans
31173 that up a bit. Also, add BR_PHYS_ADDR() macro to convert
31174 addresses into the proper format for BR registers.
31175
31176 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31177
31178 commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
31179 Author: Becky Bruce <becky.bruce@freescale.com>
31180 Date: Fri Oct 31 17:13:32 2008 -0500
31181
31182 86xx: Make dram_size a phys_size_t
31183
31184 It's currently a long and should be phys_size_t.
31185
31186 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31187
31188 commit 104992fc541302a6bac74448e01e7fdad20abca0
31189 Author: Becky Bruce <becky.bruce@freescale.com>
31190 Date: Sun Nov 2 18:19:32 2008 -0600
31191
31192 powerpc 86xx: Handle CCSR relocation earlier
31193
31194 Currently, the CCSR gets relocated while translation is
31195 enabled, meaning we need 2 BAT translations to get to both the
31196 old location and the new location. Also, the DEFAULT
31197 CCSR location has a dependency on the BAT that maps the
31198 FLASH region. Moving the relocation removes this unnecessary
31199 dependency. This makes it easier and more intutive to
31200 modify the board's memory map.
31201
31202 Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
31203 BAT for CCSR space.
31204
31205 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31206
31207 commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
31208 Author: Becky Bruce <becky.bruce@freescale.com>
31209 Date: Fri Oct 31 17:14:14 2008 -0500
31210
31211 mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
31212
31213 You can't actually have both, and with some coming changes to
31214 change the memory map for the board and support 36-bit physical,
31215 we need the extra BAT that is being consumed by having both.
31216
31217 I also make non-PCI configs build cleanly, for the sake of sanity.
31218
31219 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31220
31221 commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
31222 Author: Becky Bruce <becky.bruce@freescale.com>
31223 Date: Fri Oct 31 17:14:00 2008 -0500
31224
31225 mpc8641: Stop supporting non-PCI_PNP configs
31226
31227 We don't actually ever do this, remove the code so we
31228 can stop maintaining it.
31229
31230 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31231
31232 commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
31233 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31234 Date: Fri Oct 24 12:59:12 2008 +0000
31235
31236 ColdFire: Fix M5329EVB and M5373EVB nand issue
31237
31238 Fix compilation issue caused by a few mismatches.
31239 Provide proper nand chip select enable/disable in
31240 nand_hwcontrol() rather than in board_nand_init()
31241 just enable once. Remove redundant local nand driver
31242 functions - nand_read_byte(), nand_write_byte() and
31243 nand_dev_ready() to use common nand driver.
31244
31245 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31246
31247 commit 1b2708442224a551a0b865b52710306333888932
31248 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31249 Date: Wed Oct 22 11:55:30 2008 +0000
31250
31251 ColdFire: Fix compilation error
31252
31253 The error was caused by the change for strmhz() in cpu.c.
31254 A few of them were one extra close parenthesis.
31255
31256 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31257
31258 commit 536e7dac16769954915a484e682a2efb28699133
31259 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31260 Date: Wed Oct 22 11:38:21 2008 +0000
31261
31262 ColdFire: Add MCF5301x CPU and M53017EVB support
31263
31264 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31265
31266 commit a21d0c2cc9add8894d971ab791f4032f077db817
31267 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31268 Date: Tue Oct 21 15:37:02 2008 +0000
31269
31270 ColdFire: Add SBF support for M52277EVB
31271
31272 Add serial boot support
31273
31274 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31275
31276 commit b202816c61042c183fe67d097a5893b0f2dafba0
31277 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31278 Date: Tue Oct 21 14:19:26 2008 +0000
31279
31280 ColdFire: Use CFI driver for M5272C3
31281
31282 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31283
31284 commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
31285 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31286 Date: Tue Oct 21 13:47:54 2008 +0000
31287
31288 ColdFire: Relocate FEC's GPIO and mii functions protocols
31289
31290 Place FEC pin assignments in cpu_init.c from platform's
31291 mii.c
31292
31293 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31294
31295 commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
31296 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31297 Date: Tue Oct 21 12:15:44 2008 +0000
31298
31299 ColdFire: Remove platforms mii.c file
31300
31301 Will use mcfmii.c driver in drivers/net rather than
31302 keep creating new mii.c for each future platform.
31303 Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
31304 M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
31305 M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
31306 mii.c
31307
31308 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31309
31310 commit 012522fef3b382469125beb46a315ab4dee02fb0
31311 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31312 Date: Tue Oct 21 10:03:07 2008 +0000
31313
31314 ColdFire: Modules header files cleanup
31315
31316 Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
31317 MDHA, SKHA, INTC, and FlexBus structures and
31318 definitions in immap_5xxx.h to more unify modules
31319 header files. Append DSPI support for m547x_8x.
31320 SSI cleanup. Remove USB Host structure from immap_539.h.
31321 Apply changes to use FlexBus structures in mcf52x2's
31322 cpu_init.c and platform configuration files.
31323
31324 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31325
31326 commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
31327 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31328 Date: Tue Oct 21 08:52:36 2008 +0000
31329
31330 ColdFire: Remove linker file
31331
31332 Each different build for M54455EVB and M5235EVB will
31333 create a u-boot.lds linker file. It is redundant to
31334 keep the u-boot.lds
31335
31336 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
31337
31338 commit 0829323073c505556ed5f5073f91adb504584d45
31339 Author: Peter Tyser <ptyser@xes-inc.com>
31340 Date: Fri Oct 31 11:26:44 2008 -0500
31341
31342 ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
31343
31344 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
31345
31346 commit a80b21d5127583171d6e9bc7f722947641898012
31347 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31348 Date: Fri Oct 31 12:12:12 2008 +0100
31349
31350 common/Makefile: create others group for non core, environment and command files
31351
31352 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31353
31354 commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
31355 Author: Wolfgang Denk <wd@denx.de>
31356 Date: Fri Oct 31 01:13:37 2008 +0100
31357
31358 TQM8260: use CFI flash driver instead of custom driver.
31359
31360 Signed-off-by: Wolfgang Denk <wd@denx.de>
31361
31362 commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
31363 Author: Andy Fleming <afleming@freescale.com>
31364 Date: Thu Oct 30 17:35:30 2008 -0500
31365
31366 Consolidate MAX/MIN definitions
31367
31368 There were several, now there is one (two if you count the lower-case
31369 versions).
31370
31371 Signed-off-by: Andy Fleming <afleming@freescale.com>
31372
31373 commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
31374 Author: Heiko Schocher <hs@denx.de>
31375 Date: Thu Oct 30 09:23:09 2008 +0100
31376
31377 mgsuvd: remove unused defines in config file.
31378
31379 Signed-off-by: Heiko Schocher <hs@denx.de>
31380
31381 commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
31382 Author: Wolfgang Denk <wd@denx.de>
31383 Date: Sun Nov 2 16:14:22 2008 +0100
31384
31385 Coding Style cleanup, update CHANGELOG
31386
31387 Signed-off-by: Wolfgang Denk <wd@denx.de>
31388
31389 commit a47f957ab523019992fdef857af01bd71c58a4da
31390 Author: Alessandro Rubini <rubini-list@gnudd.com>
31391 Date: Fri Oct 31 22:33:21 2008 +0100
31392
31393 NAND: Allow NAND and OneNAND to coexist
31394
31395 This removes in nand.h code that is verbatim duplicated from bbm.h,
31396 including directly bbm.h in nand.h. The previous state of affairs
31397 prevented compiling code for a board hosting both NAND and OneNAND chips.
31398
31399 Reported-by: Scott Wood <scottwood@freescale.com>
31400 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
31401 Signed-off-by: Scott Wood <scottwood@freescale.com>
31402
31403 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
31404 Author: Scott Wood <scottwood@freescale.com>
31405 Date: Fri Oct 31 13:51:12 2008 -0500
31406
31407 JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
31408
31409 Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
31410 Signed-off-by: Scott Wood <scottwood@freescale.com>
31411
31412 commit c57fc28947e248fb03c49a28b467686299895055
31413 Author: Jason Jin <Jason.Jin@freescale.com>
31414 Date: Fri Oct 31 05:07:04 2008 -0500
31415
31416 NAND: Add NAND support for MPC8536DS board
31417
31418 This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
31419 for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
31420 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
31421
31422 Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
31423 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31424 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31425
31426 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
31427 Author: Haiying Wang <Haiying.Wang@freescale.com>
31428 Date: Fri Oct 31 05:06:14 2008 -0500
31429
31430 NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
31431
31432 CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
31433
31434 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31435 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31436
31437 commit 51b572a801be57790fe26adaa530210e7fba59cc
31438 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31439 Date: Fri Oct 24 10:49:48 2008 +0900
31440
31441 sh: rsk7203: Moved rsk7203 board to board/renesas
31442
31443 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31444
31445 commit 58453b00b3ebb26aaa901210023f99504a90bb00
31446 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31447 Date: Fri Oct 24 10:48:31 2008 +0900
31448
31449 sh: MigoR: Moved MigoR board to board/renesas
31450
31451 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31452
31453 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
31454 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31455 Date: Fri Oct 24 10:39:44 2008 +0900
31456
31457 sh: r2dplus: Moved r2dplus board to board/renesas
31458
31459 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31460
31461 commit 78385bf2359d828184d0b3649f7ae6b933420000
31462 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31463 Date: Fri Oct 24 10:36:13 2008 +0900
31464
31465 sh: sh7763rdp: Moved sh7763rdp board to board/renesas
31466
31467 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31468
31469 commit c6525d459c350bfc246ea7826456af77e1e314eb
31470 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31471 Date: Fri Oct 24 10:35:19 2008 +0900
31472
31473 sh: sh7785lcr: Moved sh7785lcr board to board/renesas
31474
31475 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31476
31477 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
31478 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31479 Date: Fri Oct 24 10:34:21 2008 +0900
31480
31481 sh: r7780mp: Moved r7780mp board to board/renesas
31482
31483 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31484
31485 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
31486 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31487 Date: Fri Oct 24 10:32:14 2008 +0900
31488
31489 sh: ap325rxa: Moved ap325rxa board to board/renesas
31490
31491 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
31492
31493 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
31494 Author: Wolfgang Denk <wd@xpert.denx.de>
31495 Date: Fri Oct 31 01:12:28 2008 +0100
31496
31497 CFI Driver: Fix "flash not ready" problem
31498
31499 This patch fixes a problem on systems where the NOR flash is attached
31500 to a 64 bit bus. The toggle bit detection in flash_toggle() is based
31501 on the assumption that the same flash address is read twice without
31502 any other interjacent flash accesses. However, on 32 bit systems the
31503 function flash_read64() [as currently implemented] does not perform
31504 an atomic 64 bit read - instead, this is broken down into two 32 bit
31505 read accesses on addresses "addr" and "addr + 4". So instead of
31506 reading a 64 bit value twice from "addr", we see a sequence of 4 32
31507 bit reads from "addr", "addr + 4", "addr", and "addr + 4". The
31508 consequence is that flash_toggle() fails to work.
31509
31510 This patch implements a simple, but somewhat ugly solution, as it
31511 avoids the use of flash_read64() in this critical place (by breaking
31512 it down manually into 32 bit read operations) instead of rewriting
31513 flash_read64() such to perform atomic 64 bit reads as one could
31514 expect. However, such a rewrite would require the use of floating
31515 point load operations, which becomes pretty complex:
31516
31517 save MSR;
31518 set Floating Point Enable bit in MSR;
31519 use "lfd" instruction to perform atomic 64 bit read;
31520 use "stfd" to store value to temporary variable on stack;
31521 load u64 value from temporary variable;
31522 restore saved MSR;
31523 return u64 value;
31524
31525 The benefit-cost ratio of such an implementation was considered too
31526 bad to actually attempt this, especially as we can expect that such
31527 an implementation would not only have a bigger memory footprint but
31528 also cause a performance degradation.
31529
31530 Signed-off-by: Wolfgang Denk <wd@denx.de>
31531 Signed-off-by: Stefan Roese <sr@denx.de>
31532
31533 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
31534 Author: Stefan Roese <sr@denx.de>
31535 Date: Fri Oct 31 10:48:08 2008 +0100
31536
31537 ppc4xx: Fix spelling error in MAINTAINERS file
31538
31539 Signed-off-by: Stefan Roese <sr@denx.de>
31540
31541 commit be270798900b75ad9c47c7b79c72f70441196c56
31542 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31543 Date: Tue Oct 28 13:37:00 2008 +0100
31544
31545 ppc4xx: Update PMC440 board support
31546
31547 This patch brings PMC440 board support up to date:
31548
31549 - fix GPIO configuration
31550 - add misc_init_f()
31551 - use better values for usbact variable
31552 - fix USB 2.0 phy reset sequence
31553 - shrink BAR2 to save PCI address space
31554 - add FDT support
31555
31556 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31557 Signed-off-by: Stefan Roese <sr@denx.de>
31558
31559 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
31560 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31561 Date: Tue Oct 28 13:36:59 2008 +0100
31562
31563 ppc4xx: Fix PMC440 BSP commands
31564
31565 This patch fixes the PMC440 BSP commands painit and selfreset
31566
31567 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31568 Signed-off-by: Stefan Roese <sr@denx.de>
31569
31570 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
31571 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31572 Date: Tue Oct 28 13:36:58 2008 +0100
31573
31574 ppc4xx: Update PMC440 board configuration
31575
31576 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31577 Signed-off-by: Stefan Roese <sr@denx.de>
31578
31579 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
31580 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31581 Date: Tue Oct 28 13:36:57 2008 +0100
31582
31583 ppc4xx: Fix esd loadpci command
31584
31585 This patch fixes esd's loadpci command when not all
31586 memory on adapter boards is accessable via PCI.
31587
31588 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31589 Signed-off-by: Stefan Roese <sr@denx.de>
31590
31591 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
31592 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31593 Date: Tue Oct 28 13:36:56 2008 +0100
31594
31595 ppc4xx: Clean up PMC440 header
31596
31597 -Codingstyle cleanup
31598 -Remove unused GPIO define
31599
31600 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31601 Signed-off-by: Stefan Roese <sr@denx.de>
31602
31603 commit 295133258a44f97a57fb2ec339aecfda11f4db95
31604 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31605 Date: Tue Oct 28 13:36:55 2008 +0100
31606
31607 ppc4xx: Handle other board variant in PMC440 FPGA code
31608
31609 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31610 Signed-off-by: Stefan Roese <sr@denx.de>
31611
31612 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
31613 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31614 Date: Mon Oct 27 12:35:59 2008 +0100
31615
31616 ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
31617
31618 Xilinx ppc440 and ppc405 have many similarities. This patch merge the
31619 config files of both infrastuctures
31620
31621 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
31622 Signed-off-by: Stefan Roese <sr@denx.de>
31623
31624 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
31625 Author: Stefan Roese <sr@denx.de>
31626 Date: Sat Oct 25 06:45:31 2008 +0200
31627
31628 ppc4xx: Correctly configure the GPIO pin muxing on Arches
31629
31630 Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
31631 pin multiplexing correctly
31632
31633 Signed-off-by: Stefan Roese <sr@denx.de>
31634
31635 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
31636 Author: Bartlomiej Sieka <tur@semihalf.com>
31637 Date: Thu Oct 30 23:22:04 2008 +0100
31638
31639 Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
31640
31641 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31642
31643 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
31644 Author: David Gibson <david@gibson.dropbear.id.au>
31645 Date: Wed Oct 29 23:27:45 2008 -0500
31646
31647 libfdt: Fix bug in fdt_subnode_offset_namelen()
31648
31649 There's currently an off-by-one bug in fdt_subnode_offset_namelen()
31650 which causes it to keep searching after it's finished the subnodes of
31651 the given parent, and into the subnodes of siblings of the original
31652 node which come after it in the tree.
31653
31654 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
31655 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31656
31657 commit f242a08871839eac081ba5b599af979f3a148a0d
31658 Author: Peter Korsgaard <jacmet@sunsite.dk>
31659 Date: Tue Oct 28 08:26:52 2008 +0100
31660
31661 fdt_resize(): ensure minimum padding
31662
31663 fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
31664 (16 bytes), so make sure that fdt_resize at least adds that much
31665 padding, no matter what the location or size of the fdt is.
31666
31667 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
31668 Acked-by: Andy Fleming <afleming@freescale.com>
31669
31670 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
31671 Author: Dave Liu <daveliu@freescale.com>
31672 Date: Thu Oct 23 21:59:35 2008 +0800
31673
31674 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
31675
31676 The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
31677
31678 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
31679
31680 This is needed in unlock_ram_in_cache() because it is called from C and
31681 will corrupt the small data area anchor that is kept in R2.
31682
31683 lock_ram_in_cache() is modified similarly as good coding practice, but
31684 is not called from C.
31685
31686 Signed-off-by: Nick Spence <nick.spence@freescale.com>
31687
31688 also, the r2 is used as global data pointer.
31689
31690 Signed-off-by: Dave Liu <daveliu@freescale.com>
31691
31692 commit e053ab1903ccae6048ef759025b9f675bba91450
31693 Author: Scott Wood <scottwood@freescale.com>
31694 Date: Tue Oct 28 11:45:04 2008 -0500
31695
31696 mpc83xx pci: Round up memory size in inbound window.
31697
31698 The current calculation will fail to cover all memory if
31699 its size is not a power of two.
31700
31701 Signed-off-by: Scott Wood <scottwood@freescale.com>
31702 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31703
31704 commit 1c671977dc81359628be27ac99c174e76e8069ba
31705 Author: Dave Liu <daveliu@freescale.com>
31706 Date: Thu Oct 23 21:19:13 2008 +0800
31707
31708 86xx: remove the unused definition
31709
31710 Signed-off-by: Dave Liu <daveliu@freescale.com>
31711
31712 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
31713 Author: Dave Liu <daveliu@freescale.com>
31714 Date: Tue Oct 28 17:47:49 2008 +0800
31715
31716 86xx: remove the redundant r2 global data pointer save
31717
31718 The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
31719 the another global data pointer save, but in fact the
31720 global data pointer will be initialized in the board_init_r,
31721 so remove it such as the 85xx/83xx family.
31722
31723 Signed-off-by: Dave Liu <daveliu@freescale.com>
31724 Acked-by: Kumar Gala <kumar.gala@freescale.com>
31725
31726 commit bd888e9544419665334a6f47f81f34011cea38f3
31727 Author: Dave Liu <daveliu@freescale.com>
31728 Date: Tue Oct 28 17:47:41 2008 +0800
31729
31730 86xx: remove the unused code for 86xx family
31731
31732 I believe these code was copied from 74xx family, but for
31733 86xx, it is unused.
31734
31735 Signed-off-by: Dave Liu <daveliu@freescale.com>
31736 Acked-by: Kumar Gala <kumar.gala@freescale.com>
31737
31738 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
31739 Author: Dave Liu <daveliu@freescale.com>
31740 Date: Tue Oct 28 17:46:35 2008 +0800
31741
31742 86xx: remove the second DDR LAW setting for mpc8641hpcn
31743
31744 The DDR1 LAW will precedence the DDR2 LAW, so remove
31745 the second DDR LAW.
31746
31747 Signed-off-by: Dave Liu <daveliu@freescale.com>
31748 Acked-by: Becky Bruce <becky.bruce@freescale.com>
31749
31750 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
31751 Author: Dave Liu <daveliu@freescale.com>
31752 Date: Tue Oct 28 17:46:23 2008 +0800
31753
31754 86xx: remove the unused ddr_enable_ecc in the board file
31755
31756 The DDR controller of 86xx processors have the ECC data init
31757 feature, and the new DDR code is using the feature, we don't
31758 need the way with DMA to init memory again.
31759
31760 Signed-off-by: Dave Liu <daveliu@freescale.com>
31761 Acked-by: Kumar Gala <kumar.gala@freescale.com>
31762
31763 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
31764 Author: Dave Liu <daveliu@freescale.com>
31765 Date: Tue Oct 28 17:46:12 2008 +0800
31766
31767 86xx: Move the clear_tlbs before MMU turn on
31768
31769 We must invalidate TLBs before MMU turn on, but
31770 currently the code is not, if there are some stale
31771 TLB entry valid in the TLBs, it will cause strange
31772 issue.
31773
31774 Signed-off-by: Dave Liu <daveliu@freescale.com>
31775 Acked-by: Becky Bruce <becky.bruce@freescale.com>
31776
31777 commit 5cdade07b118d07154cb882650f9778cecc8a87c
31778 Author: Scott Wood <scottwood@freescale.com>
31779 Date: Mon Oct 27 15:57:08 2008 -0500
31780
31781 mpc8313erdb: Document NAND boot.
31782
31783 Previously, the documentation claimed that NAND boot is not supported.
31784 This is no longer true.
31785
31786 Signed-off-by: Scott Wood <scottwood@freescale.com>
31787
31788 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
31789 Author: Scott Wood <scottwood@freescale.com>
31790 Date: Wed Oct 29 14:20:26 2008 -0500
31791
31792 NAND: Properly create JFFS2 cleanmarkers.
31793
31794 As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
31795 command is currently broken, and among other things causes all blocks
31796 to be marked bad.
31797
31798 This implements it properly using MTD_OOB_AUTO, along with some
31799 indentation fixes.
31800
31801 Signed-off-by: Scott Wood <scottwood@freescale.com>
31802
31803 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
31804 Author: Scott Wood <scottwood@freescale.com>
31805 Date: Wed Oct 29 13:42:41 2008 -0500
31806
31807 NAND fsl elbc: Set FMR[ECCM] based on page size.
31808
31809 Hardware expects ECCM 0 for small page and ECCM 1 for large page
31810 when booting from NAND, so use those defaults.
31811
31812 Signed-off-by: Scott Wood <scottwood@freescale.com>
31813
31814 commit c013b74975dab0805ef6d369b013230c4e8a660d
31815 Author: Haiying Wang <Haiying.Wang@freescale.com>
31816 Date: Wed Oct 29 13:32:59 2008 -0400
31817
31818 NAND: Add support for MPC8572DS board
31819
31820 This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
31821 0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
31822 config file.
31823
31824 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
31825 make room for the increased code size with NAND enabled.
31826
31827 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
31828 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31829 Signed-off-by: Scott Wood <scottwood@freescale.com>
31830
31831 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
31832 Author: Haiying Wang <Haiying.Wang@freescale.com>
31833 Date: Wed Oct 29 11:05:55 2008 -0400
31834
31835 Make Freescale local bus registers available for both 83xx and 85xx.
31836
31837 - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
31838 can be shared by both 83xx and 85xx
31839 - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
31840 files which use lbus83xx_t.
31841 - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
31842 85xx can share them.
31843
31844 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
31845 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
31846 Signed-off-by: Scott Wood <scottwood@freescale.com>
31847
31848 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
31849 Author: Scott Wood <scottwood@freescale.com>
31850 Date: Mon Oct 27 15:38:30 2008 -0500
31851
31852 NAND: Align right column of the shorthelp with other commands.
31853
31854 I accidentally broke this in when making consistent the partial
31855 alignment of the longhelp.
31856
31857 Signed-off-by: Scott Wood <scottwood@freescale.com>
31858
31859 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
31860 Author: Karl Beldan <karl.beldan@gmail.com>
31861 Date: Mon Sep 15 16:08:03 2008 +0200
31862
31863 NAND: Reset chip on power-up
31864
31865 Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
31866 The first command sent is NAND_CMD_READID.
31867 Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
31868 Tested with an MT29F4G08AAC.
31869
31870 Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
31871 Signed-off-by: Scott Wood <scottwood@freescale.com>
31872
31873 commit c45912d8abc52de796b9059a58faf7c4166eab58
31874 Author: Scott Wood <scottwood@freescale.com>
31875 Date: Fri Oct 24 16:20:43 2008 -0500
31876
31877 NAND: sync with 2.6.27
31878
31879 This brings the core NAND code up to date with the Linux kernel.
31880
31881 Since there were several drivers in Linux as of the last update that are
31882 not in u-boot, I'm not bringing over new drivers that have been added
31883 since in the absence of an interested party.
31884
31885 I did not update OneNAND since it was recently synced by Kyungmin Park,
31886 and I'm not sure exactly what the common ancestor is.
31887
31888 Signed-off-by: Scott Wood <scottwood@freescale.com>
31889
31890 commit b1d0db1805c3395149777e507b6da53410abac4e
31891 Author: Kumar Gala <galak@kernel.crashing.org>
31892 Date: Tue Oct 21 17:25:47 2008 -0500
31893
31894 bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
31895
31896 Added the ability to config out bootm support for Linux, NetBSD, RTEMS
31897
31898 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31899
31900 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
31901 Author: Kumar Gala <galak@kernel.crashing.org>
31902 Date: Tue Oct 21 17:25:46 2008 -0500
31903
31904 bootm: support subcommands in linux ppc bootm
31905
31906 Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
31907
31908 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31909
31910 commit 49c3a861d11735838f1f1b11999ce433006dc919
31911 Author: Kumar Gala <galak@kernel.crashing.org>
31912 Date: Tue Oct 21 17:25:45 2008 -0500
31913
31914 bootm: Add subcommands
31915
31916 Add the ability to break the steps of the bootm command into several
31917 subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
31918
31919 This allows us to do things like manipulate device trees before
31920 they are passed to a booting kernel or setup memory for a secondary
31921 core in multicore situations.
31922
31923 Not all OS types support all subcommands (currently only start, loados,
31924 ramdisk, fdt, and go are supported).
31925
31926 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31927
31928 commit be08315933537f061bc1ce61f33a29c56458bbad
31929 Author: Kumar Gala <galak@kernel.crashing.org>
31930 Date: Tue Oct 21 17:25:44 2008 -0500
31931
31932 bootm: Move to using a function pointer table for the boot os function
31933
31934 This removes a bit of code and makes it easier for the upcoming sub bootm
31935 command support to call into the proper OS specific handler.
31936
31937 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31938 Signed-off-by: Wolfgang Denk <wd@denx.de>
31939
31940 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
31941 Author: Graeme Russ <graeme.russ@gmail.com>
31942 Date: Mon Sep 29 23:03:14 2008 +1000
31943
31944 i386: Renamed show_boot_progress in assembler code
31945
31946 Renamed show_boot_progress in assembler init phase to
31947 show_boot_progress_asm to avoid link conflicts with C version
31948
31949 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
31950
31951 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
31952 Author: Peter Tyser <ptyser@xes-inc.com>
31953 Date: Mon Oct 27 16:42:00 2008 -0500
31954
31955 85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
31956
31957 The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
31958 processors have a 3-bit wide IO_SEL field but have the most
31959 significant bit is wired to 0 so this change should not affect
31960 them.
31961
31962 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
31963
31964 commit cd4251624205cb97104f6e32679dc7754934f711
31965 Author: Becky Bruce <becky.bruce@freescale.com>
31966 Date: Mon Oct 27 16:09:42 2008 -0500
31967
31968 powerpc: fix pci window initialization to work with > 4GB DRAM
31969
31970 The existing code has a few errors that need to be fixed in
31971 order to support large RAM sizes. Fix those, and add a
31972 comment to make it clearer.
31973
31974 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
31975 Acked-by: Kumar Gala <galak@kernel.crashing.org>
31976
31977 commit 219542a1a66ca017b12860920714a9859b18a5d7
31978 Author: Kumar Gala <galak@kernel.crashing.org>
31979 Date: Mon Oct 27 13:16:20 2008 -0500
31980
31981 pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
31982
31983 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31984
31985 commit 6b59e03e0237a40a2305ea385defdfd92000978b
31986 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
31987 Date: Mon Sep 1 16:21:22 2008 +0200
31988
31989 lcd: Let the board code show board-specific info
31990
31991 The information displayed when CONFIG_LCD_INFO is set is inherently
31992 board-specific, so it should be done by the board code. The current code
31993 dealing with this only handles two cases, and is already a horrible mess
31994 of #ifdeffery.
31995
31996 Yes, this duplicates some code, but it also allows boards to print more
31997 board-specific information; this used to be very difficult.
31998
31999 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32000 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32001
32002 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
32003 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32004 Date: Mon Sep 1 16:21:21 2008 +0200
32005
32006 lcd: Set lcd_is_enabled before clearing the screen
32007
32008 This allows the logo/info rendering routines to use the regular
32009 lcd_putc/lcd_puts/lcd_printf calls.
32010
32011 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32012 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32013
32014 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
32015 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32016 Date: Mon Sep 1 16:21:20 2008 +0200
32017
32018 lcd: Implement lcd_printf()
32019
32020 lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
32021 this by borrowing the lcd_printf() implementation from the cogent board
32022 code (which appears to use its own LCD framework.)
32023
32024 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32025 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32026
32027 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
32028 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32029 Date: Mon Sep 1 16:21:19 2008 +0200
32030
32031 atmel_lcdfb: Straighten out funky vl_sync logic
32032
32033 If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
32034 otherwise we don't. WTF?
32035
32036 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32037 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32038
32039 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
32040 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32041 Date: Mon Sep 1 16:21:18 2008 +0200
32042
32043 atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
32044
32045 atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
32046 includes a file that does, asm/arch/gpio.h, but this file doesn't
32047 include <asm/arch/hardware.h> like it's supposed to.
32048
32049 Add the missing include to asm/arch/gpio.h and remove the workaround
32050 from the atmel_lcdfb driver. This makes the driver compile on avr32.
32051
32052 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
32053 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32054
32055 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
32056 Author: Kumar Gala <galak@kernel.crashing.org>
32057 Date: Wed Oct 22 14:38:55 2008 -0500
32058
32059 86xx: Convert all fsl_pci_init users to new APIs
32060
32061 Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
32062 fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
32063
32064 With these changes the board code is a bit smaller and we get dma-ranges
32065 set in the device tree for these boards.
32066
32067 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32068 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32069 Acked-by: Jon Loeliger <jdl@freescale.com>
32070
32071 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
32072 Author: Kumar Gala <galak@kernel.crashing.org>
32073 Date: Tue Oct 21 08:28:33 2008 -0500
32074
32075 85xx: Convert all fsl_pci_init users to new APIs
32076
32077 Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
32078 MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
32079 and ft_fsl_pci_setup().
32080
32081 With these changes the board code is a bit smaller and we get dma-ranges
32082 set in the device tree for these boards.
32083
32084 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32085 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32086
32087 commit a2aab460727e5f674353a83a81000ef794bffcae
32088 Author: Kumar Gala <galak@kernel.crashing.org>
32089 Date: Thu Oct 23 00:01:06 2008 -0500
32090
32091 pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
32092
32093 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32094 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32095
32096 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
32097 Author: Kumar Gala <galak@kernel.crashing.org>
32098 Date: Wed Oct 22 14:06:24 2008 -0500
32099
32100 pci/fsl_pci_init: Add a common PCI inbound setup function
32101
32102 Add a common setup function that determines the pci_region(s) based
32103 on how much memory we have in the system.
32104
32105 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32106 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32107
32108 commit 612ea01018a459234d54ed57ec6a5a244ce75678
32109 Author: Kumar Gala <galak@kernel.crashing.org>
32110 Date: Tue Oct 21 10:13:14 2008 -0500
32111
32112 pci/fsl_pci_init: Enable larger address and setting inbound windows properly
32113
32114 * PCI Inbound window was setup incorrectly. The PCI address and system
32115 address were swapped. The PCI address should be setting piwar/piwbear
32116 and the system address should be setting pitar.
32117
32118 * Removed masking of addresses to allow for system address to support
32119 system address & PCI address >32-bits
32120
32121 * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
32122
32123 * Respect the PCI_REGION_PREFETCH for inbound windows
32124
32125 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32126 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32127
32128 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
32129 Author: Kumar Gala <galak@kernel.crashing.org>
32130 Date: Wed Oct 22 23:33:56 2008 -0500
32131
32132 fdt: Added helper to set PCI dma-ranges property
32133
32134 Added fdt_pci_dma_ranges() that parses the pci_region info from the
32135 struct pci_controller and populates the dma-ranges based on it.
32136
32137 The max # of windws/dma-ranges we support is 3 since on embedded
32138 PowerPC based systems this is the max number of windows.
32139
32140 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32141 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32142
32143 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
32144 Author: Kumar Gala <galak@kernel.crashing.org>
32145 Date: Thu Oct 23 00:05:47 2008 -0500
32146
32147 fdt: Add fdt_getprop_u32_default helpers
32148
32149 Add helper functions to return find a node and return it's property
32150 or a default value.
32151
32152 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32153 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32154 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
32155
32156 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
32157 Author: Kumar Gala <galak@kernel.crashing.org>
32158 Date: Tue Oct 21 18:06:15 2008 -0500
32159
32160 86xx: Enable 64-bit PCI resources on all Freescale boards
32161
32162 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32163 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32164
32165 commit 0151cbaccf4504821ecfde0217299bd740086bb6
32166 Author: Kumar Gala <galak@kernel.crashing.org>
32167 Date: Tue Oct 21 11:33:58 2008 -0500
32168
32169 85xx: Enable 64-bit PCI resources on all Freescale boards
32170
32171 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32172 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32173
32174 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
32175 Author: Kumar Gala <galak@kernel.crashing.org>
32176 Date: Tue Oct 21 08:36:08 2008 -0500
32177
32178 pci: Allow for PCI addresses to be 64-bit
32179
32180 PCI bus is inherently 64-bit. While not all system require access to
32181 the full 64-bit PCI address range some do. This allows those systems
32182 to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
32183
32184 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32185 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
32186 Acked-by: Wolfgang Denk <wd@denx.de>
32187
32188 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
32189 Author: Dave Liu <daveliu@freescale.com>
32190 Date: Thu Oct 23 21:18:53 2008 +0800
32191
32192 85xx: Fix the incorrect register used for DDR erratum1
32193
32194 The 8572 DDR erratum1:
32195 DDR controller may enter an illegal state when operating
32196 in 32-bit bus mode with 4-beat bursts.
32197
32198 Description:
32199 When operating with a 32-bit bus, it is recommended that
32200 DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
32201 This forces the DDR controller to use 4-beat bursts when
32202 communicating to the DRAMs. However, an issue exists that
32203 could lead to data corruption when the DDR controller is
32204 in 32-bit bus mode while using 4-beat bursts.
32205
32206 Projected Impact:
32207 If the DDR controller is operating in 32-bit bus mode with
32208 4-beat bursts, then the controller may enter into a bad state.
32209 All subsequent reads from memory is corrupted.
32210 Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
32211 Therefore, this erratum does not affect DDR3 mode.
32212
32213 Work Arounds:
32214 To work around this issue, software must set DEBUG_1[31] in
32215 DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
32216 and CCSRBAR offset + 0x6f00 for DDR_2).
32217
32218 Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
32219 as condition, but it should be DDR_SDRAM_CFG register.
32220
32221 Signed-off-by: Dave Liu <daveliu@freescale.com>
32222
32223 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
32224 Author: Dave Liu <daveliu@freescale.com>
32225 Date: Thu Oct 23 21:17:19 2008 +0800
32226
32227 85xx: remove unused config definition
32228
32229 Signed-off-by: Dave Liu <daveliu@freescale.com>
32230
32231 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
32232 Author: Kumar Gala <galak@kernel.crashing.org>
32233 Date: Thu Oct 23 01:47:38 2008 -0500
32234
32235 85xx: Add basic e500mc core support
32236
32237 Introduce CONFIG_E500MC to deal with the minor differences between
32238 e500v2 and e500mc.
32239
32240 * Certain fields of HID0/1 don't exist anymore on e500mc
32241 * Cache line size is 64-bytes on e500mc
32242 * reset value of PIR is different
32243
32244 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32245
32246 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
32247 Author: Kumar Gala <galak@kernel.crashing.org>
32248 Date: Thu Oct 23 01:47:37 2008 -0500
32249
32250 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
32251
32252 Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
32253 e500mc's 64-byte cacheline properly when it gets added.
32254
32255 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32256
32257 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
32258 Author: Georg Schardt <schardt@team-ctech.de>
32259 Date: Fri Oct 24 13:51:52 2008 +0200
32260
32261 ppc4xx: New board avnet fx12 minimodul
32262
32263 This patch adds support for the avnet fx12 minimodul.
32264 It needs the "ppc4xx: Generic architecture for xilinx ppc405"
32265 patch from Ricardo.
32266
32267 Signed-off-by: Georg Schardt <schardt@team-ctech.de>
32268 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
32269 Signed-off-by: Stefan Roese <sr@denx.de>
32270
32271 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
32272 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
32273 Date: Tue Oct 21 18:29:46 2008 +0200
32274
32275 ppc4xx: Generic architecture for xilinx ppc405(v3)
32276
32277 As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
32278 ppc440 boards, this patch presents a common architecture for all the
32279 xilinx ppc405 boards.
32280
32281 Any custom xilinx ppc405 board can be added very easily with no code
32282 duplicity.
32283
32284 This patch also adds a simple generic board, that can be used on almost
32285 any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
32286
32287 This patch is prepared to work with the latest version of EDK (10.1)
32288
32289 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
32290 Signed-off-by: Stefan Roese <sr@denx.de>
32291
32292 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
32293 Author: Stefan Roese <sr@denx.de>
32294 Date: Fri Oct 24 08:56:09 2008 +0200
32295
32296 ppc4xx: Disable DDR2 autocalibration on Kilauea for now
32297
32298 Since the new autocalibration still has some problems on some Kilauea
32299 boards with 200MHz DDR2 frequency we disable the autocalibration and
32300 use the hardcoded values as done before. This seems to work reliably
32301 on all known DDR2 frequencies.
32302
32303 After the autocalibration issue is fixed we will enable it again.
32304
32305 Signed-off-by: Stefan Roese <sr@denx.de>
32306
32307 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
32308 Author: Mike Frysinger <vapier@gentoo.org>
32309 Date: Wed Apr 9 02:02:07 2008 -0400
32310
32311 Blackfin: fix up UART status bit handling
32312
32313 Some Blackfin UARTs are read-to-clear while others are write-to-clear.
32314 This can cause problems when we poll the LSR and then later try and handle
32315 any errors detected.
32316
32317 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32318
32319 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
32320 Author: Mike Frysinger <vapier@gentoo.org>
32321 Date: Sat Oct 11 20:42:17 2008 -0400
32322
32323 Blackfin: bf561-ezkit: drop redundant code
32324
32325 Common Blackfin code already announces CPU information.
32326
32327 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32328
32329 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
32330 Author: Mike Frysinger <vapier@gentoo.org>
32331 Date: Sat Oct 11 20:43:10 2008 -0400
32332
32333 Blackfin: bf561-ezkit: drop pointless USB code
32334
32335 The USB/LAN register settings are not actually used/needed in order to
32336 drive things from U-Boot, so drop the code.
32337
32338 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32339
32340 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
32341 Author: Mike Frysinger <vapier@gentoo.org>
32342 Date: Sat Oct 11 20:47:58 2008 -0400
32343
32344 Blackfin: linker scripts: force start.o and set initcode boundaries
32345
32346 Make sure that the start.o object is always the first object in our linker
32347 script regardless of configuration settings, and add some linker symbols
32348 so the ldr utility can properly locate the initcode when generating a LDR.
32349
32350 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32351
32352 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
32353 Author: Mike Frysinger <vapier@gentoo.org>
32354 Date: Sat Oct 11 21:19:39 2008 -0400
32355
32356 Blackfin: small cpu init optimization while setting interrupt mask
32357
32358 Use the sti instruction to set the initial interrupt mask rather than
32359 banging on the core IMASK MMR to save both space and time.
32360
32361 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32362
32363 commit 960922291c9594acb575cec7e47d7bed9b58182c
32364 Author: Mike Frysinger <vapier@gentoo.org>
32365 Date: Sat Oct 11 21:18:10 2008 -0400
32366
32367 Blackfin: set initial stack correctly according to Blackfin ABI
32368
32369 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32370
32371 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
32372 Author: Mike Frysinger <vapier@gentoo.org>
32373 Date: Sun Apr 20 03:11:53 2008 -0400
32374
32375 Blackfin: make baud calculation more accurate
32376
32377 We should use the algorithm in the Linux kernel so that the UART divisor
32378 calculation is more accurate. It also fixes problems on some picky UARTs
32379 that have sampling anomalies.
32380
32381 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32382
32383 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
32384 Author: Mike Frysinger <vapier@gentoo.org>
32385 Date: Mon Oct 6 04:21:41 2008 -0400
32386
32387 Blackfin: decode hwerrcause/excause when crashing
32388
32389 Having to decode hwerrcause/excause values is a pain, so automate it.
32390
32391 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32392
32393 commit 2de95bb20c488f20298df6881b700a5a757ee780
32394 Author: Mike Frysinger <vapier@gentoo.org>
32395 Date: Mon Oct 6 04:20:54 2008 -0400
32396
32397 Blackfin: fix register dump messages
32398
32399 Make sure we report RETI/IPEND correctly.
32400
32401 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32402
32403 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
32404 Author: Mike Frysinger <vapier@gentoo.org>
32405 Date: Mon Oct 6 04:19:34 2008 -0400
32406
32407 Blackfin: don't bother displaying reboot msg when crashing
32408
32409 The hang function already tells you to reboot, so no point in showing it
32410 twice.
32411
32412 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32413
32414 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
32415 Author: Mike Frysinger <vapier@gentoo.org>
32416 Date: Sun Jun 1 01:23:48 2008 -0400
32417
32418 Blackfin: enable support for nested interrupts
32419
32420 During cpu init, make sure we initialize the CEC properly so that
32421 interrupts can fire and be handled while U-Boot is running.
32422
32423 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32424
32425 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
32426 Author: Mike Frysinger <vapier@gentoo.org>
32427 Date: Mon Oct 6 03:55:25 2008 -0400
32428
32429 Blackfin: init NAND before relocating env
32430
32431 If booting out of NAND, we need to make sure we initialize it properly
32432 before attempting to relocate the environment.
32433
32434 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32435
32436 commit 0f9a8819416ba40a53de50af148847a0e508f84d
32437 Author: Mike Frysinger <vapier@gentoo.org>
32438 Date: Thu Aug 7 18:40:13 2008 -0400
32439
32440 Blackfin: check cache bits, not cplb bits
32441
32442 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32443
32444 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
32445 Author: Mike Frysinger <vapier@gentoo.org>
32446 Date: Thu Aug 7 17:52:59 2008 -0400
32447
32448 Blackfin: drop unused cache flush code
32449
32450 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32451
32452 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
32453 Author: Mike Frysinger <vapier@gentoo.org>
32454 Date: Thu Aug 7 15:21:47 2008 -0400
32455
32456 Blackfin: unify cache handling code
32457
32458 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32459
32460 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
32461 Author: Mike Frysinger <vapier@gentoo.org>
32462 Date: Mon Oct 6 03:39:07 2008 -0400
32463
32464 Blackfin: only initialize the RTC when actually used
32465
32466 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32467
32468 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
32469 Author: Mike Frysinger <vapier@gentoo.org>
32470 Date: Mon Oct 6 03:44:33 2008 -0400
32471
32472 Blackfin: fix SWRST register definition
32473
32474 The SWRST register is a 16bit, not 32bit, register.
32475
32476 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32477
32478 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
32479 Author: Mike Frysinger <vapier@gentoo.org>
32480 Date: Thu Aug 7 18:54:57 2008 -0400
32481
32482 Blackfin: build with -fomit-frame-pointer
32483
32484 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32485
32486 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
32487 Author: Mike Frysinger <vapier@gentoo.org>
32488 Date: Thu Aug 7 17:50:26 2008 -0400
32489
32490 Blackfin: document some of the blackfin directories
32491
32492 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32493
32494 commit e4337968e43698a68ba608369f46d4a4114111ca
32495 Author: Mike Frysinger <vapier@gentoo.org>
32496 Date: Thu Aug 7 15:16:56 2008 -0400
32497
32498 Blackfin: only enable hardware error irq by default
32499
32500 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32501
32502 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
32503 Author: Mike Frysinger <vapier@gentoo.org>
32504 Date: Thu Aug 7 13:36:43 2008 -0400
32505
32506 Blackfin: punt old unused mem_init.h header
32507
32508 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32509
32510 commit bcc121a01608042066a19ab5bff5bcfb805bf406
32511 Author: Mike Frysinger <vapier@gentoo.org>
32512 Date: Thu Aug 7 13:18:55 2008 -0400
32513
32514 Blackfin: delete unused page_descriptor_table_size define
32515
32516 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32517
32518 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
32519 Author: Mike Frysinger <vapier@gentoo.org>
32520 Date: Thu Aug 7 13:17:03 2008 -0400
32521
32522 Blackfin: fix typo in boot mode comment and add NAND define
32523
32524 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32525
32526 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
32527 Author: Ben Maan <moo@cow>
32528 Date: Thu Aug 7 13:14:21 2008 -0400
32529
32530 Blackfin: fix port mux defines for BF54x
32531
32532 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32533
32534 commit 0656ef2ba274910d31364fe022f6c7db0051660d
32535 Author: Mike Frysinger <vapier@gentoo.org>
32536 Date: Thu Aug 7 13:09:50 2008 -0400
32537
32538 Blackfin: update anomaly lists
32539
32540 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32541
32542 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
32543 Author: Mike Frysinger <vapier@gentoo.org>
32544 Date: Thu Aug 7 13:08:54 2008 -0400
32545
32546 Blackfin: unify DSPID/DBGSTAT MMR definitions
32547
32548 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32549
32550 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
32551 Author: Wolfgang Denk <wd@denx.de>
32552 Date: Tue Oct 21 15:53:51 2008 +0200
32553
32554 Fix strmhz(): avoid printing negative fractions
32555
32556 Signed-off-by: Wolfgang Denk <wd@denx.de>
32557
32558 commit 4a7f6b750d8de543fdf8e58acd86745010054571
32559 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
32560 Date: Fri Oct 17 08:55:51 2008 -0400
32561
32562 mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
32563
32564 This is done to allow other 83XX based platforms which also have UPM
32565 (e.g. 8360) to configure and use their UPM in u-boot.
32566
32567 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
32568 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32569
32570 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
32571 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32572 Date: Tue Oct 14 22:58:53 2008 +0400
32573
32574 mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
32575
32576 With this patch u-boot can fixup the dr_mode and phy_type properties
32577 for the Dual-Role USB controller.
32578
32579 While at it, also remove #ifdefs around includes, they are not needed.
32580
32581 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32582 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32583
32584 commit b3379f3fd13969934c00097c05754e7a8990fd39
32585 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32586 Date: Wed Oct 8 20:52:54 2008 +0400
32587
32588 mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
32589
32590 Though NAND chip is replaceable on the MPC837XE-MDS boards, the
32591 current settings don't work with the default chip on the board.
32592 Nevertheless Freescale's U-Boot sets the option register correctly,
32593 so I just dumped the register from the working u-boot. My guess is
32594 that the old settings were applicable for some pilot boards, not
32595 found in the production.
32596
32597 This patch also enables FSL ELBC driver so that we could access
32598 the NAND storage in the u-boot.
32599
32600 The NAND support costs about 45KB, so the u-boot no longer fits
32601 into two 128KB NOR flash sectors, thus we also have to adjust
32602 environment location: add another 128KB to the monitor length.
32603
32604 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32605
32606 It is due to hardware design and logic defect, that is the
32607 I/O[0:7] of NAND chip is connected to LAD[7:0], so when
32608 the NAND chip connected to nLCS3, you have to set up the
32609 OR3[BCTLD] = '1' for normal operation, otherwise it will have
32610 bus contention due to the pin 48/25 of U60 is enabled.
32611
32612 Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
32613 asserted upon access to the NAND chip, keep the default state.
32614
32615 Acked-by: Dave Liu <daveliu@freescale.com>
32616 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32617
32618 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
32619 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32620 Date: Thu Oct 2 19:17:33 2008 +0400
32621
32622 mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
32623
32624 The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
32625 standalone or acting as a PCI agent. User's Guide says:
32626
32627 - When the CPLD recognizes its location on the PIB it automatically
32628 configures RCW to the PCI Host.
32629 - If the CPLD fails to recognize its location then it is automatically
32630 configured as an Agent and the PCI is configured to an external arbiter.
32631
32632 This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
32633 flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
32634 PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
32635 any arbiter bad things will happen (here the board hangs during any config
32636 space reads).
32637
32638 In this situation we must disable the PCI. And in case of anybody really
32639 want to use an external arbiter, we provide "pci_external_aribter"
32640 environment variable.
32641
32642 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32643 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32644
32645 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
32646 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32647 Date: Thu Oct 2 18:32:25 2008 +0400
32648
32649 mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
32650
32651 This involves configuring the SerDes and fixing up the flags and
32652 PHY addresses for the TSECs.
32653
32654 For Linux we also fix up the device tree.
32655
32656 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32657 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32658
32659 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
32660 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32661 Date: Thu Oct 2 18:31:59 2008 +0400
32662
32663 mpc83xx: add TSECs' HRCWH masks for MPC837x processors
32664
32665 We'll use these masks to parse TSEC modes out of HRCWH.
32666
32667 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32668 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32669
32670 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
32671 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32672 Date: Thu Oct 2 18:31:56 2008 +0400
32673
32674 mpc83xx: serdes: add forgotten shifts for rfcks
32675
32676 The rfcks should be shifted by 28 bits left. We didn't notice the bug
32677 because we were using only 100MHz clocks (for which rfcks == 0).
32678
32679 Though, for SGMII we'll need 125MHz clocks.
32680
32681 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32682 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32683
32684 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
32685 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32686 Date: Thu Oct 2 18:31:53 2008 +0400
32687
32688 mpc83xx: fix serdes setup for the MPC8378E boards
32689
32690 MPC837xE specs says that SerDes1 has:
32691
32692 — Two lanes running x1 SGMII at 1.25 Gbps;
32693 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
32694
32695 And for SerDes2:
32696
32697 — Two lanes running x1 PCI Express at 2.5 Gbps;
32698 — One lane running x2 PCI Express at 2.5 Gbps;
32699 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
32700
32701 The spec also explicitly states that PEX options are not valid for
32702 the SD1.
32703
32704 Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
32705 which is wrong to do.
32706
32707 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32708 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32709
32710 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
32711 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
32712 Date: Wed Sep 10 18:12:37 2008 +0400
32713
32714 mpc83xx: mpc8360emds: rework LBC SDRAM setup
32715
32716 Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
32717 it difficult to use (b/c then the memory is discontinuous and
32718 there is quite big memory hole between the DDR/SDRAM regions).
32719
32720 This patch reworks LBC SDRAM setup so that now we dynamically
32721 place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
32722 DDR memory).
32723
32724 With this patch we're able to:
32725
32726 - Boot without external DDR memory;
32727 - Use most "DDR + SDRAM" setups without need to support for
32728 sparse/discontinuous memory model in the software.
32729
32730 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
32731 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32732
32733 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
32734 Author: Wolfgang Denk <wd@xpert.denx.de>
32735 Date: Tue Oct 21 11:23:56 2008 +0200
32736
32737 FDT: don't use private kernel header files
32738
32739 On some systems (for example Fedora Core 4) U-Boot builds with the
32740 following wanrings only:
32741
32742 ...
32743 In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
32744 from fdt.c:51:
32745 /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
32746
32747 This patch fixes this problem.
32748
32749 Signed-off-by: Wolfgang Denk <wd@denx.de>
32750
32751 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
32752 Author: Stefan Roese <sr@denx.de>
32753 Date: Mon Oct 13 15:15:31 2008 +0200
32754
32755 ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
32756
32757 Signed-off-by: Stefan Roese <sr@denx.de>
32758
32759 commit 43cbce69d48d052574d71f50724be546d90a46a4
32760 Author: Stefan Roese <sr@denx.de>
32761 Date: Mon Oct 13 10:45:14 2008 +0200
32762
32763 ppc4xx: Correctly setup ranges property in ebc node
32764
32765 Previously only the NOR flash mapping was written into the ranges
32766 property of the ebc node. This patch now writes all enabled chip
32767 select areas into the ranges property.
32768
32769 Signed-off-by: Stefan Roese <sr@denx.de>
32770
32771 commit d7b26d58328f137471ea97de382bfa63f7239931
32772 Author: Dirk Eibach <eibach@gdsys.de>
32773 Date: Wed Oct 8 15:37:50 2008 +0200
32774
32775 ppc4xx: Add GDSys neo 405EP board support
32776
32777 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
32778 Signed-off-by: Stefan Roese <sr@denx.de>
32779
32780 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
32781 Author: Niklaus Giger <niklaus.giger@netstal.com>
32782 Date: Wed Oct 1 14:46:13 2008 +0200
32783
32784 ppc4xx: Update configs for Netstal boards
32785
32786 I reorganized my config files, putting the common stuff into netstal-common.h
32787 (got the idea by looking a amcc-common.h from Stefan).
32788
32789 Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
32790
32791 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32792 Signed-off-by: Stefan Roese <sr@denx.de>
32793
32794 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
32795 Author: Adam Graham <agraham@amcc.com>
32796 Date: Wed Oct 8 10:13:19 2008 -0700
32797
32798 ppc4xx: Add routine to retrieve CPU number
32799
32800 Provide a weak defined routine to retrieve the CPU number for
32801 reference boards that have multiple CPU's. Default behavior
32802 is the existing single CPU print output. Reference boards with
32803 multiple CPU's need to provide a board specific routine.
32804 See board/amcc/arches/arches.c for an example.
32805
32806 Signed-off-by: Adam Graham <agraham@amcc.com>
32807 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
32808 Signed-off-by: Stefan Roese <sr@denx.de>
32809
32810 commit 59217bae40e90982ab5400d849c08af683ace036
32811 Author: Adam Graham <agraham@amcc.com>
32812 Date: Wed Oct 8 10:13:14 2008 -0700
32813
32814 ppc4xx: Add static support for 44x IBM SDRAM Controller
32815
32816 This patch add the capability to configure a PPC440 based IBM SDRAM
32817 Controller with static, compiled-in, values. PPC440 memory subsystem
32818 includes a Memory Queue core.
32819
32820 Signed-off-by: Adam Graham <agraham@amcc.com>
32821 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
32822 Signed-off-by: Stefan Roese <sr@denx.de>
32823
32824 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
32825 Author: Adam Graham <agraham@amcc.com>
32826 Date: Wed Oct 8 10:12:53 2008 -0700
32827
32828 ppc4xx: Add AMCC Arches board support (dual 460GT)
32829
32830 The Arches Evaluation board is based on the AMCC 460GT SoC chip.
32831 This board is a dual processor board with each processor providing
32832 independent resources for Rapid IO, Gigabit Ethernet, and serial
32833 communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
32834 FLASH, UART, EEPROM and temperature sensor, along with a shared debug
32835 port. The two 460GT's will communicate with each other via shared
32836 memory, Gigabit Ethernet and x1 PCI-Express.
32837
32838 Signed-off-by: Adam Graham <agraham@amcc.com>
32839 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
32840 Signed-off-by: Stefan Roese <sr@denx.de>
32841
32842 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
32843 Author: Wolfgang Denk <wd@xpert.denx.de>
32844 Date: Sun Oct 19 21:54:30 2008 +0200
32845
32846 TQM8260: environment in flash instead EEPROM, baudrate 115k
32847
32848 Several customers have reported problems with the environment in
32849 EEPROM, including corrupted content after board reset. Probably the
32850 code to prevent I2C Enge Conditions is not working sufficiently.
32851
32852 We move the environment to flash now, which allows to have a backup
32853 copy plus gives much faster boot times.
32854
32855 Also, change the default console initialization to 115200 bps as used
32856 on most other boards.
32857
32858 Signed-off-by: Wolfgang Denk <wd@denx.de>
32859
32860 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
32861 Author: Kumar Gala <galak@kernel.crashing.org>
32862 Date: Sun Oct 19 12:49:19 2008 -0500
32863
32864 85xx: Fix compile warning in mpc8536ds.c
32865
32866 mpc8536ds.c: In function 'is_sata_supported':
32867 mpc8536ds.c:615: warning: unused variable 'devdisr'
32868
32869 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32870
32871 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
32872 Author: Wolfgang Denk <wd@denx.de>
32873 Date: Sun Oct 19 02:35:50 2008 +0200
32874
32875 Cleanup: fix "MHz" spelling
32876
32877 Signed-off-by: Wolfgang Denk <wd@denx.de>
32878
32879 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
32880 Author: Wolfgang Denk <wd@denx.de>
32881 Date: Sun Oct 19 02:35:49 2008 +0200
32882
32883 Use strmhz() to format clock frequencies
32884
32885 Signed-off-by: Wolfgang Denk <wd@denx.de>
32886
32887 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
32888 Author: Wolfgang Denk <wd@denx.de>
32889 Date: Sun Oct 19 02:35:48 2008 +0200
32890
32891 strmhz(): Round numbers when printing clock frequencies
32892
32893 Round clock frequencies for printing.
32894
32895 Many boards printed off clock frequencies like 399 MHz instead of the
32896 exact 400 MHz because numberes were not rounded. This is fixed now.
32897
32898 Signed-off-by: Wolfgang Denk <wd@denx.de>
32899
32900 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
32901 Author: Timur Tabi <timur@freescale.com>
32902 Date: Mon Oct 20 15:16:47 2008 -0500
32903
32904 85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
32905
32906 Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
32907 to add a comment that the correct value disagrees with the 8544 reference
32908 manual. The changelog for that commit is also wrong, as it says "bit 28"
32909 when it should be "bit 24".
32910
32911 Signed-off-by: Timur Tabi <timur@freescale.com>
32912
32913 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
32914 Author: Heiko Schocher <hs@denx.de>
32915 Date: Fri Oct 17 18:24:06 2008 +0200
32916
32917 mgcoge: add redundant environment sector
32918
32919 Signed-off-by: Heiko Schocher <hs@denx.de>
32920
32921 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
32922 Author: Heiko Schocher <hs@denx.de>
32923 Date: Fri Oct 17 18:23:27 2008 +0200
32924
32925 mgsuvd: update size of environment
32926
32927 Signed-off-by: Heiko Schocher <hs@denx.de>
32928
32929 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
32930 Author: Jason Jin <Jason.jin@freescale.com>
32931 Date: Fri Oct 10 11:41:00 2008 +0800
32932
32933 Enabled the Freescale SGMII riser card on 8536DS
32934
32935 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
32936
32937 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
32938 Author: Liu Yu <yu.liu@freescale.com>
32939 Date: Fri Oct 10 11:40:59 2008 +0800
32940
32941 Enabled the Freescale SGMII riser card on 8572DS
32942
32943 This patch based on Andy's work.
32944 Including command 'pixis_set_sgmii' support.
32945
32946 Signed-off-by: Liu Yu <yu.liu@freescale.com>
32947
32948 commit bff188baf9427c35745356439435acf3864d4c65
32949 Author: Liu Yu <yu.liu@freescale.com>
32950 Date: Fri Oct 10 11:40:58 2008 +0800
32951
32952 Make pixis_set_sgmii more general to support MPC85xx boards.
32953
32954 The pixis sgmii command depend on the FPGA support on the board, some 85xx
32955 boards support SGMII riser card but did not support this command, define
32956 CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
32957
32958 Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
32959 are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
32960 PIXIS_VCFGEN1_MASK in header file for both boards.
32961
32962 Signed-off-by: Liu Yu <yu.liu@freescale.com>
32963
32964 commit 5e981d683d2363204c76773941c2e9c2044c808f
32965 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32966 Date: Wed Oct 8 23:38:02 2008 -0500
32967
32968 Add cpu/8xxx to TAGS_SUBDIRS
32969
32970 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32971
32972 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
32973 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32974 Date: Thu Oct 9 01:25:55 2008 -0500
32975
32976 fsl_law clear enable before changing.
32977
32978 Debug sessions may have left enabled laws.
32979 Changing lawbar with an unkown enabled tgtid could cause problems.
32980
32981 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32982
32983 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
32984 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32985 Date: Thu Oct 9 00:29:27 2008 -0500
32986
32987 mpc8572 additional end-point mode
32988
32989 mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
32990 Include host_agent == 0 decode for end-point determination.
32991
32992 This is not needed for the ds reference board since pcie3 will be a host
32993 in order to connect to the uli chip. Include it here as a reference for
32994 other mpc8572 boards.
32995
32996 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32997
32998 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
32999 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33000 Date: Wed Oct 8 23:37:59 2008 -0500
33001
33002 85xx if NUM_CPUS>1, print cpu number
33003
33004 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33005
33006 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
33007 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33008 Date: Wed Oct 8 23:38:01 2008 -0500
33009
33010 pixis do not print long help if not configured
33011
33012 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33013
33014 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
33015 Author: Andy Fleming <afleming@freescale.com>
33016 Date: Tue Oct 7 08:09:50 2008 -0500
33017
33018 Have u-boot pass stashing parameters into device tree
33019
33020 Some cores don't support ethernet stashing at all, and some
33021 instances have errata. Adds 3 properties to gianfar nodes
33022 which support stashing. For now, just add this support to
33023 85xx SoCs.
33024
33025 Signed-off-by: Andy Fleming <afleming@freescale.com>
33026
33027 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
33028 Author: Haiying Wang <Haiying.Wang@freescale.com>
33029 Date: Fri Oct 3 12:37:57 2008 -0400
33030
33031 Add DDR options setting on MPC8641HPCN board
33032
33033 * Add board specific parameter table to choose correct cpo, clk_adjust,
33034 write_data_delay based on board ddr frequency and n_ranks.
33035
33036 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
33037
33038 Signed-off-by: James Yang <James.Yang@freescale.com>
33039 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33040
33041 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
33042 Author: Haiying Wang <Haiying.Wang@freescale.com>
33043 Date: Fri Oct 3 12:37:41 2008 -0400
33044
33045 Add ddr interleaving suppport for MPC8572DS board
33046
33047 * Add board specific parameter table to choose correct cpo, clk_adjust,
33048 write_data_delay, 2T based on board ddr frequency and n_ranks.
33049
33050 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
33051
33052 * Set memory controller interleaving mode to bank interleaving, and disable
33053 bank(chip select) interleaving mode by default, because the default on-board
33054 DDR DIMMs are 2x512MB single-rank.
33055
33056 * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
33057
33058 Signed-off-by: James Yang <James.Yang@freescale.com>
33059 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33060
33061 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
33062 Author: Haiying Wang <Haiying.Wang@freescale.com>
33063 Date: Fri Oct 3 12:37:26 2008 -0400
33064
33065 Add debug information for DDR controller registers
33066
33067 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33068
33069 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
33070 Author: Haiying Wang <Haiying.Wang@freescale.com>
33071 Date: Fri Oct 3 12:37:10 2008 -0400
33072
33073 Check DDR interleaving mode
33074
33075 * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
33076 ba_intlv_ctl.
33077 * Print DDR interleaving mode information
33078 * Add doc/README.fsl-ddr to describe the interleaving setting
33079
33080 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33081
33082 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
33083 Author: Haiying Wang <Haiying.Wang@freescale.com>
33084 Date: Fri Oct 3 12:36:55 2008 -0400
33085
33086 Pass dimm parameters to populate populate controller options
33087
33088 Because some dimm parameters like n_ranks needs to be used with the board
33089 frequency to choose the board parameters like clk_adjust etc. in the
33090 board_specific_paramesters table of the board ddr file, we need to pass
33091 the dimm parameters to the board file.
33092
33093 * move ddr dimm parameters header file from /cpu to /include directory.
33094 * add ddr dimm parameters to populate board specific options.
33095 * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
33096
33097 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33098
33099 commit dbbbb3abeff325855cae76e33d69d5665631443f
33100 Author: Haiying Wang <Haiying.Wang@freescale.com>
33101 Date: Fri Oct 3 12:36:39 2008 -0400
33102
33103 Make DDR interleaving mode work correctly
33104
33105 Fix some bugs:
33106 1. Correctly set intlv_ctl in cs_config.
33107 2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
33108 3. Set base_address and total memory for each ddr controller in memory
33109 controller interleaving mode.
33110
33111 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33112
33113 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
33114 Author: Kumar Gala <galak@kernel.crashing.org>
33115 Date: Mon Sep 22 23:40:42 2008 -0500
33116
33117 85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
33118
33119 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33120
33121 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
33122 Author: Kumar Gala <galak@kernel.crashing.org>
33123 Date: Mon Sep 22 14:11:11 2008 -0500
33124
33125 85xx: Improve flash remapping on MPC8572DS & MPC8536DS
33126
33127 Changing the flash from cacheable to cache-inhibited was taking a significant
33128 amount of time due to the fact that we were iterating over the full 256M of
33129 flash. Instead we can just flush the L1 d-cache and invalidate the i-cache.
33130
33131 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33132
33133 commit 54e091d3b603a3332c619199ca83a07e95960da4
33134 Author: Kumar Gala <galak@kernel.crashing.org>
33135 Date: Mon Sep 22 14:11:10 2008 -0500
33136
33137 85xx: Export invalidate_{i,d}cache and add flush_dcache
33138
33139 Added the ability for C code to invalidate the i/d-cache's and
33140 to flush the d-cache. This allows us to more efficient change mappings
33141 from cache-able to cache-inhibited.
33142
33143 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33144
33145 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
33146 Author: Heiko Schocher <hs@denx.de>
33147 Date: Fri Oct 17 16:11:52 2008 +0200
33148
33149 mgcoge, mgsuvd: extract more common code
33150
33151 in ft_blob_update () for both boards was an unneccessary
33152 repetition of code, which this patch moves in a common
33153 function for this boards.
33154
33155 Signed-off-by: Heiko Schocher <hs@denx.de>
33156
33157 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
33158 Author: Heiko Schocher <hs@denx.de>
33159 Date: Fri Oct 17 12:15:55 2008 +0200
33160
33161 mgcoge, mgsuvd: use in_*/out_* accesors
33162
33163 Signed-off-by: Heiko Schocher <hs@denx.de>
33164
33165 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
33166 Author: Heiko Schocher <hs@denx.de>
33167 Date: Fri Oct 17 13:52:51 2008 +0200
33168
33169 mgsuvd: fix compiler warning when using soft_i2c driver
33170
33171 Signed-off-by: Heiko Schocher <hs@denx.de>
33172
33173 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
33174 Author: Heiko Schocher <hs@denx.de>
33175 Date: Fri Oct 17 12:15:05 2008 +0200
33176
33177 mgsuvd: fix coding style
33178
33179 Signed-off-by: Heiko Schocher <hs@denx.de>
33180
33181 commit 5f4c3137f4f051787707c548133823f1656eb508
33182 Author: Heiko Schocher <hs@denx.de>
33183 Date: Fri Oct 17 12:13:30 2008 +0200
33184
33185 mgcoge: Second Flash on CS5 not on CS1
33186
33187 Signed-off-by: Heiko Schocher <hs@denx.de>
33188
33189 commit 76da19df5b8e186d269f29190696bd31fb6c836b
33190 Author: Kumar Gala <galak@kernel.crashing.org>
33191 Date: Thu Oct 16 21:52:08 2008 -0500
33192
33193 Added arch_lmb_reserve to allow arch specific memory regions protection
33194
33195 Each architecture has different ways of determine what regions of memory
33196 might not be valid to get overwritten when we boot. This provides a
33197 hook to allow them to reserve any regions they care about. Currently
33198 only ppc, m68k and sparc need/use this.
33199
33200 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33201
33202 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
33203 Author: Heiko Schocher <hs@denx.de>
33204 Date: Thu Oct 16 16:32:35 2008 +0200
33205
33206 mgcoge: added CONFIG_FIT to support the new u-boot image format
33207
33208 Signed-off-by: Heiko Schocher <hs@denx.de>
33209
33210 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
33211 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33212 Date: Thu Oct 16 15:01:15 2008 +0200
33213
33214 rename CFG_ macros to CONFIG_SYS
33215
33216 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33217
33218 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
33219 Author: Kumar Gala <galak@kernel.crashing.org>
33220 Date: Mon Oct 13 14:12:55 2008 -0500
33221
33222 74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
33223
33224 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33225
33226 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
33227 Author: Kumar Gala <galak@kernel.crashing.org>
33228 Date: Tue Sep 23 10:05:02 2008 -0500
33229
33230 Expose command table search for sub-commands
33231
33232 Sub-command can benefit from using the same table and search functions
33233 that top level commands have. Expose this functionality by refactoring
33234 find_cmd() and introducing find_cmd_tbl() that sub-command processing
33235 can call.
33236
33237 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33238
33239 commit f7e51b27508446f8cae3927975817137979ad5e8
33240 Author: Heiko Schocher <hs@denx.de>
33241 Date: Wed Oct 15 09:41:33 2008 +0200
33242
33243 mgsuvd, mgcoge: added BOOTCOUNT feature.
33244
33245 Signed-off-by: Heiko Schocher <hs@denx.de>
33246
33247 commit 8f64da7f83b553889bc08400c97047998382e9d2
33248 Author: Heiko Schocher <hs@denx.de>
33249 Date: Wed Oct 15 09:41:00 2008 +0200
33250
33251 mgcoge, mgsuvd: added support for the IVM EEprom.
33252
33253 The EEprom contains some Manufacturerinformation,
33254 which are read from u-boot at boot time, and saved
33255 in same hush shell variables.
33256
33257 Signed-off-by: Heiko Schocher <hs@denx.de>
33258
33259 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
33260 Author: Heiko Schocher <hs@denx.de>
33261 Date: Wed Oct 15 09:40:28 2008 +0200
33262
33263 hush: add showvar command for hush shell.
33264
33265 This new command shows the local variables defined in
33266 the hush shell:
33267
33268 => help showvar
33269 showvar
33270 - print values of all hushshell variables
33271 showvar name ...
33272 - print value of hushshell variable 'name'
33273
33274 Also make the set_local_var() and unset_local_var ()
33275 no longer static, so it is possible to define local
33276 hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
33277 is defined, u-boot calls hush_init_var (), where
33278 boardspecific code can define local hush shell
33279 variables at boottime.
33280
33281 Signed-off-by: Heiko Schocher <hs@denx.de>
33282
33283 commit 67b23a322848d828a5e45c0567b72762bfde7abf
33284 Author: Heiko Schocher <hs@denx.de>
33285 Date: Wed Oct 15 09:39:47 2008 +0200
33286
33287 I2C: adding new "i2c bus" Command to the I2C Subsystem.
33288
33289 With this Command it is possible to add new I2C Busses,
33290 which are behind 1 .. n I2C Muxes. Details see README.
33291
33292 Signed-off-by: Heiko Schocher <hs@denx.de>
33293
33294 commit c24853644ddd2dd2e4246b5854a93e6254a14092
33295 Author: Heiko Schocher <hs@denx.de>
33296 Date: Wed Oct 15 09:39:08 2008 +0200
33297
33298 mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
33299
33300 As documented in doc/I2C_Edge_Conditions, adding a
33301 board specific deblocking mechanism via CFG_I2C_INIT_BOARD
33302 for the mgcoge and mgsuvd board.
33303
33304 This code was originally written by Keymile in association
33305 with Anatech and Atmel in 1998. The Code toggels the SCL
33306 until the SCA line goes to HIGH (max. 16 times).
33307 And after this, a start condition is sent.
33308
33309 This is another approach to deblock the I2C Bus. The
33310 soft I2C driver actually sends 9 clocks with SDA High,
33311 and then a stop at the end, to deblock the I2C Bus.
33312
33313 Maybe we should use the approach from Keymile as
33314 the new standard?
33315
33316 Signed-off-by: Heiko Schocher <hs@denx.de>
33317
33318 commit 4ca107effebfbabac1057c39632105dacef95957
33319 Author: Heiko Schocher <hs@denx.de>
33320 Date: Wed Oct 15 09:38:38 2008 +0200
33321
33322 soft_i2c: Add CFG_I2C_INIT_BOARD option
33323
33324 This patch adds the option for a boardspecific
33325 I2C deblocking mechanism for the soft i2c driver.
33326
33327 Signed-off-by: Heiko Schocher <hs@denx.de>
33328
33329 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
33330 Author: Heiko Schocher <hs@denx.de>
33331 Date: Wed Oct 15 09:38:07 2008 +0200
33332
33333 mgcoge, mgsuvd: add DTT (LM75) support.
33334
33335 Signed-off-by: Heiko Schocher <hs@denx.de>
33336
33337 commit 8e442df438ab677057571e3ac01846bff7719bce
33338 Author: Heiko Schocher <hs@denx.de>
33339 Date: Wed Oct 15 09:37:34 2008 +0200
33340
33341 lm75: Make the LM75 MULTI_BUS compatible.
33342
33343 Signed-off-by: Heiko Schocher <hs@denx.de>
33344
33345 commit 12f1678127c1df2b2878ba93c88948bedc060775
33346 Author: Heiko Schocher <hs@denx.de>
33347 Date: Wed Oct 15 09:37:04 2008 +0200
33348
33349 lm75: fix Codingstyle issues.
33350
33351 Signed-off-by: Heiko Schocher <hs@denx.de>
33352
33353 commit f2202450c75ba6934b356024101500ddcde6e2a6
33354 Author: Heiko Schocher <hs@denx.de>
33355 Date: Wed Oct 15 09:36:33 2008 +0200
33356
33357 mgcoge, mgsuvd: added EEprom support.
33358
33359 Signed-off-by: Heiko Schocher <hs@denx.de>
33360
33361 commit 9661bf9d120f760238b2a073b84f2baf05010057
33362 Author: Heiko Schocher <hs@denx.de>
33363 Date: Wed Oct 15 09:36:03 2008 +0200
33364
33365 mgcoge, mgsuvd: add I2C support.
33366
33367 Signed-off-by: Heiko Schocher <hs@denx.de>
33368
33369 commit 98aed379586a155292efbf3209356836584b601c
33370 Author: Heiko Schocher <hs@denx.de>
33371 Date: Wed Oct 15 09:35:26 2008 +0200
33372
33373 soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
33374
33375 This patch fixes the following warnings, when using
33376 the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
33377 systems:
33378
33379 soft_i2c.c: In function 'send_reset':
33380 soft_i2c.c:93: warning: unused variable 'immr'
33381 soft_i2c.c: In function 'send_start':
33382 soft_i2c.c:124: warning: unused variable 'immr'
33383 soft_i2c.c: In function 'send_stop':
33384 soft_i2c.c:146: warning: unused variable 'immr'
33385 soft_i2c.c: In function 'send_ack':
33386 soft_i2c.c:171: warning: unused variable 'immr'
33387 soft_i2c.c: In function 'write_byte':
33388 soft_i2c.c:196: warning: unused variable 'immr'
33389 soft_i2c.c: In function 'read_byte':
33390 soft_i2c.c:244: warning: unused variable 'immr'
33391
33392 Signed-off-by: Heiko Schocher <hs@denx.de>
33393
33394 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
33395 Author: Heiko Schocher <hs@denx.de>
33396 Date: Wed Oct 15 09:34:45 2008 +0200
33397
33398 i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
33399
33400 Signed-off-by: Heiko Schocher <hs@denx.de>
33401
33402 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
33403 Author: Heiko Schocher <hs@denx.de>
33404 Date: Wed Oct 15 09:34:05 2008 +0200
33405
33406 mgcoge: fix Coding Style issues.
33407
33408 Signed-off-by: Heiko Schocher <hs@denx.de>
33409
33410 commit e43a27c49712203fe8848a17714330623edfb2eb
33411 Author: Heiko Schocher <hs@denx.de>
33412 Date: Wed Oct 15 09:33:30 2008 +0200
33413
33414 I2C: add new command i2c reset.
33415
33416 If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
33417 it is not possible to get out of this, until the
33418 complete Hardware gets a reset. This new commando
33419 calls again i2c_init (and that calls i2c_init_board
33420 if defined), which will deblock the I2C Bus.
33421
33422 Signed-off-by: Heiko Schocher <hs@denx.de>
33423 Signed-off-by: Wolfgang Denk <wd@denx.de>
33424
33425 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
33426 Author: Heiko Schocher <hs@denx.de>
33427 Date: Wed Oct 15 09:32:25 2008 +0200
33428
33429 mgsuvd, mgcoge: move this 2 boards in one dir.
33430
33431 There are some more extensions, which are for both boards
33432 and some more boards from this manufacturer will follow soon.
33433
33434 Signed-off-by: Heiko Schocher <hs@denx.de>
33435 Signed-off-by: Wolfgang Denk <wd@denx.de>
33436
33437 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
33438 Author: Dirk Eibach <eibach@gdsys.de>
33439 Date: Wed Oct 8 13:44:27 2008 +0200
33440
33441 hwmon: Add LM63 support
33442
33443 This patch adds support for the National LM63 temperature
33444 sensor with integrated fan control. It's used on the GDSys
33445 Neo board (405EP) which will be submitted later.
33446
33447 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
33448 Acked-by: Stefan Roese <sr@denx.de>
33449
33450 commit 7ba890bf2f2b92831420243c058951aa831119fd
33451 Author: Kyungmin Park <kmpark@infradead.org>
33452 Date: Wed Oct 8 11:01:17 2008 +0900
33453
33454 Add Red Black Tree support
33455
33456 Now it's used at UBI module. Of course other modules can use it.
33457 If you want to use it, please define CONFIG_RBTREE
33458
33459 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33460
33461 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
33462 Author: richardretanubun <richardretanubun@ruggedcom.com>
33463 Date: Mon Oct 6 16:10:53 2008 -0400
33464
33465 CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
33466
33467 Added support for CONFIG_EFI_PARTITION to ext2 commands.
33468 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
33469
33470 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
33471 Author: richardretanubun <richardretanubun@ruggedcom.com>
33472 Date: Fri Sep 26 11:13:22 2008 -0400
33473
33474 Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
33475
33476 The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
33477 of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
33478
33479 Based on linux/fs/partitions/efi.[ch]
33480
33481 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
33482
33483 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
33484 Author: Bartlomiej Sieka <tur@semihalf.com>
33485 Date: Wed Oct 1 15:26:32 2008 +0200
33486
33487 FIT: output image load address for type 'firmware', fix message while there
33488
33489 Now that the auto-update feature uses the 'firmware' type for updates, it is
33490 useful to inspect the load address of such images.
33491
33492 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33493
33494 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
33495 Author: Bartlomiej Sieka <tur@semihalf.com>
33496 Date: Wed Oct 1 15:26:31 2008 +0200
33497
33498 Automatic software update from TFTP server
33499
33500 The auto-update feature allows to automatically download software updates
33501 from a TFTP server and store them in Flash memory during boot. Updates are
33502 contained in a FIT file and protected with SHA-1 checksum.
33503
33504 More detailed description can be found in doc/README.update.
33505
33506 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33507 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33508
33509 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
33510 Author: Bartlomiej Sieka <tur@semihalf.com>
33511 Date: Wed Oct 1 15:26:27 2008 +0200
33512
33513 flash: factor out adjusting of Flash address to the end of sector
33514
33515 The upcoming automatic update feature needs the ability to adjust an
33516 address within Flash to the end of its respective sector. Factor out
33517 this functionality to a new function flash_sect_roundb().
33518
33519 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33520 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33521 Signed-off-by: Stefan Roese <sr@denx.de>
33522
33523 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
33524 Author: Bartlomiej Sieka <tur@semihalf.com>
33525 Date: Wed Oct 1 15:26:29 2008 +0200
33526
33527 net: Make TFTP server timeout configurable
33528
33529 There are two aspects of a TFTP transfer involving timeouts:
33530 1. timeout waiting for initial server reply after sending RRQ
33531 2. timeouts while transferring actual data from the server
33532
33533 Since the upcoming auto-update feature attempts a TFTP download during each
33534 boot, it is undesirable to have a long delay when the TFTP server is not
33535 available. Thus, this commit makes the server timeout (1.) configurable by two
33536 global variables:
33537
33538 TftpRRQTimeoutMSecs
33539 TftpRRQTimeoutCountMax
33540
33541 TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
33542 server, TftpRRQTimeoutCountMax overrides default number of connection retries.
33543 The total delay when trying to download a file from a non-existing TFTP server
33544 is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
33545
33546 Timeouts during file transfers (2.) are unaffected.
33547
33548 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33549 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33550 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33551
33552 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
33553 Author: Bartlomiej Sieka <tur@semihalf.com>
33554 Date: Wed Oct 1 15:26:28 2008 +0200
33555
33556 net: express the first argument to NetSetTimeout() in milliseconds
33557
33558 Enforce millisecond semantics of the first argument to NetSetTimeout() --
33559 the change is transparent for well-behaving boards (CFG_HZ == 1000 and
33560 get_timer() countiing in milliseconds).
33561
33562 Rationale for this patch is to enable millisecond granularity for
33563 network-related timeouts, which is needed for the upcoming automatic
33564 software update feature.
33565
33566 Summary of changes:
33567 - do not scale the first argument to NetSetTimeout() by CFG_HZ
33568 - change timeout values used in the networking code to milliseconds
33569
33570 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
33571 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33572 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33573
33574 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
33575 Author: richardretanubun <richardretanubun@ruggedcom.com>
33576 Date: Mon Sep 29 18:28:23 2008 -0400
33577
33578 Adds two more ethernet interface to 83xx
33579
33580 Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
33581 Six eth interface is chosen because the platform I am using combines
33582 UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
33583
33584 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
33585 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33586
33587 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
33588 Author: Haiying Wang <Haiying.Wang@freescale.com>
33589 Date: Wed Sep 24 11:42:12 2008 -0500
33590
33591 Change UEC PHY interface to RGMII on MPC8568MDS
33592
33593 Change UEC phy interface from GMII to RGMII on MPC8568MDS board
33594
33595 Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
33596 but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
33597
33598 Now both UEC1 and UEC2 can work properly under u-boot.
33599
33600 It is also in consistent with the kernel setting for 8568 UEC phy interface.
33601
33602 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
33603 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
33604
33605 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
33606 Author: Wolfgang Denk <wd@denx.de>
33607 Date: Sat Oct 18 21:30:31 2008 +0200
33608
33609 Prepare v2008.10 release: update CHANGELOG & Makefile
33610
33611 Signed-off-by: Wolfgang Denk <wd@denx.de>
33612
33613 commit f7a35a60cf45491871a5c28e9ad24db005487857
33614 Author: Heiko Schocher <hs@denx.de>
33615 Date: Fri Oct 17 18:24:06 2008 +0200
33616
33617 mgcoge: add redundant environment sector
33618
33619 Signed-off-by: Heiko Schocher <hs@denx.de>
33620 Signed-off-by: Wolfgang Denk <wd@denx.de>
33621
33622 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
33623 Author: Heiko Schocher <hs@denx.de>
33624 Date: Fri Oct 17 18:23:27 2008 +0200
33625
33626 mgsuvd: update size of environment
33627
33628 Signed-off-by: Heiko Schocher <hs@denx.de>
33629
33630 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
33631 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
33632 Date: Thu Oct 16 13:38:00 2008 -0500
33633
33634 83xx NAND boot: wait for LTESR[CC]
33635
33636 At least some revisions of the 8313, and possibly other chips, do not
33637 wait for all pages of the initial 4K NAND region to be loaded before
33638 beginning execution; thus, we wait for it before branching out of the
33639 first NAND page.
33640
33641 This fixes warm reset problems when booting from NAND on 8313erdb.
33642
33643 Signed-off-by: Scott Wood <scottwood@freescale.com>
33644 Acked-by: Kim Phillips <kim.phillips@freescale.com>
33645
33646 commit bf29e0ea0af03d593c64614136acc723a7a022a2
33647 Author: Yuri Tikhonov <yur@emcraft.com>
33648 Date: Fri Oct 17 12:54:18 2008 +0200
33649
33650 ppc4xx: PPC44x MQ initialization
33651
33652 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
33653 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
33654 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
33655
33656 Previously the appropriate initialization had been made in Linux, by the
33657 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
33658 registers after normal operation has begun is not supported and could
33659 have unpredictable results.
33660
33661 Comment from Stefan: This patch doesn't change the resulting value of the
33662 MQ registers. It explicitly sets/clears all bits to the desired state which
33663 better documents the resulting register value instead of relying on pre-set
33664 default values.
33665
33666 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
33667 Signed-off-by: Stefan Roese <sr@denx.de>
33668
33669 commit ec081c2c190148b374e86a795fb6b1c49caeb549
33670 Author: Stefan Roese <sr@denx.de>
33671 Date: Fri Oct 17 12:51:46 2008 +0200
33672
33673 ppc4xx: PPC44x MQ initialization
33674
33675 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
33676 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
33677 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
33678
33679 Previously the appropriate initialization had been made in Linux, by the
33680 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
33681 registers after normal operation has begun is not supported and could
33682 have unpredictable results.
33683
33684 Comment from Stefan: This patch doesn't change the resulting value of the
33685 MQ registers. It explicitly sets/clears all bits to the desired state which
33686 better documents the resulting register value instead of relying on pre-set
33687 default values.
33688
33689 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
33690 Signed-off-by: Stefan Roese <sr@denx.de>
33691
33692 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
33693 Author: Kumar Gala <galak@kernel.crashing.org>
33694 Date: Thu Oct 16 21:58:50 2008 -0500
33695
33696 85xx: Using proper I2C source clock divider for MPC8544
33697
33698 The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
33699 bit 26, instead it should be bit 28. This caused in incorrect
33700 interpretation of the i2c_clk which is the same as the SEC clk on
33701 MPC8544. The SEC clk is controlled by cfg_sec_freq that is reported
33702 in PORDEVSR2.
33703
33704 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33705
33706 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
33707 Author: Kumar Gala <galak@kernel.crashing.org>
33708 Date: Thu Oct 16 21:58:49 2008 -0500
33709
33710 Revert "85xx: Using proper I2C source clock divider for MPC8544"
33711
33712 This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
33713
33714 The fix introduced by this patch is not correct. The problem is
33715 that the documentation is not correct for the MPC8544 with regards
33716 to which bit in PORDEVSR2 is for the SEC_CFG.
33717
33718 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33719
33720 commit 2179c4766bffeece98e5e92040629a96c97e230c
33721 Author: Kumar Gala <galak@kernel.crashing.org>
33722 Date: Wed Oct 15 10:19:41 2008 -0500
33723
33724 85xx: Fix compile warning
33725
33726 mpc8536ds.c: In function 'is_sata_supported':
33727 mpc8536ds.c:614: warning: unused variable 'devdisr'
33728
33729 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33730
33731 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
33732 Author: Jason Jin <Jason.jin@freescale.com>
33733 Date: Wed Oct 15 10:40:24 2008 +0800
33734
33735 Fix the function conflict in x86emu when DEBUG is on
33736
33737 The function parse_line() in common/main.c was exposed globally by commit
33738 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
33739 name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
33740 This patch fix this by renaming the function in the debug.c file.
33741
33742 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33743
33744 commit b4dbacf69a669a17487054552fc2761149dd6767
33745 Author: Wolfgang Denk <wd@denx.de>
33746 Date: Wed Oct 15 15:50:45 2008 +0200
33747
33748 Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
33749
33750 Signed-off-by: Wolfgang Denk <wd@denx.de>
33751
33752 commit 374b9038293d01d8744a46af9b7854a6fd99b228
33753 Author: Heiko Schocher <hs@denx.de>
33754 Date: Wed Oct 15 09:51:19 2008 +0200
33755
33756 Fix compiler warning in lib_ppc/board.c
33757
33758 Fix compiler warning introduced by commit 0f8cbc18
33759
33760 Signed-off-by: Heiko Schocher <hs@denx.de>
33761 Signed-off-by: Wolfgang Denk <wd@denx.de>
33762
33763 commit 9724555755a6f1066636481b41f7094e0ce93a69
33764 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
33765 Date: Thu Oct 9 10:29:14 2008 +0530
33766
33767 mpc83xx: wait till UPM completes the write to array
33768
33769 Reference manual states that MxMR[MAD] increment is the indication
33770 of write to UPM array is complete. Honour that. Also, make the dummy
33771 write explicit.
33772
33773 also fix the comment.
33774
33775 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
33776 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33777
33778 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
33779 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
33780 Date: Wed Oct 8 18:12:20 2008 -0500
33781
33782 Remove unwanted ';' at end of define.
33783
33784 Currently this is not creating any problem. But it will result
33785 in compilation error when used as below.
33786
33787 printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
33788
33789 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
33790
33791 continuation of the theme based on git grep "^#define CFG_.*;$" include/
33792
33793 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33794
33795 commit b2934a56650e9a6c54432f9ce6dc36757967385e
33796 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33797 Date: Mon Oct 6 10:53:59 2008 -0400
33798
33799 ARM DaVinci: Add maintainer information for SFFSDR board.
33800
33801 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
33802
33803 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
33804 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33805 Date: Sat Oct 4 19:26:16 2008 +0200
33806
33807 api: fix type mismatch
33808
33809 This patch fixes a type mismatch and thus removes a compiler
33810 warning when compiling with CONFIG_API on powerpc.
33811
33812 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33813
33814 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
33815 Author: Peter Tyser <ptyser@xes-inc.com>
33816 Date: Wed Oct 1 12:25:04 2008 -0500
33817
33818 cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
33819
33820 Original code displayed:
33821 => help i2c
33822 i2c i2c speed [speed] - show or set I2C bus speed
33823 i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
33824 ...
33825
33826 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
33827
33828 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
33829 Author: Wolfgang Denk <wd@denx.de>
33830 Date: Tue Oct 14 22:13:41 2008 +0200
33831
33832 Update CHANGELOG
33833
33834 Signed-off-by: Wolfgang Denk <wd@denx.de>
33835
33836 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
33837 Author: Jason Jin <Jason.jin@freescale.com>
33838 Date: Fri Oct 10 11:41:01 2008 +0800
33839
33840 Do not init SATA when disabled on 8536DS.
33841
33842 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
33843 driver still try to access the SATA registers, the cpu will hangup.
33844 This patch try to fix this by reading the serdes status before the SATA
33845 initialize.
33846
33847 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33848 Acked-by: Andy Fleming <afleming@freescale.com>
33849
33850 commit 9dbc366744960013965fce8851035b6141f3b3ae
33851 Author: Remy Bohmer <linux@bohmer.net>
33852 Date: Fri Oct 10 10:23:22 2008 +0200
33853
33854 The PIPE_INTERRUPT flag is used wrong
33855
33856 At a lot of places in the code the PIPE_INTERRUPT flags and friends
33857 are used wrong. The wrong bits are compared to this flag resulting
33858 in wrong conditions. Also there are macros that should be used for
33859 PIPE_* flags.
33860 This patch tries to fix them all, however, I was not able to test the
33861 changes, because I do not have any of these boards.
33862
33863 Review required!
33864
33865 Signed-off-by: Remy Bohmer <linux@bohmer.net>
33866 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33867
33868 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
33869 Author: Remy Bohmer <linux@bohmer.net>
33870 Date: Fri Oct 10 10:23:21 2008 +0200
33871
33872 fix USB initialisation procedure
33873
33874 The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
33875 At some places directly 8,16,32,64 was used instead of the encoded
33876 value. Made a enum for the options to make this more clear and to help
33877 preventing similar errors in the future.
33878
33879 After fixing this bug it became clear that another bug existed where
33880 the 'pipe' is and-ed with PIPE_* flags, where it should have been
33881 'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
33882
33883 Also removed the triple 'get_device_descriptor' sequence, it has no use,
33884 and Windows nor Linux behaves that way.
33885 There is also a poll going on with a timeout when usb_control_msg() fails.
33886 However, the poll is useless, because the flag will never be set on a error,
33887 because there is no code that runs in a parallel that can set this flag.
33888 Changed this to something more logical.
33889
33890 Tested on AT91SAM9261ek and compared the flow on the USB bus to what
33891 Linux is doing. There is no difference anymore in the early initialisation
33892 sequence.
33893
33894 Signed-off-by: Remy Bohmer <linux@bohmer.net>
33895 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33896
33897 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
33898 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
33899 Date: Fri Oct 3 00:03:55 2008 +0400
33900
33901 fsl_diu: fix alignment error that caused malloc corruption
33902
33903 When aligning malloc()ed screen_base, invalid offset was added.
33904 This not only caused misaligned result (which did not cause hardware
33905 misbehaviour), but - worse - caused screen_base + smem_len to
33906 be out of malloc()ed space, which in turn caused breakage of
33907 futher malloc()/free() operation.
33908
33909 This patch fixes screen_base alignment.
33910
33911 Also this patch makes memset() that cleans framebuffer to be executed
33912 on first initialization of diu, not only on re-initialization. It looks
33913 correct to clean the framebuffer instead of displaying random garbage;
33914 I believe that was disabled only because that memset caused breakage
33915 of malloc/free described above - which no longer happens with the fix
33916 described above.
33917
33918 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
33919
33920 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
33921 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33922 Date: Wed Sep 24 10:29:37 2008 +0200
33923
33924 api: Fix building with CONFIG_API
33925
33926 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
33927
33928 USB_MAX_STOR_DEV is defined in include/usb.h, but
33929 needed in api/api_storage.c.
33930
33931 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33932
33933 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
33934 Author: Peter Tyser <ptyser@xes-inc.com>
33935 Date: Tue Sep 23 12:39:40 2008 -0500
33936
33937 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
33938
33939 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
33940
33941 commit 81e612014c40c922ec35488d17c504d4e9286f06
33942 Author: Peter Tyser <ptyser@xes-inc.com>
33943 Date: Tue Sep 23 12:38:42 2008 -0500
33944
33945 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
33946
33947 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
33948 CFG_EEPROM_PAGE_WRITE_BITS in various temperature
33949 sensor drivers are not necessary
33950
33951 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
33952
33953 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
33954 Author: Mike Frysinger <vapier@gentoo.org>
33955 Date: Tue Oct 14 07:04:38 2008 -0400
33956
33957 cmd_spi: remove broken signed casting for display
33958
33959 Since we're working with unsigned data, you can't apply a signed pointer
33960 cast and then attempt to print the result. Otherwise you get wrong output
33961 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
33962
33963 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33964
33965 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
33966 Author: Mike Frysinger <vapier@gentoo.org>
33967 Date: Tue Oct 14 07:05:24 2008 -0400
33968
33969 strings cmd: drop old CONFIG_CFG_STRINGS define
33970
33971 We don't need CONFIG_CFG_STRINGS anymore now that we have the define
33972 CONFIG_CMD_STRINGS and Makefile control.
33973
33974 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
33975
33976 commit fecb5ade3b37f62981f2b05b621005850173aaa9
33977 Author: Jason Jin <Jason.jin@freescale.com>
33978 Date: Fri Sep 19 17:32:49 2008 +0800
33979
33980 Fix the NAND size overflow issue.
33981
33982 When the total size of all NAND devices exceeds 4 GiB, the size will
33983 overflow. This patch tries to fix this.
33984
33985 Note that we still have a problem when a single NAND device is bigger
33986 than 4 GiB: then the overflow would actually happen earlier, i. e.
33987 when storing the size in nand_info[].size, as nand_info[].size is an
33988 "u_int32_t".
33989
33990 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33991 Signed-off-by: Wolfgang Denk <wd@denx.de>
33992
33993 commit 30f574717277238b9014b8136c90eea77196490f
33994 Author: Louis Su <louis@asix.com.tw>
33995 Date: Wed Jul 9 11:01:37 2008 +0800
33996
33997 AX88180: new gigabit network driver
33998
33999 Signed-off-by: Louis Su <louis@asix.com.tw>
34000 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34001
34002 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
34003 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
34004 Date: Tue Aug 19 16:07:03 2008 +0200
34005
34006 enable 10/100M at VSC8601 at tsec driver
34007
34008 Currently VSC8601 doesn't link with 10/100M partners if the
34009 EEPROM/Strapping is not set up.
34010 Setting the auto-neg register fixes this.
34011
34012 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
34013 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34014
34015 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
34016 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34017 Date: Tue Sep 30 15:02:53 2008 +0900
34018
34019 net: ne2000: Divided a function of NE2000 driver
34020
34021 get_prom function was used __attriute__ , but it is not enable.
34022 ax88796.o does not do link besides ne2000.o. When ld is carried
34023 out, get_prom function of ax88796.c is ignored.
34024 This problem is a thing by specifications of ld.
34025 I checked and test this patch on SuperH and MIPS.
34026
34027 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34028 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
34029
34030 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
34031 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34032 Date: Tue Oct 14 11:10:59 2008 +0900
34033
34034 sh: rsk7203: Add smc911x driver support to board config file
34035
34036 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34037 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34038
34039 commit cae6f909baf86357b3c0bd01acfc414348c4d175
34040 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34041 Date: Thu Oct 9 13:54:33 2008 +0900
34042
34043 sh: Fix cannot execute a stand-alone application
34044
34045 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
34046
34047 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34048 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34049
34050 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
34051 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34052 Date: Wed Oct 8 23:38:00 2008 -0500
34053
34054 fsl_pci_init do not scan bus when configured as an end-point
34055
34056 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34057 Acked-by: Andy Fleming <afleming@freescale.com>
34058
34059 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
34060 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34061 Date: Tue Sep 16 17:07:53 2008 -0400
34062
34063 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
34064
34065 This is no longer necessary now that the GD_FLG_RELOC flag is set for
34066 all ARM boards.
34067
34068 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
34069
34070 commit d977a57356657ba241256231efca32828a5822f9
34071 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
34072 Date: Sat Sep 13 10:04:32 2008 +0200
34073
34074 Fix lzma uncompress call (image_start wrongly used instead image_len)
34075
34076 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
34077
34078 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
34079 Author: Nick Spence <nick.spence@freescale.com>
34080 Date: Thu Aug 28 14:09:15 2008 -0700
34081
34082 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
34083
34084 This is needed in unlock_ram_in_cache() because it is called from C and
34085 will corrupt the small data area anchor that is kept in R2.
34086
34087 lock_ram_in_cache() is modified similarly as good coding practice, but
34088 is not called from C.
34089
34090 Signed-off-by: Nick Spence <nick.spence@freescale.com>
34091
34092 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
34093 Author: Kumar Gala <galak@kernel.crashing.org>
34094 Date: Tue Aug 19 15:05:34 2008 -0500
34095
34096 86xx: remove redudant code with lib_ppc/interrupts.c
34097
34098 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
34099 Not know how that happened, but there is no good reason for it.
34100
34101 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
34102 they exist.
34103
34104 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34105
34106 commit 0d01f66d235118515b5086b88f82498bc0695d6a
34107 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34108 Date: Thu Oct 9 01:26:36 2008 -0500
34109
34110 CFI: cfi_flash write fix for AMD legacy
34111
34112 The flash_unlock_seq requires a sector for AMD_LEGACY.
34113 Fix a retcode check typeo.
34114
34115 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34116 Signed-off-by: Stefan Roese <sr@denx.de>
34117
34118 commit 542b385a620a1783454a00424930e51895f45073
34119 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34120 Date: Tue Oct 7 13:13:10 2008 +0200
34121
34122 ppc4xx: Fix USB 2.0 phy reset sequence
34123
34124 This patch fixes USB 2.0 communication issues on some DU440 boards.
34125
34126 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34127 Signed-off-by: Stefan Roese <sr@denx.de>
34128
34129 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
34130 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34131 Date: Tue Oct 7 13:13:09 2008 +0200
34132
34133 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
34134
34135 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34136 Signed-off-by: Stefan Roese <sr@denx.de>
34137
34138 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
34139 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34140 Date: Tue Oct 7 13:13:08 2008 +0200
34141
34142 ppc4xx: Fix DU440 GPIO configuration
34143
34144 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34145 Signed-off-by: Stefan Roese <sr@denx.de>
34146
34147 commit 35dd025c70fcc4389317db2f2a9d14795172137d
34148 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34149 Date: Tue Oct 7 13:13:07 2008 +0200
34150
34151 ppc4xx: Update DU440 config
34152
34153 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
34154 Signed-off-by: Stefan Roese <sr@denx.de>
34155
34156 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
34157 Author: Kumar Gala <galak@kernel.crashing.org>
34158 Date: Wed Oct 8 15:36:39 2008 -0500
34159
34160 MPC8572DS: Fix compile warnings
34161
34162 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
34163 compile warnings:
34164
34165 cmd_i2c.c:112: warning: missing braces around initializer
34166 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
34167
34168 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34169
34170 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
34171 Author: Wolfgang Grandegger <wg@grandegger.com>
34172 Date: Tue Sep 30 10:55:57 2008 +0200
34173
34174 85xx: Using proper I2C source clock divider for MPC8544
34175
34176 Measurements with our MPC8544 board showed that the I2C bus frequency
34177 is wrong by a factor of 1.5. Obviously, the interpretation of the
34178 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
34179 correct. There seems to be an error in the 8544 RM.
34180
34181 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
34182
34183 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
34184 Author: Rafal Czubak <rcz@semihalf.com>
34185 Date: Wed Oct 8 13:41:30 2008 +0200
34186
34187 FSL: Fix get_cpu_board_revision() return value.
34188
34189 get_cpu_board_revision() returned board revision based on information stored
34190 in global static struct eeprom. It should instead use one from local struct
34191 board_eeprom, to which the data is actually read from EEPROM. The bug led to
34192 system hang after printing L1 cache information on U-Boot startup. The problem
34193 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
34194 boards using CFG_I2C_EEPROM_CCID.
34195
34196 The change has been successfully tested on MPC8555CDS system.
34197
34198 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
34199
34200 commit 747f316cca484ed627a97dd3391febabce384186
34201 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34202 Date: Tue Sep 30 20:08:49 2008 +0200
34203
34204 update uImage FIT multi documentation
34205
34206 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34207
34208 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
34209 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34210 Date: Tue Sep 30 20:08:36 2008 +0200
34211
34212 move README.imx31 to doc/ and merge with README.mx31
34213
34214 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34215
34216 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
34217 Author: Guennadi Liakhovetski <lg@denx.de>
34218 Date: Thu Sep 25 20:54:37 2008 +0200
34219
34220 i.MX31: switch to CFG_HZ=1000
34221
34222 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
34223 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
34224 provides 2% or 0.4% precision depending on the
34225 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
34226 boot-delay.
34227
34228 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
34229
34230 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
34231 Author: gnusercn <gnusercn@gmail.com>
34232 Date: Wed Oct 8 18:58:58 2008 +0200
34233
34234 Fix bug: in arch-arm, env_get_char dose not work fine
34235
34236 due to the arm implementation which supposed that U-Boot is in RAM
34237 when we jump to start_armboot
34238
34239 Signed-off-by: gnusercn <gnusercn@gmail.com>
34240 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34241
34242 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
34243 Author: Adam Graham <agraham@amcc.com>
34244 Date: Mon Oct 6 10:16:13 2008 -0700
34245
34246 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
34247
34248 After changing SDRAM_CLKTR phase value rerun the memory preload
34249 initialization sequence (INITPLR) to reset and relock the memory
34250 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
34251 adjustment effects the phase relationship of the internal, to the
34252 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
34253
34254 Signed-off-by: Adam Graham <agraham@amcc.com>
34255 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
34256 Signed-off-by: Stefan Roese <sr@denx.de>
34257
34258 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
34259 Author: Haiying Wang <Haiying.Wang@freescale.com>
34260 Date: Fri Oct 3 11:48:03 2008 -0400
34261
34262 Remove redundant #define for MPC8536DS
34263
34264 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34265
34266 commit 445a7b38308eb05b41de74165b20855db58c7ee5
34267 Author: Haiying Wang <Haiying.Wang@freescale.com>
34268 Date: Fri Oct 3 11:47:30 2008 -0400
34269
34270 Add ID EEPROM support for MPC8572DS
34271
34272 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
34273 system information like mac addresses etc. This patch enables it.
34274
34275 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34276
34277 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
34278 Author: Haiying Wang <Haiying.Wang@freescale.com>
34279 Date: Fri Oct 3 11:46:59 2008 -0400
34280
34281 Minor fixes for I2C address on MPC8572DS
34282
34283 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
34284 according to the board spec, and adds the 2nd i2c bus offset.
34285
34286 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34287
34288 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
34289 Author: Jason Jin <Jason.jin@freescale.com>
34290 Date: Sat Sep 27 14:40:57 2008 +0800
34291
34292 Fix the incorrect DDR clk freq reporting on 8536DS
34293
34294 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
34295 The display is still sync mode DDR freq. This patch try to fix
34296 this. The display DDR freq is now the actual freq in both
34297 sync and async mode.
34298
34299 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34300
34301 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
34302 Author: Kumar Gala <galak@kernel.crashing.org>
34303 Date: Tue Oct 7 10:28:46 2008 -0500
34304
34305 85xx: Remove setting of *cache-line-size in device trees
34306
34307 ePAPR says if the *cache-block-size is the same as *cache-line-size
34308 than we don't need the *cache-line-size property.
34309
34310 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34311
34312 commit a69a42338dd25408f9fd5390a83bc501749c7e1b
34313 Author: Mark Jackson <mpfj@mimc.co.uk>
34314 Date: Fri Oct 3 11:48:57 2008 +0100
34315
34316 MIMC200 board now uses CONFIG_DISABLE_CONSOLE
34317
34318 Changed MIMC200 board setup and config to use CONFIG_DISABLE_CONSOLE.
34319 Also fixed default uImage location.
34320
34321 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
34322 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
34323
34324 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
34325 Author: Gerald Van Baren <vanbaren@cideas.com>
34326 Date: Sat Oct 4 07:56:06 2008 -0400
34327
34328 libfdt: Fix error in documentation for fdt_get_alias_namelen()
34329
34330 Oops, screwed up the function name in the documenting comment for this
34331 function. Trivial correction in this patch.
34332
34333 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34334 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
34335
34336 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
34337 Author: David Gibson <david@gibson.dropbear.id.au>
34338 Date: Wed Aug 20 16:55:14 2008 +1000
34339
34340 libfdt: Add function to explicitly expand aliases
34341
34342 Kumar has already added alias expansion to fdt_path_offset().
34343 However, in some circumstances it may be convenient for the user of
34344 libfdt to explicitly get the string expansion of an alias. This patch
34345 adds a function to do this, fdt_get_alias(), and uses it to implement
34346 fdt_path_offset().
34347
34348 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34349
34350 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
34351 Author: Mike Frysinger <vapier@gentoo.org>
34352 Date: Thu Oct 2 01:55:38 2008 -0400
34353
34354 cfi_flash: do not reset flash when probe fails
34355
34356 The CFI flash driver starts at flash_init() which calls down into
34357 flash_get_size(). This starts by calling flash_detect_cfi(). If said
34358 function fails, flash_get_size() finishes by attempting to reset the
34359 flash. Unfortunately, it does this with an info->portwidth set to 0x10
34360 which filters down into flash_make_cmd() and that happily smashes the
34361 stack by sticking info->portwidth bytes into a cfiword_t variable that
34362 lives on the stack. On a 64bit system you probably won't notice, but
34363 killing the last 8 bytes on a 32bit system usually leads to a corrupt
34364 return address. Which is what happens on a Blackfin system.
34365
34366 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
34367 Signed-off-by: Stefan Roese <sr@denx.de>
34368
34369 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
34370 Author: Stefan Roese <sr@denx.de>
34371 Date: Fri Sep 26 17:03:26 2008 +0200
34372
34373 fdt: Overwrite /chosen node in bootm if it already exists in the dtb
34374
34375 Set force parameter in fdt_chosen() call in do_bootm_linux() call.
34376 Without this, the chosen node is not overwritten if it already
34377 exists.
34378
34379 Signed-off-by: Stefan Roese <sr@denx.de>
34380
34381 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
34382 Author: Jon Loeliger <jdl@freescale.com>
34383 Date: Thu Sep 25 11:02:17 2008 -0500
34384
34385 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
34386
34387 Using Gcc 4.3 detected this problem:
34388
34389 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
34390 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
34391 occur when assuming that (X + c) < X is always false
34392
34393 To fix the problem, treat the offset as an unsigned int.
34394
34395 The problem report and proposed fix were provided
34396 by Steve Papacharalambous <stevep@freescale.com>.
34397
34398 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34399
34400 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
34401 Author: David Gibson <david@gibson.dropbear.id.au>
34402 Date: Fri Aug 29 14:19:13 2008 +1000
34403
34404 libfdt: Fix bugs in fdt_get_path()
34405
34406 The current implementation of fdt_get_path() has a couple of bugs,
34407 fixed by this patch.
34408
34409 First, contrary to its documentation, on success it returns the length
34410 of the node's path, rather than 0. The testcase is correspondingly
34411 wrong, and the patch fixes this as well.
34412
34413 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
34414 instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
34415 Specifically this happens when there is insufficient space even to
34416 hold the path's second last component. This behaviour is corrected,
34417 and the testcase updated to check it.
34418
34419 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
34420
34421 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
34422 Author: Wolfgang Denk <wd@denx.de>
34423 Date: Wed Oct 1 12:34:58 2008 +0200
34424
34425 TQM5200: enable support for ATAPI devices
34426
34427 Signed-off-by: Wolfgang Denk <wd@denx.de>
34428
34429 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
34430 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34431 Date: Mon Sep 15 05:48:25 2008 +0200
34432
34433 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
34434
34435 we need this due to the arm implementation which supposed that U-Boot
34436 is in RAM when we jump to start_armboot
34437
34438 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
34439 in order to do it for all arm board
34440
34441 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34442
34443 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
34444 Author: Kim Phillips <kim.phillips@freescale.com>
34445 Date: Wed Sep 24 08:46:25 2008 -0500
34446
34447 mpc83xx: don't disable autoboot
34448
34449 bootdelay set to -1 'permanently' disables autobooting, even if
34450 bootcmd is specified. Change to a positive value to allow
34451 autobooting when a bootcmd is set.
34452
34453 Reported-by: Coray Tate <Coray.Tate@freescale.com>
34454 Cc: Scott Wood <scottwood@freescale.com>
34455 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34456
34457 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
34458 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34459 Date: Wed Sep 24 10:42:15 2008 +0900
34460
34461 mpc83xx: Fix typo in include/mpc83xx.h
34462
34463 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
34464
34465 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34466 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34467
34468 commit 162c41c03179727a1d14262f703c9a8bc40231fa
34469 Author: Kim Phillips <kim.phillips@freescale.com>
34470 Date: Tue Sep 23 09:38:49 2008 -0500
34471
34472 mpc83xx: add h/w flash protection to board configs
34473
34474 the operating system may leave flash in a h/w locked state after writing.
34475 This allows u-boot to continue to write flash by enabling h/w unlocking
34476 by default.
34477
34478 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34479
34480 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
34481 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34482 Date: Thu Sep 11 21:35:36 2008 +0400
34483
34484 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
34485
34486 The spd_dram code shifts the base address, then masks 20 bits, but
34487 forgets to shift the base address back. Fix this by just masking the
34488 base address correctly.
34489
34490 Found this bug while trying to relocate a DDR memory at the base != 0.
34491
34492 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34493 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34494
34495 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
34496 Author: Stefan Roese <sr@denx.de>
34497 Date: Mon Sep 22 16:10:43 2008 +0200
34498
34499 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
34500
34501 Depending on the configuration jumper "SATA SELECT", U-Boot disabled
34502 either one PCIe node or the SATA node in the device tree blob. This
34503 patch removes the unnecessary and even confusing warning, when the node
34504 is not found at all.
34505
34506 Signed-off-by: Stefan Roese <sr@denx.de>
34507
34508 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
34509 Author: Remy Bohmer <linux@bohmer.net>
34510 Date: Fri Sep 19 13:30:06 2008 +0200
34511
34512 Add missing device types to dev_print() in part.c
34513
34514 Signed-off-by: Remy Bohmer <linux@bohmer.net>
34515
34516 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
34517 Author: Wolfgang Denk <wd@denx.de>
34518 Date: Mon Sep 22 22:23:06 2008 +0200
34519
34520 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
34521 eventually leads to a machine check. This change assures that DPRAM
34522 is allocated only once in that case.
34523
34524 Signed-off-by: Gary Jennejohn <garyj@denx.de>
34525 Signed-off-by: Wolfgang Denk <wd@denx.de>
34526
34527 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
34528 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
34529 Date: Wed Sep 17 17:57:34 2008 +0200
34530
34531 Fix Spartan-3 definitions.
34532
34533 A few Spartan-3 definitions erroneously use Spartan-3E size
34534 constants. This patch fixes them.
34535
34536 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
34537
34538 commit 28113e1f0da4146b823ffce37680d31d5685a60b
34539 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
34540 Date: Wed Sep 17 17:41:58 2008 +0200
34541
34542 Remove duplicate Spartan-3E definition.
34543
34544 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
34545 Signed-off-by: Wolfgang Denk <wd@denx.de>
34546
34547 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
34548 Author: Anatolij Gustschin <agust@denx.de>
34549 Date: Wed Sep 17 13:46:17 2008 +0200
34550
34551 socrates: change default mtest address range
34552
34553 Running mtest command on socrates without specifying
34554 an address range crashes the board. This patch changes
34555 default mtest address range to prevent this behavior.
34556
34557 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34558
34559 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
34560 Author: Anatolij Gustschin <agust@denx.de>
34561 Date: Wed Sep 17 12:34:45 2008 +0200
34562
34563 socrates: fix crash after relocation
34564
34565 Currently U-Boot crashes after relocation to RAM.
34566 Changing the CPO value of the DDR SDRAM TIMING_CFG_2
34567 register to READ_LAT + 1 (to the value it was before
34568 conversion of socrates to new DDR code) fixes the
34569 problem.
34570
34571 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34572
34573 commit 562788b0a303f3528b920d81f547f5ca77ba528e
34574 Author: Anatolij Gustschin <agust@denx.de>
34575 Date: Wed Sep 17 11:45:51 2008 +0200
34576
34577 socrates: fix SPD EEPROM address
34578
34579 Commit be0bd8234b9777ecd63c4c686f72af070d886517
34580 changed SPD EEPROM address to 0x51 and DDR SDRAM
34581 detection stopped working. Change this address
34582 back to 0x50.
34583
34584 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34585
34586 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
34587 Author: Stefan Roese <sr@denx.de>
34588 Date: Mon Sep 22 11:06:50 2008 +0200
34589
34590 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
34591
34592 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
34593
34594 Signed-off-by: Stefan Roese <sr@denx.de>
34595
34596 commit e58c41e26cf3c8accd60311be579f452e368e97e
34597 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34598 Date: Thu Sep 18 20:13:08 2008 +0900
34599
34600 usb: Fix compile warning of r8a66597-hcd
34601
34602 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34603 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34604
34605 commit b5d10a13525c07ec6374adf840d7c87553b5f189
34606 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34607 Date: Thu Sep 18 19:34:36 2008 +0900
34608
34609 sh: Fix compile warning
34610
34611 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34612
34613 commit 4a065abf926f128beb36d93449defa0d690e7fef
34614 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34615 Date: Thu Sep 18 19:04:26 2008 +0900
34616
34617 sh: Add support watchdog for SH4A core
34618
34619 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
34620 And fix some compile warning.
34621
34622 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34623
34624 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
34625 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34626 Date: Wed Sep 17 11:45:26 2008 +0900
34627
34628 sh: Fix typo in SH serial driver
34629
34630 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34631 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34632
34633 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
34634 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34635 Date: Wed Sep 17 11:08:36 2008 +0900
34636
34637 sh: Add support any page size and empty_zero_page to SH Linux uImage
34638
34639 Old U-Boot supported 4KB page size only. If this version, Linux
34640 kernel can not get command line from U-Boot.
34641 SH Linux kernel can change page size and empty_zero_page.
34642 This patch support this function and fix promlem.
34643
34644 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34645 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34646
34647 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
34648 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34649 Date: Thu Aug 28 13:40:52 2008 +0900
34650
34651 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
34652
34653 Add function of smc911x, pkt_data_pull and pkt_data_push.
34654
34655 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34656 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
34657
34658 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
34659 Author: Wolfgang Denk <wd@denx.de>
34660 Date: Thu Sep 18 13:57:32 2008 +0200
34661
34662 ADS5121: fix typo in "rootpath" default setting
34663
34664 Signed-off-by: Wolfgang Denk <wd@denx.de>
34665
34666 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
34667 Author: Remy Bohmer <linux@bohmer.net>
34668 Date: Tue Sep 16 14:55:44 2008 +0200
34669
34670 USB layer of U-Boot causes USB protocol errors while using USB memory sticks
34671
34672 There are several differences between Linux, Windows and U-boot for initialising the
34673 USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
34674 things really different, and some are wrong (compared to the USB standard).
34675
34676 This patch fixes some errors:
34677 * The NEW_init procedure that was already in the code is good, while the old procedure
34678 is wrong. See code comments for more info.
34679 * On a Control request the data returned by the device can be more than 8 bytes, while
34680 the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
34681 This results in a lot of USB sticks not being recognised, and the transmission ended
34682 frequently with a CTL:TIMEOUT Error.
34683 * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
34684
34685 Signed-off-by: Remy Bohmer <linux@bohmer.net>
34686 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34687
34688 commit 6f5794a6f78b313231256958fd73673c6aacc116
34689 Author: Remy Bohmer <linux@bohmer.net>
34690 Date: Tue Sep 16 14:55:43 2008 +0200
34691
34692 Refactoring parts of the common USB OHCI code
34693
34694 This patch refactors some large routines of the USB OHCI code by
34695 making some routines smaller and more readable which helps
34696 debugging and understanding the code. (Makes the code looks
34697 somewhat more like the Linux implementation.)
34698
34699 Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
34700
34701 Signed-off-by: Remy Bohmer <linux@bohmer.net>
34702 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34703
34704 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
34705 Author: Remy Bohmer <linux@bohmer.net>
34706 Date: Tue Sep 16 14:55:42 2008 +0200
34707
34708 Fix for USB sticks not working on ARM while using GCC 4.x compilers
34709
34710 The GCC-compiler makes an optimisation error while optimising the routine
34711 usb_set_maxpacket(). This should be fixed in the compiler in the first place,
34712 but there lots of compilers out there that makes this error, that it is
34713 probably wiser to workaround it in U-boot itself.
34714
34715 What happens is that the register r3 is used as loop-counter 'i', but gets
34716 overwritten later on. From there it starts using register r3 for several other
34717 things and the assembler code is becoming a big mess. This is clearly a compiler bug.
34718
34719 This error occurs on at least several versions of Code Sourcery Lite compilers
34720 for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
34721 compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
34722
34723 We work around it by splitting up this routine in 2 parts, and making sure that
34724 the split out part is NOT inlined any longer. This will make GCC spit out assembler
34725 that do not show this problem. Another possibility is to adapt the Makefile to stop
34726 optimisation for the complete file. I think this solution is nicer.
34727
34728 Signed-off-by: Remy Bohmer <linux@bohmer.net>
34729 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
34730
34731 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
34732 Author: Wolfgang Denk <wd@denx.de>
34733 Date: Wed Sep 17 10:17:55 2008 +0200
34734
34735 Coding style cleanup; update CHANEGLOG
34736
34737 Signed-off-by: Wolfgang Denk <wd@denx.de>
34738
34739 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
34740 Author: Victor Gallardo <vgallardo@amcc.com>
34741 Date: Tue Sep 16 06:59:13 2008 -0700
34742
34743 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
34744
34745 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
34746 Signed-off-by: Adam Graham <agraham@amcc.com>
34747 Signed-off-by: Stefan Roese <sr@denx.de>
34748
34749 commit ce47eb402c5e29a025399dc282246414fc492940
34750 Author: Peter Tyser <ptyser@xes-inc.com>
34751 Date: Tue Sep 16 10:04:47 2008 -0500
34752
34753 Support for multiple SGMII/TBI interfaces for TSEC ethernet
34754
34755 Fix TBI PHY accesses to use the proper offset in CPU register space. The
34756 previous code would incorrectly access the TBI PHY by reading/writing to CPU
34757 register space at the same location as would be used to access external PHYs.
34758
34759 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34760 Acked-by: Andy Fleming <afleming@freescale.com>
34761
34762 commit 7c803be2eb3cae245dedda438776e08fb122250f
34763 Author: Wolfgang Denk <wd@denx.de>
34764 Date: Tue Sep 16 18:02:19 2008 +0200
34765
34766 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
34767
34768 After switching to using the CFI flash driver, the correct remapping
34769 of the flash banks was forgotten.
34770
34771 Also, some boards were not adapted, and the old legacy flash driver
34772 was not removed yet.
34773
34774 Signed-off-by: Wolfgang Denk <wd@denx.de>
34775
34776 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
34777 Author: Wolfgang Denk <wd@denx.de>
34778 Date: Sun Sep 14 00:59:35 2008 +0200
34779
34780 Prepare v2008.10-rc2
34781
34782 Signed-off-by: Wolfgang Denk <wd@denx.de>
34783
34784 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
34785 Author: Wolfgang Denk <wd@denx.de>
34786 Date: Sat Sep 13 02:23:05 2008 +0200
34787
34788 Coding style cleanup, update CHANGELOG
34789
34790 Signed-off-by: Wolfgang Denk <wd@denx.de>
34791
34792 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
34793 Author: Peter Tyser <ptyser@xes-inc.com>
34794 Date: Wed Sep 10 09:18:34 2008 -0500
34795
34796 Update mailing list email and archive addresses
34797
34798 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
34799
34800 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
34801 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
34802 Date: Thu Sep 11 15:40:01 2008 +0200
34803
34804 85xx: socrates: autoprobe Lime chip
34805
34806 This patch is an attempt to implement autoprobing for the Lime
34807 presence on the bus.
34808 Configure GPCM for Lime CS2 and try to access chip ID registers.
34809 Second read atempt delivers register values if the chip is present.
34810
34811 Signed-off-by: Anatolij Gustschin <agust@denx.de>
34812
34813 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
34814 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
34815 Date: Thu Sep 11 15:40:01 2008 +0200
34816
34817 85xx: socrates: Add support for new image format.
34818
34819 Signed-off-by: Detlev Zundel <dzu@denx.de>
34820
34821 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
34822 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34823 Date: Thu Sep 11 17:28:18 2008 +0900
34824
34825 sh: Fix compile error for r2dplus
34826
34827 netdev.h was not include by r2dplus.
34828
34829 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
34830
34831 commit 56844a22b76c719e600047e23b80465a44d76abd
34832 Author: Heiko Schocher <hs@denx.de>
34833 Date: Thu Sep 11 08:11:23 2008 +0200
34834
34835 powerpc: Fix bootm to boot up again with a Ramdisk
34836
34837 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
34838 and this stopped Linux from booting with a Ramdisk. This patch fixes
34839 this, by deleting the useless dummy mem reservation.
34840
34841 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
34842 added to of_size, so we dont need anymore a dummy mem reservation.
34843
34844 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
34845 system (=0x44 bytes) and rounded it up to 0x80).
34846
34847 Signed-off-by: Heiko Schocher <hs@denx.de>
34848 Acked-by: Kumar Gala <galak@kernel.crashing.org>
34849
34850 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
34851 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
34852 Date: Mon Sep 8 02:46:13 2008 +0200
34853
34854 Add support for LZMA uncompression algorithm.
34855
34856 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
34857 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34858
34859 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
34860 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34861 Date: Fri Jun 27 23:04:20 2008 +0400
34862
34863 fsl_elbc_nand: ecclayout cleanups
34864
34865 This patch deletes oobavail assignments, they're calculated by the nand
34866 core code in nand_scan_tail, plus current oobavail values are wrong for
34867 the LP NANDs.
34868
34869 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34870 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
34871 Signed-off-by: Scott Wood <scottwood@freescale.com>
34872
34873 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
34874 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34875 Date: Fri Jun 27 23:04:13 2008 +0400
34876
34877 fsl_elbc_nand: implement support for flash-based BBT
34878
34879 This patch implements support for flash-based BBT for chips working
34880 through ELBC NAND controller, so that NAND core will not have to re-scan
34881 for bad blocks on every boot.
34882
34883 Because ELBC controller may provide HW-generated ECCs we should adjust
34884 bbt pattern and bbt version positions in the OOB free area.
34885
34886 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34887 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
34888 Signed-off-by: Scott Wood <scottwood@freescale.com>
34889
34890 commit 97ae023648e764f794ffb9c52da109d6caf09c47
34891 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
34892 Date: Fri Jun 27 23:04:04 2008 +0400
34893
34894 fsl_elbc_nand: fix OOB workability for large page NAND chips
34895
34896 For large page chips, nand_bbt is looking into OOB area, and checking
34897 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
34898 reserved for bbt means.
34899
34900 But ELBC driver is specifying ecclayout so that oobfree area starts at
34901 offset 1, so only one byte left for the bbt purposes.
34902
34903 This causes problems with any OOB users, namely JFFS2: after first mount
34904 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
34905
34906 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
34907 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
34908 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
34909 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
34910
34911 And on the next boot, NAND core will rescan for bad blocks, then will
34912 see "0xff 0x19" pattern, and will mark all blocks as bad ones.
34913
34914 To fix the issue we should implement our own bad block pattern: just one
34915 byte at OOB start. Though, this will work only for x8 chips. For x16
34916 chips two bytes must be checked. Since ELBC driver does not support x16
34917 NANDs (yet), we're safe for now.
34918
34919 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
34920 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
34921 Signed-off-by: Scott Wood <scottwood@freescale.com>
34922
34923 commit 7238ada313057a85409485b8ee21515dc10c07a5
34924 Author: Wolfgang Denk <wd@denx.de>
34925 Date: Fri Sep 12 13:52:21 2008 +0200
34926
34927 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
34928
34929 Signed-off-by: Wolfgang Denk <wd@denx.de>
34930
34931 commit b18410e508a12ba0a177dfc2a386857c806fa96d
34932 Author: Stefan Roese <sr@denx.de>
34933 Date: Thu Sep 11 13:05:56 2008 +0200
34934
34935 ppc4xx: Enable device tree (FDT) support in zeus board port
34936
34937 Signed-off-by: Stefan Roese <sr@denx.de>
34938
34939 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
34940 Author: Stefan Roese <sr@denx.de>
34941 Date: Wed Sep 10 16:53:47 2008 +0200
34942
34943 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
34944
34945 This patch fixes a problem introdiced with patch
34946 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
34947 initdram()].
34948
34949 The boards affected are:
34950 - PCI405
34951 - PPChameleonEVB
34952 - quad100hd
34953 - taihu
34954 - zeus
34955
34956 Signed-off-by: Stefan Roese <sr@denx.de>
34957
34958 commit 61737c59a3285f6fadf96a5836879898c04ec28d
34959 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34960 Date: Thu Sep 11 19:41:26 2008 -0400
34961
34962 ppc4xx: Add .gitignore file to xilinx-ppc440 boards
34963
34964 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34965 Signed-off-by: Stefan Roese <sr@denx.de>
34966
34967 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
34968 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34969 Date: Thu Sep 11 19:41:25 2008 -0400
34970
34971 ppc4xx: Fix compilation of v5fx30teval_flash
34972
34973 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34974 Signed-off-by: Stefan Roese <sr@denx.de>
34975
34976 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
34977 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34978 Date: Wed Sep 10 17:44:30 2008 -0400
34979
34980 ppc4xx: Fix in-tree build for ppc440-generic boards
34981
34982 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
34983 Signed-off-by: Stefan Roese <sr@denx.de>
34984
34985 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
34986 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34987 Date: Fri Sep 12 02:20:47 2008 +0200
34988
34989 ARM: synchronize mach-types.h with linux 2.6.27-rc6
34990
34991 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
34992
34993 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
34994 Author: Jens Scharsig <esw@bus-elektronik.de>
34995 Date: Fri Sep 12 02:20:47 2008 +0200
34996
34997 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
34998
34999 This patch prevents linker error on AT91RM9200 boards, if
35000 CONFIG_CMD_I2_TREE is set.
35001 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
35002
35003 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
35004
35005 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
35006 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35007 Date: Fri Sep 12 02:20:47 2008 +0200
35008
35009 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
35010
35011 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
35012
35013 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35014
35015 commit 03db53335c8eba656a7c44d1555b1a4514383e33
35016 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35017 Date: Fri Sep 12 02:20:46 2008 +0200
35018
35019 make: Remove redundant __ARM__ addition when cross-compiling on *BSD
35020
35021 __ARM__ is given by arm_config.mk automatically.
35022
35023 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
35024
35025 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
35026 Author: Claudio Scordino <claudio@evidence.eu.com>
35027 Date: Fri Sep 12 02:20:46 2008 +0200
35028
35029 Fix MACH_TYPE for the AT91RM9200DK board.
35030
35031 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
35032
35033 commit 274737e5eb25b2bcd3af3a96da923effd543284f
35034 Author: Andrew Dyer <adyer@righthandtech.com>
35035 Date: Fri Sep 12 02:20:46 2008 +0200
35036
35037 i.mx change get_timer(base) to return time since base
35038
35039 This patch changes get_timer() for i.MX to return the time since
35040 'base' instead of the time since the counter was at zero.
35041
35042 Symptom seen is flash timeout errors when erasing or programming a
35043 sector using the common cfi flash code.
35044
35045 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
35046
35047 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
35048 Author: Andrew Dyer <adyer@righthandtech.com>
35049 Date: Fri Sep 12 02:20:46 2008 +0200
35050
35051 i.MX use u-boot baud rate and don't assume UART master clock
35052
35053 1) Change the i.MX serial driver to use the baud rate set in the
35054 u-boot environment
35055
35056 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
35057
35058 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
35059 one to clear" like other status bits in the reg.)
35060
35061 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
35062
35063 commit 6e1551a870d360805b9d172dc56d935064abe71d
35064 Author: Andrew Dyer <adyer@righthandtech.com>
35065 Date: Fri Sep 12 02:20:46 2008 +0200
35066
35067 arm920t fix constant error in start.S
35068
35069 Code in cpu/arm920t/start.S will die with a compilation error if
35070 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
35071 the ARM sub instruction. Change the code so that each is subtracted
35072 independently to avoid the error.
35073
35074 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
35075
35076 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
35077 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
35078 Date: Fri Sep 12 02:20:40 2008 +0200
35079
35080 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
35081
35082 - Correct Invalid #define of MPUTIM_PTV_MASK for
35083 omap1510 & omap730 register definition
35084
35085 MPUTIM_PTV_MASK is defined as
35086 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT)
35087
35088 while it should have been
35089 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT)
35090
35091 - Below Patch corrects the same
35092
35093 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
35094
35095 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
35096 Author: Adrian Filipi <adrian.filipi@eurotech.com>
35097 Date: Fri Jul 18 11:52:02 2008 -0400
35098
35099 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
35100
35101 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
35102
35103 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
35104 Author: Guennadi Liakhovetski <lg@denx.de>
35105 Date: Thu Aug 28 12:25:11 2008 +0200
35106
35107 i.MX31: document timer precision option
35108
35109 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
35110
35111 commit 1a6337b01351b82a45b0defa76f08744511c580b
35112 Author: Magnus Lilja <lilja.magnus@gmail.com>
35113 Date: Fri Aug 29 10:36:18 2008 +0200
35114
35115 i.MX31: Make the SPI bus and chip select configurable for MC13783
35116
35117 The i.MX31 has three SPI buses and each bus has several chip selects
35118 and the MC13783 chip can be connected to any of these. The current
35119 RTC driver for MC13783 is hardcoded for CSPI2/SS2.
35120
35121 This patch makes make MC13783 SPI bus and chip select configurable
35122 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
35123
35124 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
35125
35126 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
35127 Author: Magnus Lilja <lilja.magnus@gmail.com>
35128 Date: Fri Aug 29 10:36:17 2008 +0200
35129
35130 i.MX31: Add reset_timer() and modify get_timer_masked().
35131
35132 This patch adds the reset_timer() function (needed by nand_base.c) and
35133 modifies the get_timer_masked() to work in the same way as the omap24xx
35134 function.
35135
35136 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
35137
35138 commit deeec4991a55de243787002ede24d2331d234fc8
35139 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35140 Date: Wed Sep 10 22:48:09 2008 +0200
35141
35142 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
35143
35144 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35145
35146 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
35147 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35148 Date: Wed Sep 10 22:48:09 2008 +0200
35149
35150 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
35151
35152 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35153
35154 commit 0e8d158664a913392cb01fb11a948d83f72e105e
35155 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35156 Date: Wed Sep 10 22:48:06 2008 +0200
35157
35158 rename CFG_ENV macros to CONFIG_ENV
35159
35160 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35161
35162 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
35163 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35164 Date: Wed Sep 10 22:48:05 2008 +0200
35165
35166 nvedit: rename error comment to CONFIG_ENV_IS_IN_
35167
35168 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35169
35170 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
35171 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35172 Date: Wed Sep 10 22:48:05 2008 +0200
35173
35174 cmd_mem: Move conditional compilation to Makefile
35175
35176 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35177
35178 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
35179 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35180 Date: Wed Sep 10 22:48:05 2008 +0200
35181
35182 move cmd_get_data_size to command.c
35183
35184 add CMD_DATA_SIZE macro to enable it
35185
35186 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35187
35188 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
35189 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35190 Date: Wed Sep 10 22:48:04 2008 +0200
35191
35192 env_flash: Move conditional compilation to Makefile
35193
35194 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35195
35196 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
35197 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35198 Date: Wed Sep 10 22:48:04 2008 +0200
35199
35200 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
35201
35202 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35203
35204 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
35205 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35206 Date: Wed Sep 10 22:48:03 2008 +0200
35207
35208 cleanup use of CFG_ENV_IS_IN_FLASH
35209
35210 - #if CFG_ENV_IS_IN_FLASH
35211 - #if (CFG_ENV_IS_IN_FLASH == 1)
35212 - #define CFG_ENV_IS_IN_FLASH 0
35213
35214 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35215
35216 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
35217 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35218 Date: Wed Sep 10 22:48:01 2008 +0200
35219
35220 rename environment.c in env_embedded.c to reflect is functionality
35221
35222 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35223
35224 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
35225 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35226 Date: Wed Sep 10 22:48:01 2008 +0200
35227
35228 env_nowhere: Move conditional compilation to Makefile
35229
35230 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35231
35232 commit 93f6d72544da4510a146bc4c93d609b0116cde37
35233 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35234 Date: Wed Sep 10 22:48:00 2008 +0200
35235
35236 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
35237
35238 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35239
35240 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
35241 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35242 Date: Wed Sep 10 22:48:00 2008 +0200
35243
35244 env_sf: Move conditional compilation to Makefile
35245
35246 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35247
35248 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
35249 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35250 Date: Wed Sep 10 22:48:00 2008 +0200
35251
35252 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
35253
35254 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35255
35256 commit 55c5f49910ec8225347aa1d211352a84de6649b4
35257 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35258 Date: Wed Sep 10 22:48:00 2008 +0200
35259
35260 env_onenand: Move conditional compilation to Makefile
35261
35262 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35263
35264 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
35265 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35266 Date: Wed Sep 10 22:47:59 2008 +0200
35267
35268 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
35269
35270 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35271
35272 commit 957a0e69575683efd70ace147746bbb3d8e7c501
35273 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35274 Date: Wed Sep 10 22:47:59 2008 +0200
35275
35276 env_nvram: Move conditional compilation to Makefile
35277
35278 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35279
35280 commit 9314cee6917444ab88bd4e758da7a30975120187
35281 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35282 Date: Wed Sep 10 22:47:59 2008 +0200
35283
35284 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
35285
35286 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35287
35288 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
35289 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35290 Date: Wed Sep 10 22:47:59 2008 +0200
35291
35292 env_nand: Move conditional compilation to Makefile
35293
35294 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35295
35296 commit 51bfee192099206a4397f15f3b93516e01f58ab0
35297 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35298 Date: Wed Sep 10 22:47:58 2008 +0200
35299
35300 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
35301
35302 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35303
35304 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
35305 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35306 Date: Wed Sep 10 22:47:58 2008 +0200
35307
35308 env_dataflash: Move conditional compilation to Makefile
35309
35310 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35311
35312 commit 057c849c45b9ee19df8ff3acdeee66be52819962
35313 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35314 Date: Wed Sep 10 22:47:58 2008 +0200
35315
35316 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
35317
35318 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35319
35320 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
35321 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35322 Date: Wed Sep 10 22:47:52 2008 +0200
35323
35324 cmd_eeprom: Move conditional compilation to Makefile
35325
35326 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35327
35328 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
35329 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35330 Date: Fri Sep 5 09:19:54 2008 +0200
35331
35332 env_eeprom: Move conditional compilation to Makefile
35333
35334 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35335
35336 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
35337 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35338 Date: Fri Sep 5 09:19:30 2008 +0200
35339
35340 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
35341
35342 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35343
35344 commit 32628c5008105a732212003d83b75f05e5243bb2
35345 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35346 Date: Sat Aug 30 23:54:58 2008 +0200
35347
35348 cmd_mac: Move conditional compilation to Makefile
35349
35350 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
35351 start in commit ad8f8687b78c3e917b173f038926695383c55555
35352
35353 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35354
35355 commit e5648acab153f0f429bfc714902c5aaa7879f71b
35356 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35357 Date: Sat Aug 30 23:47:41 2008 +0200
35358
35359 cmd_fdc: Move conditional compilation to Makefile
35360
35361 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35362
35363 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
35364 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35365 Date: Sat Aug 30 23:47:38 2008 +0200
35366
35367 common/Makefile: add core command section
35368
35369 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35370
35371 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
35372 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35373 Date: Sat Aug 30 23:29:57 2008 +0200
35374
35375 cmd_vfd: Move conditional compilation to Makefile
35376
35377 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35378
35379 commit 6644641d072aee3087da129d8443187196a4d8a9
35380 Author: Scott Wood <scottwood@freescale.com>
35381 Date: Wed Sep 10 11:48:49 2008 -0500
35382
35383 delta, zylonite: Update nand_oobinfo to nand_ecclayout.
35384
35385 This is part of the switch to newer upstream MTD code.
35386
35387 Signed-off-by: Scott Wood <scottwood@freescale.com>
35388
35389 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
35390 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35391 Date: Sat Aug 30 17:06:55 2008 -0400
35392
35393 ARM DaVinci: Fix broken HW ECC for large page NAND.
35394
35395 Based on original patch by Bernard Blackham <bernard@largestprime.net>
35396
35397 U-boot's HW ECC support for large page NAND on Davinci is completely
35398 broken. Some kernels, such as the 2.6.10 one supported by
35399 MontaVista for DaVinci, rely upon this broken behaviour as they
35400 share the same code for ECCs. In the existing scheme, error
35401 detection *might* work on large page, but error correction
35402 definitely does not. Small page ECC correction works, but the
35403 format is not compatible with the mainline git kernel.
35404
35405 This patch adds ECC code that matches what is currently in the
35406 Davinci git repository (since NAND support was added in 2.6.24).
35407 This makes the ECC and OOB layout written by u-boot compatible with
35408 Linux for both small page and large page devices and fixes ECC
35409 correction for large page devices.
35410
35411 The old behaviour can be restored by defining the macro
35412 CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
35413
35414 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
35415 Acked-by: Sergey Kubushyn <ksi@koi8.net>
35416 Signed-off-by: Scott Wood <scottwood@freescale.com>
35417
35418 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
35419 Author: Heiko Schocher <hs@denx.de>
35420 Date: Wed Sep 10 11:15:28 2008 +0200
35421
35422 muas3001: update BR4 settings
35423
35424 Also set up the port pins for using I2C.
35425
35426 Signed-off-by: Heiko Schocher <hs@denx.de>
35427
35428 commit 3591293509e0c0bcf244b0f974775bff2e25697e
35429 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
35430 Date: Wed Sep 10 09:43:49 2008 +0300
35431
35432 autoscr: Fix one-character lines and non-newline terminated scripts
35433
35434 When not using hush, the autoscr command now executes lines that are
35435 only one character long. It also runs the last line of scripts even if
35436 it does not end in a newline.
35437
35438 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
35439
35440 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
35441 Author: Victor Gallardo <vgallardo@amcc.com>
35442 Date: Tue Sep 9 15:13:29 2008 -0700
35443
35444 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
35445
35446 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
35447 and glacier.
35448
35449 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
35450
35451 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
35452 Author: Heiko Schocher <hs@denx.de>
35453 Date: Mon Sep 8 10:21:11 2008 +0200
35454
35455 muas3001: added support for the LM75 sensor.
35456
35457 Signed-off-by: Heiko Schocher <hs@denx.de>
35458
35459 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
35460 Author: Heiko Schocher <hs@denx.de>
35461 Date: Mon Sep 8 10:20:19 2008 +0200
35462
35463 muas3001: activate WDT for the muas3001 board.
35464
35465 Signed-off-by: Heiko Schocher <hs@denx.de>
35466
35467 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
35468 Author: Heiko Schocher <hs@denx.de>
35469 Date: Mon Sep 8 10:19:36 2008 +0200
35470
35471 muas3001: added 64MB SDRAM autodetection.
35472
35473 Signed-off-by: Heiko Schocher <hs@denx.de>
35474
35475 commit 5251469943895de4bb9a04d5053352cc22acb7d5
35476 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
35477 Date: Thu Aug 21 07:12:26 2008 -0700
35478
35479 Fix printf errors under -DDEBUG
35480
35481 Fix printf format-string/arg mismatches under -DDEBUG.
35482
35483 These warnings occur with DEBUG defined for a platform using
35484 cpu/mpc85xx. Users of other architectures can unearth similar
35485 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
35486 after "CFLAGS += $(call cc-option,-fno-stack-protector)".
35487
35488 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
35489 Signed-off-by: Andy Fleming <afleming@freescale.com>
35490
35491 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
35492 Author: Wolfgang Denk <wd@denx.de>
35493 Date: Tue Sep 9 23:55:18 2008 +0200
35494
35495 Update CHANGELOG, prepare 2008-10-rc1 release
35496
35497 Signed-off-by: Wolfgang Denk <wd@denx.de>
35498
35499 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
35500 Author: Kumar Gala <galak@kernel.crashing.org>
35501 Date: Mon Sep 8 08:51:29 2008 -0500
35502
35503 85xx: Ensure timebase is zero on secondary cores
35504
35505 The e500um says the timebase is volatile out of reset. To ensure
35506 TB sync works we need to make sure its zero.
35507
35508 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35509
35510 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
35511 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35512 Date: Tue Sep 9 22:18:24 2008 +0200
35513
35514 bootm_load_os: fix load_end debug message
35515
35516 print load_end value not pointer
35517
35518 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35519
35520 commit 1d9af0be764960e6cc1c093e97176c3542796820
35521 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35522 Date: Tue Sep 9 22:18:23 2008 +0200
35523
35524 bootm: enable fdt support only on ppc, m68k and sparc
35525
35526 ...as done in image.c
35527
35528 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35529
35530 commit 748b5274e76f81df85cfcffaffedc323678d0623
35531 Author: Markus Heidelberg <markus.heidelberg@web.de>
35532 Date: Tue Sep 9 18:51:05 2008 +0200
35533
35534 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
35535
35536 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
35537
35538 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
35539 Author: Markus Heidelberg <markus.heidelberg@web.de>
35540 Date: Tue Sep 9 17:31:46 2008 +0200
35541
35542 gitignore: add tags files and Vim swap file
35543
35544 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
35545
35546 commit 1d9b67b23fca6a25154333733204339802510720
35547 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
35548 Date: Tue Sep 9 17:52:47 2008 +0900
35549
35550 add board_eth_init() for sh7785lcr board
35551
35552 Fix the problem that cannot work RTL8169 on sh7785lcr board.
35553
35554 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
35555
35556 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
35557 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
35558 Date: Wed Aug 6 16:08:41 2008 -0500
35559
35560 mtd: SPI Flash: Support the STMicro Flash
35561
35562 Add MTD SPI Flash support for M25P16, M25P20, M25P32,
35563 M25P40, M25P64, M25P80, M25P128.
35564
35565 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
35566 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
35567
35568 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
35569 Author: Wolfgang Denk <wd@denx.de>
35570 Date: Tue Sep 9 17:55:31 2008 +0200
35571
35572 trab: fix build problem after change to use do_div()
35573
35574 We must link with libgeneric now.
35575
35576 Signed-off-by: Wolfgang Denk <wd@denx.de>
35577
35578 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
35579 Author: Ryan CHEN <ryan.chen@st.com>
35580 Date: Wed Aug 20 13:00:17 2008 -0400
35581
35582 Correct drv_usb_kbd_init function
35583
35584 The patch is that check if usb_get_dev_index() function return valid
35585 pointer. If valid, continue. Otherwise return -1.
35586
35587 Signed-off-by: Ryan Chen <ryan.chen@st.com>
35588 Acked-by: Markus Klotzbuecher <mk@denx.de>
35589
35590 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
35591 Author: Remy Bohmer <linux@bohmer.net>
35592 Date: Wed Aug 20 11:22:02 2008 +0200
35593
35594 Make usb-stop() safe to call multiple times in a row.
35595
35596 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
35597 enabled the usb_stop() command in common/cmd_bootm.c which was
35598 not enabled for some time, because no board did actually set the
35599 CFG_CMD_USB flag. So, now the usb_stop() is executed before
35600 loading the linux kernel.
35601
35602 However, the usb_ohci driver hangs up (at least on AT91SAM) if the
35603 driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
35604 If some other piece of code calls usb_stop() before the bootm command,
35605 this command will hangup the system during boot.
35606 (usb start and stop is typically used while booting from usb memory stick)
35607
35608 But, stopping the usb stack twice is useless anyway, and a flag already
35609 existed that kept track on the usb_init()/usb_stop() calls.
35610 So, we now check if the usb stack is really started before we stop it.
35611
35612 This problem is now fixed in both the upper as low-level layer.
35613
35614 Signed-off-by: Remy Bohmer <linux@bohmer.net>
35615 Acked-by: Markus Klotzbuecher <mk@denx.de>
35616
35617 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
35618 Author: Wolfgang Denk <wd@denx.de>
35619 Date: Tue Sep 9 16:55:47 2008 +0200
35620
35621 Makefile: fix bug introduced by commit 47ffd6c2
35622
35623 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
35624 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
35625 Date: Tue Sep 9 10:00:33 2008 -0400
35626
35627 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
35628
35629 This patch solves the problems compiling ml507, v5fx30teval and
35630 ppc440-generic out of tree.
35631
35632 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
35633
35634 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
35635 Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
35636 Date: Thu Sep 4 15:35:46 2008 -0300
35637
35638 Fix dev_print when called from usb_stor_info (usb storage command)
35639
35640 Fix output of the usb storage command. It was printing "Device 0: not
35641 available" because IF_TYPE_USB was not included into the switch
35642 statement.
35643
35644 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
35645
35646 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
35647 Author: Bartlomiej Sieka <tur@semihalf.com>
35648 Date: Tue Sep 9 12:58:16 2008 +0200
35649
35650 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
35651
35652 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35653
35654 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
35655 Author: Bartlomiej Sieka <tur@semihalf.com>
35656 Date: Tue Sep 9 12:58:15 2008 +0200
35657
35658 FIT: add ability to check hashes of all images in FIT, improve output
35659
35660 - add function fit_all_image_check_hashes() that verifies if all
35661 hashes of all images in the FIT are valid
35662 - improve output of fit_image_check_hashes() when the hash check fails
35663
35664 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
35665
35666 commit 1de1fa408967cef6804bb046b904114519bb36f0
35667 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35668 Date: Mon Sep 8 20:54:39 2008 +0200
35669
35670 qemu_mips: Update linux bootm to support dynamic cmdline
35671
35672 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35673
35674 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
35675 Author: Peter Tyser <ptyser@xes-inc.com>
35676 Date: Mon Sep 8 14:56:49 2008 -0500
35677
35678 Add support for booting of INTEGRITY operating system uImages
35679
35680 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
35681
35682 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
35683 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35684 Date: Mon Sep 8 21:01:29 2008 +0200
35685
35686 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
35687
35688 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35689
35690 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
35691 Author: Kumar Gala <galak@kernel.crashing.org>
35692 Date: Mon Sep 8 13:57:12 2008 -0500
35693
35694 Remove support for booting ARTOS images
35695
35696 Pantelis Antoniou stated:
35697 AFAIK, it is still used but the products using PPC are long gone.
35698 Nuke it plz (from orbit).
35699
35700 So remove it since it cleans up a usage of env_get_char outside of
35701 the environment code.
35702
35703 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35704
35705 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
35706 Author: Wolfgang Denk <wd@denx.de>
35707 Date: Tue Sep 9 15:45:18 2008 +0200
35708
35709 Makefile: compile and link each module just once
35710
35711 Several source files need to be compiled and linked when one or more
35712 config options are selected. To allow for easy selection in the
35713 Makefiles yet to avoild multiple compilation (which costs build time)
35714 and especially multiple linking (which causes errors), we use
35715 "COBJS = $(sort COBJS-y)" which eliminates duplicates.
35716
35717 By courtesy of Detlev Zundel who suggested this approach.
35718
35719 Signed-off-by: Wolfgang Denk <wd@denx.de>
35720
35721 commit 48d0192fe869948fef14b460b5f0c85bca933693
35722 Author: Andreas Engel <andreas.engel@ericsson.com>
35723 Date: Mon Sep 8 14:30:53 2008 +0200
35724
35725 Moved conditional compile into Makefile
35726
35727 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
35728
35729 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
35730 Author: Andreas Engel <andreas.engel@ericsson.com>
35731 Date: Mon Sep 8 10:17:31 2008 +0200
35732
35733 Merged serial_pl010.c and serial_pl011.c.
35734
35735 They only differ in the init function.
35736 This also adds the missing watchdog support for the PL011.
35737
35738 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
35739
35740 commit 0817d688f307ee2c0598e79175c94a40ce90337b
35741 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
35742 Date: Sun Sep 7 17:10:27 2008 -0400
35743
35744 Remove gap fill in srec object v2
35745
35746 SREC files do not need gap fill: The load address is specified in the
35747 file. On the other hand, it can't be avoided in a .bin object. It has
35748 no information about memory location.
35749
35750 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
35751
35752 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
35753 Author: Markus Heidelberg <markus.heidelberg@web.de>
35754 Date: Sun Sep 7 20:18:27 2008 +0200
35755
35756 README: fix missing subdirectory in the documentation
35757
35758 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
35759
35760 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
35761 Author: Graeme Russ <graeme.russ@gmail.com>
35762 Date: Sun Sep 7 07:08:42 2008 +1000
35763
35764 Update i386 code (sc520_cdp)
35765
35766 Attempt to bring i386 / sc520 inline with master
35767
35768 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
35769
35770 commit 5608692104efa8d56df803dc79ea41ac3607eee5
35771 Author: Guennadi Liakhovetski <lg@denx.de>
35772 Date: Thu Sep 4 13:01:49 2008 +0200
35773
35774 fw_env: add NAND support
35775
35776 Add support for environment in NAND with automatic NOR / NAND recognition,
35777 including unaligned environment, bad-block skipping, redundant environment
35778 copy.
35779
35780 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
35781
35782 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
35783 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35784 Date: Tue Sep 9 09:50:24 2008 +0200
35785
35786 ppc4xx: Fix out-of-tree building of CPCI405 variants
35787
35788 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
35789 Acked-by: Stefan Roese <sr@denx.de>
35790
35791 commit 59f630588e3fdbd698a0a2798e52a8924e899563
35792 Author: Sergei Poselenov <sposelenov@emcraft.com>
35793 Date: Fri Aug 15 15:42:11 2008 +0200
35794
35795 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
35796
35797 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35798
35799 commit e64987a892353f3d49eb242d997820ef8f538912
35800 Author: Anatolij Gustschin <agust@denx.de>
35801 Date: Fri Aug 15 15:42:13 2008 +0200
35802
35803 85xx: socrates: Enable Lime support.
35804
35805 This patch adds Lime GDC support together with support for the PWM
35806 backlight control through the w83782d chip. The reset pin of the
35807 latter is attached to GPIO, so we need to reset it in
35808 early_board_init_r.
35809
35810 Signed-off-by: Anatolij Gustschin <agust@denx.de>
35811
35812 commit 3e79b588b5199f35016f178fc0d5d1266382097f
35813 Author: Detlev Zundel <dzu@denx.de>
35814 Date: Fri Aug 15 15:42:12 2008 +0200
35815
35816 85xx: Socrates: Major code update.
35817
35818 - Update the local bus ranges in the FDT for Linux for the various
35819 devices connected to the local bus via chip-select.
35820
35821 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
35822 lower than 66 MHz and uses I/O accessor functions consequently.
35823
35824 - UPM data update.
35825
35826 - Update of default environment and configuration. Use I2C multibus
35827 as we do have two I2C buses. Also enable sdram and ext2 commands.
35828
35829 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35830 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35831 Signed-off-by: Detlev Zundel <dzu@denx.de>
35832
35833 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
35834 Author: Timur Tabi <timur@freescale.com>
35835 Date: Fri Jul 18 16:52:23 2008 +0200
35836
35837 Update Freescale 85xx boards to sys_eeprom.c
35838
35839 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
35840 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
35841 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
35842 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
35843
35844 Signed-off-by: Timur Tabi <timur@freescale.com>
35845
35846 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
35847 Author: Wolfgang Denk <wd@denx.de>
35848 Date: Tue Sep 9 10:08:02 2008 +0200
35849
35850 lib_ppc/interrupts.c: make board_show_activity() a weak function
35851
35852 This allows to use show_activity() without having to
35853 define an empty board_show_activity() function.
35854
35855 Signed-off-by: Wolfgang Denk <wd@denx.de>
35856
35857 commit fe876787f8743883ce58fed61525eaa2f34da4c5
35858 Author: Wolfgang Denk <wd@denx.de>
35859 Date: Tue Sep 9 10:06:44 2008 +0200
35860
35861 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
35862
35863 Signed-off-by: Wolfgang Denk <wd@denx.de>
35864
35865 commit 965de106ba8900372c8b16dc60d5acab7f925e38
35866 Author: Wolfgang Denk <wd@denx.de>
35867 Date: Tue Sep 9 10:03:47 2008 +0200
35868
35869 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
35870
35871 Signed-off-by: Wolfgang Denk <wd@denx.de>
35872
35873 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
35874 Author: Sergei Poselenov <sposelenov@emcraft.com>
35875 Date: Fri Aug 15 15:42:11 2008 +0200
35876
35877 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
35878
35879 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35880
35881 commit 36241ca29d4804a1006fb3f26069effda5202581
35882 Author: Anatolij Gustschin <agust@denx.de>
35883 Date: Fri Aug 15 15:42:13 2008 +0200
35884
35885 85xx: socrates: Enable Lime support.
35886
35887 This patch adds Lime GDC support together with support for the PWM
35888 backlight control through the w83782d chip. The reset pin of the
35889 latter is attached to GPIO, so we need to reset it in
35890 early_board_init_r.
35891
35892 Signed-off-by: Anatolij Gustschin <agust@denx.de>
35893
35894 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
35895 Author: Detlev Zundel <dzu@denx.de>
35896 Date: Fri Aug 15 15:42:12 2008 +0200
35897
35898 85xx: Socrates: Major code update.
35899
35900 - Update the local bus ranges in the FDT for Linux for the various
35901 devices connected to the local bus via chip-select.
35902
35903 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
35904 lower than 66 MHz and uses I/O accessor functions consequently.
35905
35906 - UPM data update.
35907
35908 - Update of default environment and configuration. Use I2C multibus
35909 as we do have two I2C buses. Also enable sdram and ext2 commands.
35910
35911 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35912 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35913 Signed-off-by: Detlev Zundel <dzu@denx.de>
35914
35915 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
35916 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35917 Date: Tue Sep 9 01:22:39 2008 +0200
35918
35919 disk-on-chip: remove duplicate doc_probe declaration
35920
35921 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35922
35923 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
35924 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35925 Date: Tue Sep 9 00:59:40 2008 +0200
35926
35927 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
35928
35929 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35930
35931 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
35932 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35933 Date: Tue Sep 9 00:59:39 2008 +0200
35934
35935 rs5c372: fix rtc_set prototype
35936
35937 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
35938
35939 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
35940 Author: Sergei Poselenov <sposelenov@emcraft.com>
35941 Date: Thu Aug 14 14:08:28 2008 +0200
35942
35943 ARM: fix warning: target CPU does not support interworking
35944
35945 This patch fixes warnings like this:
35946
35947 start.S:0: warning: target CPU does not support interworking
35948
35949 which come from some ARM cross compilers and are caused by hard-coded
35950 (with "--with-cpu=arm9" configuration option) ARM targets (which
35951 support ARM Thumb instructions), while the ARM target selected from
35952 the command line (with "-march=armv4") doesn't support Thumb
35953 instructions.
35954
35955 This warning is issued by the compiler regardless of the real use of
35956 the Thumb instructions in code.
35957
35958 To fix this problem, we use options according to compiler version
35959 being used.
35960
35961 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35962 Signed-off-by: Wolfgang Denk <wd@denx.de>
35963
35964 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
35965 Author: Sergei Poselenov <sposelenov@emcraft.com>
35966 Date: Thu Aug 14 14:08:28 2008 +0200
35967
35968 ARM: Use do_div() instead of division for "long long".
35969
35970 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35971 Signed-off-by: Wolfgang Denk <wd@denx.de>
35972
35973 commit 8febd13c69cb68652577d1a9fcbde954bf784155
35974 Author: Timur Tabi <timur@freescale.com>
35975 Date: Fri Jul 18 16:52:23 2008 +0200
35976
35977 Update Freescale 85xx boards to sys_eeprom.c
35978
35979 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
35980 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
35981 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
35982 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
35983
35984 Signed-off-by: Timur Tabi <timur@freescale.com>
35985
35986 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
35987 Author: Wolfgang Denk <wd@denx.de>
35988 Date: Mon Sep 8 23:26:22 2008 +0200
35989
35990 lib_arm/bootm.c: fix compile warnings
35991
35992 bootm.c:128: warning: label 'error' defined but not used
35993 bootm.c:65: warning: unused variable 'ret'
35994
35995 Signed-off-by: Wolfgang Denk <wd@denx.de>
35996
35997 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
35998 Author: Wolfgang Denk <wd@denx.de>
35999 Date: Mon Sep 8 22:46:42 2008 +0200
36000
36001 ml507: fix out of tree build problem
36002
36003 Signed-off-by: Wolfgang Denk <wd@denx.de>
36004
36005 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
36006 Author: Wolfgang Denk <wd@denx.de>
36007 Date: Mon Sep 8 22:10:28 2008 +0200
36008
36009 common/cmd_bootm.c: fix printf() format warnings
36010
36011 Signed-off-by: Wolfgang Denk <wd@denx.de>
36012
36013 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
36014 Author: Wolfgang Denk <wd@denx.de>
36015 Date: Mon Sep 8 22:37:45 2008 +0200
36016
36017 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
36018
36019 missing doc_probe() prototype.
36020
36021 Signed-off-by: Wolfgang Denk <wd@denx.de>
36022
36023 commit 2c5e3cc4994897d364b148942ff23e47783198f6
36024 Author: Wolfgang Denk <wd@denx.de>
36025 Date: Mon Sep 8 21:28:14 2008 +0200
36026
36027 mk48t59: fix compile problem introduced by commit d1e23194
36028
36029 Signed-off-by: Wolfgang Denk <wd@denx.de>
36030
36031 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
36032 Author: Stefan Roese <sr@denx.de>
36033 Date: Mon Sep 8 14:11:12 2008 +0200
36034
36035 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
36036
36037 This patch moves some 4xx specific prototypes out of include common.h
36038 to a ppc4xx specific header.
36039
36040 Signed-off-by: Stefan Roese <sr@denx.de>
36041
36042 commit ac53ee8318678190bf3c68da477a84a657d86fb0
36043 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36044 Date: Fri Sep 5 15:34:04 2008 +0200
36045
36046 ppc4xx: Update CPCI405(AB) configuration
36047
36048 This patch add FDT support and command line editing capabilities
36049 for CPCI405 and CPCI405AB boards.
36050
36051 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36052 Signed-off-by: Stefan Roese <sr@denx.de>
36053
36054 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
36055 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36056 Date: Fri Sep 5 15:34:03 2008 +0200
36057
36058 ppc4xx: Cleanup CPCI405 linker script
36059
36060 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36061 Signed-off-by: Stefan Roese <sr@denx.de>
36062
36063 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
36064 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36065 Date: Fri Sep 5 15:34:02 2008 +0200
36066
36067 ppc4xx: Update CPCI405 variants handling
36068
36069 This patch replaces the BOARD_REVISION variable in include/config.mk
36070 by a using a temporary include file in the platform directory.
36071
36072 The former way does not work anymore and the latter is also used by
36073 some other boards.
36074
36075 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36076 Signed-off-by: Stefan Roese <sr@denx.de>
36077
36078 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
36079 Author: Stefan Roese <sr@denx.de>
36080 Date: Mon Sep 8 10:01:48 2008 +0200
36081
36082 ppc4xx: Remove CONFIG_CS8952_PHY define
36083
36084 Since this define is only used on one board that was never really in
36085 production, removing this compile time option doesn't hurt and makes
36086 the code more readable.
36087
36088 Signed-off-by: Stefan Roese <sr@denx.de>
36089
36090 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
36091 Author: Stefan Roese <sr@denx.de>
36092 Date: Fri Sep 5 14:11:40 2008 +0200
36093
36094 ppc4xx: Fix compilation warning for PIP405
36095
36096 This patch fixes a compilation warning for the PIP405 board. It moves the
36097 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
36098 occur anymore. I am a little unsure if this #ifdef is at the correct
36099 place now or if it could be removed completely. This needs to get
36100 tested on the PIP405 board.
36101
36102 Signed-off-by: Stefan Roese <sr@denx.de>
36103
36104 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
36105 Author: Stefan Roese <sr@denx.de>
36106 Date: Fri Sep 5 14:09:09 2008 +0200
36107
36108 ppc4xx: Fix compilation warning for canyonlands & glacier
36109
36110 Signed-off-by: Stefan Roese <sr@denx.de>
36111
36112 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
36113 Author: Kumar Gala <galak@kernel.crashing.org>
36114 Date: Fri Sep 5 14:40:29 2008 -0500
36115
36116 Fix compiler warning in mpc8xxx ddr code
36117
36118 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
36119 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
36120 ctrl_regs.c:523: note: 'caslat' was declared here
36121
36122 Add a warning in DDR1 case if cas_latency isn't a value we know about.
36123
36124 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36125 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36126
36127 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
36128 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36129 Date: Mon Sep 1 23:06:23 2008 +0200
36130
36131 rtc: allow rtc_set to return an error and use it in cmd_date
36132
36133 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36134
36135 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
36136 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36137 Date: Mon Sep 1 01:16:33 2008 +0200
36138
36139 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
36140
36141 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36142
36143 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
36144 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36145 Date: Sun Aug 31 05:37:04 2008 +0900
36146
36147 config.mk: Move arch-specific condition to $(ARCH)_config.mk
36148
36149 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
36150
36151 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
36152 Author: Kumar Gala <galak@kernel.crashing.org>
36153 Date: Fri Aug 29 19:08:29 2008 -0500
36154
36155 Prevent crash if random/invalid ramdisks are passed to bootm
36156
36157 Adds returning an error from the ramdisk detection code if
36158 its not a real ramdisk (invalid). There is no reason we can't
36159 just return back to the console if we detect an invalid
36160 ramdisk or CRC error.
36161
36162 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36163
36164 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
36165 Author: Anatolij Gustschin <agust@denx.de>
36166 Date: Fri Aug 29 21:04:45 2008 +0200
36167
36168 Prevent crash if random DTB address is passed to bootm
36169
36170 This patch adds bootm_start() return value check. If
36171 error status is returned, we do not proceed further to
36172 prevent board reset or crash as we still can recover
36173 at this point.
36174
36175 Signed-off-by: Anatolij Gustschin <agust@denx.de>
36176
36177 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
36178 Author: Andrew Dyer <adyer@righthandtech.com>
36179 Date: Fri Aug 29 12:30:39 2008 -0500
36180
36181 clean up some #if !defined() in drivers/video/cfb_console.c
36182
36183 rearrange some #if !defined() / #else / #endif statements to remove
36184 the negative logic.
36185
36186 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
36187
36188 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
36189 Author: Kyungmin Park <kmpark@infradead.org>
36190 Date: Fri Aug 29 09:02:20 2008 +0900
36191
36192 apollon: use the last memory area for u-boot
36193
36194 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36195
36196 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
36197 Author: Heiko Schocher <hs@denx.de>
36198 Date: Thu Aug 28 13:50:42 2008 +0200
36199
36200 TQM8272: move NAND part in seperate File
36201
36202 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
36203 because I have no longer access to the hardware.
36204
36205 Signed-off-by: Heiko Schocher <hs@denx.de>
36206
36207 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
36208 Author: Heiko Schocher <hs@denx.de>
36209 Date: Thu Aug 28 13:48:36 2008 +0200
36210
36211 TQM8272: Fix compiling error for the TQM8272 board.
36212
36213 Fix compile problems caused by
36214 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
36215
36216 Signed-off-by: Heiko Schocher <hs@denx.de>
36217
36218 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
36219 Author: Kyungmin Park <kmpark@infradead.org>
36220 Date: Wed Aug 27 14:45:20 2008 +0900
36221
36222 Add JFFS2 command support on OneNAND
36223
36224 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
36225
36226 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
36227 Author: Mark Jackson <mpfj@mimc.co.uk>
36228 Date: Mon Aug 25 19:21:30 2008 +0100
36229
36230 Allow console input to be disabled
36231
36232 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
36233
36234 When CONFIG_DISABLE_CONSOLE is defined, setting
36235 GD_FLG_DISABLE_CONSOLE disables all console input and output.
36236
36237 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
36238
36239 commit 2b22d608f370565c87f55928b524207031419c11
36240 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
36241 Date: Wed Jul 30 12:39:29 2008 +0200
36242
36243 loads: allow negative offsets
36244
36245 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
36246
36247 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
36248 Author: Yuri Tikhonov <yur@emcraft.com>
36249 Date: Thu Sep 4 11:19:05 2008 +0200
36250
36251 USB EHCI: reset root hub
36252
36253 Some of multi-function USB controllers (e.g. ISP1562) allow root hub
36254 resetting only via EHCI registers. So, this patch adds the
36255 corresponding kind of reset to OHCI's hc_reset() if the newly
36256 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
36257 board).
36258
36259 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36260 Acked-by: Markus Klotzbuecher <mk@denx.de>
36261
36262 commit 5875d358f025c1b042d8a0f08384b756de7256c9
36263 Author: Yuri Tikhonov <yur@emcraft.com>
36264 Date: Fri Aug 15 15:42:09 2008 +0200
36265
36266 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
36267
36268 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36269
36270 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
36271 Author: Stefan Roese <sr@denx.de>
36272 Date: Fri Sep 5 10:47:46 2008 +0200
36273
36274 devices: Use list_add_tail() instead of list_add() to register a device
36275
36276 This patch fixes a problem spotted on Glacier/Canyonlands (and most
36277 likely lots of other board ports), that no serial output was seen
36278 after console initialization in console_init_r(). This is because the
36279 last added console device was used instead of the first added.
36280
36281 This patch fixes this problem by using list_add_tail() instead of
36282 list_add() to register a device. This way the first added console
36283 is used again.
36284
36285 Signed-off-by: Stefan Roese <sr@denx.de>
36286
36287 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
36288 Author: Victor Gallardo <vgallardo@amcc.com>
36289 Date: Thu Sep 4 23:49:36 2008 -0700
36290
36291 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
36292
36293 This patch adds GPCS, SGMII and M88E1112 PHY support
36294 for the AMCC PPC460GT/EX processors.
36295
36296 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
36297 Signed-off-by: Stefan Roese <sr@denx.de>
36298
36299 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
36300 Author: Adam Graham <agraham@amcc.com>
36301 Date: Wed Sep 3 12:26:59 2008 -0700
36302
36303 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
36304
36305 Signed-off-by: Adam Graham <agraham@amcc.com>
36306 Signed-off-by: Stefan Roese <sr@denx.de>
36307
36308 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
36309 Author: Adam Graham <agraham@amcc.com>
36310 Date: Wed Sep 3 12:26:28 2008 -0700
36311
36312 ppc4xx: IBM Memory Controller DDR autocalibration routines
36313
36314 Alternate SDRAM DDR autocalibration routine that can be generically used
36315 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
36316 support of more DIMM/memory chip vendors and gets the DDR autocalibration
36317 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
36318
36319 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
36320 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range
36321 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a
36322 lot longer to run than Method_B. Method_B executes in the same amount of time
36323 as the currently existing DDR autocalibration routine, i.e. 1 second or so.
36324 Normally Method_B is used and it is set as the default method.
36325
36326 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
36327 Controller registers.[bit-field]:
36328 1) SDRAM0_RQDC.[RQFD]
36329 2) SDRAM0_RFDC.[RFFD]
36330
36331 This alternate PPC4xx DDR autocalibration code calibrates the following
36332 IBM SDRAM Controller registers.[bit-field]:
36333
36334 1) SDRAM0_WRDTR.[WDTR]
36335 2) SDRAM0_CLKTR.[CKTR]
36336 3) SDRAM0_RQDC.[RQFD]
36337 4) SDRAM0_RFDC.[RFFD]
36338
36339 and will also use the calibrated settings of the above four registers that
36340 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
36341 register.[bit-field].
36342
36343 Signed-off-by: Adam Graham <agraham@amcc.com>
36344 Signed-off-by: Stefan Roese <sr@denx.de>
36345
36346 commit e07f4a8033b6270b8103049adb6456f660ff4a89
36347 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
36348 Date: Mon Sep 1 13:09:39 2008 -0400
36349
36350 ppc44x: Unification of virtex5 pp440 boards
36351
36352 This patch provides an unificated way of handling xilinx v5 ppc440 boards.
36353
36354 It unificates 3 different things:
36355
36356 1) Source code
36357 A new board called ppc440-generic has been created. This board includes
36358 a generic tlb initialization (Maps the whole memory into virtual) and
36359 defines board_pre_init, checkboard, initdram and get_sys_info weakly,
36360 so, they can be replaced by specific functions.
36361
36362 If a new board needs to redefine any of the previous functions
36363 (specific initialization) it can create a new directory with the
36364 specific initializations needed. (see the example ml507 board).
36365
36366 2) Configuration file
36367 Common configurations are located under configs/xilinx-ppc440.h, this
36368 header file interpretes the xparameters file generated by EDK and
36369 configurates u-boot in correspondence. Example: if there is a Temac,
36370 allows CMD_CONFIG_NET
36371 Specific configuration are located under specific configuration file.
36372 (see the example ml507 board)
36373
36374 3) Makefile
36375 Some work has been done in order to not duplicate work in the Main
36376 Makefile. Please see the attached code.
36377
36378 In order to support new boards they can be implemented in the next way:
36379
36380 a) Simple Generic Board (90% of the time)
36381 Using EDK generates a new xparameters.h file, replace
36382 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
36383 && make
36384
36385 b) Simple Boards with special u-boot parameters (9 % of the time)
36386 Create a new file under configs for it (use ml507.h as example) and
36387 change your paramaters. Create a new Makefile paragraph and compile
36388
36389 c) Complex boards (1% of the time)
36390 Create a new folder for the board, like the ml507
36391
36392 Finally, it adds support for the Avnet FX30T Evaluation board, following
36393 the new generic structure:
36394
36395 Cheap board by Avnet for evaluating the Virtex5 FX technology.
36396
36397 This patch adds support for:
36398 - UartLite
36399 - 16MB Flash
36400 - 64MB RAM
36401
36402 Prior using U-boot in this board, read carefully the ERRATA by Avnet
36403 to solve some memory initialization issues.
36404
36405 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
36406 Signed-off-by: Stefan Roese <sr@denx.de>
36407
36408 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
36409 Author: Nick Spence <nick.spence@freescale.com>
36410 Date: Tue Sep 2 15:21:16 2008 -0500
36411
36412 mpc83xx: fix mpc8313 in-tree building with NAND
36413
36414 and add mpc8313 NAND build to MAKEALL
36415
36416 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36417 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36418
36419 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
36420 Author: Nick Spence <nick.spence@freescale.com>
36421 Date: Thu Aug 28 14:09:25 2008 -0700
36422
36423 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
36424
36425 Cleans up some latent issues with the data cache control so that
36426 dcache_enable() and dcache_disable() will work reliably (after
36427 unlock_ram_in_cache() has been called)
36428
36429 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36430 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36431
36432 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
36433 Author: Nick Spence <nick.spence@freescale.com>
36434 Date: Thu Aug 28 14:09:19 2008 -0700
36435
36436 mpc83xx: Store and display Arbiter Event Register values
36437
36438 Record the Arbiter Event Register values and optionally display them.
36439
36440 The Arbiter Event Register can record the type and effective address of
36441 an arbiter error, even through an HRESET. This patch stores the values in
36442 the global data structure.
36443
36444 Display of the Arbiter Event registers immediately after the RSR value
36445 can be enabled with defines. The Arbiter values will only be displayed
36446 if an arbiter event has occured since the last Power On Reset, and either
36447 of the following defines exist:
36448 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
36449 and type register values
36450 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter
36451 event register values
36452
36453 Address Only transactions are one of the trapped events that can register
36454 as an arbiter event. They occur with some cache manipulation instructions
36455 if the HID0_ABE (Address Broadcast Enable) is set and the memory region
36456 has the MEMORY_COHERENCE WIMG bit set. Setting:
36457 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
36458 only events, so that it can still capture
36459 other real problems.
36460
36461 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36462 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36463
36464 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
36465 Author: Nick Spence <nick.spence@freescale.com>
36466 Date: Thu Aug 28 14:09:11 2008 -0700
36467
36468 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
36469
36470 This is needed in unlock_ram_in_cache() because it is called from C and
36471 will corrupt the small data area anchor that is kept in R2.
36472
36473 lock_ram_in_cache() is modified similarly as good coding practice, but
36474 is not called from C.
36475
36476 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36477 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36478
36479 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
36480 Author: Nick Spence <nick.spence@freescale.com>
36481 Date: Fri Aug 22 23:52:50 2008 -0700
36482
36483 MPC83XX: Fix GPIO configuration - set gpio level before direction
36484
36485 Set DAT value before DIR values to avoid creating glitches on the
36486 GPIO signals.
36487
36488 Set gpio level register before direction register to inhibit
36489 glitches on high level output pins.
36490
36491 Dir and data gets cleared at powerup, so high level output lines see
36492 a short low pulse between setting the direction and level registers.
36493
36494 Issue was seen on a new board with the nReset line of the NOR flash
36495 connected to a GPIO. Setting the direction register puts the NOR flash
36496 in reset so the next instruction to set the level cannot get executed.
36497
36498 Signed-off-by: Nick Spence <nick.spence@freescale.com>
36499 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
36500 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36501
36502 commit 7007c5975ee900ad70983b0681d3251e221f8321
36503 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36504 Date: Tue Sep 2 02:58:32 2008 +0200
36505
36506 doc/qemu_mips: add doc howto debug u-boot with gdb
36507
36508 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
36509
36510 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
36511 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36512 Date: Wed Sep 3 17:15:45 2008 +0200
36513
36514 ppx4xx: Fix broken DASA_SIM board
36515
36516 This patch adds initdram() to DASA_SIM boards that has been
36517 removed accidentally by a previous commit.
36518
36519 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36520 Signed-off-by: Stefan Roese <sr@denx.de>
36521
36522 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
36523 Author: Stefan Roese <sr@denx.de>
36524 Date: Mon Sep 1 08:35:37 2008 +0200
36525
36526 ppc4xx: Remove reference to common/lists.o from some esd linker scripts
36527
36528 This patch removes some direct references to common/lists.o from some
36529 esd linker scripts. This is necessary because the lists source was moved
36530 and is not in the "common" directory anymore.
36531
36532 Signed-off-by: Stefan Roese <sr@denx.de>
36533
36534 commit 97b0734d65f8a0b03df0a335a2addc759da56107
36535 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36536 Date: Tue Sep 2 16:33:05 2008 +0200
36537
36538 ppc4xx: Remove obsolete or unused functions from some esd boards
36539
36540 This patch removes initdram() and testdram() from most esd 405 platforms.
36541 Some boards also have an empty dummy implementation of
36542 misc_init_f(). This is also removed.
36543
36544 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36545 Signed-off-by: Stefan Roese <sr@denx.de>
36546
36547 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
36548 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36549 Date: Tue Sep 2 15:07:54 2008 +0200
36550
36551 ppc4xx: Update VOM405 board configuration
36552
36553 - remove PCI code
36554 - add command line editing
36555 - minor cleanup
36556
36557 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36558 Signed-off-by: Stefan Roese <sr@denx.de>
36559
36560 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
36561 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36562 Date: Tue Sep 2 15:07:53 2008 +0200
36563
36564 ppc4xx: Remove obsolete initdram() function from VOM405 board
36565
36566 This patch removed the obsolete initdram() function from
36567 VOM405 platform file.
36568
36569 Some minor cleanup.
36570
36571 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36572 Signed-off-by: Stefan Roese <sr@denx.de>
36573
36574 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
36575 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36576 Date: Tue Sep 2 15:07:52 2008 +0200
36577
36578 ppc4xx: Cleanup VOM405 linker script
36579
36580 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36581 Signed-off-by: Stefan Roese <sr@denx.de>
36582
36583 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
36584 Author: Matthias Fuchs <mf@esd.eu>
36585 Date: Tue Sep 2 15:07:51 2008 +0200
36586
36587 ppc4xx: Add fdt support for VOM405 boards
36588
36589 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36590 Signed-off-by: Stefan Roese <sr@denx.de>
36591
36592 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
36593 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36594 Date: Tue Sep 2 11:36:14 2008 +0200
36595
36596 ppc4xx: Coding style cleanup
36597
36598 Wrap long lines etc.
36599
36600 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36601 Signed-off-by: Stefan Roese <sr@denx.de>
36602
36603 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
36604 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36605 Date: Tue Sep 2 11:35:56 2008 +0200
36606
36607 ppc4xx: Enable USB on PLU405 boards
36608
36609 This patch enables the PCI-OHCI controller on PLU405 board.
36610
36611 Also the default CPU frequency is updated to 266 MHz and
36612 command line editing is enabled.
36613
36614 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36615 Signed-off-by: Stefan Roese <sr@denx.de>
36616
36617 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
36618 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36619 Date: Tue Sep 2 11:35:35 2008 +0200
36620
36621 ppc4xx: Cleanup PLU405 platform file
36622
36623 This patch
36624 - wraps some long lines
36625 - removes unused/obsolete functions: misc_init_f() and initdram()
36626
36627 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36628 Signed-off-by: Stefan Roese <sr@denx.de>
36629
36630 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
36631 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36632 Date: Tue Sep 2 11:35:04 2008 +0200
36633
36634 ppc4xx: Cleanup PLU405 linker script
36635
36636 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36637 Signed-off-by: Stefan Roese <sr@denx.de>
36638
36639 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
36640 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36641 Date: Tue Sep 2 11:34:36 2008 +0200
36642
36643 ppc4xx: Add fdt support for PLU405 boards
36644
36645 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36646 Signed-off-by: Stefan Roese <sr@denx.de>
36647
36648 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
36649 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36650 Date: Tue Sep 2 11:34:08 2008 +0200
36651
36652 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
36653
36654 Signed-off-by: Matthias Fuchs <mf@esd.eu>
36655 Signed-off-by: Stefan Roese <sr@denx.de>
36656
36657 commit be1b0d2777e179191a57b138b660547a17e55aad
36658 Author: Jochen Friedrich <jochen@scram.de>
36659 Date: Tue Sep 2 11:24:59 2008 +0200
36660
36661 Don't tftp to unknown flash
36662
36663 If a board has a variable number of flash banks, there are empty entries
36664 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
36665 "Outside available Flash". This patch skips flash banks with unknown
36666 flash ids.
36667
36668 Signed-off-by: Jochen Friedrich <jochen@scram.de>
36669 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36670
36671 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
36672 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
36673 Date: Thu Aug 28 13:40:44 2008 +0900
36674
36675 net: smc911x: Add pkt_data_pull and pkt_data_push function
36676
36677 The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
36678 Byte-swapping is necessary, and so poor performance is inevitable.
36679 This problem cannot evade by the swap function of CHIP, this can
36680 evade by software Byte-swapping.
36681 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
36682 functions necessary to solve this problem.
36683
36684 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
36685 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36686
36687 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
36688 Author: Ben Warren <biggerbadderben@gmail.com>
36689 Date: Sun Aug 31 20:37:00 2008 -0700
36690
36691 Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
36692
36693 Affected boards:
36694 db64360
36695 db64460
36696 katmai
36697 taihu
36698 taishan
36699 yucca
36700 cpc45
36701 cpu87
36702 eXalion
36703 elppc
36704 debris
36705 kvme080
36706 mpc8315erdb
36707 integratorap
36708 ixdp425
36709 oxc
36710 pm826
36711 pm828
36712 pm854
36713 pm856
36714 ppmc7xx
36715 sc3
36716 sc520_spunk
36717 sorcery
36718 tqm8272
36719 tqm85xx
36720 utx8245
36721
36722 Removed initialization of the driver from net/eth.c
36723 Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
36724
36725 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36726
36727 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
36728 Author: Ben Warren <biggerbadderben@gmail.com>
36729 Date: Sun Aug 31 10:45:44 2008 -0700
36730
36731 Moved initialization of TULIP Ethernet controller to board_eth_init()
36732
36733 Affected boards:
36734 cu824
36735 bab7xx
36736 adciop
36737 dasa_sim
36738 mousse
36739 mpc8540eval
36740 musenki
36741 mvblue
36742 pcippc2/pcippc6
36743 sbc8240
36744 stxssa
36745
36746 Removed initialization of the driver from net/eth.c
36747
36748 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36749
36750 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
36751 Author: Ben Warren <biggerbadderben@gmail.com>
36752 Date: Sun Aug 31 10:44:19 2008 -0700
36753
36754 Moved initialization of E1000 Ethernet controller to board_eth_init()
36755
36756 Affected boards:
36757 ap1000
36758 mvbc_p
36759 PM854
36760
36761 Removed initialization of the driver from net/eth.c
36762
36763 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36764
36765 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
36766 Author: Ben Warren <biggerbadderben@gmail.com>
36767 Date: Sun Aug 31 10:40:51 2008 -0700
36768
36769 Moved initialization of plb2800 Ethernet driver to board_eth_init
36770
36771 Affected boards:
36772 purple
36773
36774 Removed initialization of controller from net/eth.c
36775
36776 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36777
36778 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
36779 Author: Ben Warren <biggerbadderben@gmail.com>
36780 Date: Sun Aug 31 10:39:12 2008 -0700
36781
36782 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
36783
36784 Modified board_eth_init() functions of boards that have this FEC in addition
36785 to other Ethernet controllers.
36786
36787 Affected boards:
36788 bc3450
36789 icecube
36790 mvbc_p
36791 o2dnt
36792 pm520
36793 total5200
36794 tq5200
36795
36796 Removed initialization of controller from net/eth.c
36797
36798 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36799
36800 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
36801 Author: Ben Warren <biggerbadderben@gmail.com>
36802 Date: Sun Aug 31 10:36:38 2008 -0700
36803
36804 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
36805
36806 Added a cpu_eth_init() function to MPC512x CPU directory and
36807 removed code from net/eth.c
36808
36809 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36810
36811 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
36812 Author: Ben Warren <biggerbadderben@gmail.com>
36813 Date: Sun Aug 31 10:16:59 2008 -0700
36814
36815 Moved initialization of IncaIP Ethernet controller to board_eth_init
36816
36817 Affected boards:
36818 IncaIP
36819
36820 Removed initialization of the driver from net/eth.c
36821
36822 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36823
36824 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
36825 Author: Ben Warren <biggerbadderben@gmail.com>
36826 Date: Sun Aug 31 10:15:26 2008 -0700
36827
36828 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
36829
36830 Affected boards:
36831 AmigaOneG3SE
36832
36833 Removed initialization of the driver from net/eth.c
36834
36835 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36836
36837 commit 6aca145e067efe75398e9fac97822bd3700de0b2
36838 Author: Ben Warren <biggerbadderben@gmail.com>
36839 Date: Sun Aug 31 10:13:34 2008 -0700
36840
36841 Moved initialization of GT6426x Ethernet controller to board_eth_init()
36842
36843 Affected boards:
36844 EVB64260
36845 P3G4
36846 ZUMA
36847
36848 Removed initialization of the driver from net/eth.c
36849
36850 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36851
36852 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
36853 Author: Ben Warren <biggerbadderben@gmail.com>
36854 Date: Sun Aug 31 10:08:43 2008 -0700
36855
36856 Moved initialization of PCNET Ethernet controller to board_eth_init()
36857
36858 Affected boards:
36859 PN62
36860 sc520_cdp
36861
36862 Removed initialization of the driver from net/eth.c
36863
36864 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36865
36866 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
36867 Author: Ben Warren <biggerbadderben@gmail.com>
36868 Date: Sun Aug 31 10:07:16 2008 -0700
36869
36870 Moved initialization of NATSEMI Ethernet controller to board_eth_init()
36871
36872 Affected boards:
36873 a3000
36874
36875 Removed initialization of the driver from net/eth.c
36876
36877 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36878
36879 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
36880 Author: Ben Warren <biggerbadderben@gmail.com>
36881 Date: Sun Aug 31 10:03:22 2008 -0700
36882
36883 Moved initialization of NS8382X Ethernet controller to board_eth_init()
36884
36885 Affected boards:
36886 bc3450
36887 cpci5200
36888 mecp5200
36889 pf2000
36890 icecube
36891 o2dnt
36892 pm520
36893 sandpoint8245
36894 total5200
36895 tqm5200
36896
36897 Removed initialization of the driver from net/eth.c
36898
36899 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36900
36901 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
36902 Author: Ben Warren <biggerbadderben@gmail.com>
36903 Date: Sun Aug 31 09:59:33 2008 -0700
36904
36905 Moved initialization of TSI108 Ethernet controller to board_eth_init()
36906
36907 Affected boards:
36908 mpc7448hpc2
36909
36910 Removed initialization of the driver from net/eth.c
36911
36912 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36913
36914 commit 0b252f50ae218ae15bfb63af44227972686ebc56
36915 Author: Ben Warren <biggerbadderben@gmail.com>
36916 Date: Sun Aug 31 21:41:08 2008 -0700
36917
36918 Moved initialization of RTL8139 Ethernet controller to board_eth_init()
36919
36920 Affected boards:
36921 hidden_dragon
36922 MPC8544DS
36923 MPC8610HPCN
36924 R2DPLUS
36925 TB0229
36926
36927 Removed initialization of the driver from net/eth.c
36928
36929 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36930
36931 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
36932 Author: Ben Warren <biggerbadderben@gmail.com>
36933 Date: Sun Aug 31 09:49:42 2008 -0700
36934
36935 Moved initialization of RTL8169 Ethernet controller to board_eth_init()
36936
36937 Affected boards:
36938 linkstation
36939 r7780mp
36940
36941 Removed initialization of the driver from net/eth.c
36942
36943 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36944
36945 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
36946 Author: Ben Warren <biggerbadderben@gmail.com>
36947 Date: Tue Aug 12 22:11:53 2008 -0700
36948
36949 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
36950
36951 Removed at91sam9_eth_initialize() from net/eth.c
36952
36953 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36954
36955 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
36956 Author: Ben Warren <biggerbadderben@gmail.com>
36957 Date: Sun Aug 31 22:22:04 2008 -0700
36958
36959 Introduce netdev.h header file and remove externs
36960
36961 This addresses all drivers whose initializers have already
36962 been moved to board_eth_init()/cpu_eth_init().
36963
36964 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36965
36966 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
36967 Author: Andy Fleming <afleming@freescale.com>
36968 Date: Sun Aug 31 16:33:30 2008 -0500
36969
36970 Add pixis_set_sgmii command
36971
36972 The 8544DS and 8572DS platforms support an optional SGMII riser card to
36973 expose ethernet over an SGMII interface. Once the card is in, it is also
36974 necessary to configure the board such that it uses the card, rather than
36975 the on-board ethernet ports. This can either be done by flipping dip switches
36976 on the motherboard, or by modifying registers in the pixis. Either way
36977 requires a reboot.
36978
36979 This adds a command to allow users to choose which ports are routed through
36980 the SGMII card, and which through the onboard ports. It also allows users
36981 to revert to the current switch settings.
36982
36983 This code does not work on the 8572, as the PIXIS is different.
36984
36985 Signed-off-by: Andy Fleming <afleming@freescale.com>
36986 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
36987
36988 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
36989 Author: Andy Fleming <afleming@freescale.com>
36990 Date: Sun Aug 31 16:33:29 2008 -0500
36991
36992 Add SGMII support for the 8544 DS
36993
36994 The 8544 DS has an optional SGMII Riser card, which uses different PHY
36995 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser
36996 setup code if so.
36997
36998 Signed-off-by: Andy Fleming <afleming@freescale.com>
36999 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37000
37001 commit 652f7c2eef76a1340928bd660845441e932d86a2
37002 Author: Andy Fleming <afleming@freescale.com>
37003 Date: Sun Aug 31 16:33:28 2008 -0500
37004
37005 Add support for Freescale SGMII Riser Card
37006
37007 The 8544DS and 8572DS systems have an optional SGMII riser card which
37008 exposes new ethernet ports which are connected to the eTSECs via an
37009 SGMII interface. The SGMII PHYs for this board are offset from the standard
37010 PHY addresses, so this code modifies the passed in tsec_info structure to
37011 use the SGMII PHYs on the card, instead.
37012
37013 Signed-off-by: Andy Fleming <afleming@freescale.com>
37014 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37015
37016 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
37017 Author: Andy Fleming <afleming@freescale.com>
37018 Date: Sun Aug 31 16:33:27 2008 -0500
37019
37020 Add SGMII support to the tsec
37021
37022 Adds support for configuring the TBI to talk properly with the SerDes.
37023
37024 Signed-off-by: Andy Fleming <afleming@freescale.com>
37025 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37026
37027 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
37028 Author: Andy Fleming <afleming@freescale.com>
37029 Date: Sun Aug 31 16:33:26 2008 -0500
37030
37031 Pass in tsec_info struct through tsec_initialize
37032
37033 The tsec driver contains a hard-coded array of configuration information
37034 for the tsec ethernet controllers. We create a default function that works
37035 for most tsecs, and allow that to be overridden by board code. It creates
37036 an array of tsec_info structures, which are then parsed by the corresponding
37037 driver instance to determine configuration. Also, add regs, miiregs, and
37038 devname fields to the tsec_info structure, so that we don't need the kludgy
37039 "index" parameter.
37040
37041 Signed-off-by: Andy Fleming <afleming@freescale.com>
37042 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37043
37044 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
37045 Author: Andy Fleming <afleming@freescale.com>
37046 Date: Sun Aug 31 16:33:25 2008 -0500
37047
37048 tsec: Move tsec.h to include/
37049
37050 This is to prepare the way for board code passing in the tsec_info structure
37051
37052 Signed-off-by: Andy Fleming <afleming@freescale.com>
37053 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37054
37055 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
37056 Author: Sergei Poselenov <sposelenov@emcraft.com>
37057 Date: Fri Jun 6 15:52:44 2008 +0200
37058
37059 PHY: Add support for the M88E1121R Marvell chip.
37060
37061 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
37062 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
37063 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37064
37065 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
37066 Author: Wolfgang Denk <wd@denx.de>
37067 Date: Tue Sep 2 21:17:36 2008 +0200
37068
37069 fw_env.c: fix build problems with MTD_VERSION=old
37070
37071 (as needed to support old 2.4 Linux kernel based releases)
37072
37073 Signed-off-by: Wolfgang Denk <wd@denx.de>
37074
37075 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
37076 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37077 Date: Mon Sep 1 17:11:26 2008 +0200
37078
37079 device: make device_register() clone the device
37080
37081 This is expected by the callers, but this fact was hidden well within
37082 the old list implementation.
37083
37084 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37085
37086 commit baf449fc5ff96f071bb0e3789fd3265f6d4fd9a0
37087 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37088 Date: Mon Sep 1 14:00:07 2008 +0200
37089
37090 avr32: Add support for "GPIO" port mux
37091
37092 The "GPIO" port mux is used on AVR32 UC3 parts as well as AT32AP7200 and
37093 all later AVR32 chips. This patch adds a driver for it, implementing the
37094 same API as the existing portmux-pio driver but with more functionality.
37095
37096 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37097
37098 commit d92852579546c46bdaac978e0b6767a6645b69e0
37099 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37100 Date: Fri Aug 15 15:02:29 2008 +0200
37101
37102 atstk1000: Convert to new-style makefile
37103
37104 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37105
37106 commit 25e6854d42c11046a468576179b5494f850311b2
37107 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37108 Date: Sun Aug 31 18:46:35 2008 +0200
37109
37110 avr32: use board_early_init_r instead of board_init_info
37111
37112 Replace the avr32-specific board_init_info hook by the standard
37113 board_early_init_r hook and make it optional.
37114
37115 board_early_init_r() runs somewhat earlier than board_init_info used to
37116 do, but this isn't a problem for any of the in-tree boards.
37117
37118 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37119
37120 commit 36d375faf5cff98e8dca32aabbbb1ec6036437dd
37121 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37122 Date: Sun Aug 31 18:24:24 2008 +0200
37123
37124 avr32: Use board_postclk_init instead of gclk_init
37125
37126 Replace the avr32-specific gclk_init() board hook with the standard
37127 board_postclk_init() hook which is supposed to run at the same point
37128 during initialization.
37129
37130 Provide a dummy weak alias for boards not implementing this hook. The
37131 cost of this is:
37132 - 2 bytes for the dummy function (retal 0)
37133 - 2 bytes for each unnecessary function call (short rcall)
37134
37135 which is a pretty small price to pay for avoiding lots of #ifdef
37136 clutter. In this particular case, all boards probably end up slightly
37137 smaller because we avoid the conditional checking if the gclk_init
37138 symbol is NULL.
37139
37140 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37141
37142 commit abdde2b1d570b1ee77606bf783444fcddf7f0965
37143 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37144 Date: Sun Aug 31 18:07:35 2008 +0200
37145
37146 hammerhead: Use gclk helper functions
37147
37148 Use the new gclk helper functions to set up the PHY clock instead of
37149 accessing the PM registers directly.
37150
37151 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37152
37153 commit 98090cd75cdb40b2ab94c806c338540a5716748b
37154 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37155 Date: Sun Aug 31 18:05:32 2008 +0200
37156
37157 avr32: Add gclk helper functions
37158
37159 Add two helper functions for configuring and enabling generic clocks:
37160 - gclk_enable_output: Enables output on a GCLKx pin
37161 - gclk_set_rate: Configures a gclk to run at a specific rate
37162
37163 This should eliminate any reason to go mucking about with PM registers
37164 from board code.
37165
37166 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37167
37168 commit ab0df36fc7db9dda0b786b909f653e279dfeb9cf
37169 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37170 Date: Fri Aug 29 21:09:49 2008 +0200
37171
37172 avr32: refactor the portmux/gpio code
37173
37174 - Separate the portmux configuration functionality from the GPIO pin
37175 control API.
37176 - Separate the controller-specific code from the chip-specific code.
37177 - Allow "ganged" port configuration (multiple pins at once).
37178 - Add more flexibility to the "canned" peripheral select functions:
37179 - Allow using more than 23 address bits, more chip selects, as
37180 well as NAND- and CF-specific pins.
37181 - Make the MACB SPEED pin optional, and choose between MII/RMII
37182 using a parameter instead of an #ifdef.
37183 - Make it possible to use other MMC slots than slot 0, and support
37184 different MMC/SDCard data bus widths.
37185 - Use more reasonable pull-up defaults; floating pins may consume a
37186 lot of power.
37187 - Get rid of some custom portmux code from the mimc200 board code. The
37188 old gpio/portmux API couldn't really handle its requirements, but
37189 the new one can.
37190 - Add documentation.
37191
37192 The end result is slightly smaller code for all boards. Which isn't
37193 really the point, but at least it isn't any larger.
37194
37195 This has been verified on ATSTK1002 and ATNGW100. I'd appreciate if
37196 the board maintainers could help me test this on their boards. In
37197 particular, the mimc200 port has lost a lot of code, so I'm hoping Mark
37198 can help me out.
37199
37200 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37201 Cc: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
37202 Cc: Mark Jackson <mpfj@mimc.co.uk>
37203 Cc: Alex Raimondi <alex.raimondi@miromico.ch>
37204 Cc: Julien May <julien.may@miromico.ch>
37205
37206 Changes since v1:
37207 * Enable pullup on NWAIT
37208 * Add missing include to portmux-pio.h
37209 * Rename CONFIG_PIO2 -> CONFIG_PORTMUX_PIO to match docs
37210
37211 commit 4c24e8288c601cb773ab02528b48a8577970e867
37212 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37213 Date: Sat Aug 30 17:28:36 2008 +0200
37214
37215 avr32: data_bits should reflect the actual number of data bits
37216
37217 Make the data_bits enum in struct sdram_config reflect the actual number
37218 of data bits on the bus, i.e. 16 or 32. Having 0 mean 16 bits and 1 mean
37219 32 bits is just too confusing.
37220
37221 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37222
37223 commit 66b7bc5175325809718d8d49ef073bc1036ad71b
37224 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37225 Date: Fri Aug 29 17:48:18 2008 +0200
37226
37227 avr32: Update README
37228
37229 Remove some outdated and/or unnecessary information, and add updated
37230 information about the toolchain and buildroot.
37231
37232 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
37233
37234 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
37235 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37236 Date: Sun Aug 31 23:28:15 2008 +0900
37237
37238 sh: Remove CC line from board's Makefile
37239
37240 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37241
37242 commit 468eae0660de6fdfd9999944c536ecc4797bd944
37243 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37244 Date: Sun Aug 31 23:25:57 2008 +0900
37245
37246 sh: Replaced "@./mkconfig" for @$(MKCONFIG)
37247
37248 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37249
37250 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
37251 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37252 Date: Thu Aug 28 14:50:52 2008 +0900
37253
37254 sh: Add support sh2 to MAKEALL
37255
37256 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37257 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37258
37259 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
37260 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37261 Date: Thu Aug 28 14:52:23 2008 +0900
37262
37263 sh: Fix compile error rsk7203 board
37264
37265 This boards used old type preprocessor.
37266 This patch fix compile error.
37267
37268 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37269 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37270
37271 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
37272 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37273 Date: Thu Aug 28 14:53:31 2008 +0900
37274
37275 sh: Fix compile error sh7785lcr board
37276
37277 This boards used old type preprocessor.
37278 This patch fix compile error.
37279
37280 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37281 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37282
37283 commit 6f0da4972e48f99d37bc522814940a6022cd3084
37284 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37285 Date: Fri Aug 22 17:39:09 2008 +0900
37286
37287 sh: Renesas Solutions AP325RXA board support
37288
37289 AP325RXA is SH7723's reference board.
37290 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
37291 In this patch, support SCIF, NOR Flash, and Ethernet.
37292
37293 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37294 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37295
37296 commit ab09f433b50bb83b5e440c335bc3839ee069e534
37297 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37298 Date: Fri Aug 22 17:48:51 2008 +0900
37299
37300 sh: add support Renesas SH7723
37301
37302 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
37303 This patch supports CPU register's header file and SCIF serial driver.
37304
37305 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37306 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37307
37308 commit c655fad06ba3fb042dbc667724a40e1a9a091248
37309 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37310 Date: Sun Aug 31 23:02:04 2008 +0900
37311
37312 sh: Renesas RSK+ 7203 board support
37313
37314 This adds initial support for the RTE RSK+ SH7203 board.
37315
37316 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37317 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37318
37319 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
37320 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37321 Date: Thu Jul 3 23:11:02 2008 +0900
37322
37323 sh: Add support Renesas SH7203 processor
37324
37325 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37326 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37327
37328 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
37329 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37330 Date: Sun Aug 31 22:48:33 2008 +0900
37331
37332 sh: Add support SH2/SH2A which is CPU of Renesas Technology
37333
37334 Add support SH2/SH2A basic function.
37335
37336 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
37337 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37338
37339 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
37340 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37341 Date: Sun Aug 31 22:45:08 2008 +0900
37342
37343 sh: Renesas R0P7785LC0011RL board support
37344
37345 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
37346 Graphic, Ethernet, USB, SD, RTC, and I2C controller.
37347
37348 This patch supports the following functions:
37349 - 128MB DDR2-SDRAM (29-bit address mode only)
37350 - NOR Flash
37351 - USB host
37352 - Ethernet
37353
37354 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
37355 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37356
37357 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
37358 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
37359 Date: Thu Jul 10 19:32:53 2008 +0900
37360
37361 sh: add support for SH7785
37362
37363 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
37364 This patch supports CPU register's header file.
37365
37366 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
37367 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
37368
37369 commit d6e04258be8f2408845468d3cf722a4cf0433445
37370 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37371 Date: Sun Aug 31 04:45:42 2008 +0200
37372
37373 davinci: fix remaining dm644x_eth
37374
37375 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37376
37377 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
37378 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37379 Date: Sun Aug 31 04:24:56 2008 +0200
37380
37381 fs: Move conditional compilation to Makefile
37382
37383 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37384
37385 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
37386 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37387 Date: Sun Aug 31 04:24:55 2008 +0200
37388
37389 devices: merge to list_head
37390
37391 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37392
37393 commit ef0255fc75f28655f9681422079287d68a14dbaa
37394 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37395 Date: Sun Aug 31 04:24:51 2008 +0200
37396
37397 update linux/list
37398
37399 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37400
37401 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
37402 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37403 Date: Sun Aug 31 00:39:48 2008 +0200
37404
37405 smdk6400: add gitignore
37406
37407 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37408
37409 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
37410 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37411 Date: Sun Aug 31 00:39:48 2008 +0200
37412
37413 smdk6400: Use CONFIG_FLASH_CFI_DRIVER
37414
37415 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37416
37417 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
37418 Author: Guennadi Liakhovetski <lg@denx.de>
37419 Date: Sun Aug 31 00:39:47 2008 +0200
37420
37421 smdk6400: remove redundant bootargs definition
37422
37423 Double bootargs setting leads to a duplicated environmant entry.
37424
37425 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37426
37427 commit 11edcfe260f20dcea79284a3e95270989d433854
37428 Author: Guennadi Liakhovetski <lg@denx.de>
37429 Date: Sun Aug 31 00:39:47 2008 +0200
37430
37431 ARM: Add support for S3C6400 based SMDK6400 board
37432
37433 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
37434 driver for it too. The board can also boot from the NOR flash, but due to
37435 hardware limitations it can only address 64KiB on it, which is not enough
37436 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
37437
37438 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37439
37440 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
37441 Author: Guennadi Liakhovetski <lg@denx.de>
37442 Date: Sun Aug 31 00:39:47 2008 +0200
37443
37444 NAND: add NAND driver for S3C64XX
37445
37446 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
37447
37448 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37449
37450 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
37451 Author: Guennadi Liakhovetski <lg@denx.de>
37452 Date: Sun Aug 31 00:39:47 2008 +0200
37453
37454 S3C64XX: remove broken HWFLOW support from the serial driver
37455
37456 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
37457 broken and currently unused. Remove it.
37458
37459 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37460
37461 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
37462 Author: Guennadi Liakhovetski <lg@denx.de>
37463 Date: Sun Aug 31 00:39:47 2008 +0200
37464
37465 serial: add S3C64XX serial driver
37466
37467 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
37468
37469 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37470
37471 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
37472 Author: Guennadi Liakhovetski <lg@denx.de>
37473 Date: Sun Aug 31 00:39:46 2008 +0200
37474
37475 USB: Add support for OHCI controller on S3C6400
37476
37477 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
37478 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
37479 it should work too and we could still profit from instruction cache.
37480
37481 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37482
37483 commit 9b07773f8883665b002500c190507e9fd99b7181
37484 Author: Guennadi Liakhovetski <lg@denx.de>
37485 Date: Sun Aug 31 00:39:46 2008 +0200
37486
37487 ARM: Add arm1176 core with S3C6400 SoC
37488
37489 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
37490
37491 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
37492
37493 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
37494 Author: Sandeep Paulraj <s-paulraj@ti.com>
37495 Date: Sun Aug 31 00:39:46 2008 +0200
37496
37497 ARM DaVinci: Changing function names for EMAC driver
37498
37499 DM644x is just one of a series of DaVinci chips that use the EMAC driver.
37500 By replacing all the function names that start with dm644x_* to davinci_*
37501 we make these function more portable. I have tested this change on my EVM.
37502 DM6467 is another DaVinci SOC which uses the EMAC driver and i will
37503 be sending patches that add DaVinci DM6467 support to the list soon.
37504
37505 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
37506
37507 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
37508 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
37509 Date: Sat Aug 30 23:21:30 2008 +0200
37510
37511 Integrator[AP/CP] - Remove unused file memsetup.S
37512
37513 - memsetup.s is changed/merged to lowlevel_init.S
37514 memsetup.S has a global label memsetup that just returns back to caller
37515 - memsetup global label is changed/merged to lowlevel_init
37516 This label is not called from anywhere.
37517
37518 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
37519
37520 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
37521 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
37522 Date: Wed Aug 27 21:35:52 2008 +0200
37523
37524 ARM DaVinci: Standardize names of directories/files
37525
37526 ARM DaVinci: Standardize names of directories/files.
37527
37528 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
37529 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37530
37531 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
37532 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
37533 Date: Fri Jul 11 15:10:13 2008 -0400
37534
37535 ARM DaVinci: Move common functions to board/davinci/common
37536
37537 ARM DaVinci: Move common functions to board/davinci/common.
37538
37539 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
37540
37541 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
37542 Author: Stefan Roese <sr@denx.de>
37543 Date: Fri Aug 29 11:56:49 2008 +0200
37544
37545 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
37546
37547 This function is needed for the new NAND infrastructure. We only need
37548 a dummy implementation though for the NDFC.
37549
37550 Signed-off-by: Stefan Roese <sr@denx.de>
37551
37552 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
37553 Author: Stefan Roese <sr@denx.de>
37554 Date: Fri Aug 29 12:06:27 2008 +0200
37555
37556 ppc4xx: Increase image size for NAND boot target
37557
37558 This is needed since now with HUSH enabled (amcc-common.h) the image
37559 read from NAND exceeds the previous limit.
37560
37561 Signed-off-by: Stefan Roese <sr@denx.de>
37562
37563 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
37564 Author: Ben Warren <biggerbadderben@gmail.com>
37565 Date: Thu Aug 28 23:58:30 2008 -0700
37566
37567 Move MPC512x_FEC driver to drivers/net
37568
37569 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37570
37571 commit 80b00af01b3c9154774de2936f05a051e92f6a03
37572 Author: Ben Warren <biggerbadderben@gmail.com>
37573 Date: Thu Aug 28 23:58:29 2008 -0700
37574
37575 Move MPC5xxx_FEC driver to drivers/net
37576
37577 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
37578
37579 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
37580 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37581 Date: Fri Aug 29 21:53:57 2008 +0200
37582
37583 cmd_terminal: remove no need ifdef
37584
37585 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37586
37587 commit 578118bdf122877ae769776be002255be447b4fa
37588 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37589 Date: Fri Aug 29 21:53:57 2008 +0200
37590
37591 common/Makefile: order by functionality
37592
37593 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37594
37595 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
37596 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37597 Date: Fri Aug 29 21:53:56 2008 +0200
37598
37599 miiphyutil: Move conditional compilation to Makefile
37600
37601 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37602
37603 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
37604 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37605 Date: Fri Aug 29 21:53:37 2008 +0200
37606
37607 autoscript: Move conditional compilation to Makefile
37608
37609 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37610
37611 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
37612 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37613 Date: Fri Aug 29 01:18:11 2008 +0200
37614
37615 crc16: move to lib_generic
37616
37617 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37618
37619 commit 55195773eacefb22dd483a3c560ea30a14263ce1
37620 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37621 Date: Fri Aug 29 01:18:01 2008 +0200
37622
37623 miiphybb: move to drivers/net/phy
37624
37625 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37626
37627 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
37628 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37629 Date: Thu Aug 28 12:31:51 2008 +0200
37630
37631 soft_spi: move to drivers/spi
37632
37633 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37634
37635 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
37636 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37637 Date: Thu Aug 28 12:31:51 2008 +0200
37638
37639 soft_i2c: move to drivers/i2c
37640
37641 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37642
37643 commit 717a222229fdb77703e9174d0eb08a4b41febf49
37644 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37645 Date: Thu Aug 28 12:31:48 2008 +0200
37646
37647 gunzip: move to lib_generic
37648
37649 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
37650
37651 commit 52aef8f9ba28b747973bf76741c23db658d5773c
37652 Author: Wolfgang Ocker <weo@reccoware.de>
37653 Date: Tue Aug 26 19:55:23 2008 +0200
37654
37655 ppc4xx: NAND configuration
37656
37657 Made NAND bank configuration setting a config variable.
37658
37659 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
37660 Signed-off-by: Stefan Roese <sr@denx.de>
37661
37662 commit 5bc542a593abc9e974fbd34704af85c37c366c60
37663 Author: Victor Gallardo <vgallardo@amcc.com>
37664 Date: Thu Aug 28 16:03:28 2008 -0700
37665
37666 ppc4xx: fix UIC external_interrupt hang on UIC0
37667
37668 This patch fixes a UIC external_interrupt hang if critical or non-critical
37669 interrupt is set at the same time as a normal interrupt is set on UIC0.
37670
37671 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
37672 Signed-off-by: Stefan Roese <sr@denx.de>
37673
37674 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
37675 Author: Prodyut Hazarika <phazarika@amcc.com>
37676 Date: Wed Aug 27 16:39:00 2008 -0700
37677
37678 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
37679
37680 Removed Magic numbers from Initialization preload registers
37681 Tested with Kilauea, Glacier, Canyonlands and Katmai boards
37682 About 5-7% improvement seen for LMBench memtests
37683
37684 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
37685 Signed-off-by: Stefan Roese <sr@denx.de>
37686
37687 commit 8a490422bed685c9491274ec997f62061d88620b
37688 Author: John Rigby <jrigby@freescale.com>
37689 Date: Thu Aug 28 13:17:07 2008 -0600
37690
37691 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
37692
37693 MPC5121 rev 2 silicon has a new register for controlling how long
37694 CS is asserted after deassertion of ALE in multiplexed mode.
37695
37696 The default is to assert CS together with ALE. The alternative
37697 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
37698
37699 The default is wrong for the NOR flash and CPLD on the ADS5121.
37700
37701 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
37702 it does so conditionally based on silicon rev 2.0 or greater.
37703
37704 Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
37705 Signed-off-by: John Rigby <jrigby@freescale.com>
37706
37707 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
37708 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37709 Date: Tue Aug 19 00:56:46 2008 +0600
37710
37711 Add I2C frequency dividers for ColdFire
37712
37713 The existing I2C freqency dividers for FDR does not apply
37714 to ColdFire platforms; thus, a seperate table is added
37715 based on MCF5xxx Reference Manual
37716
37717 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
37718 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37719 Acked-by: Tabi Timur <timur@freescale.com>
37720
37721 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
37722 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37723 Date: Tue Aug 19 03:01:19 2008 +0600
37724
37725 ColdFire: I2C fix for multiple platforms
37726
37727 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37728
37729 commit d53cf6a9c7423cba668b867978648645f71c3090
37730 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37731 Date: Tue Aug 19 00:37:13 2008 +0600
37732
37733 ColdFire: Add CONFIG_MII_INIT for M5272C3
37734
37735 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37736
37737 commit f78ced3028d4130b24a318943a70cf5584ab16f4
37738 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37739 Date: Tue Aug 19 00:26:25 2008 +0600
37740
37741 ColdFire: Multiple fixes for MCF5445x platforms
37742
37743 Add FEC pin set and mii reset in __mii_init(). Change
37744 legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
37745 change cfi_offset to 0, and change CFG_FLASH_CFI to
37746 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
37747 M54455EVB env settings in configuration file.
37748
37749 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37750
37751 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
37752 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37753 Date: Fri Aug 15 18:24:25 2008 +0000
37754
37755 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
37756
37757 The user manuals recommend 7.
37758
37759 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
37760 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37761
37762 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
37763 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37764 Date: Fri Aug 15 16:50:07 2008 +0000
37765
37766 ColdFire: Raise uart baudrate to 115200 bps
37767
37768 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
37769 uart baudrate increase from 19200 to 115200 bps
37770
37771 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37772
37773 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
37774 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37775 Date: Wed Aug 13 12:07:03 2008 +0000
37776
37777 ColdFire: Fix board.c warning message
37778
37779 Implicit declaration of nand_init() warning message
37780
37781 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
37782
37783 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
37784 Author: Kumar Gala <galak@kernel.crashing.org>
37785 Date: Wed Aug 27 01:10:34 2008 -0500
37786
37787 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
37788
37789 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37790
37791 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
37792 Author: Heiko Schocher <hs@denx.de>
37793 Date: Thu Aug 21 20:44:49 2008 +0200
37794
37795 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
37796
37797 Signed-off-by: Heiko Schocher <hs@denx.de>
37798
37799 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
37800 Author: Kumar Gala <galak@kernel.crashing.org>
37801 Date: Tue Aug 19 14:46:36 2008 -0500
37802
37803 mpc85xx: remove redudant code with lib_ppc/interrupts.c
37804
37805 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
37806 not show how that happened, but there is no good reason for it.
37807
37808 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
37809 they exist.
37810
37811 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37812
37813 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
37814 Author: Kumar Gala <galak@kernel.crashing.org>
37815 Date: Fri Jul 25 13:31:05 2008 -0500
37816
37817 mpc85xx: Add support for the MPC8536DS reference board
37818
37819 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37820 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
37821 Signed-off-by: Dejan Minic <minic@freescale.com>
37822 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
37823 Signed-off-by: Dave Liu <daveliu@freescale.com>
37824 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37825
37826 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
37827 Author: Kumar Gala <galak@kernel.crashing.org>
37828 Date: Tue Aug 12 11:14:19 2008 -0500
37829
37830 mpc85xx: Add support for the MPC8536
37831
37832 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We
37833 also have SERDES init code for the 8536.
37834
37835 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37836 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
37837 Signed-off-by: Dejan Minic <minic@freescale.com>
37838 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
37839 Signed-off-by: Dave Liu <daveliu@freescale.com>
37840
37841 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
37842 Author: Kumar Gala <galak@kernel.crashing.org>
37843 Date: Tue Aug 12 11:13:08 2008 -0500
37844
37845 mpc85xx: Add support for the MPC8572DS reference board
37846
37847 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37848
37849 commit 457caecdbca3df21a93abff19eab12dbc61b7897
37850 Author: Kumar Gala <galak@kernel.crashing.org>
37851 Date: Wed Aug 27 01:05:35 2008 -0500
37852
37853 FSL DDR: Remove old SPD support from cpu/mpc85xx
37854
37855 All 85xx boards have been converted to the new code so we can
37856 remove the old SPD DDR setup code.
37857
37858 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37859
37860 commit 0e7927db138976469e7257e29c1338050a50fcd9
37861 Author: Kumar Gala <galak@kernel.crashing.org>
37862 Date: Wed Aug 27 01:04:07 2008 -0500
37863
37864 FSL DDR: Convert STXSSA to new DDR code.
37865
37866 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37867
37868 commit c360d9b970fbb9c13744c355879671165bbb9b9e
37869 Author: Kumar Gala <galak@kernel.crashing.org>
37870 Date: Wed Aug 27 01:03:42 2008 -0500
37871
37872 FSL DDR: Convert STXGP3 to new DDR code.
37873
37874 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37875
37876 commit 8e55313b7ae12352a343f9b9962e662dbd897187
37877 Author: Kumar Gala <galak@kernel.crashing.org>
37878 Date: Tue Aug 26 23:52:58 2008 -0500
37879
37880 FSL DDR: Convert SBC8560 to new DDR code.
37881
37882 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37883
37884 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
37885 Author: Kumar Gala <galak@kernel.crashing.org>
37886 Date: Tue Aug 26 23:52:32 2008 -0500
37887
37888 FSL DDR: Convert MPC8540EVAL to new DDR code.
37889
37890 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37891
37892 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
37893 Author: Kumar Gala <galak@kernel.crashing.org>
37894 Date: Tue Aug 26 23:52:07 2008 -0500
37895
37896 FSL DDR: Convert PM856 to new DDR code.
37897
37898 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37899
37900 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
37901 Author: Kumar Gala <galak@kernel.crashing.org>
37902 Date: Tue Aug 26 23:51:49 2008 -0500
37903
37904 FSL DDR: Convert PM854 to new DDR code.
37905
37906 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37907
37908 commit 33b9079ba20926f14238fff863b68a98e938948e
37909 Author: Kumar Gala <galak@kernel.crashing.org>
37910 Date: Tue Aug 26 23:15:28 2008 -0500
37911
37912 FSL DDR: Convert sbc8548 to new DDR code.
37913
37914 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37915
37916 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
37917 Author: Kumar Gala <galak@kernel.crashing.org>
37918 Date: Tue Aug 26 23:14:14 2008 -0500
37919
37920 FSL DDR: Convert atum8548 to new DDR code.
37921
37922 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37923
37924 commit be0bd8234b9777ecd63c4c686f72af070d886517
37925 Author: Kumar Gala <galak@kernel.crashing.org>
37926 Date: Tue Aug 26 22:56:56 2008 -0500
37927
37928 FSL DDR: Convert socrates to new DDR code.
37929
37930 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37931
37932 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
37933 Author: Kumar Gala <galak@kernel.crashing.org>
37934 Date: Tue Aug 26 08:02:30 2008 -0500
37935
37936 FSL DDR: Convert MPC8544DS to new DDR code.
37937
37938 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37939
37940 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
37941 Author: Jon Loeliger <jdl@freescale.com>
37942 Date: Tue Mar 18 13:51:05 2008 -0500
37943
37944 FSL DDR: Convert MPC8568MDS to new DDR code.
37945
37946 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37947 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37948
37949 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
37950 Author: Jon Loeliger <jdl@freescale.com>
37951 Date: Tue Mar 18 13:51:06 2008 -0500
37952
37953 FSL DDR: Convert MPC8548CDS to new DDR code.
37954
37955 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37956 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37957
37958 commit aa11d85cf318b961e029fe50d68ca47d004bce93
37959 Author: Jon Loeliger <jdl@freescale.com>
37960 Date: Mon Mar 17 15:48:18 2008 -0500
37961
37962 FSL DDR: Convert MPC8541CDS to new DDR code.
37963
37964 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37965 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37966
37967 commit 2b40edb10d81da7bba724edbccd7f53777112579
37968 Author: Jon Loeliger <jdl@freescale.com>
37969 Date: Tue Mar 18 11:12:42 2008 -0500
37970
37971 FSL DDR: Convert MPC8555ADS to new DDR code.
37972
37973 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37974 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37975
37976 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
37977 Author: Jon Loeliger <jdl@freescale.com>
37978 Date: Tue Mar 18 11:12:44 2008 -0500
37979
37980 FSL DDR: Convert MPC8560ADS to new DDR code.
37981
37982 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37983 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37984
37985 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
37986 Author: Kumar Gala <galak@kernel.crashing.org>
37987 Date: Fri Jun 6 13:12:18 2008 -0500
37988
37989 FSL DDR: Convert MPC8540ADS to new DDR code.
37990
37991 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
37992
37993 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
37994 Author: Kumar Gala <galak@kernel.crashing.org>
37995 Date: Tue Aug 26 21:34:55 2008 -0500
37996
37997 FSL DDR: Add 85xx specific register setting
37998
37999 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38000
38001 commit 6fb1b7346849ccd0c20306143e334f5b76143070
38002 Author: Kumar Gala <galak@kernel.crashing.org>
38003 Date: Mon Jun 9 11:07:46 2008 -0500
38004
38005 FSL DDR: Add e500 TLB helper for DDR code
38006
38007 Provide a helper function that board code can call to map TLBs when
38008 setting up DDR.
38009
38010 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38011
38012 commit d26b739afe5a6760bd345743188759cd9d0f3b47
38013 Author: Andrew Dyer <adyer@righthandtech.com>
38014 Date: Tue Aug 26 17:03:38 2008 -0500
38015
38016 dm9000 remove dead external phy support, gpio fix
38017
38018 dm9000 has code to detect and initialize external phy parts, but later
38019 on in the code the part is forced to use the internal phy
38020 unconditionally. Remove the unused/untested code.
38021
38022 change the GPIO initialization so that only the GPIO used as an
38023 internal phy reset (hardwired in the chip) is set as an output. The
38024 remaining GPIO need to be handled by board specific code to prevent
38025 possible drive conflicts. Set as inputs for safety.
38026
38027 replace a few magic numbers with defines
38028
38029 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
38030 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38031
38032 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
38033 Author: Peter Tyser <ptyser@xes-inc.com>
38034 Date: Tue Aug 26 11:17:48 2008 -0500
38035
38036 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
38037
38038 cmd_net.c command descriptions were updated to describe the optional
38039 hostIPaddr argument. The dhcp command help message was also updated
38040 to more closely reflect the other commands in cmd_net.c
38041
38042 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
38043 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38044
38045 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
38046 Author: Remy Bohmer <linux@bohmer.net>
38047 Date: Wed Aug 20 11:30:28 2008 +0200
38048
38049 Fix bogus error message in the DHCP handler
38050
38051 The DHCP handler has 1 state that is not listed in this case, causing a
38052 failure message when there is actually no failure.
38053
38054 Signed-off-by: Remy Bohmer <linux@bohmer.net>
38055 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38056
38057 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
38058 Author: Remy Bohmer <linux@bohmer.net>
38059 Date: Wed Aug 20 11:30:27 2008 +0200
38060
38061 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
38062
38063 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
38064 missing extern inside the net/bootp.h header
38065
38066 Signed-off-by: Remy Bohmer <linux@bohmer.net>
38067 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38068
38069 commit 1803f7f91ff35ca402259065df7557107dcf28a2
38070 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38071 Date: Tue Aug 19 21:26:32 2008 +0000
38072
38073 ColdFire: Add FEC Buffer descriptors in SRAM
38074
38075 Add FEC Buffer descriptors and data buffer in SRAM for
38076 faster execution and access.
38077
38078 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38079 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38080
38081 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
38082 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38083 Date: Thu Aug 21 23:55:11 2008 +0000
38084
38085 Fix ColdFire FEC warning messages
38086
38087 Types mismatch and implicit declaration of icache_invalid()
38088 warning messages
38089
38090 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
38091 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38092
38093 commit 6a002171098e968bd5b362347d2831224fab6048
38094 Author: Ben Warren <biggerbadderben@gmail.com>
38095 Date: Sat Jul 12 00:17:50 2008 -0700
38096
38097 Moved initialization of SKGE Ethernet driver to board code.
38098
38099 The only board using this driver is the SL8245 board.
38100 Removed initialization for the driver from net/eth.c
38101
38102 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38103
38104 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
38105 Author: Ben Warren <biggerbadderben@gmail.com>
38106 Date: Sat Jul 12 00:08:45 2008 -0700
38107
38108 Moved conditional compilation to Makefile for SK98 Ethernet driver
38109
38110 Brute-force removal of #ifdefs. Didn't touch the code.
38111 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38112
38113 commit 65d3d99c28dc363d15eaee78225ff643df499b97
38114 Author: Ben Warren <biggerbadderben@gmail.com>
38115 Date: Fri Jul 11 23:42:19 2008 -0700
38116
38117 Moved initialization of ULI526X Ethernet driver to board code.
38118
38119 The only board using this driver is the Freescale MPC8610HPCD board.
38120 Removed initialization for the driver from net/eth.c
38121
38122 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38123
38124 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
38125 Author: Ben Warren <biggerbadderben@gmail.com>
38126 Date: Fri Jul 11 23:15:28 2008 -0700
38127
38128 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
38129
38130 Added board_eth_init() function to bf537-stamp board.
38131 Removed initialization for the Blackin EMAC driver from net/eth.c
38132
38133 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38134
38135 commit fc363ce35408f348cacced68505f3747a53e3d7c
38136 Author: Ben Warren <biggerbadderben@gmail.com>
38137 Date: Wed Jul 9 01:04:19 2008 -0700
38138
38139 Moved initialization of GRETH Ethernet driver to CPU directory
38140
38141 Added a cpu_eth_init() function to leon2/leon3 CPU directories and
38142 removed code from net/eth.c
38143
38144 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38145
38146 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
38147 Author: Ben Warren <biggerbadderben@gmail.com>
38148 Date: Tue Aug 26 22:16:25 2008 -0700
38149
38150 Moved initialization of MCFFEC Ethernet driver to CPU directory
38151
38152 Added a cpu_eth_init() function to coldfire CPU directories and
38153 removed code from net/eth.c
38154
38155 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38156
38157 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
38158 Author: Ben Warren <biggerbadderben@gmail.com>
38159 Date: Tue Aug 26 22:12:36 2008 -0700
38160
38161 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
38162
38163 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
38164 removed code from net/eth.c
38165
38166 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
38167
38168 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
38169 Author: Kumar Gala <galak@kernel.crashing.org>
38170 Date: Tue Aug 26 15:01:38 2008 -0500
38171
38172 FSL DDR: Remove old SPD support from cpu/mpc86xx
38173
38174 All 86xx boards have been converted to the new code so we can
38175 remove the old SPD DDR setup code.
38176
38177 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38178
38179 commit 9bd4e5911b750837515466bc7449087698b88e0e
38180 Author: Kumar Gala <galak@kernel.crashing.org>
38181 Date: Tue Aug 26 15:01:37 2008 -0500
38182
38183 FSL DDR: Convert SBC8641D to new DDR code.
38184
38185 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38186
38187 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
38188 Author: Jon Loeliger <jdl@freescale.com>
38189 Date: Tue Aug 26 15:01:36 2008 -0500
38190
38191 FSL DDR: Convert MPC8610HPCD to new DDR code.
38192
38193 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38194 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38195
38196 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
38197 Author: Kumar Gala <galak@kernel.crashing.org>
38198 Date: Tue Aug 26 15:01:35 2008 -0500
38199
38200 FSL DDR: Convert MPC8641HPCN to new DDR code.
38201
38202 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38203 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38204
38205 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
38206 Author: Kumar Gala <galak@kernel.crashing.org>
38207 Date: Tue Aug 26 15:01:34 2008 -0500
38208
38209 FSL DDR: Add 86xx specific register setting
38210
38211 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38212
38213 commit 233fdd502a6c227f476212b3097653ad48d7e254
38214 Author: Kumar Gala <galak@kernel.crashing.org>
38215 Date: Tue Aug 26 15:01:32 2008 -0500
38216
38217 FSL DDR: Add DDR2 DIMM paramter support
38218
38219 Compute DIMM parameters based upon the SPD information.
38220
38221 Signed-off-by: James Yang <James.Yang@freescale.com>
38222 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38223 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38224
38225 commit 05c05a2363a6ac11e0e405926034546ffad71fad
38226 Author: Kumar Gala <galak@kernel.crashing.org>
38227 Date: Tue Aug 26 15:01:30 2008 -0500
38228
38229 FSL DDR: Add DDR1 DIMM paramter support
38230
38231 Compute DIMM parameters based upon the SPD information in spd.
38232
38233 Signed-off-by: James Yang <James.Yang@freescale.com>
38234 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38235 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38236
38237 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
38238 Author: Kumar Gala <galak@kernel.crashing.org>
38239 Date: Tue Aug 26 15:01:29 2008 -0500
38240
38241 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
38242
38243 The main purpose of this rewrite it to be able to share the same
38244 initialization code on all FSL PowerPC products that have DDR
38245 controllers. (83xx, 85xx, 86xx).
38246
38247 The code is broken up into the following steps:
38248 GET_SPD
38249 COMPUTE_DIMM_PARMS
38250 COMPUTE_COMMON_PARMS
38251 GATHER_OPTS
38252 ASSIGN_ADDRESSES
38253 COMPUTE_REGS
38254 PROGRAM_REGS
38255
38256 This allows us to share more code an easily allow for board specific code
38257 overrides.
38258
38259 Additionally this code base adds support for >4G of DDR and provides a
38260 foundation for supporting interleaving on processors with more than one
38261 controller.
38262
38263 Signed-off-by: James Yang <James.Yang@freescale.com>
38264 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38265 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
38266 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
38267 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38268
38269 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
38270 Author: Kumar Gala <galak@kernel.crashing.org>
38271 Date: Tue Aug 26 15:01:28 2008 -0500
38272
38273 FSL DDR: Provide a generic set_ddr_laws()
38274
38275 Provide a helper function that will setup the last available
38276 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code.
38277
38278 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38279
38280 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
38281 Author: James Yang <James.Yang@freescale.com>
38282 Date: Tue Aug 26 15:01:27 2008 -0500
38283
38284 Add proper SPD definitions for DDR1/2/3
38285
38286 Also adds helper functions for DDR1/2 to verify the checksum.
38287
38288 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38289
38290 commit 285db74716c724ae8a0ff177878fd09a74428c7b
38291 Author: Wolfgang Denk <wd@denx.de>
38292 Date: Wed Aug 27 01:02:48 2008 +0200
38293
38294 Update CHANGELOG
38295
38296 Signed-off-by: Wolfgang Denk <wd@denx.de>
38297
38298 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
38299 Author: Heiko Schocher <hs@denx.de>
38300 Date: Tue Aug 19 10:08:49 2008 +0200
38301
38302 Add support for muas3001 board (MPC8270)
38303
38304 Signed-off-by: Heiko Schocher <hs@denx.de>
38305
38306 commit 322098bff32410d2a00031649b47c4ec90a66d9a
38307 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38308 Date: Tue Aug 19 08:31:18 2008 +0530
38309
38310 common/cmd_load.c cleanup - remove unused variables
38311
38312 - Remove unused global variable os_data_count.
38313 - Remove unused variable z.
38314
38315 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
38316
38317 commit 306620b762a4f9fa6678568ad2e8772dec145208
38318 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
38319 Date: Mon Aug 18 13:35:27 2008 +0200
38320
38321 remove MVS1 board
38322
38323 MVS1 board has reached end-of-life and can be removed completely.
38324
38325 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
38326
38327 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
38328 Author: Kumar Gala <galak@kernel.crashing.org>
38329 Date: Fri Aug 15 08:24:45 2008 -0500
38330
38331 bootm: refactor do_reset and os boot function args
38332
38333 There is no need for each OS specific function to call do_reset() we
38334 can just do it once in bootm. This means its feasible on an error for
38335 the OS boot function to return.
38336
38337 Also, remove passing in cmd_tbl_t as its not needed by the OS boot
38338 functions. flag isn't currently used but might be in the future so
38339 we left it alone.
38340
38341 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38342
38343 commit 40afac22a9c602e55c501c800f1c064324711b56
38344 Author: Kumar Gala <galak@kernel.crashing.org>
38345 Date: Fri Aug 15 08:24:44 2008 -0500
38346
38347 fdt: Added resize command
38348
38349 Resize the fdt to size + padding to 4k boundary
38350
38351 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38352
38353 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
38354 Author: Kumar Gala <galak@kernel.crashing.org>
38355 Date: Fri Aug 15 08:24:43 2008 -0500
38356
38357 fdt: refactor initrd related code
38358
38359 Created a new fdt_initrd() to deal with setting the initrd properties
38360 in the device tree and fixing up the mem reserve. We can use this
38361 both in the choosen node handling and lets us remove some duplicated
38362 code when we fixup the initrd info in bootm on PPC.
38363
38364 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38365
38366 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
38367 Author: Kumar Gala <galak@kernel.crashing.org>
38368 Date: Fri Aug 15 08:24:42 2008 -0500
38369
38370 fdt: refactor fdt resize code
38371
38372 Move the fdt resizing code out of ppc specific boot code and into
38373 common fdt support code.
38374
38375 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38376
38377 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
38378 Author: Kumar Gala <galak@kernel.crashing.org>
38379 Date: Fri Aug 15 08:24:41 2008 -0500
38380
38381 bootm: refactor image detection and os load steps
38382
38383 Created a bootm_start() that handles the parsing and detection of all
38384 the images that will be used by the bootm command (OS, ramdisk, fdt).
38385 As part of this we now tract all the relevant image offsets in the
38386 bootm_headers_t struct. This will allow us to have all the needed
38387 state for future sub-commands and lets us reduce a bit of arch
38388 specific code on SPARC.
38389
38390 Created a bootm_load_os() that deals with decompression and loading
38391 the OS image.
38392
38393 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38394
38395 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
38396 Author: Kumar Gala <galak@kernel.crashing.org>
38397 Date: Fri Aug 15 08:24:40 2008 -0500
38398
38399 bootm: move lmb into the bootm_headers_t structure
38400
38401 To allow for persistent state between future bootm subcommands we
38402 need the lmb to exist in a global state.
38403 Moving it into the bootm_headers_t allows us to do that.
38404
38405 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38406
38407 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
38408 Author: Kumar Gala <galak@kernel.crashing.org>
38409 Date: Fri Aug 15 08:24:39 2008 -0500
38410
38411 bootm: Set working fdt address as part of the bootm flow
38412
38413 Set the fdt working address so "fdt FOO" commands can be used as part
38414 of the bootm flow. Also set an the environment variable "fdtaddr"
38415 with the value.
38416
38417 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38418
38419 commit 06a09918f3903450313e2047a9cc258bf5872f46
38420 Author: Kumar Gala <galak@kernel.crashing.org>
38421 Date: Fri Aug 15 08:24:38 2008 -0500
38422
38423 bootm: refactor fdt locating and relocation code
38424
38425 Move the code that handles finding a device tree blob and relocating
38426 it (if needed) into common code so all arch's have access to it.
38427
38428 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38429
38430 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
38431 Author: Kumar Gala <galak@kernel.crashing.org>
38432 Date: Fri Aug 15 08:24:37 2008 -0500
38433
38434 bootm: refactor ramdisk locating code
38435
38436 Move determing if we have a ramdisk and where its located into the
38437 common code. Keep track of the ramdisk start and end in the
38438 bootm_headers_t image struct.
38439
38440 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38441
38442 commit c160a9544743e80e8889edb2275538e7764ce334
38443 Author: Kumar Gala <galak@kernel.crashing.org>
38444 Date: Fri Aug 15 08:24:36 2008 -0500
38445
38446 bootm: refactor entry point code
38447
38448 Move entry point code out of each arch and into common code.
38449 Keep the entry point in the bootm_headers_t images struct.
38450
38451 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38452
38453 commit 20220d22b9f41446288588cd2e457e0077a18bed
38454 Author: Randy Vinson <rvinson@mvista.com>
38455 Date: Wed Aug 13 11:44:57 2008 -0700
38456
38457 mpc7448hpc2: Fix PCI I/O space mapping.
38458
38459 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
38460 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
38461 space such that 0xFA000000 in the processor's address space maps to 0
38462 on the PCI I/O bus.
38463
38464 Signed-off-by Randy Vinson <rvinson@mvista.com>
38465 Acked-by: Roy Zang <tie-fei.zang@freescale.com>
38466
38467 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
38468 Author: Guennadi Liakhovetski <lg@denx.de>
38469 Date: Wed Aug 13 18:10:26 2008 +0200
38470
38471 i.MX31: Specify maintainers for i.MX31-based boards
38472
38473 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
38474 Signed-off-by: Wolfgang Denk <wd@denx.de>
38475
38476 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
38477 Author: Wolfgang Denk <wd@denx.de>
38478 Date: Tue Aug 26 15:01:28 2008 +0200
38479
38480 ADS5121: adjust image addresses in RAM and flash
38481
38482 Use the same mapping in flash as used by Linux
38483
38484 Signed-off-by: Wolfgang Denk <wd@denx.de>
38485
38486 commit 19f101412c16edee9fd55db4039e1d68a833b28b
38487 Author: Wolfgang Denk <wd@denx.de>
38488 Date: Tue Aug 26 13:14:34 2008 +0200
38489
38490 cmd_mem.c: Fix help message alignment
38491
38492 Bug was introced by "Big white-space cleanup" (53677ef1)
38493
38494 Signed-off-by: Wolfgang Denk <wd@denx.de>
38495
38496 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
38497 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
38498 Date: Wed Aug 20 11:11:52 2008 +0200
38499
38500 change mvBL-M7 default env and move to vendor subdir
38501
38502 fix mvBL-M7 config and move to matrix_vision subdir
38503
38504 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
38505 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38506
38507 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
38508 Author: Nick Spence <nick.spence@freescale.com>
38509 Date: Fri Aug 22 23:52:40 2008 -0700
38510
38511 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
38512
38513 This patch adds elements to the 83xx sysconf structure and #define values that are used
38514 by mpc83xx family devices.
38515
38516 Signed-off-by: Nick Spence <nick.spence@freescale.com>
38517 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38518
38519 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
38520 Author: Ira W. Snyder <iws@ovro.caltech.edu>
38521 Date: Fri Aug 22 11:00:15 2008 -0700
38522
38523 MPC8349EMDS: Add PCI Agent (PCISLAVE) support
38524
38525 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
38526 PCI card rather than a host computer.
38527
38528 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
38529 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38530
38531 commit 4ff9aea9d6b5602683a920951ef896996438af62
38532 Author: Ira W. Snyder <iws@ovro.caltech.edu>
38533 Date: Fri Aug 22 11:00:14 2008 -0700
38534
38535 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
38536
38537 This adds a helper function to unlock the PCI configuration bit, so that
38538 any extra PCI setup (such as outbound windows, etc.) can be done after
38539 using the 83XX_GENERIC_PCI code to set up the PCI bus.
38540
38541 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
38542 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38543
38544 commit 162338e1fcde231ca4d562e5ebd7859456731691
38545 Author: Ira W. Snyder <iws@ovro.caltech.edu>
38546 Date: Fri Aug 22 11:00:13 2008 -0700
38547
38548 MPC8349EMDS: use 83XX_GENERIC_PCI setup code
38549
38550 Change the MPC8349EMDS board to use the generic PCI initialization code
38551 for the mpc83xx cpu.
38552
38553 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
38554 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38555
38556 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
38557 Author: Kim Phillips <kim.phillips@freescale.com>
38558 Date: Mon Aug 25 14:53:09 2008 -0500
38559
38560 fix out of tree building
38561
38562 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
38563
38564 commit a49d10cf027d059ee15c262010a05cdaec0961e1
38565 Author: Wolfgang Denk <wd@denx.de>
38566 Date: Mon Aug 25 23:45:41 2008 +0200
38567
38568 Minor coding style cleanup, updte CHANGELOG
38569
38570 Signed-off-by: Wolfgang Denk <wd@denx.de>
38571
38572 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
38573 Author: Stefan Roese <sr@denx.de>
38574 Date: Wed Aug 20 20:29:38 2008 +0200
38575
38576 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
38577
38578 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
38579 to combine both config options into one line. This even allows defining
38580 both options and not generating the target object twice.
38581
38582 Signed-off-by: Stefan Roese <sr@denx.de>
38583
38584 commit 079edb913dbae147b50a488cf02e03f473fc5f28
38585 Author: Jens Gehrlein <sew_s@tqs.de>
38586 Date: Fri Jul 4 16:50:05 2008 +0200
38587
38588 MX31: fix bit masks in function mx31_decode_pll()
38589
38590 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
38591
38592 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
38593
38594 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
38595 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38596 Date: Mon Aug 25 11:11:34 2008 +0200
38597
38598 Correct ARM Versatile Timer Initialization
38599
38600 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
38601 -- Timer Value Register @ TIMER Base + 4 is Read-only.
38602 -- Prescale Value (Bits 3-2 of TIMER Control register)
38603 can only be one of 00,01,10. 11 is undefined.
38604 -- CFG_HZ for Versatile board is set to
38605 #define CFG_HZ (1000000 / 256)
38606 So Prescale bits is set to indicate
38607 - 8 Stages of Prescale, Clock divided by 256
38608 - The Timer Control Register has one Undefined/Shouldn't Use Bit
38609 So we should do read/modify/write Operation
38610
38611 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
38612
38613 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
38614 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38615 Date: Mon Aug 25 11:30:29 2008 +0200
38616
38617 Add ARM AMBA PL031 RTC Support
38618
38619 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
38620
38621 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
38622 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
38623 Date: Tue Aug 19 16:21:03 2008 -0400
38624
38625 ARM DaVinci: Removed redundant NAND initialization code.
38626
38627 ARM DaVinci: Removed redundant NAND initialization code.
38628
38629 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
38630
38631 commit b3fb663b20d995ca41327db877ddb168279b3f62
38632 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
38633 Date: Tue Aug 19 16:21:00 2008 -0400
38634
38635 ARM DaVinci: Fix compilation error with new MTD code.
38636
38637 ARM DaVinci: Fix compilation error with new MTD code.
38638
38639 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
38640
38641 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
38642 Author: Gerald Van Baren <vanbaren@cideas.com>
38643 Date: Fri Aug 22 14:37:05 2008 -0400
38644
38645 Add note on dereferencing /aliases pointers
38646
38647 Replace the "must quote special characters" note with a hint on
38648 how to dereference /aliases pointers by omitting the leading "/".
38649 This feature was introduced by Kumar Gala as a libfdt enhancement
38650 in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
38651
38652 Example:
38653
38654 => fdt print /aliases
38655 aliases {
38656 ethernet0 = "/qe@e0100000/ucc@2000";
38657 ethernet1 = "/qe@e0100000/ucc@3000";
38658 serial0 = "/soc8360@e0000000/serial@4500";
38659 serial1 = "/soc8360@e0000000/serial@4600";
38660 pci0 = "/pci@e0008500";
38661 };
38662 => fdt print ethernet0
38663 ucc@2000 {
38664 device_type = "network";
38665 compatible = "ucc_geth";
38666 cell-index = <0x1>;
38667 reg = <0x2000 0x200>;
38668 interrupts = <0x20>;
38669 interrupt-parent = <0x2>;
38670 local-mac-address = [00 00 00 00 00 00];
38671 rx-clock-name = "none";
38672 tx-clock-name = "clk9";
38673 phy-handle = <0x3>;
38674 phy-connection-type = "rgmii-id";
38675 pio-handle = <0x4>;
38676 };
38677
38678 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38679
38680 commit feeca3f578b7f53c032ba203698751c982f8bf5a
38681 Author: Kumar Gala <galak@kernel.crashing.org>
38682 Date: Thu Aug 14 08:28:19 2008 -0500
38683
38684 libfdt: Add support for using aliases in fdt_path_offset()
38685
38686 If the path doesn't start with '/' check to see if it matches some alias
38687 under "/aliases" and substitute the matching alias value in the path
38688 and retry the lookup.
38689
38690 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38691 Acked-by: David Gibson <david@gibson.dropbear.id.au>
38692 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38693
38694 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
38695 Author: David Gibson <david@gibson.dropbear.id.au>
38696 Date: Wed Aug 6 14:50:49 2008 +1000
38697
38698 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
38699
38700 As well as fdt_subnode_offset(), libfdt includes an
38701 fdt_subnode_offset_namelen() function that takes the subnode name to
38702 look up not as a NUL-terminated string, but as a string with an
38703 explicit length. This can be useful when the caller has the name as
38704 part of a longer string, such as a full path.
38705
38706 However, we don't have corresponding 'namelen' versions for
38707 fdt_get_property() and fdt_getprop(). There are less obvious use
38708 cases for these variants on property names, but there are
38709 circumstances where they can be useful e.g. looking up property names
38710 which need to be parsed from a longer string buffer such as user input
38711 or a configuration file, or looking up an alias in a path with
38712 IEEE1275 style aliases.
38713
38714 So, since it's very easy to implement such variants, this patch does
38715 so. The original NUL-terminated variants are, of course, implemented
38716 in terms of the namelen versions.
38717
38718 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38719
38720 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
38721 Author: David Gibson <david@gibson.dropbear.id.au>
38722 Date: Tue Jul 29 14:51:22 2008 +1000
38723
38724 libfdt: Forgot one function when cleaning the namespace
38725
38726 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
38727 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
38728 chance of collisions with things from whatever package libfdt is
38729 embedded in, pulled into the libfdt build via that environment's
38730 libfdt_env.h.
38731
38732 Except... I missed one. This patch applies the same treatment to
38733 _stringlist_contains(). While we're at it, also make it static since
38734 it's only used in the same file.
38735
38736 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38737
38738 commit 46390da15411351fc3b498bd8c1615f78fe80df0
38739 Author: Wolfram Sang <w.sang@pengutronix.de>
38740 Date: Wed Jul 9 11:22:44 2008 +0200
38741
38742 libfdt: Improve documentation in libfdt.h
38743
38744 Fix a few typos and mistakes.
38745
38746 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
38747 Acked-by: David Gibson <david@gibson.dropbear.id.au>
38748
38749 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
38750 Author: David Gibson <david@gibson.dropbear.id.au>
38751 Date: Wed Jul 9 14:10:24 2008 +1000
38752
38753 libfdt: Increase namespace-pollution paranoia
38754
38755 libfdt is supposed to easy to embed in projects all and sundry.
38756 Often, it won't be practical to separate the embedded libfdt's
38757 namespace from that of the surrounding project. Which means there can
38758 be namespace conflicts between even libfdt's internal/static functions
38759 and functions or macros coming from the surrounding project's headers
38760 via libfdt_env.h.
38761
38762 This patch, therefore, renames a bunch of libfdt internal functions
38763 and macros and makes a few other chances to reduce the chances of
38764 namespace collisions with embedding projects. Specifically:
38765 - Internal functions (even static ones) are now named _fdt_*()
38766
38767 - The type and (static) global for the error table in
38768 fdt_strerror() gain an fdt_ prefix
38769
38770 - The unused macro PALIGN is removed
38771
38772 - The memeq and streq macros are removed and open-coded in the
38773 users (they were only used once each)
38774
38775 - Other macros gain an FDT_ prefix
38776
38777 - To save some of the bulk from the previous change, an
38778 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
38779 FDT_ALIGN(x, FDT_TAGSIZE)
38780
38781 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38782
38783 commit c66830263af19831f2b7db307f79d1943febf7f9
38784 Author: David Gibson <david@gibson.dropbear.id.au>
38785 Date: Mon Jul 7 10:14:15 2008 +1000
38786
38787 dtc: Enable and fix -Wcast-qual warnings
38788
38789 Enabling -Wcast-qual warnings in dtc shows up a number of places where
38790 we are incorrectly discarding a const qualification. There are also
38791 some places where we are intentionally discarding the 'const', and we
38792 need an ugly cast through uintptr_t to suppress the warning. However,
38793 most of these are pretty well isolated with the *_w() functions. So
38794 in the interests of maximum safety with const qualifications, this
38795 patch enables the warnings and fixes the existing complaints.
38796
38797 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38798 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
38799
38800 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
38801 Author: David Gibson <david@gibson.dropbear.id.au>
38802 Date: Mon Jul 7 10:10:48 2008 +1000
38803
38804 dtc: Enable and fix -Wpointer-arith warnings
38805
38806 This patch turns on the -Wpointer-arith option in the dtc Makefile,
38807 and fixes the resulting warnings due to using (void *) in pointer
38808 arithmetic. While convenient, pointer arithmetic on void * is not
38809 portable, so it's better that we avoid it, particularly in libfdt.
38810
38811 Also add necessary definition of uintptr_t needed by David Gibson's
38812 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
38813 comes from stdint.h, which u-boot doesn't have). -- gvb
38814
38815 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
38816 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
38817
38818 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
38819 Author: Tirumala R Marri <tmarri@amcc.com>
38820 Date: Thu Aug 21 21:54:53 2008 -0700
38821
38822 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
38823
38824 During recent PCI-E tests it has been found that current
38825 driverl level and de-emphasis values are not set correctly.
38826 After sweeping throgh all de-ephasis values, it was found that
38827 0x130 is a right value. Where 0x13 is driver level and 0 is
38828 de-emphasis.
38829
38830 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
38831 Signed-off-by: Stefan Roese <sr@denx.de>
38832
38833 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
38834 Author: Remy Bohmer <linux@bohmer.net>
38835 Date: Wed Aug 20 20:46:56 2008 +0200
38836
38837 Make the YAFFS filesystem work
38838
38839 Recently the YAFFS filesystem support has been added to U-boot.
38840 However, just enabling CONFIG_YAFFS2 is not enough to get it working.
38841
38842 ymount will generate an exception (when dereferencing mtd->readoob()), because
38843 the genericDevice is a null pointer. Further, a lot of logging is produced
38844 while using YAFFS fs, so logging should also be disabled.
38845 Both issues are solved by this patch.
38846
38847 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
38848 in U-boot, as well as in Linux.
38849
38850 Tested on a Atmel AT91SAM9261EK board.
38851
38852 Signed-off-by: Remy Bohmer <linux@bohmer.net>
38853 Acked-by: William Juul <william.juul@tandberg.com>
38854 Signed-off-by: Scott Wood <scottwood@freescale.com>
38855
38856 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
38857 Author: Kyungmin Park <kmpark@infradead.org>
38858 Date: Tue Aug 19 08:42:53 2008 +0900
38859
38860 Fix OneNAND read_oob/write_oob functions compatability
38861
38862 Also sync with kernel OneNAND codes
38863
38864 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
38865 Signed-off-by: Scott Wood <scottwood@freescale.com>
38866
38867 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
38868 Author: Scott Wood <scottwood@freescale.com>
38869 Date: Mon Aug 18 17:11:20 2008 -0500
38870
38871 NAND: Remove delay from nand_boot_fsl_elbc.c.
38872
38873 It was for debugging purposes, and shouldn't have been left in.
38874
38875 Signed-off-by: Scott Wood <scottwood@freescale.com>
38876
38877 commit f556483734126793522fb7a8cf36af90da78f084
38878 Author: Stefan Roese <sr@denx.de>
38879 Date: Thu Aug 21 11:05:03 2008 +0200
38880
38881 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
38882
38883 This patch fixes some minor issues introduced with the patch:
38884 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
38885
38886 - Rework memory-queue and PLB arbiter optimization code, that the
38887 local variable is not needed anymore. This removes one #ifdef.
38888 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
38889 of XXX+ 0x01). This was not introduced by Prodyut, just a
38890 copy-paste problem.
38891
38892 Signed-off-by: Stefan Roese <sr@denx.de>
38893
38894 commit 079589bcfb24ba11068460276a3cc9549ab5346f
38895 Author: Prodyut Hazarika <phazarika@amcc.com>
38896 Date: Wed Aug 20 09:38:51 2008 -0700
38897
38898 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
38899 PPC405EX and PPC460EX/GT/SX
38900
38901 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
38902 processors
38903 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
38904 across processors (405 and 440/460)
38905 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
38906 processors
38907 - Add register bit definitions for Memory Queue Configuration registers
38908
38909 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
38910 Signed-off-by: Stefan Roese <sr@denx.de>
38911
38912 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
38913 Author: Kumar Gala <galak@kernel.crashing.org>
38914 Date: Tue Aug 19 15:41:18 2008 -0500
38915
38916 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
38917
38918 Move to using the environment variables 'ethaddr', 'eth1addr', etc..
38919 instead of bd->bi_enetaddr, bi_enet1addr, etc.
38920
38921 This makes the code a bit more flexible to the number of ethernet
38922 interfaces.
38923
38924 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38925
38926 commit 4cacf7c64609839f809e2f9c45873f1d65861703
38927 Author: Stefan Roese <sr@denx.de>
38928 Date: Tue Aug 19 14:57:55 2008 +0200
38929
38930 hush: Fix printf debug macro in hush.c so that it usable in U-Boot
38931
38932 This patch changes the debug_printf() marco for U-Boot in hush.c and
38933 moves the definition of DEBUG_SHELL to a place that is actually compiled
38934 under U-Boot.
38935
38936 Signed-off-by: Stefan Roese <sr@denx.de>
38937
38938 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
38939 Author: Heiko Schocher <hs@denx.de>
38940 Date: Tue Aug 19 09:57:41 2008 +0200
38941
38942 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
38943
38944 Commit 00b1883a4cac59d97cd297b1a3a398db85982865
38945 missed a few boards:
38946 include/configs/M5253DEMO.h
38947 include/configs/ml507.h
38948 include/configs/redwood.h
38949
38950 This patch fixes this.
38951
38952 Signed-off-by: Heiko Schocher <hs@denx.de>
38953
38954 commit 0768b7a872964085eece8d5e9fec9175e9deb161
38955 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38956 Date: Mon Aug 18 13:41:27 2008 +0200
38957
38958 Consolidate strmhz() implementation
38959
38960 ARM, i386, m68k and ppc all have identical implementations of strmhz().
38961 Other architectures don't provide this function at all.
38962
38963 This patch moves strmhz() into lib_generic, reducing code duplication
38964 and providing a more unified API across architectures.
38965
38966 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
38967
38968 commit a928d0df211f1d829308d335d19be3ca42558dfc
38969 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
38970 Date: Mon Aug 18 12:02:51 2008 +0200
38971
38972 fix mvbc_p board build warnings
38973
38974 fix build warnings @ mvBC-P board by using correct types, i.e. change
38975 out_be32 to out_be16 and out_8 accordingly.
38976
38977 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
38978
38979 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
38980 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38981 Date: Sat Aug 16 18:54:27 2008 +0200
38982
38983 Makefile: fix posix support on find
38984
38985 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
38986
38987 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
38988 Author: Axel Beierlein <belatronix@web.de>
38989 Date: Sat Aug 16 00:30:48 2008 +0200
38990
38991 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
38992
38993 Tested with TQM5200S on STK52XX.200 Board
38994
38995 Signed-off-by: Axel Beierlein <belatronix@web.de>
38996
38997 commit 0800707b6d5041a840a65d556032c15c584b55f8
38998 Author: Peter Tyser <ptyser@xes-inc.com>
38999 Date: Fri Aug 15 14:36:32 2008 -0500
39000
39001 mod_i2c_mem() bugfix
39002
39003 The last used chip, address, and address length were not being
39004 stored for the imm and imn commands.
39005
39006 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
39007
39008 commit 4afbef967275b2f636abae86f91b81becee7ad03
39009 Author: Steven A. Falco <sfalco@harris.com>
39010 Date: Fri Aug 15 15:37:31 2008 -0400
39011
39012 Fix typo in spelling of ATAPI.
39013
39014 Correct a small spelling mistake.
39015
39016 Signed-off-by: Steven A. Falco <sfalco@harris.com>
39017
39018 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
39019 Author: Steven A. Falco <sfalco@harris.com>
39020 Date: Fri Aug 15 15:34:10 2008 -0400
39021
39022 Add a hook to allow board-specific PIO mode setting.
39023
39024 This patch adds a hook whereby a board-specific routine can be called to
39025 configure hardware for a PIO mode. The prototype for the board-specific
39026 routine is:
39027
39028 int inline ide_set_piomode(int pio_mode)
39029
39030 ide_set_piomode should be prepared to configure hardware for a pio_mode
39031 between 0 and 6, inclusive. It should return 0 on success or 1 on failure.
39032
39033 Signed-off-by: Steven A. Falco <sfalco@harris.com>
39034
39035 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
39036 Author: Steven A. Falco <sfalco@harris.com>
39037 Date: Fri Aug 15 15:29:12 2008 -0400
39038
39039 Replace enums in ata.h with an include of libata.h
39040
39041 This patch removes some enums from ata.h and replaces them with an
39042 include of libata.h. This way, we eliminate duplicated code, and
39043 prevent errors whereby the different versions could be out of sync.
39044
39045 Signed-off-by: Steven A. Falco <sfalco@harris.com>
39046
39047 commit 0de0afbca865ecf482b4d2b635236746def8518f
39048 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39049 Date: Fri Aug 15 18:32:41 2008 +0200
39050
39051 coldfire: fix CFI drivers activation with new macro
39052
39053 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
39054
39055 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39056
39057 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
39058 Author: Kumar Gala <galak@kernel.crashing.org>
39059 Date: Fri Aug 15 08:24:35 2008 -0500
39060
39061 fdt: fdt addr w/o any args reports back the current working address
39062
39063 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39064
39065 commit f953d99fd528a496b400a706b511eaf8e3ea66af
39066 Author: Kumar Gala <galak@kernel.crashing.org>
39067 Date: Fri Aug 15 08:24:34 2008 -0500
39068
39069 fdt: added the ability to set initrd start/end via chosen command
39070
39071 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39072
39073 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
39074 Author: Kumar Gala <galak@kernel.crashing.org>
39075 Date: Fri Aug 15 08:24:33 2008 -0500
39076
39077 Add command to enable/disable interrupts
39078
39079 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39080
39081 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
39082 Author: Nick Spence <nick.spence@freescale.com>
39083 Date: Tue Aug 19 22:21:16 2008 -0700
39084
39085 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
39086
39087 This patch fixes a missing vendor code in the flash_real_protect() function.
39088
39089 Signed-off-by: Nick Spence <nick.spence@freescale.com>
39090 Signed-off-by: Stefan Roese <sr@denx.de>
39091
39092 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
39093 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39094 Date: Tue Aug 19 16:53:39 2008 +0000
39095
39096 CFI: Fix AMD Legacy sector protect
39097
39098 New implement sector lock and unlock or softlock commands
39099 do not exist in AMD legacy flash. Thus, causing issue
39100 when erasing AMD legacy flash (such as lv040)
39101
39102 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39103 Signed-off-by: Stefan Roese <sr@denx.de>
39104
39105 commit 492671404140f09d5b21b3d2ce4e362c0692c069
39106 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39107 Date: Wed Aug 20 09:40:16 2008 +0200
39108
39109 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
39110
39111 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
39112
39113 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39114
39115 commit 33eac2b3d946fc998a09245dfe54d017079b9056
39116 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39117 Date: Wed Aug 20 09:28:36 2008 +0200
39118
39119 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
39120
39121 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39122
39123 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
39124 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39125 Date: Wed Aug 20 09:27:37 2008 +0200
39126
39127 favr-32-ezkit: Fix printf format warnings
39128
39129 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39130
39131 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
39132 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39133 Date: Fri Aug 15 12:04:25 2008 +0200
39134
39135 MAINTAINERS: Sort avr32 section alphabetically
39136
39137 The rest of the MAINTAINERS file appears to be sorted
39138 almost-alphabetically, but entries for the newly added AVR32 boards were
39139 added somewhat randomly. This patch sorts the list alphabetically again.
39140
39141 Also update my e-mail address. The old one still works, but it may not
39142 work forever.
39143
39144 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39145
39146 commit 13b50fe3bc065c48911fa373231421280855a9d6
39147 Author: Mark Jackson <mpfj@mimc.co.uk>
39148 Date: Wed Jul 30 13:07:27 2008 +0100
39149
39150 avr32: Add MIMC200 board
39151
39152 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
39153 8MByte FLASH and 128KByte FRAM.
39154
39155 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
39156 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
39157
39158 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
39159 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
39160 Date: Wed Jul 9 21:07:34 2008 +0900
39161
39162 rtl8169: add support for RTL8110SCL
39163
39164 This patch fixes a problem that RTL8110SCL started transfer
39165 with an incorrect memory address.
39166
39167 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
39168 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39169
39170 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
39171 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39172 Date: Wed Jun 25 15:48:52 2008 -0500
39173
39174 Fix dm9000 receive status and len little endian issue
39175
39176 The received status and len was in little endian
39177 format and caused the ethernet unable to proceed
39178 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
39179
39180 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39181 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
39182
39183 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
39184 Author: Kumar Gala <galak@kernel.crashing.org>
39185 Date: Fri Aug 15 08:24:32 2008 -0500
39186
39187 Clean up usage of icache_disable/dcache_disable
39188
39189 There is no point in disabling the icache on 7xx/74xx/86xx parts and not
39190 also flushing the icache. All callers of invalidate_l1_instruction_cache()
39191 call icache_disable() right after. Make it so icache_disable() calls
39192 invalidate_l1_instruction_cache() for us.
39193
39194 Also, dcache_disable() already calls dcache_flush() so there is no point
39195 in the explicit calls of dcache_flush().
39196
39197 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39198
39199 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
39200 Author: Kumar Gala <galak@kernel.crashing.org>
39201 Date: Fri Aug 15 08:24:31 2008 -0500
39202
39203 Update linux bootm to support ePAPR client interface
39204
39205 The ePAPR spec has some subtle differences from the current device
39206 tree based boot interface to the powerpc linux kernel. The powerpc
39207 linux kernel currently ignores the differences that ePAPR specifies.
39208
39209 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
39210
39211 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
39212 Author: Wolfgang Denk <wd@denx.de>
39213 Date: Mon Aug 18 23:50:20 2008 +0200
39214
39215 Minor code cleanup: keep lists sorted.
39216
39217 Signed-off-by: Wolfgang Denk <wd@denx.de>
39218
39219 commit d0039d4ed275e6ca09fb417895024ad02be118c4
39220 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
39221 Date: Wed Jul 23 19:10:14 2008 +0200
39222
39223 Add support for ADT7460 I2C monitor chip
39224
39225 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
39226
39227 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
39228 Author: Michal Simek <monstr@monstr.eu>
39229 Date: Mon Jul 14 19:45:45 2008 +0200
39230
39231 video: Clean drivers/video/Makefile
39232
39233 Signed-off-by: Michal Simek <monstr@monstr.eu>
39234
39235 commit 871c18dd301752270e1f74328c846c3104be1e2e
39236 Author: Michal Simek <monstr@monstr.eu>
39237 Date: Mon Jul 14 19:45:37 2008 +0200
39238
39239 rtc: Clean drivers/rtc/Makefile
39240
39241 Signed-off-by: Michal Simek <monstr@monstr.eu>
39242
39243 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
39244 Author: Michal Simek <monstr@monstr.eu>
39245 Date: Mon Jul 14 19:45:35 2008 +0200
39246
39247 i2c: Clean drivers/i2c/ Makefile
39248
39249 Signed-off-by: Michal Simek <monstr@monstr.eu>
39250
39251 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
39252 Author: Harald Welte <laforge@openmoko.org>
39253 Date: Wed Jul 9 22:30:30 2008 +0800
39254
39255 Add 'license' command to U-Boot command line
39256
39257 The 'license' command includes the U-Boot license (GPLv2) into the
39258 actual bootloader binary. The license text can be shown interactively
39259 at the U-Boot commandline.
39260
39261 For products where the commandline can actually be accessed by the
39262 end user, this helps to prevent inadvertent GPL violations, since the
39263 GPLv2 license text can no longer be 'forgotten' to be included into
39264 the product.
39265
39266 The 'license' command can be enabled by CONFIG_CMD_LICENSE.
39267
39268 Signed-off-by: Harald Welte <laforge@openmoko.org>
39269
39270 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
39271 Author: Harald Welte <laforge@gnumonks.org>
39272 Date: Sun Jul 6 15:56:38 2008 +0800
39273
39274 add 'unzip' command to u-boot commandline
39275
39276 [PATCH] add new 'unzip' command to u-boot commandline
39277
39278 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
39279 memory to memory, and option CONFIG_CMD_UNZIP to enable it
39280
39281 Signed-off-by: Werner Almesberger <werner@openmoko.org>
39282 Signed-off-by: Harald Welte <laforge@openmoko.org>
39283
39284 commit 07efc9e321619c3dec213310c32e011aa6f02783
39285 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39286 Date: Wed Aug 6 19:37:17 2008 -0500
39287
39288 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
39289
39290 The CFG_ENV_SIZE is not suitable used for SPI flash erase
39291 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
39292 Add condition check if CFG_ENV_SIZE is larger than
39293 CFG_ENV_SECT_SIZE, calculate the right number of sectors for
39294 erasing.
39295
39296 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39297
39298 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
39299 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39300 Date: Mon Aug 11 15:54:25 2008 +0000
39301
39302 ColdFire: Multiple fixes for M5282EVB
39303
39304 Incorrect CFG_HZ value, change 1000000 to 1000.
39305 Rename #waring to #warning. RAMBAR1 uses twice
39306 in start.S, rename the later to FLASHBAR. Insert
39307 nop for DRAM setup. And, env_offset in linker file.
39308
39309 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39310
39311 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
39312 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39313 Date: Mon Aug 11 15:26:43 2008 +0000
39314
39315 ColdFire: Move m5282evb from board to board/freescale
39316
39317 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39318
39319 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
39320 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39321 Date: Mon Aug 11 15:25:07 2008 +0000
39322
39323 ColdFire: Move m5272c3 from board to board/freescale
39324
39325 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39326
39327 commit 659e9bad629a480f606b286d5703aef7159edf98
39328 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39329 Date: Mon Aug 11 15:23:16 2008 +0000
39330
39331 ColdFire: Move m5271evb from board to board/freescale
39332
39333 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39334
39335 commit 05316f8ece8206339a208ec052f039cd0f7ca922
39336 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39337 Date: Mon Aug 11 13:41:49 2008 +0000
39338
39339 ColdFire: Add M54451EVB platform support for MCF5445x
39340
39341 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39342
39343 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
39344 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39345 Date: Wed Aug 6 19:14:08 2008 -0500
39346
39347 ColdFire: Add Serial Flash support for M54455EVB
39348
39349 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39350
39351 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
39352 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39353 Date: Wed Jul 23 20:38:53 2008 -0500
39354
39355 ColdFire: Implement SBF feature for M5445EVB
39356
39357 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39358
39359 commit a7323bba229203aae2604afde131ab47bad4eadc
39360 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39361 Date: Wed Jul 23 17:53:36 2008 -0500
39362
39363 ColdFire: Add SSPI feature for MCF5445x
39364
39365 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39366
39367 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
39368 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39369 Date: Wed Jul 23 17:37:10 2008 -0500
39370
39371 ColdFire: Use CFI Flash driver for M54455EVB
39372
39373 Remove non-common flash driver in
39374 board/freescale/m54455evb/flash.c. The non-cfi flash will
39375 use CONFIG_FLASH_CFI_LEGACY to configure the flash
39376 attribute.
39377
39378 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39379
39380 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
39381 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39382 Date: Wed Jul 23 17:11:47 2008 -0500
39383
39384 ColdFire: Add M5253DEMO platform support for MCF5253
39385
39386 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39387
39388 commit 80ba61fd82569af40e04d4a089257b81881884f2
39389 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39390 Date: Wed Aug 6 14:17:09 2008 -0500
39391
39392 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
39393
39394 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39395
39396 commit d361307e73ce1f6fc68760123f37d4876f851f3e
39397 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39398 Date: Wed Aug 6 14:11:36 2008 -0500
39399
39400 ColdFire: Fix M5253EVB dram bring up issue
39401
39402 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39403
39404 commit 4b0708093e15b412296328bf81325cf9b69fe512
39405 Author: Wolfgang Denk <wd@denx.de>
39406 Date: Thu Aug 14 14:41:06 2008 +0200
39407
39408 Coding Style cleanup, update CHANGELOG
39409
39410 Signed-off-by: Wolfgang Denk <wd@denx.de>
39411
39412 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
39413 Author: Scott Wood <scottwood@freescale.com>
39414 Date: Wed Aug 13 18:24:05 2008 -0500
39415
39416 socrates: Update NAND driver to new API.
39417
39418 Also, fix some minor formatting issues, and simplify the handling of
39419 "state" for writes.
39420
39421 Signed-off-by: Scott Wood <scottwood@freescale.com>
39422
39423 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
39424 Author: Scott Wood <scottwood@freescale.com>
39425 Date: Wed Aug 13 18:03:40 2008 -0500
39426
39427 quad100hd: Update NAND driver to new API.
39428
39429 Signed-off-by: Scott Wood <scottwood@freescale.com>
39430
39431 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
39432 Author: Scott Wood <scottwood@freescale.com>
39433 Date: Wed Aug 13 17:53:48 2008 -0500
39434
39435 m5373evb: Update NAND driver to new API.
39436
39437 Signed-off-by: Scott Wood <scottwood@freescale.com>
39438
39439 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
39440 Author: Scott Wood <scottwood@freescale.com>
39441 Date: Wed Aug 13 17:04:30 2008 -0500
39442
39443 s3c24x0: Update NAND driver to new API.
39444
39445 Signed-off-by: Scott Wood <scottwood@freescale.com>
39446
39447 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
39448 Author: Scott Wood <scottwood@freescale.com>
39449 Date: Wed Aug 13 15:56:00 2008 -0500
39450
39451 at91: Update board NAND drivers to current API.
39452
39453 Signed-off-by: Scott Wood <scottwood@freescale.com>
39454
39455 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
39456 Author: Kyungmin Park <kmpark@infradead.org>
39457 Date: Wed Aug 13 09:11:02 2008 +0900
39458
39459 Fix OneNAND build break
39460
39461 Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
39462 - fix bufferram management at erase operation
39463 This patch includes the NAND/OneNAND state filed too.
39464
39465 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
39466 Signed-off-by: Scott Wood <scottwood@freescale.com>
39467
39468 commit 9483df6408c25f16060432de3868901e352e23bc
39469 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39470 Date: Wed Aug 13 01:40:43 2008 +0200
39471
39472 drivers/mtd/nand_legacy: Move conditional compilation to Makefile
39473
39474 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39475
39476 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
39477 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39478 Date: Wed Aug 13 01:40:43 2008 +0200
39479
39480 drivers/mtd/nand: Move conditional compilation to Makefile
39481
39482 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
39483
39484 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39485
39486 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
39487 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39488 Date: Wed Aug 13 01:40:42 2008 +0200
39489
39490 drivers/mtd/onenand: Move conditional compilation to Makefile
39491
39492 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39493
39494 commit 00b1883a4cac59d97cd297b1a3a398db85982865
39495 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39496 Date: Wed Aug 13 01:40:42 2008 +0200
39497
39498 drivers/mtd: Move conditional compilation to Makefile
39499
39500 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
39501
39502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39503
39504 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
39505 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39506 Date: Wed Aug 13 01:40:41 2008 +0200
39507
39508 drivers/qe: Move conditional compilation to Makefile
39509
39510 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39511
39512 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
39513 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39514 Date: Wed Aug 13 01:40:40 2008 +0200
39515
39516 drivers/pci: Move conditional compilation to Makefile
39517
39518 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39519
39520 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
39521 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39522 Date: Wed Aug 13 01:40:40 2008 +0200
39523
39524 drivers/misc: Move conditional compilation to Makefile
39525
39526 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39527
39528 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
39529 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39530 Date: Wed Aug 13 01:40:40 2008 +0200
39531
39532 drivers/input: Move conditional compilation to Makefile
39533
39534 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39535
39536 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
39537 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39538 Date: Wed Aug 13 01:40:39 2008 +0200
39539
39540 drivers/dma: Move conditional compilation to Makefile
39541
39542 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39543
39544 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
39545 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39546 Date: Wed Aug 13 01:40:39 2008 +0200
39547
39548 drivers/block: Move conditional compilation to Makefile
39549
39550 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39551
39552 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
39553 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39554 Date: Wed Aug 13 01:40:39 2008 +0200
39555
39556 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
39557
39558 move also conditional compilation to Makefile
39559
39560 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39561
39562 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
39563 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39564 Date: Wed Aug 13 01:40:38 2008 +0200
39565
39566 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
39567
39568 move also conditional compilation to Makefile
39569
39570 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39571
39572 commit d6e9ee92e890f67594ab150689510df361133ead
39573 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39574 Date: Wed Aug 13 01:40:38 2008 +0200
39575
39576 common: Move conditional compilation to Makefile
39577
39578 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39579
39580 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
39581 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39582 Date: Wed Aug 13 01:40:09 2008 +0200
39583
39584 mx31: move freescale's mx31 boards to vendor board dir
39585
39586 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39587
39588 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
39589 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39590 Date: Sat Jul 5 23:11:11 2008 +0200
39591
39592 at91: move arch-at91sam9 to arch-at91
39593
39594 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
39595
39596 commit 195ccfc5991d48764b2519941e3507f693851d5d
39597 Author: Fathi BOUDRA <fabo@debian.org>
39598 Date: Wed Aug 6 10:06:20 2008 +0200
39599
39600 OneNAND: Fill in MTD function pointers for OneNAND.
39601
39602 onenand_print_device_info():
39603 - Now returns a string to be placed in mtd->name,
39604 rather than calling printf.
39605 - Remove verbose parameter as it becomes useless.
39606
39607 Signed-off-by: Fathi Boudra <fabo@debian.org>
39608 Signed-off-by: Scott Wood <scottwood@freescale.com>
39609
39610 commit aa646643b6bc250cb3a4966bf728876e0c10d329
39611 Author: Guennadi Liakhovetski <lg@denx.de>
39612 Date: Wed Aug 6 21:42:07 2008 +0200
39613
39614 nand_spl: Support page-aligned read in nand_load, use chipselect
39615
39616 Supporting page-aligned reads doesn't incure any sinificant overhead, just
39617 a small change in the algorithm. Also replace in_8 with readb, since there
39618 is no in_8 on ARM.
39619
39620 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39621 Signed-off-by: Scott Wood <scottwood@freescale.com>
39622
39623 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
39624 Author: Scott Wood <scottwood@freescale.com>
39625 Date: Tue Aug 5 11:15:59 2008 -0500
39626
39627 NAND boot: Update large page support for current API.
39628
39629 Also, remove the ctrl variable in favor of passing the constants
39630 directly, and remove redundant (u8) casts.
39631
39632 Signed-off-by: Scott Wood <scottwood@freescale.com>
39633
39634 commit e4c09508545d1c45617ba45391c03c03cbc360b9
39635 Author: Scott Wood <scottwood@freescale.com>
39636 Date: Mon Jun 30 14:13:28 2008 -0500
39637
39638 NAND boot: MPC8313ERDB support
39639
39640 Note that with older board revisions, NAND boot may only work after a
39641 power-on reset, and not after a warm reset. I don't have a newer board
39642 to test on; if you have a board with a 33MHz crystal, please let me know
39643 if it works after a warm reset.
39644
39645 Signed-off-by: Scott Wood <scottwood@freescale.com>
39646
39647 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
39648 Author: Scott Wood <scottwood@freescale.com>
39649 Date: Thu Jun 26 14:06:52 2008 -0500
39650
39651 mpc8313erdb: Enable NAND in config.
39652
39653 Signed-off-by: Scott Wood <scottwood@freescale.com>
39654
39655 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
39656 Author: Guennadi Liakhovetski <lg@denx.de>
39657 Date: Thu Jul 31 12:38:26 2008 +0200
39658
39659 NAND: Do not write or read a whole block if it is larger than the environment
39660
39661 Environment can be smaller than NAND block size, do not need to read a whole
39662 block and minimum for writing is one page. Also remove an unused variable.
39663
39664 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
39665 Signed-off-by: Scott Wood <scottwood@freescale.com>
39666
39667 commit eafcabd15f00c142156235c519fcc55b10993241
39668 Author: Marcel Ziswiler <marcel@ziswiler.com>
39669 Date: Sun Jun 22 16:30:06 2008 +0200
39670
39671 NAND: chip->state does not always get set.
39672
39673 Fixes an issue with chip->state not always being set causing troubles.
39674
39675 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
39676 Signed-off-by: Scott Wood <scottwood@freescale.com>
39677
39678 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
39679 Author: Ilya Yanok <yanok@emcraft.com>
39680 Date: Mon Jun 30 15:34:40 2008 +0200
39681
39682 NAND: Scan bad blocks lazily.
39683
39684 Rather than scanning on boot, scan upon the first attempt to check the
39685 badness of a block. This speeds up boot when not using NAND, and reduces
39686 the likelihood of needing to reflash via JTAG if NAND becomes
39687 nonfunctional.
39688
39689 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
39690 Signed-off-by: Scott Wood <scottwood@freescale.com>
39691
39692 commit dfbf617ff055e4216f78d358b0867c548916d14b
39693 Author: Scott Wood <scottwood@freescale.com>
39694 Date: Thu Jun 12 13:20:16 2008 -0500
39695
39696 NAND read/write fix
39697
39698 Implement block-skipping read/write, based on a patch from
39699 Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
39700
39701 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
39702 Signed-off-by: Scott Wood <scottwood@freescale.com>
39703
39704 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
39705 Author: Scott Wood <scottwood@freescale.com>
39706 Date: Thu Jun 12 13:13:23 2008 -0500
39707
39708 NAND: Always skip blocks on read/write/boot.
39709
39710 Use of the non-skipping versions was almost always (if not always)
39711 an error, and no valid use case has been identified.
39712
39713 Signed-off-by: Scott Wood <scottwood@freescale.com>
39714
39715 commit e1c3dbada349992875934575c97b328ab2cb33ca
39716 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
39717 Date: Thu Jun 12 11:10:21 2008 -0500
39718
39719 nand: fsl_upm: convert to updated MTD NAND infrastructure
39720
39721 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
39722 Signed-off-by: Scott Wood <scottwood@freescale.com>
39723
39724 commit 300253306acc72b1b2e9faf0987f86551151d7cf
39725 Author: Scott Wood <scottwood@freescale.com>
39726 Date: Thu May 22 15:02:46 2008 -0500
39727
39728 fsl_elbc_nand: Hard-code the FBAR/FPAR split.
39729
39730 The hardware has separate registers for block and page-within-block,
39731 but the division between the two has no apparent relation to the
39732 actual erase block size of the NAND chip.
39733
39734 Signed-off-by: Scott Wood <scottwood@freescale.com>
39735
39736 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
39737 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
39738 Date: Fri Mar 28 22:10:54 2008 +0300
39739
39740 fsl_elbc_nand: workaround for hangs during nand write
39741
39742 Using current driver elbc sometimes hangs during nand write. Reading back
39743 last byte helps though (thanks to Scott Wood for the idea).
39744
39745 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
39746 Signed-off-by: Scott Wood <scottwood@freescale.com>
39747
39748 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
39749 Author: Scott Wood <scottwood@freescale.com>
39750 Date: Fri Mar 21 16:12:51 2008 -0500
39751
39752 Freescale eLBC FCM NAND driver
39753
39754 This is a driver for the Flash Control Machine of the enhanched Local Bus
39755 Controller found on some Freescale chips (such as the mpc8313 and the
39756 mpc8379).
39757
39758 Signed-off-by: Scott Wood <scottwood@freescale.com>
39759
39760 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
39761 Author: Scott Wood <scottwood@freescale.com>
39762 Date: Tue Mar 18 15:29:14 2008 -0500
39763
39764 Don't panic if a controller driver does ecc its own way.
39765
39766 Some hardware, such as the enhanced local bus controller used on some
39767 mpc83xx chips, does ecc transparently when reading and writing data, rather
39768 than providing a generic calculate/correct mechanism that can be exported to
39769 the nand subsystem.
39770
39771 The subsystem should not BUG() when calculate, correct, or hwctl are
39772 missing, if the methods that call them have been overridden.
39773
39774 Signed-off-by: Scott Wood <scottwood@freescale.com>
39775
39776 commit e52b34d40a8a646e3d11638ea8797e96398dba13
39777 Author: Stefan Roese <sr@denx.de>
39778 Date: Thu Jan 10 18:47:33 2008 +0100
39779
39780 NAND: Make NAND driver less verbose per default
39781
39782 This patch turns off printing of bad blocks per default upon bootup.
39783 This can always be shown via the "nand bad" command later.
39784
39785 Signed-off-by: Stefan Roese <sr@denx.de>
39786
39787 commit fe56a2772e5c59577df906163d0d4b29b056140e
39788 Author: Sergey Kubushyn <ksi@koi8.net>
39789 Date: Wed Jan 9 15:36:20 2008 +0100
39790
39791 NAND: Davinci driver updates
39792
39793 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
39794 don't have hardware handy so I can not test it at the moment but changes are
39795 rather trivial so it should work. It would be nice if somebody with a
39796 hardware checked it anyways.
39797
39798 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
39799
39800 commit deac913effd8d80535c9ff4687b6fcdff540c554
39801 Author: Stefan Roese <sr@denx.de>
39802 Date: Sat Jan 5 16:50:32 2008 +0100
39803
39804 NAND: Fix compilation warning and small coding style issue
39805
39806 Signed-off-by: Stefan Roese <sr@denx.de>
39807
39808 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
39809 Author: Stefan Roese <sr@denx.de>
39810 Date: Sat Jan 5 16:49:37 2008 +0100
39811
39812 NAND: Update nand_spl driver to match updated nand subsystem
39813
39814 This patch changes the NAND booting driver nand_spl/nand_boot.c to match
39815 the new infrastructure from the updated NAND subsystem. This NAND
39816 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
39817 subsystem.
39818
39819 Signed-off-by: Stefan Roese <sr@denx.de>
39820
39821 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
39822 Author: Stefan Roese <sr@denx.de>
39823 Date: Sat Jan 5 16:47:58 2008 +0100
39824
39825 NAND: Update 4xx NDFC driver to match updated nand subsystem
39826
39827 This patch changes the 4xx NAND driver ndfc.c to match the new
39828 infrastructure from the updated NAND subsystem. This NAND
39829 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
39830 subsystem.
39831
39832 Tested successfully on AMCC Sequoia and Bamboo.
39833
39834 Signed-off-by: Stefan Roese <sr@denx.de>
39835
39836 commit 12072264528eba33737bc9674e19f0e925ffda23
39837 Author: Stefan Roese <sr@denx.de>
39838 Date: Sat Jan 5 16:43:25 2008 +0100
39839
39840 NAND: Change nand_wait_ready() to not call nand_wait()
39841
39842 This patch changes nand_wait_ready() to not just call nand_wait(),
39843 since this will send a new command to the NAND chip. We just want to
39844 wait for the chip to become ready here.
39845
39846 Signed-off-by: Stefan Roese <sr@denx.de>
39847
39848 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
39849 Author: William Juul <william.juul@datarespons.no>
39850 Date: Fri Dec 14 16:33:45 2007 +0100
39851
39852 make nand dump and nand dump.oob work
39853
39854 Signed-off-by: William Juul <william.juul@tandberg.com>
39855 Signed-off-by: Scott Wood <scottwood@freescale.com>
39856
39857 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
39858 Author: William Juul <william.juul@datarespons.no>
39859 Date: Mon Nov 19 14:46:00 2007 +0100
39860
39861 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
39862
39863 Signed-off-by: William Juul <william.juul@tandberg.com>
39864
39865 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
39866 Author: William Juul <william.juul@tandberg.com>
39867 Date: Tue Jun 10 16:18:13 2008 -0500
39868
39869 Clean out unneeded files
39870
39871 Signed-off-by: William Juul <william.juul@tandberg.com>
39872
39873 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
39874 Author: William Juul <william.juul@datarespons.no>
39875 Date: Fri Nov 16 08:44:27 2007 +0100
39876
39877 Create symlinks from yaffs2/direct to yaffs2
39878
39879 Signed-off-by: William Juul <william.juul@tandberg.com>
39880
39881 commit 90ef117b68387d66763291af0117677644166611
39882 Author: William Juul <william.juul@datarespons.no>
39883 Date: Thu Nov 15 12:23:57 2007 +0100
39884
39885 Incorporate yaffs2 into U-boot
39886
39887 To use YAFFS2 define CONFIG_YAFFS2
39888
39889 Signed-off-by: William Juul <william.juul@tandberg.com>
39890 Signed-off-by: Scott Wood <scottwood@freescale.com>
39891
39892 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
39893 Author: William Juul <william.juul@datarespons.no>
39894 Date: Thu Nov 15 11:13:05 2007 +0100
39895
39896 YAFFS2 import
39897
39898 Direct import of yaffs as a tarball as of 20071113 from their public
39899 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
39900
39901 The code can also be imported on the command line with:
39902 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
39903 (Hit return when asked for a password)
39904 cvs checkout yaffs2
39905
39906 Signed-off-by: William Juul <william.juul@tandberg.com>
39907 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
39908
39909 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
39910 Author: William Juul <william.juul@datarespons.no>
39911 Date: Wed Nov 14 14:28:11 2007 +0100
39912
39913 Whitespace cleanup and marking broken code.
39914
39915 Changes requested by maintainer Stefan Roese after
39916 posting patch to U-boot mailing list.
39917
39918 Signed-off-by: William Juul <william.juul@tandberg.com>
39919 Signed-off-by: Scott Wood <scottwood@freescale.com>
39920
39921 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
39922 Author: William Juul <william.juul@datarespons.no>
39923 Date: Fri Nov 9 13:32:30 2007 +0100
39924
39925 Fixing coding style issues
39926
39927 - Fixing leading white spaces
39928 - Fixing indentation where 4 spaces are used instead of tab
39929 - Removing C++ comments (//), wherever I introduced them
39930
39931 Signed-off-by: William Juul <william.juul@tandberg.com>
39932 Signed-off-by: Scott Wood <scottwood@freescale.com>
39933
39934 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
39935 Author: William Juul <william.juul@datarespons.no>
39936 Date: Thu Nov 8 10:39:53 2007 +0100
39937
39938 Remove white space at end.
39939
39940 Signed-off-by: William Juul <william.juul@tandberg.com>
39941 Signed-off-by: Scott Wood <scottwood@freescale.com>
39942
39943 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
39944 Author: William Juul <william.juul@datarespons.no>
39945 Date: Wed Oct 31 13:53:06 2007 +0100
39946
39947 Update MTD to that of Linux 2.6.22.1
39948
39949 A lot changed in the Linux MTD code, since it was last ported from
39950 Linux to U-Boot. This patch takes U-Boot NAND support to the level
39951 of Linux 2.6.22.1 and will enable support for very large NAND devices
39952 (4KB pages) and ease the compatibility between U-Boot and Linux
39953 filesystems.
39954
39955 This patch is tested on two custom boards with PPC and ARM
39956 processors running YAFFS in U-Boot and Linux using gcc-4.1.2
39957 cross compilers.
39958
39959 MAKEALL ppc/arm has some issues:
39960 * DOC/OneNand/nand_spl is not building (I have not tried porting
39961 these parts, and since I do not have any HW and I am not familiar
39962 with this code/HW I think its best left to someone else.)
39963
39964 Except for the issues mentioned above, I have ported all drivers
39965 necessary to run MAKEALL ppc/arm without errors and warnings. Many
39966 drivers were trivial to port, but some were not so trivial. The
39967 following drivers must be examined carefully and maybe rewritten to
39968 some degree:
39969 cpu/ppc4xx/ndfc.c
39970 cpu/arm926ejs/davinci/nand.c
39971 board/delta/nand.c
39972 board/zylonite/nand.c
39973
39974 Signed-off-by: William Juul <william.juul@tandberg.com>
39975 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
39976 Signed-off-by: Scott Wood <scottwood@freescale.com>
39977
39978 commit cd82919e6c8a73b363a26f34b734923844e52d1c
39979 Author: Wolfgang Denk <wd@denx.de>
39980 Date: Tue Aug 12 16:08:38 2008 +0200
39981
39982 Coding style cleanup, update CHANGELOG, prepare release
39983
39984 Signed-off-by: Wolfgang Denk <wd@denx.de>
39985
39986 commit 17e900b8c0f38d922da47073246219dce2a847f2
39987 Author: Wolfgang Denk <wd@denx.de>
39988 Date: Tue Aug 12 14:54:04 2008 +0200
39989
39990 MVBC_P: fix compile problem
39991
39992 Signed-off-by: Wolfgang Denk <wd@denx.de>
39993
39994 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
39995 Author: Wolfgang Denk <wd@denx.de>
39996 Date: Tue Aug 12 12:10:11 2008 +0200
39997
39998 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
39999
40000 Signed-off-by: Wolfgang Denk <wd@denx.de>
40001
40002 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
40003 Author: Wolfgang Denk <wd@denx.de>
40004 Date: Tue Aug 12 00:36:53 2008 +0200
40005
40006 ads5121: fix compiler warnings (unused variables)
40007
40008 Signed-off-by: Wolfgang Denk <wd@denx.de>
40009
40010 commit 902ca09246039964d59bbcb519b1e1b5aed01308
40011 Author: Kumar Gala <galak@kernel.crashing.org>
40012 Date: Mon Aug 11 11:29:28 2008 -0500
40013
40014 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
40015
40016 Use CONFIG_NUM_CPUS to match existing define used by 86xx.
40017
40018 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40019 Acked-by: Jon Loeliger <jdl@freescale.com>
40020
40021 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
40022 Author: Kumar Gala <galak@kernel.crashing.org>
40023 Date: Mon Aug 11 09:20:53 2008 -0500
40024
40025 Fix fallout from autostart revert
40026
40027 The autostart revert caused a bit of duplicated code as well as
40028 code that was using images->autostart that needs to get removed so
40029 we can build again.
40030
40031 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40032
40033 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
40034 Author: Kumar Gala <galak@kernel.crashing.org>
40035 Date: Mon Aug 11 09:16:25 2008 -0500
40036
40037 Fix compile error related to r8a66597-hcd & usb
40038
40039 When building the 8544DS board we get this error:
40040
40041 In file included from r8a66597-hcd.c:22:
40042 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
40043 make[1]: *** [r8a66597-hcd.o] Error 1
40044
40045 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
40046 is set.
40047
40048 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40049
40050 commit 2d0daa03612338a813e3c9d22680e54eabfea378
40051 Author: Becky Bruce <becky.bruce@freescale.com>
40052 Date: Mon Aug 4 14:02:26 2008 -0500
40053
40054 POWERPC 86xx: Move BAT setup code to C
40055
40056 This is needed because we will be possibly be locating
40057 devices at physical addresses above 32bits, and the asm
40058 preprocessing does not appear to deal with ULL constants
40059 properly. We now call write_bat in lib_ppc/bat_rw.c.
40060
40061 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
40062 Acked-by: Jon Loeliger <jdl@freescale.com>
40063
40064 commit 9de67149db576c91b9c2a0a182652331e7e44211
40065 Author: Becky Bruce <becky.bruce@freescale.com>
40066 Date: Mon Aug 4 14:01:53 2008 -0500
40067
40068 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
40069
40070 Perform sync/isync as required by the architecture.
40071
40072 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
40073 Acked-by: Jon Loeliger <jdl@freescale.com>
40074
40075 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
40076 Author: Becky Bruce <becky.bruce@freescale.com>
40077 Date: Mon Aug 4 14:01:16 2008 -0500
40078
40079 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
40080
40081 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
40082 Acked-by: Jon Loeliger <jdl@freescale.com>
40083
40084 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
40085 Author: Magnus Lilja <lilja.magnus@gmail.com>
40086 Date: Sun Aug 3 21:44:10 2008 +0200
40087
40088 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
40089
40090 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
40091 contacts instead of only the first 256 ones as is the case prior to
40092 this patch.
40093
40094 Add missing MUX_* macros and update board files to use the new macros.
40095
40096 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
40097
40098 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
40099 Author: Magnus Lilja <lilja.magnus@gmail.com>
40100 Date: Sun Aug 3 21:43:37 2008 +0200
40101
40102 i.MX31: Fix IOMUX related typos
40103
40104 Correct the names of some IOMUX macros.
40105
40106 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
40107
40108 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
40109 Author: Steve Sakoman <steve@sakoman.com>
40110 Date: Mon Aug 11 20:26:16 2008 +0200
40111
40112 OneNAND: Remove unused parameters to onenand_verify_page
40113
40114 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.
40115
40116 Signed-off-by: Steve Sakoman <steve@sakoman.com>
40117 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
40118
40119 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
40120 Author: Anatolij Gustschin <agust@denx.de>
40121 Date: Fri Aug 8 18:00:40 2008 +0200
40122
40123 video: fix bug in cfb_console code
40124
40125 FILL_15BIT_555RGB macro extension for pixel swapping
40126 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
40127 introduced a bug in cfb_console:
40128
40129 Bitmaps with odd-numbered width won't be rendered
40130 correctly and even U-Boot crashes are observed on
40131 some platforms while repeated rendering of such
40132 bitmaps with "bmp display". Also if a bitmap is
40133 rendered to an odd-numbered x starting position,
40134 the same problem occurs. This patch is an attempt
40135 to fix it.
40136
40137 Signed-off-by: Anatolij Gustschin <agust@denx.de>
40138
40139 commit d9015f6a50d7258125349ef5c2af836458a0029a
40140 Author: Anatolij Gustschin <agust@denx.de>
40141 Date: Fri Aug 8 18:00:39 2008 +0200
40142
40143 video: fix bug in logo_plot
40144
40145 If logo_plot() should ever be called with x starting
40146 position other than zero and for pixel depths greater
40147 than 8bpp, logo colors distortion will be observed.
40148 This patch fixes the issue.
40149
40150 Signed-off-by: Anatolij Gustschin <agust@denx.de>
40151
40152 commit 406819ae94f79f5b59e01d163380ca7d83709251
40153 Author: Wolfgang Denk <wd@denx.de>
40154 Date: Mon Aug 11 00:17:52 2008 +0200
40155
40156 MAINTAINERS: sort entries
40157
40158 Signed-off-by: Wolfgang Denk <wd@denx.de>
40159
40160 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
40161 Author: Roy Zang <tie-fei.zang@freescale.com>
40162 Date: Thu Aug 7 18:19:28 2008 +0800
40163
40164 Add mpc7448hpc2 maintainer information
40165
40166 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40167
40168 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
40169 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
40170 Date: Thu Aug 7 13:13:27 2008 +0530
40171
40172 common/cmd_load.c - Minor code & Coding Style cleanup
40173
40174 - os_data_header Variable is a carry over feature
40175 & unused. So removed all instance of this variable
40176 - Minor Code Style Update
40177
40178 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
40179 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40180
40181 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
40182 Author: Magnus Lilja <lilja.magnus@gmail.com>
40183 Date: Wed Aug 6 19:32:33 2008 +0200
40184
40185 Update the U-Boot wiki URL.
40186
40187 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
40188
40189 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
40190 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
40191 Date: Sun Aug 10 17:56:36 2008 +0200
40192
40193 OneNAND: Remove base address offset usage
40194
40195 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
40196 using OneNAND and some using NAND, we found some differences in OneNAND and
40197 NAND command address handling.
40198
40199 As this might confuse users (it already confused us), we like to align OneNAND
40200 and NAND address handling.
40201
40202 The issue is that cmd_onenand.c subtracts the onenand base address from the
40203 addresses you type into the u-boot command line so, unlike nand, you can't
40204 use addresses relative to the start of the onenand part e.g. this won't work:
40205
40206 onenand read 82000000 280000 400000
40207
40208 you have to use:
40209
40210 onenand read 82000000 20280000 400000
40211
40212 Looking at recent git, the only board currently using OneNAND is Apollon, and
40213 for this the OneNAND base address is 0 (apollon.h)
40214
40215 #define CFG_ONENAND_BASE 0x00000000
40216
40217 so patch below won't break any existing boards and will align OneNAND and NAND
40218 handling on boards where OneNAND base address is != 0.
40219
40220 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
40221 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
40222 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
40223
40224 commit c11528083ef6e55e76df742228c26e39d151813d
40225 Author: Kumar Gala <galak@kernel.crashing.org>
40226 Date: Thu Aug 7 09:28:20 2008 -0500
40227
40228 mpc85xx: workaround old binutils bug
40229
40230 The recent change to move the .bss outside of the image gives older
40231 binutils (ld from eldk4.1/binutils-2.16) some headache:
40232
40233 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
40234 ppc_85xx-ld: final link failed: Bad value
40235
40236 We workaround it by being explicit about the program headers and not
40237 assigning the .bss to a program header.
40238
40239 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40240
40241 commit 0bf202ec586d4466c900e987720fa635c594d689
40242 Author: Wolfgang Denk <wd@denx.de>
40243 Date: Sun Aug 10 01:26:26 2008 +0200
40244
40245 Revert "[new uImage] Add autostart flag to bootm_headers structure"
40246
40247 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
40248
40249 The commit was based on a misunderstanding of the (documented)
40250 meaning of the 'autostart' environment variable. It might cause
40251 boards to hang if 'autostart' was used, with the potential to brick
40252 them. Go back to the documented behaviour.
40253
40254 Conflicts:
40255
40256 common/cmd_bootm.c
40257 common/image.c
40258 include/image.h
40259
40260 Signed-off-by: Wolfgang Denk <wd@denx.de>
40261
40262 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
40263 Author: Wolfgang Denk <wd@denx.de>
40264 Date: Sat Aug 9 23:17:32 2008 +0200
40265
40266 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
40267
40268 - enable CFI driver where this was forgotten
40269 - enable mtdparts support
40270 - adjust default environment
40271 etc.
40272
40273 Signed-off-by: Wolfgang Denk <wd@denx.de>
40274
40275 commit 41266c9b5a5f873df3ec891bb0907616958b5602
40276 Author: Peter Tyser <ptyser@xes-inc.com>
40277 Date: Tue Aug 5 10:51:57 2008 -0500
40278
40279 FIT: Fix handling of images without ramdisks
40280
40281 boot_get_ramdisk() should not treat the case when a FIT image does
40282 not contain a ramdisk as an error.
40283
40284 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
40285 Acked-by: Michal Simek <monstr@monstr.eu>
40286
40287 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
40288 Author: Sergey Lapin <slapin@ossfans.org>
40289 Date: Sat Aug 9 01:39:09 2008 +0400
40290
40291 DataFlash: AT45DB021 fix and AT45DB081 support
40292
40293 Fix for page size of AT45DB021. Also adding bigger AT45DB081
40294 which comes with some newer boards.
40295
40296 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
40297
40298 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
40299 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40300 Date: Fri Aug 8 16:30:23 2008 +0900
40301
40302 sh: Update sh7763rdp config
40303
40304 Add sh_eth support to sh7763rdp.
40305
40306 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
40307
40308 commit 21f971ec265f6042ec21636d55d06a6bc0751077
40309 Author: Wolfgang Denk <wd@denx.de>
40310 Date: Mon Jul 7 01:22:29 2008 +0200
40311
40312 TQM823L: re-enable logo support; update LCD_INFO text
40313
40314 Signed-off-by: Wolfgang Denk <wd@denx.de>
40315
40316 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
40317 Author: Wolfgang Denk <wd@denx.de>
40318 Date: Fri Aug 8 16:41:56 2008 +0200
40319
40320 TQM8xxL: fix support for second flash bank
40321
40322 When switching the TQM8xxL modules to use the CFI flash driver,
40323 support for the second flash bank was broken because the CFI driver
40324 did not support dynamically sized banks. This gets fixed now.
40325
40326 Signed-off-by: Wolfgang Denk <wd@denx.de>
40327
40328 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
40329 Author: Wolfgang Denk <wd@denx.de>
40330 Date: Fri Aug 8 16:39:54 2008 +0200
40331
40332 CFI: allow for dynamically determined flash sizes and addresses
40333
40334 The CFI driver allowed only for static initializers in the
40335 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
40336 several flash banks contiguously if the bank sizes were not known in
40337 advance, which kind of violates U-Boot's design philosophy.
40338
40339 (will be used for example by the TQM8xxL boards)
40340
40341 Signed-off-by: Wolfgang Denk <wd@denx.de>
40342
40343 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
40344 Author: Ben Warren <biggerbadderben@gmail.com>
40345 Date: Thu Aug 7 23:26:35 2008 -0700
40346
40347 QE UEC: Fix compiler warnings
40348
40349 Moved static functions earlier in file so forward declarations are not needed.
40350
40351 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40352
40353 commit d5d28fe4aad5f4535400647a5617c11039506467
40354 Author: David Saada <David.Saada@ecitele.com>
40355 Date: Mon Mar 31 02:37:38 2008 -0700
40356
40357 QE UEC: Add MII Commands
40358
40359 Add MII commands to the UEC driver. Note that once a UEC device is selected,
40360 any device on its MDIO bus can be addressed.
40361
40362 Signed-off-by: David Saada <david.saada@ecitele.com>
40363 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
40364
40365 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
40366 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40367 Date: Wed Jul 9 21:07:38 2008 +0900
40368
40369 usb: add support for R8A66597 usb controller
40370
40371 add support for Renesas R8A66597 usb controller.
40372 This patch supports USB Host mode.
40373
40374 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
40375 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40376
40377 commit 1d10dcd041aaeae9fd7c821005692898a0303382
40378 Author: Hunter, Jon <jon-hunter@ti.com>
40379 Date: Sat Jul 26 18:59:16 2008 -0500
40380
40381 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
40382
40383 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
40384
40385 Signed-off-by: Jon Hunter <jon-hunter@ti.com>
40386 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
40387
40388 commit eab1007334b93a6209f1ec33615e26ef5311ede7
40389 Author: Steven A. Falco <sfalco@harris.com>
40390 Date: Wed Aug 6 15:42:52 2008 -0400
40391
40392 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
40393
40394 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
40395 configuration to match the schematic, and also sets the SDR0_PFC1 register to
40396 select the corresponding mode for the UARTs.
40397
40398 Signed-off-by: Steven A. Falco <sfalco@harris.com>
40399 Signed-off-by: Stefan Roese <sr@denx.de>
40400
40401 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
40402 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
40403 Date: Wed Aug 6 14:42:13 2008 +0200
40404
40405 avr32: add support for EarthLCD Favr-32 board
40406
40407 This patch adds support for the Favr-32 board made by EarthLCD.
40408
40409 This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
40410 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
40411 Ethernet, audio out, USB device, SD-card slot, USART and various other
40412 connectors for cennecting stuff to SPI, I2C, GPIO, etc.
40413
40414 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
40415 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40416
40417 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
40418 Author: Rafael Campos <rafael.campos@hanscan.com>
40419 Date: Thu Jul 31 10:22:20 2008 +0200
40420
40421 cfi-flash: Added support to flash_real_protect for Atmel flash devices
40422
40423 Some of the flash memories produced by ATMEL start in read-only mode.
40424 We need to unprotect it. This patch allows the AT49BV6416 to work with
40425 cfi_flash memories. Tested in the at91rm9200ek board.
40426
40427 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
40428 Signed-off-by: Stefan Roese <sr@denx.de>
40429
40430 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
40431 Author: Guennadi Liakhovetski <lg@denx.de>
40432 Date: Tue Aug 5 15:36:39 2008 +0200
40433
40434 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
40435
40436 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40437 Signed-off-by: Stefan Roese <sr@denx.de>
40438
40439 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
40440 Author: Stefan Roese <sr@denx.de>
40441 Date: Wed Aug 6 14:06:03 2008 +0200
40442
40443 Fix merge problems
40444
40445 Signed-off-by: Stefan Roese <sr@denx.de>
40446
40447 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
40448 Author: Stefan Roese <sr@denx.de>
40449 Date: Wed Aug 6 14:05:38 2008 +0200
40450
40451 Fix merge problems
40452
40453 Signed-off-by: Stefan Roese <sr@denx.de>
40454
40455 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
40456 Author: Kenneth Johansson <kenneth@southpole.se>
40457 Date: Tue Jul 15 12:13:38 2008 +0200
40458
40459 mpc5121: Move iopin features from board specific to common files.
40460
40461 And in the process eliminate some duplicate register defines.
40462
40463 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
40464
40465 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
40466 Author: John Rigby <jrigby@freescale.com>
40467 Date: Tue Aug 5 17:38:57 2008 -0600
40468
40469 mpc5121: squash some fdt fixup errors
40470
40471 On ADS5121 when booting linux the following errors are seen:
40472 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
40473 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
40474 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
40475
40476 This is caused by ft_cpu_setup trying to deal with
40477 both old and new soc node naming. This patch
40478 fixes this by being smarter about what to
40479 fixup.
40480
40481 Also do soc node fixups by compatible instead of by path.
40482 A new board config called OF_SOC_COMPAT defined
40483 to be "fsl,mpc5121-immr" replaces the old
40484 OF_SOC node path that was defined to be "soc@80000000".
40485
40486 Old device trees still work, but the compatiblity
40487 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
40488 which is on by default in include/configs/ads5121.h.
40489
40490 Signed-off-by: John Rigby <jrigby@freescale.com>
40491
40492 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
40493 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40494 Date: Sat Aug 2 23:48:30 2008 +0200
40495
40496 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
40497
40498 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40499
40500 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
40501 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40502 Date: Sat Aug 2 23:48:32 2008 +0200
40503
40504 nios2/sysid: fix printf warning
40505
40506 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40507
40508 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
40509 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40510 Date: Sat Aug 2 23:48:33 2008 +0200
40511
40512 Fix remaining build issues with MPC8xx FADS boards.
40513
40514 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40515
40516 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
40517 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40518 Date: Sat Aug 2 23:48:31 2008 +0200
40519
40520 nios2: fix phys_addr_t and phys_size_t support
40521
40522 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40523
40524 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
40525 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40526 Date: Sat Aug 2 23:48:34 2008 +0200
40527
40528 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
40529
40530 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40531
40532 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
40533 Author: Mark Jackson <mpfj@mimc.co.uk>
40534 Date: Fri Aug 1 09:48:29 2008 +0100
40535
40536 Fix bitmap display for atmel lcd controller
40537
40538 The current lcd_display_bitmap() function does not work properly
40539 for the Atmel LCD controller.
40540
40541 2 fixes need to be done:-
40542
40543 (a) when setting the colour map, use the lcd_setcolreg() function
40544 as provided by the Atmel driver
40545 (b) the data is never actually written to the lcd framebuffer !!
40546
40547 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
40548
40549 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
40550 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40551 Date: Fri Aug 1 08:40:34 2008 +0200
40552
40553 qemu_mips: update README to follow qemu update about default machine
40554
40555 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40556
40557 commit ac169d645f5f0e0b9a232563099209e92a355d8e
40558 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40559 Date: Thu Jul 31 19:53:21 2008 -0500
40560
40561 ColdFire: Fix compilation issue caused by a missing function
40562
40563 Implement usec2ticks() which is used by fsl_i2c.c in
40564 lib_m68k/time.c
40565
40566 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40567
40568 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
40569 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40570 Date: Thu Jul 31 19:53:06 2008 -0500
40571
40572 Fix compilation error for TASREG
40573
40574 TASREG is ColdFire platform, the include ppc4xx.h in
40575 board/esd/common/flash.c causes conflict.
40576
40577 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40578
40579 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
40580 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40581 Date: Thu Jul 31 19:52:36 2008 -0500
40582
40583 Fix compilation error for MCF5275
40584
40585 Rename OBJ to COBJ in board/platform/Makefile
40586
40587 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40588
40589 commit 5c40548f01218360a1f1395198c50ff45f3035b5
40590 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40591 Date: Thu Jul 31 19:52:28 2008 -0500
40592
40593 Fix compile error caused by incorrect function return type
40594
40595 Rename int mii_init(void) to void mii_init(void) for idmr
40596 ColdFire platform
40597
40598 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
40599
40600 commit a58c78067c928976c082c758d3987e89ead5b191
40601 Author: Wolfgang Denk <wd@denx.de>
40602 Date: Fri Aug 1 12:06:22 2008 +0200
40603
40604 Fix build issues with MPC8xx FADS boards.
40605
40606 Signed-off-by: Wolfgang Denk <wd@denx.de>
40607
40608 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
40609 Author: Wolfgang Denk <wd@denx.de>
40610 Date: Thu Jul 31 17:54:03 2008 +0200
40611
40612 Prepare v1.3.4-rc2: update CHANGELOG
40613
40614 Signed-off-by: Wolfgang Denk <wd@denx.de>
40615
40616 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
40617 Author: Mark Jackson <mpfj@mimc.co.uk>
40618 Date: Thu Jul 31 16:09:00 2008 +0100
40619
40620 Add gzipped logo support
40621
40622 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
40623
40624 If this option is set, additionally to standard BMP
40625 images, gzipped BMP images can be displayed via the
40626 splashscreen support or the bmp command.
40627
40628 However, the splashscreen function *only* supports standard BMP images.
40629
40630 This patch adds the documented gzip support.
40631
40632 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
40633
40634 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
40635 Author: Mark Jackson <mpfj@mimc.co.uk>
40636 Date: Thu Jul 31 15:56:48 2008 +0100
40637
40638 Fix Atmel LCD controller endianess for AVR32 processors
40639
40640 The Atmel lcd controller is used on Atmel's AT91 (little endian) and
40641 AVR32 (big endian) platforms.
40642
40643 As such, the controller can handle both big and little endian memory.
40644
40645 This patch fixes the driver for the AVR32 platform.
40646
40647 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
40648
40649 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
40650 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40651 Date: Thu Jul 31 15:56:01 2008 +0200
40652
40653 apollon: fix build out of tree
40654
40655 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40656
40657 commit 2e752be39d3e398d4ab89ffa6634c397df298297
40658 Author: Guennadi Liakhovetski <lg@denx.de>
40659 Date: Thu Jul 31 12:35:04 2008 +0200
40660
40661 Uncompressed images loaded to their start address shall set load_end too
40662
40663 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
40664 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
40665
40666 commit c37207d7f51e19c17f859966f314e27cc1231801
40667 Author: Wolfgang Denk <wd@denx.de>
40668 Date: Wed Jul 16 16:38:59 2008 +0200
40669
40670 Fix printf() format problems with configurable prompts
40671
40672 U-Boot allows for configurable prompt strings using the
40673 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
40674 the assumption was that any such user defined problts would contain
40675 exactly one "%d" format specifier. But some boards did not.
40676
40677 To allow for flexible boot prompts without adding too complex code we
40678 now allow to specify the whole list of printf() arguments in the user
40679 definition. This is powerful, but requires a responsible user who
40680 really understands what he is doing, as he needs to know for exanple
40681 which variables are available in the respective context.
40682
40683 Signed-off-by: Wolfgang Denk <wd@denx.de>
40684
40685 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
40686 Author: Wolfgang Denk <wd@denx.de>
40687 Date: Thu Jul 31 17:02:14 2008 +0200
40688
40689 TQM85xx: fix typo introduce by commit ffbb5cb9
40690
40691 Signed-off-by: Wolfgang Denk <wd@denx.de>
40692
40693 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
40694 Author: Wolfgang Denk <wd@denx.de>
40695 Date: Thu Jul 31 15:27:01 2008 +0200
40696
40697 mvbc_p board: fix most build warnings.
40698
40699 Signed-off-by: Wolfgang Denk <wd@denx.de>
40700
40701 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
40702 Author: Wolfgang Denk <wd@denx.de>
40703 Date: Thu Jul 31 13:57:20 2008 +0200
40704
40705 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
40706
40707 Avoid "integer constant is too large for 'long' type" warnings.
40708 And simplify the code.
40709
40710 Signed-off-by: Wolfgang Denk <wd@denx.de>
40711
40712 commit 9196b44334c330cc13de2464c59181e4db71f549
40713 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
40714 Date: Wed Jul 30 23:21:19 2008 +0400
40715
40716 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
40717
40718 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
40719
40720 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
40721 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
40722 Date: Wed Jul 30 23:20:32 2008 +0400
40723
40724 PPC: Add pci_clk in the global_data for CPM2 processors
40725
40726 This patch adds pci_clk field to the global_data structure for the
40727 processors which have CPM2 module in case the CONFIG_PCI is defined.
40728
40729 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
40730
40731 commit f0ff885ca64655bee6540eb8a25eed90b1152686
40732 Author: Kumar Gala <galak@kernel.crashing.org>
40733 Date: Wed Jul 30 14:13:30 2008 -0500
40734
40735 mpc85xx: Update linker scripts for Freescale boards
40736
40737 * Move to using absolute addressing always. Makes the scripts a bit more
40738 portable and common
40739 * Moved .bss after the end of the image. These allows us to have more
40740 room in the resulting binary image for code and data.
40741 * Removed .text object files that aren't really needed
40742 * Make sure _end is 4-byte aligned as the .bss init code expects this.
40743 (Its possible that the end of .bss isn't 4-byte aligned)
40744
40745 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40746
40747 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
40748 Author: Kumar Gala <galak@kernel.crashing.org>
40749 Date: Wed Jul 30 08:01:15 2008 -0500
40750
40751 Fix compile warnings in dlmalloc
40752
40753 The origional code was using on odd reference to get to the first
40754 real element in av_[]. The first two elements of the array are
40755 not used for actual bins, but for house keeping. If we are more
40756 explicit about how use the first few elements we can get rid of the
40757 warnings:
40758
40759 dlmalloc.c: In function 'malloc_extend_top':
40760 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
40761 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
40762 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
40763 ...
40764
40765 The logic of how this code came to be is:
40766 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
40767
40768 SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
40769 bin_at(0) = &(av_[0])
40770
40771 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
40772
40773 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40774
40775 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
40776 Author: Stefan Roese <sr@denx.de>
40777 Date: Wed Jul 30 10:21:01 2008 +0200
40778
40779 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
40780
40781 Signed-off-by: Stefan Roese <sr@denx.de>
40782
40783 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
40784 Author: Stefan Roese <sr@denx.de>
40785 Date: Wed Jul 30 09:59:51 2008 +0200
40786
40787 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
40788
40789 A recent patch used '#if (CONFIG_CMD_USB)' instead of
40790 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
40791 common/bootm.c compile again.
40792
40793 Signed-off-by: Stefan Roese <sr@denx.de>
40794 Acked-by: Markus Klotzbuecher <mk@denx.de>
40795
40796 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
40797 Author: Kyungmin Park <kmpark@infradead.org>
40798 Date: Tue Jul 22 08:01:43 2008 +0900
40799
40800 Remove unused I2C at apollon board
40801
40802 There are no I2C devices on this board.
40803
40804 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40805
40806 commit 3c95960e526b3b026da20201db64526f46faf14b
40807 Author: Wolfgang Denk <wd@denx.de>
40808 Date: Thu Jul 31 10:12:09 2008 +0200
40809
40810 at91rm9200dk, csb637: fix NAND related build problems
40811
40812 Tried fixing NAND support for the at91rm9200dk board; untested.
40813 Disabled NAND support in the csb637 board config file.
40814
40815 Signed-off-by: Wolfgang Denk <wd@denx.de>
40816
40817 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
40818 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40819 Date: Wed Jul 30 12:39:28 2008 +0200
40820
40821 ppc4xx: ML507: Environment in flash and MTD Support
40822
40823 - Relocate the location of U-Boot in the flash
40824 - Save the environment in one sector of the flash memory
40825 - MTD Support
40826
40827 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40828 Signed-off-by: Stefan Roese <sr@denx.de>
40829
40830 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
40831 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40832 Date: Tue Jul 29 17:16:10 2008 +0200
40833
40834 ppc4xx: ML507: Use of get_ram_size in board ml507
40835
40836 - Change suggested by WD
40837
40838 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40839 Signed-off-by: Stefan Roese <sr@denx.de>
40840
40841 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
40842 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40843 Date: Mon Jul 21 20:30:07 2008 +0200
40844
40845 ppc4xx: ML507: U-Boot in flash and System ACE
40846
40847 This patch allows booting from FLASH the ML507 board by Xilinx.
40848 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
40849
40850 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
40851 Signed-off-by: Stefan Roese <sr@denx.de>
40852
40853 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
40854 Author: Julien May <mailinglist@miromico.ch>
40855 Date: Mon Jun 23 13:57:52 2008 +0200
40856
40857 Add support for the hammerhead (AVR32) board
40858
40859 The Hammerhead platform is built around a AVR32 32-bit microcontroller
40860 from Atmel. It offers versatile peripherals, such as ethernet, usb
40861 device, usb host etc.
40862
40863 The board also incooperates a power supply and is a Power over Ethernet
40864 (PoE) Powered Device (PD).
40865
40866 Additonally, a Cyclone III FPGA from Altera is integrated on the board.
40867 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
40868 DDR2 SDRAM interfaces, which will cover even the most exceptional need
40869 of memory bandwidth. Together with the onboard video decoder the board
40870 is ready for video processing.
40871
40872 For more information see: http:///www.miromico.com/hammerhead
40873
40874 Signed-off-by: Julien May <mailinglist@miromico.ch>
40875 [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
40876 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
40877
40878 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
40879 Author: Kumar Gala <galak@kernel.crashing.org>
40880 Date: Tue Jul 29 12:23:49 2008 -0500
40881
40882 fsl_i2c: Use timebase timer functions instead of get_timer()
40883
40884 The current implementation of get_timer() is only really useful after we
40885 have relocated u-boot to memory. The i2c code is used before that as part
40886 of the SPD DDR setup.
40887
40888 We actually have a bug when using the get_timer() code before relocation
40889 because the .bss hasn't been setup and thus we could be reading/writing
40890 a random location (probably in flash).
40891
40892 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
40893
40894 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
40895 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
40896 Date: Tue Jul 29 14:49:31 2008 +0200
40897
40898 Adder8xx: Fix CFG_MONITOR_LEN
40899
40900 Due to increased space usage, U-Boot can no longer be stored in three sectors.
40901 The current U-Boot use just over three flash sectors (197k), and U-Boot will
40902 become corrupt after saving environment variables. This patch adds another 64k
40903 to CFG_MONITOR_LEN.
40904
40905 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
40906
40907 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
40908 Author: Kyungmin Park <kmpark@infradead.org>
40909 Date: Tue Jul 29 08:47:57 2008 +0900
40910
40911 Add OneNAND IPL related files to gitignore
40912
40913 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
40914
40915 commit 8d87589e8e874df7120a3d9667f051bc33bac250
40916 Author: Rafal Jaworowski <raj@semihalf.com>
40917 Date: Mon Jul 28 20:38:25 2008 +0200
40918
40919 API: Teach the storage layer about SATA and MMC options.
40920
40921 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40922 Acked-by: Rafal Jaworowski <raj@semihalf.com>
40923
40924 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
40925 Author: Rafal Jaworowski <raj@semihalf.com>
40926 Date: Mon Jul 28 20:37:48 2008 +0200
40927
40928 API: Dump contents of sector 0 in the demo application.
40929
40930 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40931 Acked-by: Rafal Jaworowski <raj@semihalf.com>
40932
40933 commit 13ca6305f2eba49c175f6370c35286141059c789
40934 Author: Rafal Jaworowski <raj@semihalf.com>
40935 Date: Mon Jul 28 20:37:10 2008 +0200
40936
40937 API: Correct storage enumeration routine, other minor fixes in API storage area.
40938
40939 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40940 Acked-by: Rafal Jaworowski <raj@semihalf.com>
40941
40942 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
40943 Author: Rafal Jaworowski <raj@semihalf.com>
40944 Date: Mon Jul 28 20:36:19 2008 +0200
40945
40946 API: Fix compilation warnings in api_examples/demo.c.
40947
40948 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
40949
40950 commit c14eefcc48212af2f3314809605698dd8393a90a
40951 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40952 Date: Sun Jul 27 17:09:43 2008 +0200
40953
40954 Fix more printf() format warnings
40955
40956 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40957
40958 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
40959 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40960 Date: Fri Jul 25 15:18:16 2008 +0200
40961
40962 Fix remaining CFG_CMD_ define, ifdef and comments
40963
40964 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
40965
40966 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
40967 Author: Stefano Babic <sbabic@denx.de>
40968 Date: Fri Jul 25 08:57:40 2008 +0200
40969
40970 Add include for config.h in command.h.
40971
40972 Because the cmd_tbl_s structure depends on the configuration file, it
40973 must be assured that config.h is included before the structure is
40974 evaluated by the compiler. If this is not certain, it could happen
40975 that the compiler generates structures of different size, depending
40976 on the fact if the source file includes <config.h> before or after
40977 <command.h>.
40978
40979 The effect is that u-boot crashes when tries to relocate the command
40980 table (for ppc) or try to access to the command table for other
40981 architectures.
40982
40983 The problem can happen on board-depending commands. All general
40984 commands under /common are unaffected, because they include already
40985 config.h before command.h.
40986
40987 Signed-off-by: Stefano Babic <sbabic@denx.de>
40988
40989 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
40990 Author: Scott Wood <scottwood@freescale.com>
40991 Date: Wed Jul 23 13:16:06 2008 -0500
40992
40993 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
40994
40995 This fixes building out-of-tree.
40996
40997 Signed-off-by: Scott Wood <scottwood@freescale.com>
40998
40999 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
41000 Author: Heiko Schocher <hs@denx.de>
41001 Date: Wed Jul 23 07:30:46 2008 +0200
41002
41003 Fix warnings if compiling with IDE support.
41004
41005 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
41006 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
41007
41008 Signed-off-by: Heiko Schocher <hs@denx.de>
41009
41010 commit 7610db17fd4d59c51d825488526d85ede2f06767
41011 Author: Adrian Filipi <adrian.filipi@eurotech.com>
41012 Date: Tue Jul 22 14:28:11 2008 -0400
41013
41014 Removed support for the adsvix board.
41015
41016 Support for the adsvix was originally provided by Applied Data
41017 Systems (ADS), inc., now EuroTech, Inc.
41018 The board never shipped aside from some sample boards.
41019
41020 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
41021
41022 commit f96b44cef897bd372beb86dde1b33637c119d84d
41023 Author: Remy Bohmer <linux@bohmer.net>
41024 Date: Tue Jul 22 16:22:11 2008 +0200
41025
41026 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
41027
41028 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
41029 never set, because relocation to RAM is actually never done by U-boot
41030 itself. However, several pieces of code check if this flag is set at
41031 some time.
41032
41033 So, to make sure this flag is set on boards skipping relocation, this
41034 is added to the initialisation of U-boot at a moment where it is safe
41035 to do so.
41036
41037 Signed-off-by: Remy Bohmer <linux@bohmer.net>
41038
41039 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
41040 Author: Timur Tabi <timur@freescale.com>
41041 Date: Mon Jul 21 14:26:23 2008 -0500
41042
41043 fsl-i2c: fix writes to data segment before relocation
41044
41045 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
41046 relocation. Commit d8c82db4 added the ability for i2c_init() to program the
41047 I2C bus speed and save the value in i2c_bus_speed[], which is a global
41048 variable. It is an error to write to the data segment before relocation,
41049 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
41050
41051 Signed-off-by: Timur Tabi <timur@freescale.com>
41052
41053 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
41054 Author: Wolfgang Ocker <weo@reccoware.de>
41055 Date: Mon Jul 28 16:56:51 2008 +0200
41056
41057 mips: Fix baudrate divisor computation on alchemy cpus
41058
41059 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
41060 on alchemy cpus.
41061
41062 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
41063 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
41064
41065 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
41066 Author: Ben Warren <biggerbadderben@gmail.com>
41067 Date: Sat Jul 5 00:08:48 2008 -0700
41068
41069 Moved initialization of AVR32 Ethernet controllers to board_eth_init()
41070
41071 Renamed initialization functions for atngw100 and atstk1000.
41072 Removed initializations for these boards from net/eth.c
41073
41074 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
41075 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41076
41077 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
41078 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41079 Date: Wed Jul 23 10:55:46 2008 +0200
41080
41081 spi flash: Fix printf() format warnings
41082
41083 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41084
41085 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
41086 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41087 Date: Wed Jul 23 10:55:31 2008 +0200
41088
41089 atmel_mci: Fix printf() format warnings
41090
41091 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41092
41093 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
41094 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41095 Date: Wed Jul 23 10:55:15 2008 +0200
41096
41097 avr32: Fix printf() format warnings
41098
41099 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41100
41101 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
41102 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41103 Date: Wed Jul 23 10:52:19 2008 +0200
41104
41105 avr32: asm/io.h needs asm/types.h
41106
41107 map_physmem() takes a phys_addr_t as parameter. This type is defined in
41108 asm/types.h, so we need to include that file.
41109
41110 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41111
41112 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
41113 Author: Michal Simek <monstr@monstr.eu>
41114 Date: Thu Jul 17 12:25:46 2008 +0200
41115
41116 microblaze: Fix printf() format issues
41117
41118 Signed-off-by: Michal Simek <monstr@monstr.eu>
41119
41120 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
41121 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
41122 Date: Thu Jul 17 07:27:51 2008 +0530
41123
41124 Remove unused code from lib_arm/bootm.c
41125
41126 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
41127
41128 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
41129 Author: Detlev Zundel <dzu@denx.de>
41130 Date: Wed Jul 16 18:56:45 2008 +0200
41131
41132 tqm85xx: Demystify 'DK: !!!' comment
41133
41134 Signed-off-by: Detlev Zundel <dzu@denx.de>
41135
41136 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
41137 Author: Detlev Zundel <dzu@denx.de>
41138 Date: Wed Jul 16 18:56:44 2008 +0200
41139
41140 83xx/85xx/86xx: Add LTEDR local bus definitions
41141
41142 Signed-off-by: Detlev Zundel <dzu@denx.de>
41143
41144 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
41145 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41146 Date: Wed Jul 16 16:22:32 2008 +0200
41147
41148 serial_xuartlite.c: fix compiler warnings
41149
41150 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41151 Acked-by: Grant Likely <grant.likely@secretlab.ca>
41152
41153 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
41154 Author: Stefan Roese <sr@denx.de>
41155 Date: Fri Jul 18 11:03:35 2008 +0200
41156
41157 POST: Add disable interrupts in some of the missing CPU POST tests
41158
41159 Some CPU POST tests did not disable the interrupts while running. This
41160 seems to be necessary to protect this self modifying code.
41161
41162 Signed-off-by: Stefan Roese <sr@denx.de>
41163
41164 commit 97a3bf268d096e0e97e54048448c35114edcf557
41165 Author: Stefan Roese <sr@denx.de>
41166 Date: Fri Jul 18 10:43:24 2008 +0200
41167
41168 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
41169
41170 This is needed for boards that define CFG_64BIT_STRTOUL but don't define
41171 CFG_64BIT_LBA.
41172
41173 Signed-off-by: Stefan Roese <sr@denx.de>
41174
41175 commit 0043ac55024963295fc79b39af85b6dc3b261e17
41176 Author: Niklaus Giger <niklaus.giger@netstal.com>
41177 Date: Fri Jul 18 11:22:23 2008 +0200
41178
41179 POST PPC4xx/spr IVPR only if PPC440
41180
41181 The SPR IVPR register is only present (as far as I know) for
41182 processors with a PPC440 core.
41183
41184 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
41185 Acked-by: Stefan Roese <sr@denx.de>
41186
41187 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
41188 Author: Stefan Roese <sr@denx.de>
41189 Date: Fri Jul 18 10:42:29 2008 +0200
41190
41191 ppc4xx: Enable 64bit printf format on 440/460 platforms
41192
41193 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
41194 440/460 platforms. This may be needed since those platforms support
41195 36bit physical address space.
41196
41197 Signed-off-by: Stefan Roese <sr@denx.de>
41198
41199 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
41200 Author: Stefan Roese <sr@denx.de>
41201 Date: Fri Jul 18 15:57:23 2008 +0200
41202
41203 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
41204
41205 This patch fixes a problem with incorrect MODTx (On Die Termination)
41206 setup for a configuration with multiple DIMM's and multiple ranks.
41207 Without this change Katmai was unable to boot Linux with DDR2 frequency
41208 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
41209 with DDR2 frequency = 640MHz and mem=4GB.
41210
41211 Signed-off-by: Stefan Roese <sr@denx.de>
41212
41213 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
41214 Author: Stefan Roese <sr@denx.de>
41215 Date: Fri Jul 18 12:24:41 2008 +0200
41216
41217 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
41218
41219 Signed-off-by: Stefan Roese <sr@denx.de>
41220
41221 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
41222 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41223 Date: Thu Jul 17 12:47:09 2008 +0200
41224
41225 ppc4xx: ML507 Board Support
41226
41227 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
41228 among others:
41229 -Virtex 5 FX FPGA (With a ppc440x5 in it)
41230 -256MB of SDRAM2
41231 -32MB of Flash
41232 -I2C Eeprom
41233 -System ACE chip
41234 -Serial ATA connectors
41235 -RS232 Level Conversors
41236 -Ethernet Transceiver
41237
41238 This patch gives support to a standard design produced by EDK for this
41239 board: ppc440, uartlite, xilinx_int and flash
41240
41241 - Includes Changes propossed by Stefan Roese and Michal Simek
41242
41243 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41244 Acked-by: Stefan Roese <sr@denx.de>
41245
41246 commit d865fd09809a3a18669f35f970781820af40e4de
41247 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41248 Date: Thu Jul 17 11:44:12 2008 +0200
41249
41250 ppc4xx: CPU PPC440x5 on Virtex5 FX
41251
41252 -This patchs gives support for the embbedded ppc440
41253 on the Virtex5 FPGAs
41254 -interrupts.c divided in uic.c and interrupts.c
41255 -xilinx_irq.c for xilinx interrupt controller
41256 -Include modifications propossed by Stefan Roese
41257
41258 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
41259 Acked-by: Stefan Roese <sr@denx.de>
41260
41261 commit 340ccb260f21516be360745d5c5e3bd0657698df
41262 Author: Sebastian Siewior <bigeasy@linutronix.de>
41263 Date: Wed Jul 16 20:04:49 2008 +0200
41264
41265 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
41266
41267 This got broken by commits 93c56f212c
41268 [cfi_flash: support of long cmd in U-boot.]
41269
41270 That command needs to be in little endian format on BE machines
41271 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
41272 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
41273 the cmdbuf in case portwidth = chipwidth = 8bit.
41274
41275 Cc: Alexey Korolev <akorolev@infradead.org>
41276 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
41277 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
41278
41279 commit 11188d55bc16dd907451c00282e00a038f73dd62
41280 Author: Stefan Roese <sr@denx.de>
41281 Date: Thu Jul 17 10:40:51 2008 +0200
41282
41283 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
41284
41285 Signed-off-by: Stefan Roese <sr@denx.de>
41286
41287 commit 021f6df6e96af5b387810cf96d24848da1faa55c
41288 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41289 Date: Thu Jul 10 17:20:51 2008 +0400
41290
41291 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
41292
41293 The thinko was quite silly indeed, I messed with !ptr. Normally this
41294 would trigger some fault, but in U-Boot NULL pointer is equal to phys
41295 0, so the code was working still, just didn't actually test mpc8315erdb
41296 environment variable value. Heh.
41297
41298 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41299 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41300
41301 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
41302 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41303 Date: Tue Jul 8 21:00:04 2008 +0400
41304
41305 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
41306
41307 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
41308 support, or without TSEC1 but with USB ULPI PHY support in addition.
41309 With this patch user can specify desired USB PHY.
41310
41311 Also, it seems that we can't distinguish the two boards in software, so
41312 user have to set `mpc8315erdb' environment variable to either 'tsec1'
41313 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
41314 Linux will not probe for TSEC1.
41315
41316 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41317 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41318
41319 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
41320 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
41321 Date: Tue Jul 8 20:59:43 2008 +0400
41322
41323 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
41324
41325 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
41326 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
41327 (connected to the four-ports hub, usb host only).
41328
41329 This patch implements support for passing Dual-Role USB controller's
41330 device tree property phy_type through the usb_phy_type environment
41331 variable.
41332
41333 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
41334 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
41335 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41336
41337 commit 699f05125509249072a0b865c8d35520d97cd501
41338 Author: Wolfgang Denk <wd@denx.de>
41339 Date: Tue Jul 15 22:22:44 2008 +0200
41340
41341 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
41342
41343 Signed-off-by: Wolfgang Denk <wd@denx.de>
41344
41345 commit bcab74baa6b1b1c969038ab6f64a186239180405
41346 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41347 Date: Tue Jul 15 11:23:02 2008 -0400
41348
41349 Round the serial port clock divisor value returned by calc_divisor()
41350
41351 Round the serial port clock divisor value returned by
41352 calc_divisor()
41353
41354 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41355 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
41356
41357 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
41358 Author: Robin Getz <rgetz@blackfin.uclinux.org>
41359 Date: Tue Jul 15 21:44:46 2008 +0200
41360
41361 Fix DHCP protocol so U-Boot does not respond too early
41362 on the network with it's offered IP number; it should not reply until
41363 after it has received a DHCP ACK message. Also ensures that U-Boot
41364 does it's DHCPREQUEST as broadcast (per RFC 2131).
41365
41366 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
41367 Acked-by: Ben Warren <biggerbadderben@gmail.com>
41368 Signed-off-by: Wolfgang Denk <wd@denx.de>
41369
41370 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
41371 Author: Sebastian Siewior <bigeasy@linutronix.de>
41372 Date: Tue Jul 15 13:35:23 2008 +0200
41373
41374 cfi_flash: make the command u32 only
41375
41376 This got changed by commit 93c56f212c
41377 [cfi_flash: support of long cmd in U-boot.]
41378
41379 Long is the wrong type because it will behave differently on 64bit
41380 machines in a way that is probably not expected. u32 should be
41381 enough.
41382
41383 Cc: Alexey Korolev <akorolev@infradead.org>
41384 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
41385 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
41386
41387 commit 31cfe57491b183acae575d486729e158f016c27b
41388 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41389 Date: Mon Jul 14 23:48:41 2008 +0200
41390
41391 tools/gitignore: update to all generated files
41392
41393 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41394
41395 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
41396 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
41397 Date: Wed Jul 9 18:30:44 2008 +0200
41398
41399 mpc5xxx: Add MVBC_P board support
41400
41401 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
41402 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
41403
41404 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
41405 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
41406
41407 commit e2d31fb3450653115452144363d5bde4e5e3e693
41408 Author: Timur Tabi <timur@freescale.com>
41409 Date: Thu Jun 19 17:56:11 2008 -0500
41410
41411 Update Freescale sys_eeprom.c to handle CCID formats
41412
41413 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The
41414 NXID format replaces the older CCID format, but it's important to support both
41415 since most boards out there still use the CCID format. This change is in
41416 preparation for using one file to handle both formats. This will also unify
41417 EEPROM support for all Freescale 85xx and 86xx boards.
41418
41419 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
41420 instead of ID_EEPROM_ADDR.
41421
41422 Signed-off-by: Timur Tabi <timur@freescale.com>
41423
41424 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
41425 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
41426 Date: Fri Jul 11 17:22:43 2008 +0900
41427
41428 pci: sh: Add pci_skip_dev and pci_print_dev function
41429
41430 Add function of new PCI, pci_skip_dev and pci_print_dev.
41431
41432 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
41433 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
41434
41435 commit 1107014e835ec9d46c0333f4211d104f77442db0
41436 Author: Andy Fleming <afleming@freescale.com>
41437 Date: Mon Jul 14 20:29:07 2008 -0500
41438
41439 Clean up INIT_RAM options
41440
41441 The L2_INIT_RAM option was unused, and recent changes to the TLB code
41442 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce
41443 the amount of mapped space attached to nothing, we change things so the TLBs
41444 get cleared.
41445
41446 Signed-off-by: Andy Fleming <afleming@freescale.com>
41447
41448 commit 4524561820a9327e89107854b3a7187800ccf719
41449 Author: Andy Fleming <afleming@freescale.com>
41450 Date: Mon Jul 14 20:26:57 2008 -0500
41451
41452 Remove fake flash bank from 8544 DS
41453
41454 The fake flash bank was generating errors for anyone who didn't have a
41455 PromJET hooked up to the board. As that constitutes the vast majority of
41456 users, we remove it.
41457
41458 Signed-off-by: Andy Fleming <afleming@freescale.com>
41459
41460 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
41461 Author: Kumar Gala <galak@kernel.crashing.org>
41462 Date: Mon Jul 14 14:07:03 2008 -0500
41463
41464 MPC8544DS: Add ATI Video card support
41465
41466 Add support for using a PCIe ATI Video card on PCIe2.
41467
41468 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41469
41470 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
41471 Author: Kumar Gala <galak@kernel.crashing.org>
41472 Date: Mon Jul 14 14:07:02 2008 -0500
41473
41474 85xx: Add some L1/L2 SPR register definitions
41475
41476 Add new L1/L2 SPRs related to e500mc cache config and control.
41477
41478 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41479
41480 commit e5852787f0c3c442a276262f13d91ca450605ac0
41481 Author: Kumar Gala <galak@kernel.crashing.org>
41482 Date: Mon Jul 14 14:07:01 2008 -0500
41483
41484 MPC8544DS: Report board id, board version and fpga version.
41485
41486 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41487
41488 commit 73f15a060f67a2462551c334215bd20fac6b81d1
41489 Author: Kumar Gala <galak@kernel.crashing.org>
41490 Date: Mon Jul 14 14:07:00 2008 -0500
41491
41492 85xx: Cleanup L2 cache size detection
41493
41494 The L2 size detection code was a bit confusing and we kept having to add
41495 code to it to handle new processors. Change the sense of detection so we
41496 look for the older processors that aren't changing.
41497
41498 Also added support for 1M cache size on 8572.
41499
41500 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41501
41502 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
41503 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41504 Date: Fri Jul 11 15:33:08 2008 -0400
41505
41506 sbc8560: enable CONFIG_OF_LIBFDT by default
41507
41508 Make the default build for the sbc8560 board be powerpc
41509 capable with libfdt support.
41510
41511 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41512
41513 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
41514 Author: Andy Fleming <afleming@freescale.com>
41515 Date: Mon Jul 14 20:04:40 2008 -0500
41516
41517 Fix indentation for default boot environment variables
41518
41519 This was proposed by Paul Gortmaker in response to Wolfgang's comments on
41520 similar #defines in sbc8560.h.
41521
41522 Signed-off-by: Andy Fleming <afleming@freescale.com>
41523
41524 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
41525 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41526 Date: Fri Jul 11 15:33:07 2008 -0400
41527
41528 sbc8560: add default fdt values
41529
41530 Add in the default fdt settings and the typical EXTRA_ENV
41531 settings as borrowed from the mpc8560ads. Fix a couple
41532 of stale references to the mpc8560ads dating back to the
41533 original clone/fork.
41534
41535 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41536 Signed-off-by: Andy Fleming <afleming@freescale.com>
41537
41538 commit d04e76edf92f7f89696989e8702b97e020455af3
41539 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41540 Date: Fri Jul 11 15:33:06 2008 -0400
41541
41542 sbc8560: add in ft_board_setup()
41543
41544 Add in for the sbc8560, the ft_board_setup() routine, based on what is
41545 in use for the Freescale MPC8560ADS board.
41546
41547 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41548
41549 commit c158bcaca3b31cbe38c4143812e6170e38a57393
41550 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41551 Date: Fri Jul 11 15:33:05 2008 -0400
41552
41553 sbc8560: define eth0 and eth1 instead of eth1 and eth2
41554
41555 The existing config doesn't define CONFIG_HAS_ETH0, and so the
41556 fdt support doesn't update the zeros in the dtb local-mac with
41557 real data from the u-boot env. Since the existing config is
41558 tailored to just two interfaces, get rid of the ETH2 definitions
41559 at the same time.
41560
41561 Also don't include any end user specific data into the environment
41562 by default -- things like MAC address, network parameters etc. need
41563 to come from the end user.
41564
41565 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41566 Signed-off-by: Andy Fleming <afleming@freescale.com>
41567
41568 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
41569 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41570 Date: Fri Jul 11 15:33:04 2008 -0400
41571
41572 sbc8560: properly set cs0_bnds for 512MB
41573
41574 The sbc8560 board ships with 512MB of memory installed,
41575 but the current cs0_bnds is hard coded for 256MB. Set the
41576 value based on CFG_SDRAM_SIZE.
41577
41578 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41579
41580 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
41581 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41582 Date: Fri Jul 11 15:33:03 2008 -0400
41583
41584 sbc8560: proper definitions for TSEC.
41585
41586 The definitions for the TSEC have become out of date. There is no
41587 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
41588 Update to match those of other boards, like the MPC8560ADS.
41589
41590 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41591 Acked-by: Ben Warren <biggerbadderben@gmail.com>
41592
41593 commit 71074abbe0c76429577aff58aeff0a24ad210b23
41594 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
41595 Date: Wed Jul 9 13:23:05 2008 -0400
41596
41597 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
41598
41599 Some boards that have external 16550 UARTs don't have a direct
41600 tie between bi_busfreq and the clock used for the UARTs. Boards
41601 that do have such a tie should set CFG_NS16550_CLK to be
41602 get_bus_freq(0) -- which most of them do already.
41603
41604 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
41605 Acked-by: Kim Phillips <kim.phillips@freescale.com>
41606
41607 commit 24ef76f320fbadf074105229826514db140f939f
41608 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
41609 Date: Wed Jul 2 07:03:53 2008 -0700
41610
41611 Change the temp map to ROM to align addresses to page size.
41612
41613 With a page size of BOOKE_PAGESZ_16M, both the real and effective
41614 addresses must be multiples of 16MB. The hardware silently truncates
41615 them so the code happens to work. This patch clarifies the situation
41616 by establishing addresses that the hardware doesn't need to truncate.
41617
41618 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
41619 Signed-off-by: Andy Fleming <afleming@freescale.com>
41620
41621 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
41622 Author: Kim Phillips <kim.phillips@freescale.com>
41623 Date: Tue Jun 17 17:45:22 2008 -0500
41624
41625 mpc85xx: use IS_E_PROCESSOR macro
41626
41627 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41628
41629 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
41630 Author: Kim Phillips <kim.phillips@freescale.com>
41631 Date: Mon Jun 16 15:55:53 2008 -0500
41632
41633 fdt: add crypto node handling for MPC8{3, 5}xxE processors
41634
41635 Delete the crypto node if not on an E-processor. If on 8360 or 834x family,
41636 check rev and up-rev crypto node (to SEC rev. 2.4 property values)
41637 if on an 'EA' processor, e.g. MPC8349EA.
41638
41639 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
41640
41641 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
41642 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41643 Date: Fri Jul 11 15:10:11 2008 -0400
41644
41645 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
41646
41647 ARM DaVinci: Remove extern phy_t declaration by moving
41648 code to proper place.
41649
41650 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41651
41652 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
41653 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41654 Date: Fri Jul 11 15:10:10 2008 -0400
41655
41656 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
41657
41658 ARM DaVinci: Remove duplicate definitions of MACH_TYPE
41659 and prototype of i2c_init().
41660
41661 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41662
41663 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
41664 Author: Kumar Gala <galak@kernel.crashing.org>
41665 Date: Mon Jul 14 14:03:02 2008 -0500
41666
41667 Fix some more printf() format problems.
41668
41669 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
41670
41671 commit 45b16d22c64674ccd8c4637456a987463609141c
41672 Author: Wolfgang Denk <wd@denx.de>
41673 Date: Mon Jul 14 22:38:42 2008 +0200
41674
41675 Fix coding style; make code better parsable by external tools
41676
41677 Signed-off-by: Wolfgang Denk <wd@denx.de>
41678
41679 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
41680 Author: Wolfgang Denk <wd@denx.de>
41681 Date: Mon Jul 14 21:19:08 2008 +0200
41682
41683 cpu/i386/serial.c: Fix syntax errors
41684
41685 Signed-off-by: Wolfgang Denk <wd@denx.de>
41686
41687 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
41688 Author: Wolfgang Denk <wd@denx.de>
41689 Date: Mon Jul 14 20:41:35 2008 +0200
41690
41691 elppc board: Coding style cleanup.
41692
41693 Signed-off-by: Wolfgang Denk <wd@denx.de>
41694
41695 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
41696 Author: Wolfgang Denk <wd@denx.de>
41697 Date: Mon Jul 14 20:40:22 2008 +0200
41698
41699 elppc board: fix syntax error.
41700
41701 Signed-off-by: Wolfgang Denk <wd@denx.de>
41702
41703 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
41704 Author: Wolfgang Denk <wd@denx.de>
41705 Date: Mon Jul 14 20:38:26 2008 +0200
41706
41707 EB+MCF-EV123 board: fix coding style (alingment)
41708
41709 Signed-off-by: Wolfgang Denk <wd@denx.de>
41710
41711 commit 6841785a0bb0f38175456a923edd634fb7dd6947
41712 Author: Wolfgang Denk <wd@denx.de>
41713 Date: Mon Jul 14 20:36:44 2008 +0200
41714
41715 EB+MCF-EV123 board: fix syntx error
41716
41717 Signed-off-by: Wolfgang Denk <wd@denx.de>
41718
41719 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
41720 Author: Andy Fleming <afleming@freescale.com>
41721 Date: Mon Jul 7 18:02:08 2008 -0500
41722
41723 Remove LBC_CACHE_BASE from 8544 DS
41724
41725 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping
41726 space for some anyway, we were allowing speculative loads into unmapped space,
41727 which would cause an exception (annoying, even if ultimately harmless).
41728 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
41729 problem.
41730
41731 Signed-off-by: Andy Fleming <afleming@freescale.com>
41732
41733 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
41734 Author: Wolfgang Denk <wd@denx.de>
41735 Date: Mon Jul 14 15:19:07 2008 +0200
41736
41737 Code cleanup: fix old style assignment ambiguities like "=-" etc.
41738
41739 Signed-off-by: Wolfgang Denk <wd@denx.de>
41740
41741 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
41742 Author: Wolfgang Denk <wd@denx.de>
41743 Date: Mon Jul 14 15:10:53 2008 +0200
41744
41745 AmigaOneG3SE: remove dead and incomplete files
41746
41747 Signed-off-by: Wolfgang Denk <wd@denx.de>
41748
41749 commit b64f190b7a34224df09b559ca111eb1b733f00ad
41750 Author: Wolfgang Denk <wd@denx.de>
41751 Date: Mon Jul 14 15:06:35 2008 +0200
41752
41753 Fix printf() format issues with sizeof_t types by using %zu
41754
41755 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41756 Signed-off-by: Wolfgang Denk <wd@denx.de>
41757
41758 commit f354b73e16a86f9e9085471a830605f74f84ea5d
41759 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41760 Date: Mon Jul 14 14:11:45 2008 +0200
41761
41762 vsprintf: add z and t options
41763
41764 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41765
41766 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
41767 Author: Wolfgang Denk <wd@denx.de>
41768 Date: Sun Jul 13 23:07:35 2008 +0200
41769
41770 Fix some more printf() format issues.
41771
41772 Signed-off-by: Wolfgang Denk <wd@denx.de>
41773
41774 commit d5996dd555edf52721b7691a4c59de016251ed39
41775 Author: Wolfgang Denk <wd@denx.de>
41776 Date: Sun Jul 13 19:51:00 2008 +0200
41777
41778 Fix some more printf() format problems.
41779
41780 Signed-off-by: Wolfgang Denk <wd@denx.de>
41781
41782 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
41783 Author: Wolfgang Denk <wd@denx.de>
41784 Date: Sun Jul 13 19:48:26 2008 +0200
41785
41786 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
41787
41788 Signed-off-by: Wolfgang Denk <wd@denx.de>
41789
41790 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
41791 Author: Anatolij Gustschin <agust@denx.de>
41792 Date: Sat Jul 12 17:31:36 2008 +0200
41793
41794 Fix bug in Lime video driver
41795
41796 We need to wait while drawing engine clears frame
41797 buffer before any further software accesses to frame
41798 buffer will be initiated. Otherwise software drawn
41799 parts could be partially destroyed by the drawing
41800 engine or even GDC chip freeze could occur (as
41801 observed on socrates board).
41802
41803 Signed-off-by: Anatolij Gustschin <agust@denx.de>
41804
41805 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
41806 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41807 Date: Sat Jul 12 14:36:34 2008 +0200
41808
41809 Fix some more printf() format issues.
41810
41811 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
41812
41813 commit 18c8a28aad49803780bd8d52432ded528e37e701
41814 Author: Michal Simek <monstr@monstr.eu>
41815 Date: Fri Jul 11 15:11:57 2008 +0200
41816
41817 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
41818
41819 Signed-off-by: Michal Simek <monstr@monstr.eu>
41820 Acked-by: Stefan Roese <sr@denx.de>
41821
41822 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
41823 Author: Michal Simek <monstr@monstr.eu>
41824 Date: Fri Jul 11 11:50:53 2008 +0200
41825
41826 hwmon: Cleaning hwmon devices
41827
41828 Clean Makefile
41829 Move device specific values to driver for better reading
41830
41831 Signed-off-by: Michal Simek <monstr@monstr.eu>
41832 Acked-by: Stefan Roese <sr@denx.de>
41833
41834 commit c78fce699c7ff467ecd841da6a79f065180bf578
41835 Author: Michal Simek <monstr@monstr.eu>
41836 Date: Fri Jul 11 10:43:13 2008 +0200
41837
41838 FIS: repare incorrect return value with ramdisk handling
41839
41840 Microblaze and PowerPC use boot_get_ramdisk for loading
41841 ramdisk to memory with checking return value.
41842 Return 0 means success. Return 1 means failed.
41843 Here is correspond part of code from bootm.c which check
41844 return code.
41845
41846 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
41847 &rd_data_start, &rd_data_end);
41848 if (ret)
41849 goto error;
41850
41851 Signed-off-by: Michal Simek <monstr@monstr.eu>
41852
41853 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
41854 Author: Michal Simek <monstr@monstr.eu>
41855 Date: Fri Jul 11 10:10:32 2008 +0200
41856
41857 microblaze: Remove useless ancient headers
41858
41859 Signed-off-by: Michal Simek <monstr@monstr.eu>
41860
41861 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
41862 Author: Michal Simek <monstr@monstr.eu>
41863 Date: Fri Jul 11 10:10:31 2008 +0200
41864
41865 microblaze: Clean uartlite driver
41866
41867 Redesign uartlite driver to in_be32 and out_be32 macros
41868 Fix missing header in io.h
41869
41870 Signed-off-by: Michal Simek <monstr@monstr.eu>
41871 Acked-by: Grant Likely <grant.likely@secretlab.ca>
41872
41873 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
41874 Author: Marcel Ziswiler <marcel@ziswiler.com>
41875 Date: Fri Jul 11 02:39:14 2008 +0200
41876
41877 Enable passing of ATAGs required by latest Linux kernel.
41878
41879 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
41880 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41881 Date: Fri Jul 11 10:24:15 2008 -0400
41882
41883 Fix integer overflow warning in calc_divisor()
41884
41885 which happened when rounding the serial port clock divisor
41886
41887 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41888
41889 commit 6b760189d77f001684e3160b355c185ca3804961
41890 Author: Marcel Ziswiler <marcel@ziswiler.com>
41891 Date: Fri Jul 11 01:09:59 2008 +0200
41892
41893 Fix build time warnings in function mmc_decode_csd()
41894
41895 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
41896
41897 commit c15947d6ce0d59925c97fdfac692476af6e262d0
41898 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41899 Date: Thu Jul 10 10:46:33 2008 -0400
41900
41901 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
41902
41903 caused by missing dcache status/enable/disable functions.
41904
41905 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
41906
41907 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
41908 Author: Stefan Roese <sr@denx.de>
41909 Date: Thu Jul 10 13:53:31 2008 +0200
41910
41911 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
41912
41913 This patch removes some ft_board_setup() functions from some 4xx boards.
41914 This can be done since we now have a default weak implementation for this
41915 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
41916 implementation like canyonlands need their own version.
41917
41918 Signed-off-by: Stefan Roese <sr@denx.de>
41919
41920 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
41921 Author: Wolfgang Denk <wd@denx.de>
41922 Date: Sun Jul 13 14:58:16 2008 +0200
41923
41924 Add last known maintainer for orphaned boards; reformat.
41925
41926 Signed-off-by: Wolfgang Denk <wd@denx.de>
41927
41928 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
41929 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41930 Date: Thu Jul 10 13:16:04 2008 +0200
41931
41932 Remove kharris@nexus-tech.net from MAINTAINERS
41933
41934 Mail to kharris@nexus-tech.net bounces because the user doesn't exist
41935 anymore. You can't be a maintainer without a valid e-mail address, so
41936 move all boards that used to be maintained by Kyle Harris to the
41937 "orphaned" list.
41938
41939 Currently, only PowerPC has a list of orphaned boards, so this patch
41940 creates one for ARM as well.
41941
41942 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
41943
41944 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
41945 Author: Anatolij Gustschin <agust@denx.de>
41946 Date: Thu Jul 10 01:15:10 2008 +0200
41947
41948 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
41949
41950 On the at91sam9260ep development board there is an EEPROM
41951 connected to the TWI interface (PA23, PA24 Peripheral A
41952 multiplexing), so we cannot use these pins as ETX2, ETX3.
41953 This patch configures PA10, PA11 pins for ETX2, ETX3
41954 instead of PA23, PA24 pins.
41955
41956 Signed-off-by: Anatolij Gustschin <agust@denx.de>
41957 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
41958
41959 commit f889265753ddf4465d9d580827bb9289bfac55d6
41960 Author: Kenneth Johansson <kenneth@southpole.se>
41961 Date: Sat Jul 12 13:18:34 2008 -0600
41962
41963 fix DIU for small screens
41964
41965 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
41966 so it was not possible to set a slow pixel clock and thus prevented
41967 display on small screens.
41968
41969 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
41970 Acked-by: John Rigby <jrigby@freescale.com>
41971
41972 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
41973 Author: John Rigby <jrigby@freescale.com>
41974 Date: Fri Jul 11 14:44:09 2008 -0600
41975
41976 ADS5121 cleanup compile warnings
41977
41978 board/ads5121/iopin.c
41979 Replace bit fields in struct iopin_t with a single
41980 field and intialize it via plain old macros.
41981 This fixes the type pun warnings and makes the code
41982 more readable.
41983
41984 board/ads5121/ads5121.c
41985 Add include iopin.h to ads5121.c for the iopin_initialize
41986 prototype.
41987
41988 Add an extern void ads5121_diu_init(void)
41989
41990 Signed-off-by: John Rigby <jrigby@freescale.com>
41991
41992 commit bde63587622c4b830a27d1ddf7265843de9e994f
41993 Author: Wolfgang Denk <wd@denx.de>
41994 Date: Fri Jul 11 22:56:11 2008 +0200
41995
41996 Fix some more printf() format issues.
41997
41998 Signed-off-by: Wolfgang Denk <wd@denx.de>
41999
42000 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
42001 Author: Wolfgang Denk <wd@denx.de>
42002 Date: Fri Jul 11 22:55:31 2008 +0200
42003
42004 Fixed some out-of-tree build issues
42005
42006 Signed-off-by: Wolfgang Denk <wd@denx.de>
42007
42008 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
42009 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42010 Date: Wed Jul 9 16:20:23 2008 -0500
42011
42012 ColdFire: Fix FB CS not setup properly for Mcf5282
42013
42014 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
42015 CFG_CSn_RO is defined as 0, the chipselect will not
42016 be assigned.
42017
42018 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42019
42020 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
42021 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42022 Date: Wed Jul 9 15:47:27 2008 -0500
42023
42024 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
42025
42026 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
42027 clock module in cpu/<cf arch>/cpu_init.c
42028
42029 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42030
42031 commit f94945b517f10e01927101679c62361e03d4e837
42032 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42033 Date: Wed Jul 9 15:25:01 2008 -0500
42034
42035 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
42036
42037 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42038
42039 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
42040 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42041 Date: Wed Jul 9 15:21:44 2008 -0500
42042
42043 Fix compile error caused by missing timer function
42044
42045 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
42046
42047 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42048
42049 commit c37ea031175b807c54e6bad9b270e9bede6c0078
42050 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42051 Date: Wed Jul 9 15:14:25 2008 -0500
42052
42053 Fix compile error caused by incorrect function return type
42054
42055 Rename int mii_init(void) to void mii_init(void)
42056
42057 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42058
42059 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
42060 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42061 Date: Wed Jun 18 19:27:23 2008 -0500
42062
42063 ColdFire: Fix power up issue for MCF5235
42064
42065 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42066
42067 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
42068 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42069 Date: Wed Jun 18 19:19:07 2008 -0500
42070
42071 ColdFire: Fix compiling error for MCF5275
42072
42073 The compiling error was caused by missing a closed parentheses
42074 in speed.c
42075
42076 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42077
42078 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
42079 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42080 Date: Wed Jun 18 19:14:01 2008 -0500
42081
42082 ColdFire: Fix timer issue for MCF5272
42083
42084 The timer was assigned to wrong timer memory mapped which
42085 caused udelay() and timer() not working properly.
42086
42087 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42088
42089 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
42090 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42091 Date: Wed Jun 18 19:12:13 2008 -0500
42092
42093 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
42094
42095 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
42096
42097 commit 8371dc2066136be21e10b7b9293e469297d77298
42098 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42099 Date: Wed Jun 18 19:05:23 2008 -0500
42100
42101 ColdFire: Add -got=single param for new linux v4e toolchains
42102
42103 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
42104
42105 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
42106 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42107 Date: Wed Jun 18 13:21:19 2008 -0500
42108
42109 ColdFire: Fix code flash configuration for M547x/M548x boards
42110
42111 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
42112
42113 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
42114 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42115 Date: Tue Jun 24 12:12:16 2008 -0500
42116
42117 ColdFire: Fix warning messages by passing correct data type in board.c
42118
42119 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42120
42121 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
42122 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42123 Date: Thu May 29 12:21:54 2008 -0500
42124
42125 ColdFire: Fix UART baudrate formula
42126
42127 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
42128 can generate the wrong divisor due to integer division truncation.
42129 Round the calculated divisor value by adding 1/2 the baudrate
42130 before dividing by the baudrate.
42131
42132 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
42133 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
42134
42135 commit b578fb471444cbd7db1285701ba51343baaf73fb
42136 Author: Stefan Roese <sr@denx.de>
42137 Date: Thu Jul 10 11:38:26 2008 +0200
42138
42139 ppc4xx: Fix include sequence in 4xx_pcie.c
42140
42141 This patch now moves common.h to the top of the inlcude list. This
42142 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
42143 the phys_size_t/phys_addr_t are defined to the correct size in this
42144 driver.
42145
42146 Signed-off-by: Stefan Roese <sr@denx.de>
42147
42148 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
42149 Author: Stefan Roese <sr@denx.de>
42150 Date: Fri Jul 11 13:10:56 2008 +0200
42151
42152 ppc4xx: Fix compile warning in 44x_spd_ddr2.c
42153
42154 Signed-off-by: Stefan Roese <sr@denx.de>
42155
42156 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
42157 Author: Stefan Roese <sr@denx.de>
42158 Date: Fri Jul 11 11:40:13 2008 +0200
42159
42160 ppc4xx: Fix small korat merge problem
42161
42162 Signed-off-by: Stefan Roese <sr@denx.de>
42163
42164 commit 1d0554736a0a1dd59718acda660871ce56b69e18
42165 Author: Stefan Roese <sr@denx.de>
42166 Date: Fri Jul 11 11:34:52 2008 +0200
42167
42168 ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
42169
42170 Signed-off-by: Stefan Roese <sr@denx.de>
42171
42172 commit 3a82113ed5934d498f25080441a8261fc9454b15
42173 Author: Stefan Roese <sr@denx.de>
42174 Date: Thu Jul 10 16:37:09 2008 +0200
42175
42176 ppc4xx: Add 460SX UIC defines
42177
42178 Only the really needed ones are added (cascading and EMAC/MAL).
42179
42180 Signed-off-by: Stefan Roese <sr@denx.de>
42181
42182 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
42183 Author: Stefan Roese <sr@denx.de>
42184 Date: Mon Jun 30 14:11:07 2008 +0200
42185
42186 ppc4xx: Continue cleanup of ppc440.h
42187
42188 This patch continues the ppc440.h cleanup by removing some of the unused
42189 defines.
42190
42191 Signed-off-by: Stefan Roese <sr@denx.de>
42192
42193 commit d9056b7913ed6a228d2f33671d916efedee541dd
42194 Author: Stefan Roese <sr@denx.de>
42195 Date: Mon Jun 30 14:05:05 2008 +0200
42196
42197 ppc4xx: Cleanup Katmai & Yucca PCIe register usage
42198
42199 This patch cleans up the 440SPe PCIe register usage. Now only defines
42200 from the include/asm-ppc/4xx_pcie.h are used.
42201
42202 Signed-off-by: Stefan Roese <sr@denx.de>
42203
42204 commit 5de851403b01489b493fa83137ad990b8ce60d1c
42205 Author: Stefan Roese <sr@denx.de>
42206 Date: Thu Jun 26 17:36:39 2008 +0200
42207
42208 ppc4xx: Rework 440GX UIC handling
42209
42210 This patch reworks the 440GX interrupt handling so that the common 4xx
42211 code can be used. The 440GX is an exception to all other 4xx variants
42212 by having the cascading interrupt vectors not on UIC0 but on a special
42213 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
42214 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
42215 handling is simpler without any 440GX special cases.
42216
42217 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
42218
42219 Signed-off-by: Stefan Roese <sr@denx.de>
42220
42221 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
42222 Author: Stefan Roese <sr@denx.de>
42223 Date: Thu Jun 26 13:40:57 2008 +0200
42224
42225 ppc4xx: Consolidate PPC4xx UIC defines
42226
42227 This 2nd patch now removes all UIC mask bit definition. They should be
42228 generated from the vectors by using the UIC_MASK() macro from now on.
42229 This way only the vectors need to get defined for new PPC's.
42230
42231 Also only the really used interrupt vectors are now defined. This makes
42232 definitions for new PPC versions easier and less error prone.
42233
42234 Another part of this patch is that the 4xx emac driver got a little
42235 cleanup, since now the usage of the interrupts is clearer.
42236
42237 Signed-off-by: Stefan Roese <sr@denx.de>
42238
42239 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
42240 Author: Stefan Roese <sr@denx.de>
42241 Date: Wed Jun 25 10:59:22 2008 +0200
42242
42243 ppc4xx: Consolidate PPC4xx UIC defines
42244
42245 This patch is the first step to consolidate the UIC related defines in the
42246 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
42247 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
42248 steps.
42249
42250 Signed-off-by: Stefan Roese <sr@denx.de>
42251
42252 commit 7ee2619c20ccecd57966d74d844e6329e141261c
42253 Author: Stefan Roese <sr@denx.de>
42254 Date: Tue Jun 24 17:18:50 2008 +0200
42255
42256 ppc4xx: Consolidate PPC4xx EBC defines
42257
42258 This patch removes all EBC related defines from the PPC4xx headers
42259 ppc405.h and ppc440.h and introduces a new header
42260
42261 include/asm-ppc/ppc4xx-ebc.h
42262
42263 with all those defines.
42264
42265 Signed-off-by: Stefan Roese <sr@denx.de>
42266
42267 commit e321801bed5a6d896d298c00fd20046f039d5d66
42268 Author: Stefan Roese <sr@denx.de>
42269 Date: Thu Jul 10 13:52:44 2008 +0200
42270
42271 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
42272
42273 This patch removes some ft_board_setup() functions from some 4xx boards.
42274 This can be done since we now have a default weak implementation for this
42275 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
42276 implementation like canyonlands need their own version.
42277
42278 Signed-off-by: Stefan Roese <sr@denx.de>
42279
42280 commit 08250eb2edbd96514d049602d9e134110ac3185f
42281 Author: Stefan Roese <sr@denx.de>
42282 Date: Thu Jul 10 15:32:32 2008 +0200
42283
42284 ppc4xx: Fix merge problems in 44x_spd_ddr2.c
42285
42286 Signed-off-by: Stefan Roese <sr@denx.de>
42287
42288 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
42289 Author: Grant Erickson <gerickson@nuovations.com>
42290 Date: Tue Jul 8 08:35:00 2008 -0700
42291
42292 ppc4xx: Add MII mode support to the EMAC RGMII Bridge
42293
42294 This patch adds support for placing the RGMII bridge on the
42295 PPC405EX(r) into MII/GMII mode and allows a board-specific
42296 configuration to specify the bridge mode at compile-time.
42297
42298 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42299 Signed-off-by: Stefan Roese <sr@denx.de>
42300
42301 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
42302 Author: Grant Erickson <gerickson@nuovations.com>
42303 Date: Wed Jul 9 16:46:35 2008 -0700
42304
42305 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
42306
42307 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
42308 controller registers (MODT and INITPLR) used by the
42309 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
42310 peer values used for the INITPLR MR and EMR registers,
42311 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
42312
42313 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
42314 Kilauea are replaced by equivalent mnemonics to make it easier to
42315 compare and contrast other 405EX(r)-based boards (e.g. during board
42316 bring-up).
42317
42318 Finally, unified the SDRAM controller register dump routine such that
42319 it can be used across all processor variants that utilize the IBM DDR2
42320 SDRAM controller core. It produces output of the form:
42321
42322 PPC4xx IBM DDR2 Register Dump:
42323 ...
42324 SDRAM_MB0CF[40] = 0x00006701
42325 ...
42326
42327 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
42328 since it is not uncommon that the DCR values in header files get mixed
42329 up and it helps to validate, at a glance, they match what is printed
42330 in the user manual.
42331
42332 Tested on:
42333 AMCC Kilauea/Haleakala:
42334 - NFS Linux Boot: PASSED
42335 - NAND Linux Boot: PASSED
42336
42337 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42338 Signed-off-by: Stefan Roese <sr@denx.de>
42339
42340 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
42341 Author: Grant Erickson <gerickson@nuovations.com>
42342 Date: Wed Jul 9 16:31:59 2008 -0700
42343
42344 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
42345
42346 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
42347 revision ID DCR based on 405EX, and add field mnemonics for bus error
42348 status and ECC error status registers.
42349
42350 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42351 Signed-off-by: Stefan Roese <sr@denx.de>
42352
42353 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
42354 Author: Grant Erickson <gerickson@nuovations.com>
42355 Date: Wed Jul 9 16:31:36 2008 -0700
42356
42357 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
42358
42359 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
42360
42361 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42362 Signed-off-by: Stefan Roese <sr@denx.de>
42363
42364 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
42365 Author: Grant Erickson <gerickson@nuovations.com>
42366 Date: Wed Jul 9 11:55:46 2008 -0700
42367
42368 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
42369
42370 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
42371 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
42372 the 405EX(r), SDRAM_MCSTAT has a different DCR value.
42373
42374 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
42375 which causes SDRAM initialization to periodically fail since it can
42376 prematurely indicate SDRAM ready status.
42377
42378 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
42379 Signed-off-by: Stefan Roese <sr@denx.de>
42380
42381 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
42382 Author: Feng Kan <fkan@amcc.com>
42383 Date: Tue Jul 8 22:48:42 2008 -0700
42384
42385 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
42386
42387 Add AMCC Redwood reference board that uses the latest
42388 PPC 464 CPU processor combined with a rich mix of peripheral
42389 controllers. The board will support PCIe, mutiple Gig ethernet
42390 ports, advanced hardware RAID assistance and IEEE 1588.
42391
42392 Signed-off-by: Feng Kan <fkan@amcc.com>
42393 Signed-off-by: Stefan Roese <sr@denx.de>
42394
42395 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
42396 Author: Feng Kan <fkan@amcc.com>
42397 Date: Tue Jul 8 22:48:07 2008 -0700
42398
42399 ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
42400
42401 Signed-off-by: Feng Kan <fkan@amcc.com>
42402 Signed-off-by: Stefan Roese <sr@denx.de>
42403
42404 commit 7d30793685efcada183891c78fc892e6c9ba50c7
42405 Author: Feng Kan <fkan@amcc.com>
42406 Date: Tue Jul 8 22:47:31 2008 -0700
42407
42408 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
42409
42410 Signed-off-by: Feng Kan <fkan@amcc.com>
42411 Signed-off-by: Stefan Roese <sr@denx.de>
42412
42413 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
42414 Author: Wolfgang Denk <wd@denx.de>
42415 Date: Fri Jul 11 01:16:00 2008 +0200
42416
42417 Fix some more print() format errors.
42418
42419 Signed-off-by: Wolfgang Denk <wd@denx.de>
42420
42421 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
42422 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42423 Date: Thu Jul 10 20:57:54 2008 +0200
42424
42425 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
42426
42427 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42428
42429 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
42430 Author: Sergey Lapin <slapin@ossfans.org>
42431 Date: Thu Jun 5 11:06:29 2008 +0400
42432
42433 DataFlash AT45DB021 support
42434
42435 Some boards based on AT91SAM926X-EK use smaller DF chips to keep
42436 bootstrap, u-boot and its environment, using NAND or other external
42437 storage for kernel and rootfs. This patch adds support for
42438 small 1024x263 chip.
42439
42440 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
42441
42442 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
42443 Author: Kim Phillips <kim.phillips@freescale.com>
42444 Date: Thu Jul 10 14:00:15 2008 -0500
42445
42446 silence misc printf formatting compiler warnings
42447
42448 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42449
42450 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
42451 Author: Markus Klotzbücher <mk@denx.de>
42452 Date: Thu Jul 10 14:47:09 2008 +0200
42453
42454 USB: shutdown USB before booting
42455
42456 This patch fixes a potentially serious issue related to USB which was
42457 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
42458 ARM920T. Martin wrote:
42459
42460 Turn off USB to prevent the host controller from writing to the
42461 SDRAM while Linux is booting. This could happen, because the HCCA
42462 (Host Controller Communication Area) lies within the SDRAM and the
42463 host controller writes continously to this area (as busmaster!), for
42464 example to increase the HccaFrameNumber variable, which happens
42465 every 1 ms.
42466
42467 This is a slightly modified version of the patch in order to shutdown
42468 USB when booting on all architectures.
42469
42470 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
42471
42472 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
42473 Author: Martha Marx <mmarx@silicontkx.com>
42474 Date: Thu May 29 14:23:25 2008 -0400
42475
42476 Configuration changes for ADS5121 Rev 3
42477
42478 ADS5121 Rev 3 board is now the default config
42479
42480 config targets are now
42481
42482 ads5121_config
42483 Rev 3 board with
42484 PCI
42485 M41T62 on board RTC
42486 512MB DRAM
42487
42488 ads5121_rev2_config
42489 Rev 2 board with
42490 No PCI
42491 256MB DRAM
42492
42493 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
42494 Acked-by: Grant Likely <grant.likely@secretlab.ca>
42495 Acked-by: John Rigby <jrigby@freescale.com>
42496
42497 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
42498 Author: Martha Marx <mmarx@silicontkx.com>
42499 Date: Thu May 29 15:37:21 2008 -0400
42500
42501 Consolidate ADS5121 IO Pin configuration
42502
42503 Consolidate ADS5121 IO Pin configuration to one file
42504 board/ads5121/iopin.c.
42505
42506 Remove pin config from cpu/mpc512x/fec.c
42507
42508 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
42509 Acked-by: Grant Likely <grant.likely@secretlab.ca>
42510 Acked-by: John Rigby <jrigby@freescale.com>
42511
42512 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
42513 Author: Christian Eggers <christian@p2400.wgnetz.xx>
42514 Date: Fri Jun 27 19:46:51 2008 +0200
42515
42516 Fix "usb part" command
42517
42518 Only print partition for selected device if user supplied the <dev>
42519 arg with the "usb part [dev]" command.
42520
42521 Signed-off-by: Christian Eggers <ceggers@gmx.de>
42522 Acked-by: Markus Klotzbuecher <mk@denx.de>
42523
42524 commit cc83b27217f7380041fea386ddb6d6d9b261617d
42525 Author: Harald Welte <laforge@gnumonks.org>
42526 Date: Mon Jul 7 00:58:05 2008 +0800
42527
42528 fix USB devices with multiple configurations
42529
42530 This patch fixes bugs in usbdcore*.c related to the use of devices
42531 with multiple configurations.
42532
42533 The original code made mistakes about the meaning of configuration value and
42534 configuration index, and the resulting off-by-one errors resulted in:
42535
42536 * SET_CONFIGURATION always selected the first configuration, no matter what
42537 wValue is being passed.
42538 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
42539 configuration (index 0).
42540
42541 Signed-off-by: Harald Welte <laforge@openmoko.org>
42542 Acked-by: Markus Klotzbuecher <mk@denx.de>
42543
42544 commit 06c53beae1a726e707971c555613f09b270a2461
42545 Author: Wolfgang Denk <wd@denx.de>
42546 Date: Thu Jul 10 13:16:09 2008 +0200
42547
42548 Fix some more print() format errors.
42549
42550 Signed-off-by: Wolfgang Denk <wd@denx.de>
42551
42552 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
42553 Author: Christian Eggers <christian@p2400.wgnetz.xx>
42554 Date: Fri Jun 27 19:46:51 2008 +0200
42555
42556 Fix "usb part" command
42557
42558 Only print partition for selected device if user supplied the <dev>
42559 arg with the "usb part [dev]" command.
42560
42561 Signed-off-by: Christian Eggers <ceggers@gmx.de>
42562 Acked-by: Markus Klotzbuecher <mk@denx.de>
42563
42564 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
42565 Author: Harald Welte <laforge@gnumonks.org>
42566 Date: Mon Jul 7 00:58:05 2008 +0800
42567
42568 fix USB devices with multiple configurations
42569
42570 This patch fixes bugs in usbdcore*.c related to the use of devices
42571 with multiple configurations.
42572
42573 The original code made mistakes about the meaning of configuration value and
42574 configuration index, and the resulting off-by-one errors resulted in:
42575
42576 * SET_CONFIGURATION always selected the first configuration, no matter what
42577 wValue is being passed.
42578 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
42579 configuration (index 0).
42580
42581 Signed-off-by: Harald Welte <laforge@openmoko.org>
42582 Acked-by: Markus Klotzbuecher <mk@denx.de>
42583
42584 commit e870690bdca154943ecadd5212d2d59c1b9d391b
42585 Author: Stefan Roese <sr@denx.de>
42586 Date: Thu Jul 10 10:10:54 2008 +0200
42587
42588 MTD/NAND: Fix printf format warning in nand code
42589
42590 This patch fixes NAND related printf format warning. Those warnings are
42591 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
42592 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
42593 really helpful.
42594
42595 Signed-off-by: Stefan Roese <sr@denx.de>
42596
42597 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
42598 Author: Stefan Roese <sr@denx.de>
42599 Date: Thu Jul 10 10:00:45 2008 +0200
42600
42601 rtc: Fix printf format warning in m41t60.c
42602
42603 Signed-off-by: Stefan Roese <sr@denx.de>
42604
42605 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
42606 Author: Stefan Roese <sr@denx.de>
42607 Date: Tue Jul 8 12:01:47 2008 +0200
42608
42609 pci: Move PCI device configuration check into a separate weak function
42610
42611 This patch moves the check, if a device should be skipped in PCI PNP
42612 configuration into the function pci_skip_dev(). This function is defined
42613 as weak so that it can be overwritten by a platform specific one if
42614 needed. The check if the device should get printed in the PCI summary upon
42615 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
42616 pci_print_dev() which is also defined as weak too.
42617
42618 Signed-off-by: Stefan Roese <sr@denx.de>
42619
42620 commit b002144e1dc21374b1ef5281fe6b5d014af96650
42621 Author: Stefan Roese <sr@denx.de>
42622 Date: Thu Jul 10 09:58:06 2008 +0200
42623
42624 ppc4xx: Fix printf format warnings now visible with the updated format check
42625
42626 This patch fixes ppc4xx related printf format warning. Those warnings are
42627 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
42628 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
42629 really helpful.
42630
42631 Signed-off-by: Stefan Roese <sr@denx.de>
42632
42633 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
42634 Author: Stefan Roese <sr@denx.de>
42635 Date: Wed Jul 9 17:33:57 2008 +0200
42636
42637 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
42638
42639 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
42640 To support such configurations, we "only" map the first 2GB via the TLB's. We
42641 need some free virtual address space for the remaining peripherals like, SoC
42642 devices, FLASH etc.
42643
42644 Note that ECC is currently not supported on configurations with more than 2GB
42645 SDRAM. This is because we only map the first 2GB on such systems, and therefore
42646 the ECC parity byte of the remaining area can't be written.
42647
42648 Signed-off-by: Stefan Roese <sr@denx.de>
42649
42650 commit cf1c2ed91df26903b956948f37f82de9e1158a89
42651 Author: Larry Johnson <lrj@acm.org>
42652 Date: Sat Jun 14 17:02:49 2008 -0400
42653
42654 ppc4xx: Remove implementation of testdram() from Korat board support
42655
42656 Signed-off-by: Larry Johnson <lrj@acm.org>
42657 Signed-off-by: Stefan Roese <sr@denx.de>
42658
42659 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
42660 Author: Larry Johnson <lrj@acm.org>
42661 Date: Sat Jun 14 16:53:02 2008 -0400
42662
42663 ppc4xx: Update and add FDT to Korat board support
42664
42665 Signed-off-by: Larry Johnson <lrj@acm.org>
42666 Signed-off-by: Stefan Roese <sr@denx.de>
42667
42668 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
42669 Author: Wolfgang Denk <wd@denx.de>
42670 Date: Thu Jul 10 01:13:30 2008 +0200
42671
42672 Minor coding style cleanup; update CHANGELOG
42673
42674 Signed-off-by: Wolfgang Denk <wd@denx.de>
42675
42676 commit 8915f1189c1d29d8be7f4de325702d90a8988219
42677 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
42678 Date: Wed Jul 9 17:50:45 2008 -0400
42679
42680 e1000: add support for 82545GM 64bit PCI-X copper variant
42681
42682 This PCI-X e1000 variant works by just adding in the correct
42683 PCI IDs in the appropriate places.
42684
42685 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
42686
42687 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
42688 Author: Daniel Hellstrom <daniel@gaisler.com>
42689 Date: Wed Jul 9 12:34:11 2008 +0000
42690
42691 SPARC: Build error fix
42692
42693 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
42694
42695 This patch makes SPARC targets build again. It is caused by
42696 phys_addr_t and phys_size_t being defined in the wrong header
42697 file. include/lmb.h need those typedefs to build.
42698
42699 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
42700
42701 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
42702 Author: Marcel Ziswiler <marcel@ziswiler.com>
42703 Date: Wed Jul 9 08:17:15 2008 +0200
42704
42705 Many spelling fixes in README.
42706
42707 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
42708
42709 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
42710 Author: Marcel Ziswiler <marcel@ziswiler.com>
42711 Date: Wed Jul 9 08:17:06 2008 +0200
42712
42713 Minor spelling fix in comment.
42714
42715 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
42716
42717 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
42718 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42719 Date: Tue Jul 8 14:54:58 2008 -0400
42720
42721 Round the serial port clock divisor value returned by calc_divisor()
42722
42723 Round the serial port clock divisor value returned by
42724 calc_divisor().
42725
42726 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42727 Signed-off-by: John Roberts <john.roberts@pwav.com>
42728
42729 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
42730 Author: Scott Wood <scottwood@freescale.com>
42731 Date: Wed Jul 9 17:47:52 2008 -0500
42732
42733 NAND: ifdef-protect most of nand.h when using legacy NAND.
42734
42735 Some macros such as NAND_CTL_SETALE conflict between current and legacy
42736 NAND, being defined by the subsystem in the former case and the board
42737 config file in the latter.
42738
42739 Signed-off-by: Scott Wood <scottwood@freescale.com>
42740
42741 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
42742 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42743 Date: Tue Jul 8 11:02:05 2008 -0400
42744
42745 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
42746
42747 ARM: Fix for incorrect version of patch applied when
42748 adding support for the Lyrtech SFF-SDR board.
42749
42750 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42751 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
42752
42753 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
42754 Author: Kyungmin Park <kmpark@infradead.org>
42755 Date: Tue Jul 8 09:08:40 2008 +0900
42756
42757 Remove useless print message at apollon
42758
42759 Remove useless print message at apollon
42760
42761 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
42762
42763 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
42764 Author: Andy Fleming <afleming@freescale.com>
42765 Date: Mon Jul 7 14:24:39 2008 -0500
42766
42767 Fix LMB type issues
42768
42769 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple
42770 of casting problems in the bootm code that called the LMB functions.
42771
42772 Signed-off-by: Andy Fleming <afleming@freescale.com>
42773
42774 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
42775 Author: Kumar Gala <galak@kernel.crashing.org>
42776 Date: Mon Jul 7 09:39:06 2008 -0500
42777
42778 Fix compiler warnings
42779
42780 gcc-4.3.x generates the following:
42781
42782 bootm.c: In function 'do_bootm_linux':
42783 bootm.c:208: warning: cast from pointer to integer of different size
42784 bootm.c:215: warning: cast from pointer to integer of different size
42785
42786 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42787
42788 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
42789 Author: Harald Welte <laforge@gnumonks.org>
42790 Date: Mon Jul 7 15:40:39 2008 +0800
42791
42792 Remove code duplication for setting the default environment
42793
42794 common/env_common.c (default_env): new function that resets the environment to
42795 the default value
42796 common/env_common.c (env_relocate): use default_env instead of own copy
42797 common/env_nand.c (env_relocate_spec): use default_env instead of own copy
42798 include/environment.h: added default_env prototype
42799
42800 Signed-off-by: Werner Almesberger <werner@openmoko.org>
42801 Signed-off-by: Harald Welte <laforge@openmoko.org>
42802
42803 commit 99c2b434d37863df5dda5207a53760c6506fc2be
42804 Author: Marcel Ziswiler <marcel@ziswiler.com>
42805 Date: Sun Jun 22 16:13:46 2008 +0200
42806
42807 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
42808
42809 The writeenv() and readenv() calls introduced by the recently added bad block
42810 management for environment variables were missing casts therefore producing
42811 compile time warnings.
42812 While at it fixing some typo in a comment and indentation.
42813
42814 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
42815 Signed-off-by: Scott Wood <scottwood@freescale.com>
42816
42817 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
42818 Author: Scott Wood <scottwood@freescale.com>
42819 Date: Fri Jun 20 12:38:57 2008 -0500
42820
42821 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
42822
42823 This is particularly problematic now that non-NAND-specific code is
42824 including <nand.h>, and thus all debugging code is being compiled
42825 regardless of whether it was requested, as reported by Scott McNutt
42826 <smcnutt@psyent.com>.
42827
42828 Signed-off-by: Scott Wood <scottwood@freescale.com>
42829
42830 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
42831 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42832 Date: Thu Jun 12 19:27:58 2008 +0200
42833
42834 mmc: Move atmel_mci driver into drivers/mmc
42835
42836 This makes it easier to use the driver on other platforms.
42837
42838 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42839 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42840
42841 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
42842 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42843 Date: Thu Jun 12 19:27:57 2008 +0200
42844
42845 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
42846
42847 After we move the atmel_mci driver into drivers/mmc, we can't select
42848 it with CONFIG_MMC anymore. Introduce a new symbol specifically for
42849 this driver so that there's no ambiguity.
42850
42851 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42852 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42853
42854 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
42855 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42856 Date: Thu Jun 12 19:27:56 2008 +0200
42857
42858 Create drivers/mmc subdirectory
42859
42860 In order to consolidate more of the various MMC drivers around the
42861 tree, we must first have a common place to put them.
42862
42863 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
42864 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
42865
42866 commit b502611b51f02718c2d1117d4981dabceb5af6de
42867 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
42868 Date: Sun Jul 6 12:30:09 2008 +0200
42869
42870 Change env_get_char from a global function ptr to a function
42871
42872 This avoids an early global data reference.
42873
42874 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
42875
42876 commit 27269417ade432189b234d9fbac98b54e37b978c
42877 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
42878 Date: Sun Jul 6 13:57:58 2008 +0400
42879
42880 Some copy-n-paste fixes in printf usage
42881
42882 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
42883
42884 commit 0e6989b9faf1588e8723535539e88a0df3c71356
42885 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
42886 Date: Sun Jul 6 13:57:00 2008 +0400
42887
42888 FDT memory and pci node fixes for MPC8260ADS
42889
42890 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
42891
42892 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
42893 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
42894 Date: Mon Jul 7 06:41:14 2008 -0700
42895
42896 Fix printf errors.
42897
42898 The compiler will help find mismatches between printf formats and
42899 arguments if you let it. This patch adds the necessary attributes to
42900 declarations in include/common.h, then begins to correct the resulting
42901 compiler warnings. Some of these were bugs, e.g., "$d" instead of
42902 "%d" and incorrect arguments. Others were just annoying, like
42903 int-long mismatches on a system where both are 32 bits. It's worth
42904 fixing the annoying errors to catch the real ones.
42905
42906 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
42907
42908 commit 417faf285b2527acb2de24c5cd3e2621d385408c
42909 Author: Becky Bruce <becky.bruce@freescale.com>
42910 Date: Wed Jul 9 11:09:41 2008 -0500
42911
42912 Allow print_size to print in GB
42913
42914 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
42915
42916 commit e7c374529c87525c9aa463e0557c287887ae4e9e
42917 Author: Jason McMullan <mcmullan@netapp.com>
42918 Date: Sun Jun 8 23:56:00 2008 -0400
42919
42920 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
42921
42922 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
42923 they are set in the U-Boot environment.
42924
42925 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
42926 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
42927
42928 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
42929 Author: Stefan Roese <sr@denx.de>
42930 Date: Tue Jul 8 12:57:14 2008 +0200
42931
42932 jedec_flash: Fix AM29DL800BB device ID
42933
42934 As pointed out by Jerry Hicks, this patch corrects the device ID of
42935 the Spansion AM29DL800BB NOR device. Verified against latest Spansion
42936 datasheet (rev C4 from Dezember 2006).
42937
42938 Signed-off-by: Stefan Roese <sr@denx.de>
42939
42940 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
42941 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42942 Date: Mon Jul 7 11:22:37 2008 +0900
42943
42944 sh: Fix compile error sh7763rdp board
42945
42946 Disable SH ether driver.
42947
42948 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42949
42950 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
42951 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42952 Date: Tue Jul 8 12:03:24 2008 +0900
42953
42954 sh: Fix SH-boards compile error
42955
42956 By Cleanup out-or-tree building for some boards (.depend)
42957 (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
42958 because filse ware changed, some SH-boards have compile error.
42959 I revised this problem.
42960
42961 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
42962
42963 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
42964 Author: Jason Jin <Jason.jin@freescale.com>
42965 Date: Tue May 13 11:50:36 2008 +0800
42966
42967 Feed the watchdog in u-boot for 8610 board.
42968
42969 The watchdog on 8610 board is enabled by setting sw[6]
42970 to on. Once enabled, the watchdog can not be disabled
42971 by software. So feed the dog in u-boot is necessary for
42972 normal operation.
42973
42974 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
42975
42976 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
42977 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42978 Date: Wed Jun 18 12:10:33 2008 -0400
42979
42980 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
42981
42982 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
42983
42984 Remove duplicate code in a if/else block in
42985 cpu/arm926ejs/davinci/lxt972.c.
42986 Fixed style issues.
42987
42988 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42989 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
42990
42991 commit fec61431a003f5778bafa2624073a571af8bec9f
42992 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
42993 Date: Wed Jun 18 12:10:31 2008 -0400
42994
42995 Remove duplicate definitions in include/lxt971a.h.
42996
42997 Remove duplicate definitions in include/lxt971a.h.
42998
42999 Remove duplicate registers and bits definitions in
43000 include/lxt971a.h for standard MII registers, and
43001 use values in include/miiphy.h instead.
43002
43003 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43004 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43005
43006 commit 9751ee0990f467941da0b095a4e995f863672d7a
43007 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43008 Date: Wed Jun 11 21:05:00 2008 +0900
43009
43010 net: sh: Renesas SH7763 Ethernet device support
43011
43012 Renesas SH7763 has 2 channel Ethernet device.
43013 This is 10/100/1000 Base support.
43014 But this patch check 10/100 Base only.
43015
43016 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43017 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43018
43019 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
43020 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43021 Date: Tue Jun 17 16:28:05 2008 +0900
43022
43023 sh: Update Renesas R2DPlus board
43024
43025 New NOR Flash board support and remove old type flash board config.
43026 And Remove network setting from config file.
43027
43028 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43029 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43030
43031 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
43032 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43033 Date: Tue Jun 17 16:28:01 2008 +0900
43034
43035 sh: Update Renesas R7780MP board
43036
43037 New NOR Flash board support and remove network setting from config file.
43038
43039 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43040 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43041
43042 commit c001cd604e9f133743effbddb1c215b48e761c5a
43043 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43044 Date: Tue Jun 17 16:27:56 2008 +0900
43045
43046 sh: Update Renesas Migo-R board
43047
43048 Remove network setting from config file.
43049
43050 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43051 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43052
43053 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
43054 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43055 Date: Tue Jun 17 16:27:52 2008 +0900
43056
43057 sh: Update Hitachi MS7722SE board
43058
43059 Remove network setting from config file.
43060
43061 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43062 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43063
43064 commit 26209e48e8791670c93108029a5c31a30016c6df
43065 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43066 Date: Tue Jun 17 16:27:48 2008 +0900
43067
43068 sh: Cleanup source code of SH7763RDP
43069
43070 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43071 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43072
43073 commit 5cd5b2c96ef0025762931349d350287aec03ab47
43074 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43075 Date: Tue Jun 17 16:27:44 2008 +0900
43076
43077 sh: Cleanup source code of R2DPlus
43078
43079 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43080 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43081
43082 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
43083 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43084 Date: Tue Jun 17 16:27:41 2008 +0900
43085
43086 sh: Cleanup source code of R7780MP
43087
43088 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43089 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43090
43091 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
43092 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43093 Date: Tue Jun 17 16:27:38 2008 +0900
43094
43095 sh: Cleanup source code of MS7722SE
43096
43097 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43098 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43099
43100 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
43101 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43102 Date: Tue Jun 17 16:27:34 2008 +0900
43103
43104 sh: Cleanup source code of MS7720SE
43105
43106 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43107 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43108
43109 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
43110 Author: Wolfgang Denk <wd@denx.de>
43111 Date: Mon Jul 7 00:45:03 2008 +0200
43112
43113 SH: fix out of tree building
43114
43115 Signed-off-by: Wolfgang Denk <wd@denx.de>
43116
43117 commit 9047bfa1e737d787be460387dd6f45737eeceb10
43118 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43119 Date: Thu Jul 3 23:16:06 2008 +0900
43120
43121 net: smc911x: Fix typo
43122
43123 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
43124
43125 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
43126 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
43127 Date: Wed Jul 2 18:54:08 2008 +0200
43128
43129 update mvBL-M7 board config
43130
43131 update mvBL-M7 config file to use UBOOT_VERSION and define
43132 CONFIG_HIGH_BATS.
43133
43134 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
43135
43136 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
43137 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43138 Date: Mon Jun 30 17:45:01 2008 +0900
43139
43140 net: fix compile problem in smc911x driver.
43141
43142 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43143 Acked-by: Ben Warren <biggerbadderben@gmail.com>
43144
43145 commit 9fea65a6c469b1b474b27446feb58738baba2d31
43146 Author: Michal Simek <monstr@monstr.eu>
43147 Date: Tue Jun 24 09:54:09 2008 +0200
43148
43149 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
43150
43151 This change helps with better handling with others
43152 Xilinx based platform.
43153
43154 Signed-off-by: Michal Simek <monstr@monstr.eu>
43155 Acked-by: Stefan Roese <sr@denx.de>
43156
43157 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
43158 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43159 Date: Tue Jun 17 13:07:11 2008 +0900
43160
43161 net: ne2000: Move dev_addr variable from grobal to local.
43162
43163 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43164 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43165
43166 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
43167 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43168 Date: Tue Jun 17 13:07:15 2008 +0900
43169
43170 net: ne2000: Fix compile error of NE2000
43171
43172 If enable DEBUG, can not compile ne2000 driver.
43173
43174 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
43175 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43176
43177 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
43178 Author: Ben Warren <biggerbadderben@gmail.com>
43179 Date: Mon Jun 23 22:57:27 2008 -0700
43180
43181 Add mechanisms for CPU and board-specific Ethernet initialization
43182
43183 This patch is the first step in cleaning up net/eth.c, by moving Ethernet
43184 initialization to CPU or board-specific code. Initial implementation is
43185 only on the Freescale TSEC controller, but others will be added soon.
43186
43187 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43188
43189 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
43190 Author: Wolfgang Denk <wd@denx.de>
43191 Date: Sun Jul 6 01:21:46 2008 +0200
43192
43193 include/sha256.h: fix file permissions.
43194
43195 Signed-off-by: Wolfgang Denk <wd@denx.de>
43196
43197 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
43198 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
43199 Date: Tue May 27 11:15:29 2008 +0200
43200
43201 [AT91SAM9] Fix NAND FLASH timings
43202
43203 Fix NAND FLASH timings for at91sam9x evaluation kits.
43204
43205 New timings are based on application note
43206 "NAND Flash Support on AT91SAM9 Microcontrollers" available at
43207 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
43208
43209 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
43210 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43211 Acked-by: Stelian Pop <stelian@popies.net>
43212
43213 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
43214 Author: Stelian Pop <stelian@popies.net>
43215 Date: Thu May 22 00:15:40 2008 +0200
43216
43217 Fix boot from NOR due to incorrect reset delay.
43218
43219 AT91 RSTC registers are battery-backuped, so their values
43220 are not reset across power cycles. One of those registers,
43221 the AT91_RSTC_MR register, is being modified by U-Boot, in
43222 the ethernet initialisation routine, to generate a 500ms
43223 user reset.
43224
43225 Unfortunately, this value is not being restored afterwards,
43226 causing subsequent resets to also last for 500ms.
43227
43228 This long reset sequence causes problems (at least) in the
43229 boot sequence from NOR: by the time the CPU tries to load
43230 a program from the NOR flash, the latter is still in reset
43231 and not yet available.
43232
43233 Additionaly, this patch fixes a bug in the original code which
43234 caused the reset delay to last for 2s instead of 500ms.
43235
43236 Signed-off-by: Stelian Pop <stelian@popies.net>
43237 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43238
43239 commit f492dd636fbbae529e17533995bc6e5813c007f6
43240 Author: Wolfgang Denk <wd@denx.de>
43241 Date: Fri Jul 4 20:11:49 2008 +0200
43242
43243 Update CHANGELOG
43244
43245 Signed-off-by: Wolfgang Denk <wd@denx.de>
43246
43247 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
43248 Author: Wolfgang Denk <wd@denx.de>
43249 Date: Fri Jul 4 20:07:35 2008 +0200
43250
43251 CCM/SCM boards: fix out of tree building
43252
43253 Signed-off-by: Wolfgang Denk <wd@denx.de>
43254
43255 commit ab4c3a490df9a964711556d2a05b0c787db45fde
43256 Author: Wolfgang Denk <wd@denx.de>
43257 Date: Thu Jul 3 23:22:27 2008 +0200
43258
43259 SCM board: fix build errors.
43260
43261 Signed-off-by: Wolfgang Denk <wd@denx.de>
43262
43263 commit a566466f17ba0e2d2b6c250e77da678fb932470d
43264 Author: Wolfgang Denk <wd@denx.de>
43265 Date: Thu Jul 3 23:06:36 2008 +0200
43266
43267 IAD210 board: fix ``"ALIGN" redefined'' warning.
43268
43269 Signed-off-by: Wolfgang Denk <wd@denx.de>
43270
43271 commit ad756314797c16fa5dca23e115aab881011f164f
43272 Author: Wolfgang Denk <wd@denx.de>
43273 Date: Thu Jul 3 23:00:24 2008 +0200
43274
43275 CCM board: fix build errors.
43276
43277 Signed-off-by: Wolfgang Denk <wd@denx.de>
43278
43279 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
43280 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
43281 Date: Wed Jul 2 18:54:08 2008 +0200
43282
43283 update mvBL-M7 board config
43284
43285 update mvBL-M7 config file to use UBOOT_VERSION.
43286
43287 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
43288 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43289
43290 commit ced209c50e80c25f13c083099b05044048d21f4f
43291 Author: Wolfgang Denk <wd@denx.de>
43292 Date: Thu Jul 3 22:39:21 2008 +0200
43293
43294 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
43295
43296 Signed-off-by: Wolfgang Denk <wd@denx.de>
43297
43298 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
43299 Author: Wolfgang Denk <wd@denx.de>
43300 Date: Thu Jul 3 22:34:08 2008 +0200
43301
43302 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
43303
43304 Signed-off-by: Wolfgang Denk <wd@denx.de>
43305
43306 commit 730f298485984b011b6ee8f4acb511cb45a843dd
43307 Author: Wolfgang Denk <wd@denx.de>
43308 Date: Thu Jul 3 22:04:17 2008 +0200
43309
43310 lmb: fix "implicit declaration of function 'lmb_free'" warning
43311
43312 Signed-off-by: Wolfgang Denk <wd@denx.de>
43313
43314 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
43315 Author: Wolfgang Denk <wd@denx.de>
43316 Date: Wed Jul 2 23:53:23 2008 +0200
43317
43318 Cleanup: remove redundant deleting on *~ files
43319
43320 Signed-off-by: Wolfgang Denk <wd@denx.de>
43321
43322 commit c8a3b109f07f02342d097b30908965f7261d9f15
43323 Author: Wolfgang Denk <wd@denx.de>
43324 Date: Wed Jul 2 23:49:18 2008 +0200
43325
43326 Cleanup out-or-tree building for some boards (.depend)
43327
43328 Signed-off-by: Wolfgang Denk <wd@denx.de>
43329
43330 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
43331 Author: Wolfgang Denk <wd@denx.de>
43332 Date: Wed Jul 2 23:38:50 2008 +0200
43333
43334 Cleanup: fix out-of-tree building for some boards
43335
43336 Signed-off-by: Wolfgang Denk <wd@denx.de>
43337
43338 commit 461fa68d20861811487944d22291db5a13410e20
43339 Author: Wolfgang Denk <wd@denx.de>
43340 Date: Wed Jul 2 23:00:14 2008 +0200
43341
43342 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
43343
43344 Signed-off-by: Wolfgang Denk <wd@denx.de>
43345
43346 commit 5981ebd32017e062b08aa6747cf591276f2db779
43347 Author: Detlev Zundel <dzu@denx.de>
43348 Date: Fri Jun 20 22:26:24 2008 +0200
43349
43350 fdt: Fix typo in variable name.
43351
43352 Signed-off-by: Detlev Zundel <dzu@denx.de>
43353
43354 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
43355 Author: Gary Jennejohn <garyj@denx.de>
43356 Date: Thu Jun 19 11:11:19 2008 +0200
43357
43358 Add logos for RRvision board
43359
43360 Signed-off-by: Gary Jennejohn <garyj@denx.de>
43361
43362 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
43363 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
43364 Date: Wed Jun 18 11:03:57 2008 +0200
43365
43366 mpc8260: add fdt_fixup_ethernet support
43367
43368 Add support for updating mac-address and local-mac-address in fdt for
43369 all MPC8260 targets.
43370
43371 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
43372
43373 commit f6a69559d64498a04e1e0b087a9b920e5775f866
43374 Author: Steven A. Falco <sfalco@harris.com>
43375 Date: Thu Jun 12 13:24:42 2008 -0400
43376
43377 cmd_nvedit.c: clean up syntax highlighting
43378
43379 My text-editor (vim) has a bit of trouble syntax-highlighting the
43380 cmd_nvedit.c file, because it apparently does not parse C
43381 ifdef/else/endif. The following patch does not change the behavior of
43382 the code at all, but does allow the editor to properly
43383 syntax-highlight the file.
43384
43385 Signed-off-by: Steve Falco <sfalco@harris.com>
43386
43387 commit 75678c807a6272ecc5541eb32898c93887f08400
43388 Author: Steven A. Falco <sfalco@harris.com>
43389 Date: Thu Jun 12 13:22:12 2008 -0400
43390
43391 Make setenv() return status
43392
43393 Currently, the setenv function does not return an error code.
43394 This patch allows to test for errors.
43395
43396 Signed-off-by: Steve Falco <sfalco@harris.com>
43397
43398 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
43399 Author: Kumar Gala <galak@kernel.crashing.org>
43400 Date: Wed Jun 11 10:14:06 2008 -0500
43401
43402 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
43403
43404 fls64, __ilog2_u64, ffs64 are variants that work on an u64,
43405 and fls is used to implement them.
43406
43407 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43408
43409 commit 83002a77cbdf383015ca384eff5fa31722d8e571
43410 Author: Magnus Lilja <lilja.magnus@gmail.com>
43411 Date: Mon Jun 9 22:58:48 2008 +0200
43412
43413 i.MX31: Cleanup comments in lowlevel_init.S.
43414
43415 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
43416
43417 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
43418 Author: Ben Warren <biggerbadderben@gmail.com>
43419 Date: Sun Jun 8 23:28:33 2008 -0700
43420
43421 Move conditional compilation of MPC8XXX SPI driver to Makefile
43422
43423 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
43424
43425 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
43426 Author: Juergen Kilb <J.Kilb@gmx.de>
43427 Date: Sun Jun 8 17:59:53 2008 +0200
43428
43429 i.MX31: fixed CTRL-C detection
43430
43431 The Register URXD contains status information in bits [15..8].
43432 With status bit 15 set, CTRL-C was reported as 0x8003 instead
43433 of 0x03. Therefore CTRL-C was not detected.
43434 To solve this, bits [15..8] were masked out now.
43435
43436 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
43437 Acked-by: Felix Radensky <felix@embedded-sol.com>
43438
43439 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
43440 Author: Stefan Roese <sr@denx.de>
43441 Date: Tue Jul 1 17:03:19 2008 +0200
43442
43443 ppc4xx: Fix 460EX/GT PCIe port initialization
43444
43445 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
43446 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
43447 this out.
43448
43449 Signed-off-by: Stefan Roese <sr@denx.de>
43450
43451 commit b571afde0295b007a45055ee49f8822c753a5651
43452 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43453 Date: Sat Jun 7 12:29:52 2008 +0200
43454
43455 add SHA256 support
43456
43457 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43458 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
43459
43460 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
43461 Author: Marian Balakowicz <m8@semihalf.com>
43462 Date: Fri Jun 6 23:07:40 2008 +0200
43463
43464 Delay FIT format check on sector based devices
43465
43466 Global FIT image operations like format check cannot be performed on
43467 a first sector data, defer them to the point when whole FIT image was
43468 uploaded to a system RAM.
43469
43470 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
43471 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
43472 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
43473
43474 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
43475 Author: Dave Liu <r63238@freescale.com>
43476 Date: Tue Jun 3 17:38:19 2008 +0800
43477
43478 sata: wait for device updating signature to host
43479
43480 The driver need wait for the device updating signature to host.
43481 If we don't wait for it, the driver can not detect the device(disk)
43482 when the system powers up.
43483
43484 Signed-off-by: Dave Liu <daveliu@freescale.com>
43485
43486 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
43487 Author: Stefan Roese <sr@denx.de>
43488 Date: Sat Jun 28 14:56:17 2008 +0200
43489
43490 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
43491
43492 This patch implements a fix provided by AMCC so that the lockup upon
43493 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
43494 anymore:
43495
43496 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
43497 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
43498 USB 2.0 host and SATA.
43499
43500 This errata is not officially available yet. I'll update the comment
43501 to add the errata number later.
43502
43503 Signed-off-by: Stefan Roese <sr@denx.de>
43504
43505 commit 8b616edb118e37d05f6401389eaee1c636b22828
43506 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
43507 Date: Mon Jun 2 16:42:19 2008 -0400
43508
43509 serial_pl010.c: add watchdog support
43510
43511 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
43512
43513 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
43514 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
43515 Date: Mon Jun 2 16:40:08 2008 -0400
43516
43517 jffs2_1pass.c: add watchdog support
43518
43519 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
43520
43521 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
43522 Author: Sascha Laue <sascha.laue@liebherr.com>
43523 Date: Fri May 30 09:48:14 2008 +0200
43524
43525 Configure DSP POST; add watchdog reset to diag command
43526
43527 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
43528
43529 commit f13526517859bf6b573e23ff47199e107d1009b5
43530 Author: Tor Krill <tor@excito.com>
43531 Date: Thu May 29 10:40:17 2008 +0200
43532
43533 Add sata sil3114 support
43534
43535 Signed-off-by: Tor Krill <tor@excito.com>
43536
43537 commit e093a247628228100f405b6d7f6b1bfc16141938
43538 Author: Wolfgang Denk <wd@denx.de>
43539 Date: Sat Jun 28 23:34:37 2008 +0200
43540
43541 Coding Style Cleanup
43542
43543 Signed-off-by: Wolfgang Denk <wd@denx.de>
43544
43545 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
43546 Author: Wolfgang Denk <wd@denx.de>
43547 Date: Sat Jun 28 23:16:01 2008 +0200
43548
43549 Update CHANGELOG
43550
43551 Signed-off-by: Wolfgang Denk <wd@denx.de>
43552
43553 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
43554 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43555 Date: Wed May 21 13:58:41 2008 -0400
43556
43557 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
43558
43559 This patch adds support for the Lyrtech SFF-SDR board,
43560 based on the TI DaVinci architecture (ARM926EJS).
43561
43562 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
43563 Signed-off-by: Philip Balister <philip@balister.org>
43564 Signed-off-by: Wolfgang Denk <wd@denx.de>
43565
43566 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
43567 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43568 Date: Thu May 22 11:09:59 2008 +0200
43569
43570 MMC: Consolidate MMC/SD command definitions
43571
43572 This moves the MMC and SD Card command definitions from
43573 include/asm/arch/mmc.h into include/mmc.h. These definitions are
43574 given by the MMC and SD Card standards, not by any particular
43575 architecture.
43576
43577 There's a lot more room for consolidation in the MMC drivers which
43578 I'm hoping to get done eventually, but this patch is a start.
43579
43580 Compile-tested for all avr32 boards as well as lpc2292sodimm and
43581 lubbock. This should cover all three mmc drivers in the tree.
43582
43583 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43584
43585 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
43586 Author: Kyungmin Park <kmpark@infradead.org>
43587 Date: Wed May 21 14:38:08 2008 +0900
43588
43589 Use better Ethernet timings for apollon board
43590
43591 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
43592
43593 commit 41c5eaa7253ed82bbae1eda5667755872c615164
43594 Author: Andy Fleming <afleming@freescale.com>
43595 Date: Mon Jun 16 13:58:56 2008 -0500
43596
43597 Resize device tree to allow space for board changes and the chosen node
43598
43599 Current code requires that a compiled device tree have space added to the end to
43600 leave room for extra nodes added by board code (and the chosen node). This
43601 requires that device tree creators anticipate how much space U-Boot will add to
43602 the tree, which is absurd. Ideally, the code would resize and/or relocate the
43603 tree when it needed more space, but this would require a systemic change to the
43604 fdt code, which is non-trivial. Instead, we resize the tree inside
43605 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
43606 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
43607
43608 Signed-off-by: Andy Fleming <afleming@freescale.com>
43609
43610 commit 7570a9941fc565922078679a72d246fe208d696d
43611 Author: Andy Fleming <afleming@freescale.com>
43612 Date: Mon Jun 16 13:58:55 2008 -0500
43613
43614 Fix an underflow bug in __lmb_alloc_base
43615
43616 __lmb_alloc_base can underflow if it fails to find free space. This was fixed
43617 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch
43618 merely updates __lmb_alloc_base to resemble the current version in Linux.
43619
43620 Signed-off-by: Andy Fleming <afleming@freescale.com>
43621
43622 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
43623 Author: Andy Fleming <afleming@freescale.com>
43624 Date: Mon Jun 16 13:58:54 2008 -0500
43625
43626 Add lmb_free
43627
43628 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
43629 lmb_reserve to temporarily reserve some memory.
43630
43631 Signed-off-by: Andy Fleming <afleming@freescale.com>
43632
43633 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
43634 Author: Andy Fleming <afleming@freescale.com>
43635 Date: Mon Jun 16 13:58:53 2008 -0500
43636
43637 Add ALIGN() macro
43638
43639 ALIGN() returns the smallest aligned value greater than the passed
43640 in address or size. Taken from Linux.
43641
43642 Signed-off-by: Andy Fleming <afleming@freescale.com>
43643
43644 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
43645 Author: Stefan Roese <sr@denx.de>
43646 Date: Tue Jun 24 17:15:22 2008 +0200
43647
43648 ppc4xx: Fix compilation problems with phys_size_t
43649
43650 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
43651 board specific files where it has been missing.
43652
43653 Signed-off-by: Stefan Roese <sr@denx.de>
43654
43655 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
43656 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
43657 Date: Mon May 19 12:26:38 2008 +0200
43658
43659 Conditionally add -fno-stack-protector to CFLAGS
43660
43661 When compile-testing on powerpc, I get errors like this:
43662
43663 net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
43664
43665 This seems to be because -fstack-protector is on by default, so
43666 let's explicitly disable it on all architectures that support the
43667 option.
43668
43669 The Ubuntu toolchain is affected by this problem, and according to
43670 Mike Frysinger, Gentoo has been running with SSP enabled for years.
43671 More and more distros are turning SSP on by default, so this problem
43672 is likely to get worse in the future.
43673
43674 Also, powerpc just happens to be one of the arches I do
43675 compile-testing on. There may be other arches affected by this too.
43676
43677 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
43678
43679 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
43680 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43681 Date: Sun May 18 19:09:52 2008 +0200
43682
43683 pcmcia/ti_pci1410a: Move compile condition to the Makefile
43684
43685 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43686
43687 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
43688 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43689 Date: Sun May 18 19:09:51 2008 +0200
43690
43691 pxa_pcmcia: Move compile condition to the Makefile
43692
43693 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43694
43695 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
43696 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43697 Date: Sun May 18 19:09:50 2008 +0200
43698
43699 marabun_pcmcia: Move compile condition to the Makefile
43700
43701 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
43702
43703 commit 6a19c46cae43c16c528eddefae3db97134f1915d
43704 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
43705 Date: Mon Jun 23 13:25:34 2008 +0200
43706
43707 fix non-working mvBL-M7
43708
43709 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
43710
43711 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
43712 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43713
43714 commit 846f1574ddddeda2bc227655e687308695f41cdc
43715 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
43716 Date: Mon Jun 23 11:40:56 2008 +0200
43717
43718 fix system config overwrite @ MPC834x and MPC8313
43719
43720 During 83xx setup the "System I/O configuration register high" gets
43721 overwritten with user defined value if CFG_SICRH is defined.
43722
43723 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
43724 must keep their reset value regardless of configuration.
43725
43726 On my board (using RGMII) those bits are set after reset - yet it's
43727 unclear where they come from.
43728
43729 The patch keeps both bits on MPC834x and MPC8313.
43730
43731 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
43732 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43733
43734 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
43735 Author: Kim Phillips <kim.phillips@freescale.com>
43736 Date: Tue Jun 17 17:45:27 2008 -0500
43737
43738 mpc83xx: move CPU_TYPE_ENTRY over to processor.h
43739
43740 to avoid this:
43741
43742 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
43743 In file included from cpu.c:33:
43744 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
43745
43746 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
43747
43748 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
43749 Author: Stefan Roese <sr@denx.de>
43750 Date: Mon Jun 23 11:15:09 2008 +0200
43751
43752 ppc4xx: Fix problem in gpio_config()
43753
43754 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
43755 left by one. So the additional shift is bogus.
43756
43757 Signed-off-by: Stefan Roese <sr@denx.de>
43758
43759 commit 40777812316fc252c941665c0f60c148fd79d50f
43760 Author: Detlev Zundel <dzu@denx.de>
43761 Date: Fri Jun 20 22:24:05 2008 +0200
43762
43763 fdt: Fix typo in variable name.
43764
43765 Signed-off-by: Detlev Zundel <dzu@denx.de>
43766
43767 commit 5f723a3b98c630bde33de74351f2121691fdef14
43768 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43769 Date: Fri Jun 20 10:41:05 2008 +0200
43770
43771 avr32: Enable SPI flash support on ATNGW100
43772
43773 The ATNGW100 has 8MB DataFlash on board. Give users access to it through
43774 the new SPI flash framework.
43775
43776 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43777
43778 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
43779 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43780 Date: Fri Jun 20 12:44:28 2008 +0200
43781
43782 avr32: Fix SPI portmux initialization
43783
43784 Use the new GPIO manipulation functions to set up the chip select lines,
43785 and make sure both busses use GPIO for chip select control.
43786
43787 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43788
43789 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
43790 Author: Peter Ma <pma@mediamatech.com>
43791 Date: Sun Jun 1 22:59:24 2008 -0700
43792
43793 avr32: Add GPIO manipulation functions
43794
43795 Adds GPIO manipulation functions for AVR32 AP7 platform.
43796
43797 Signed-off-by: Peter Ma <pma@mediamatech.com>
43798 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
43799 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
43800
43801 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
43802 Author: Wolfgang Grandegger <wg@grandegger.com>
43803 Date: Thu Jun 5 13:02:30 2008 +0200
43804
43805 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
43806
43807 This patch is based on the following patch sent a few minutes ago:
43808 "NAND FSL UPM: driver re-write using the hwcontrol callback"
43809 It is untested, of course. Anton, could you please give it a try.
43810
43811 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
43812 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
43813
43814 commit 96026d42fa4e646d28318c0a1438aac4b2017909
43815 Author: Anatolij Gustschin <agust@denx.de>
43816 Date: Thu Jun 12 12:40:11 2008 +0200
43817
43818 Fix 4xx build issue
43819
43820 Building for 4xx doesn't work since commit 4dbdb768:
43821
43822 In file included from 4xx_pcie.c:28:
43823 include/asm/processor.h:971: error: expected ')' before 'ver'
43824 make[1]: *** [4xx_pcie.o] Error 1
43825
43826 This patch fixes the problem.
43827
43828 Signed-off-by: Anatolij Gustschin <agust@denx.de>
43829 Acked-by: Stefan Roese <sr@denx.de>
43830 Acked-by: Kumar Gala <galak@kernel.crashing.org>
43831
43832 commit a036b0443657fe0f4773786de9092251869f08ac
43833 Author: Kumar Gala <galak@kernel.crashing.org>
43834 Date: Thu Jun 19 01:45:50 2008 -0500
43835
43836 MPC8610HPCD: Report board id, board version and fpga version.
43837
43838 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43839
43840 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
43841 Author: Kumar Gala <galak@kernel.crashing.org>
43842 Date: Thu Jun 19 01:45:27 2008 -0500
43843
43844 MPC8641HPCN: Report board id, board version and fpga version.
43845
43846 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43847
43848 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
43849 Author: Stefan Roese <sr@denx.de>
43850 Date: Mon Jun 16 10:40:02 2008 +0200
43851
43852 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
43853
43854 This patch simplifies flash_toggle() (AMD commandset), which is used to
43855 detect if a FLASH device is still busy with erase/program operations. On
43856 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
43857 did not detect the busy state reliably, resulting in non erased sectors
43858 etc. This patch now simplifies this function by "just" comparing the
43859 complete data-word instead of ANDing it with the command-word (0x40)
43860 before the compatison. It is done the same way in the Linux implementation
43861 chip_ready() in cfi_cmdset_0002.c.
43862
43863 Signed-off-by: Stefan Roese <sr@denx.de>
43864
43865 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
43866 Author: Philip Balister <philip@balister.org>
43867 Date: Mon Jun 16 08:58:07 2008 -0400
43868
43869 NAND: Add missing declaration to non-redundant saveenv().
43870
43871 Signed-off-by: Scott Wood <scottwood@freescale.com>
43872
43873 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
43874 Author: Wolfgang Grandegger <wg@grandegger.com>
43875 Date: Mon Jun 2 15:09:55 2008 +0200
43876
43877 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
43878
43879 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
43880 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
43881 Signed-off-by: Scott Wood <scottwood@freescale.com>
43882
43883 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
43884 Author: Stefan Roese <sr@denx.de>
43885 Date: Tue Jun 10 15:34:11 2008 +0200
43886
43887 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
43888
43889 This patch disables the square wave output of the M41T62 RTC used on
43890 Canyonlands & Glacier. Here the explanation:
43891
43892 The serial real-time clock part used in the design is an
43893 STMicro M41T62. This part has a full-time 32KHz square wave
43894 output that is connected to the TmrClk input to the
43895 processor. The default state for this square wave output is
43896 enabled so the output runs continuously when the board is
43897 powered normally and also from the battery. The TmrClk input
43898 to the processor goes to ground when the power is removed
43899 from the board/processor, and therefore the running square
43900 wave output is driving ground which drains the battery quickly.
43901
43902 Signed-off-by: Stefan Roese <sr@denx.de>
43903
43904 commit a94f22f08f280905926219e568568964cb9eeb9d
43905 Author: Andy Fleming <afleming@freescale.com>
43906 Date: Wed Jun 11 18:10:20 2008 -0500
43907
43908 Fix build issue with string.h and linux/string.h
43909
43910 This commit:
43911 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
43912 Author: Wolfgang Denk <wd@denx.de>
43913 Date: Fri Jun 6 14:28:14 2008 +0200
43914
43915 tools/mkimage: fix compiler warnings on some systems.
43916
43917 Broke building on some systems, because the host's string.h was interfering
43918 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if
43919 we're building for the host, so now we only include when building inside
43920 u-boot.
43921
43922 Signed-off-by: Andy Fleming <afleming@freescale.com>
43923
43924 commit 9973e3c614721bbf169882ffc3be266a6611cd60
43925 Author: Becky Bruce <becky.bruce@freescale.com>
43926 Date: Mon Jun 9 16:03:40 2008 -0500
43927
43928 Change initdram() return type to phys_size_t
43929
43930 This patch changes the return type of initdram() from long int to phys_size_t.
43931 This is required for a couple of reasons: long int limits the amount of dram
43932 to 2GB, and u-boot in general is moving over to phys_size_t to represent the
43933 size of physical memory. phys_size_t is defined as an unsigned long on almost
43934 all current platforms.
43935
43936 This patch *only* changes the return type of the initdram function (in
43937 include/common.h, as well as in each board's implementation of initdram). It
43938 does not actually modify the code inside the function on any of the platforms;
43939 platforms which wish to support more than 2GB of DRAM will need to modify
43940 their initdram() function code.
43941
43942 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
43943 MPC8641HPCN.
43944
43945 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
43946
43947 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
43948 Author: Becky Bruce <becky.bruce@freescale.com>
43949 Date: Mon Jun 9 20:37:18 2008 -0500
43950
43951 Change lmb to use phys_size_t/phys_addr_t
43952
43953 This updates the lmb code to use phys_size_t
43954 and phys_addr_t instead of unsigned long. Other code
43955 which interacts with this code, like getenv_bootm_size()
43956 is also updated.
43957
43958 Booted on MPC8641HPCN, build-tested ppc, arm, mips.
43959
43960 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
43961
43962 commit 61b09fc2952dc636017df4e7970e3de132276ba1
43963 Author: Becky Bruce <becky.bruce@freescale.com>
43964 Date: Mon Jun 9 20:37:17 2008 -0500
43965
43966 Change print_size to take phys_size_t
43967
43968 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
43969
43970 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
43971 Author: Becky Bruce <becky.bruce@freescale.com>
43972 Date: Mon Jun 9 20:37:16 2008 -0500
43973
43974 Change bd/gd memsize/ram_size to be phys_size_t.
43975
43976 Currently, both are defined as an unsigned long, but
43977 should be phys_size_t. This should result in no real change,
43978 since phys_size_t is currently an unsigned long for all the
43979 default configs. Also add print_lnum to cmd_bdinfo to deal
43980 with the potentially wider memsize.
43981
43982 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
43983
43984 commit ba04f7010958e88a8910f2a123fee53fdc72e013
43985 Author: Kumar Gala <galak@kernel.crashing.org>
43986 Date: Tue Jun 10 16:16:02 2008 -0500
43987
43988 FSL LAW: Add new interface to use the last free LAW
43989
43990 LAWs have the concept of priority so its useful to be able to allocate
43991 the lowest (highest number) priority. We will end up using this with the
43992 new DDR code.
43993
43994 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
43995
43996 commit 859a86a25c569d3665ff413d1d923394b8a961f3
43997 Author: Kumar Gala <galak@kernel.crashing.org>
43998 Date: Wed Jun 11 00:51:45 2008 -0500
43999
44000 85xx/86xx: Move to dynamic mgmt of LAWs
44001
44002 With the new LAW interface (set_next_law) we can move to letting the
44003 system allocate which LAWs are used for what purpose. This makes life
44004 a bit easier going forward with the new DDR code.
44005
44006 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44007 Signed-off-by: Andy Fleming <afleming@freescale.com>
44008 Acked-by: Jon Loeliger <jdl@freescale.com>
44009 Acked-by: Becky Bruce <becky.bruce@freescale.com>
44010
44011 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
44012 Author: Kumar Gala <galak@kernel.crashing.org>
44013 Date: Wed Jun 11 00:44:10 2008 -0500
44014
44015 FSL LAW: Keep track of LAW allocations
44016
44017 Make it so we keep track of which LAWs have allocated and provide
44018 a function (set_next_law) which can allocate a LAW for us if one is
44019 free.
44020
44021 In the future we will move to doing more "dynamic" LAW allocation
44022 since the majority of users dont really care about what LAW number
44023 they are at.
44024
44025 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
44026
44027 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44028 Signed-off-by: Andy Fleming <afleming@freescale.com>
44029
44030 commit ddde74a159caa6e18b481fec01d40b885aebb566
44031 Author: Kumar Gala <galak@kernel.crashing.org>
44032 Date: Mon Jun 9 22:31:57 2008 -0500
44033
44034 85xx: remove dummy board_early_init_f
44035
44036 A number of board ports have empty version of board_early_init_f
44037 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
44038
44039 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44040
44041 commit 81e56e9af0d43712db8efb843606a8d62eab454f
44042 Author: Kumar Gala <galak@kernel.crashing.org>
44043 Date: Mon Jun 9 18:55:38 2008 -0500
44044
44045 MPC8544DS: Update config.h
44046
44047 * Enable flash progress
44048 * remove CLEAR_LAW0 since we dont really use it
44049
44050 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44051
44052 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
44053 Author: Kumar Gala <galak@kernel.crashing.org>
44054 Date: Mon Jun 9 13:37:24 2008 -0500
44055
44056 85xx: Remove unused and unconfigured memory test code.
44057
44058 Remove unused and unconfigured DDR test code from FSL 85xx boards.
44059 Besides, other common code exists.
44060
44061 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44062
44063 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
44064 Author: Sergei Poselenov <sposelenov@emcraft.com>
44065 Date: Fri Jun 6 15:42:45 2008 +0200
44066
44067 Socrates: Added FPGA base address update in FDT.
44068
44069 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
44070
44071 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
44072 Author: Sergei Poselenov <sposelenov@emcraft.com>
44073 Date: Fri Jun 6 15:42:44 2008 +0200
44074
44075 Socrates: NAND support added. Changed the U-Boot base address and
44076
44077 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
44078
44079 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
44080 Author: Sergei Poselenov <sposelenov@emcraft.com>
44081 Date: Fri Jun 6 15:42:43 2008 +0200
44082
44083 NAND: Added support for 128-bit OOB, adapted
44084
44085 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
44086
44087 commit 31ca0208612f2eb57690110d7c2815953650e47b
44088 Author: Sergei Poselenov <sposelenov@emcraft.com>
44089 Date: Fri Jun 6 15:42:42 2008 +0200
44090
44091 Socrates: added missed file with UPMA configuration data.
44092
44093 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
44094
44095 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
44096 Author: Sergei Poselenov <sposelenov@emcraft.com>
44097 Date: Fri Jun 6 15:42:41 2008 +0200
44098
44099 Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
44100
44101 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
44102
44103 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
44104 Author: Sergei Poselenov <sposelenov@emcraft.com>
44105 Date: Fri Jun 6 15:42:40 2008 +0200
44106
44107 Added the upmconfig() function for 85xx.
44108
44109 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
44110 Signed-off-by: Andy Fleming <afleming@freescale.com>
44111
44112 commit d39e68514ff943930ee692cff3fde03532eb7fec
44113 Author: Sergei Poselenov <sposelenov@emcraft.com>
44114 Date: Fri Jun 6 15:42:39 2008 +0200
44115
44116 Socrates: config file cleanup.
44117
44118 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
44119
44120 commit e8cc3f04b124f757af4528206e60d8eb715ae083
44121 Author: Wolfgang Grandegger <wg@grandegger.com>
44122 Date: Thu Jun 5 13:12:10 2008 +0200
44123
44124 TQM85xx: Change memory map to support Flash memory > 128 MiB
44125
44126 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
44127 memory. The current memory map only supports up to 128 MiB Flash.
44128 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
44129 set, up to 1 GiB flash is supported. To achieve this, the memory
44130 map has to be adjusted in great parts (for example the CCSRBAR is
44131 moved from 0xE0000000 to 0xA0000000).
44132
44133 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
44134 memory map also has to be considered in the kernel (changed
44135 CCSRBAR address, changed PCI IO base address, ...). Please use
44136 an appropriate Flat Device Tree blob (tqm8548.dtb).
44137
44138 Signed-off-by: Martin Krause <martin.krause@tqs.de>
44139 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44140
44141 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
44142 Author: Wolfgang Grandegger <wg@grandegger.com>
44143 Date: Thu Jun 5 13:12:09 2008 +0200
44144
44145 TQM85xx: NAND support via local bus UPMB
44146
44147 This patch adds support for NAND FLASH on the TQM8548. It is disabled by
44148 default and can be enabled for the TQM8548 modules. It is now based on
44149 the re-written FSL NAND UPM driver. A patch has been posted earlier today
44150 with the subject:
44151
44152 "NAND FSL UPM: driver re-write using the hwcontrol callback"
44153
44154 Note that the R/B pin is not supported by that module requiring to use
44155 the specified maximum delay time.
44156
44157 Note: With NAND support enabled the size of the U-Boot image exceeds
44158 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
44159 doubling the image size :-(.
44160
44161 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
44162 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44163
44164 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
44165 Author: Wolfgang Grandegger <wg@grandegger.com>
44166 Date: Thu Jun 5 13:12:08 2008 +0200
44167
44168 TQM8548: PCI express support
44169
44170 This patch adds support for PCI express cards. The board support
44171 now uses common FSL PCI init code, for both, PCI and PCIe on all
44172 TQM85xx modules.
44173
44174 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
44175 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44176
44177 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
44178 Author: Wolfgang Grandegger <wg@grandegger.com>
44179 Date: Thu Jun 5 13:12:07 2008 +0200
44180
44181 TQM8548: Basic support for the TQM8548 modules
44182
44183 This patch adds basic support for the TQM8548 module from TQ-Components
44184 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
44185 eTSEC 3 and 4
44186
44187 Furthermore Flash buffer write has been enabled to speed up output to
44188 the Flash by approx. a factor of 10.
44189
44190 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
44191 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44192
44193 commit 25991353204c78b094c3c1fec90182dcd607ab8f
44194 Author: Wolfgang Grandegger <wg@grandegger.com>
44195 Date: Thu Jun 5 13:12:06 2008 +0200
44196
44197 TQM85xx: Support for Flat Device Tree
44198
44199 This patch adds support for Linux kernels using the Flat Device Tree.
44200 It also re-defines the default environment settings for booting Linux
44201 with the FDT blob.
44202
44203 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44204
44205 commit d9ee843d54c54776e1fdb86336ce554906a87331
44206 Author: Wolfgang Grandegger <wg@grandegger.com>
44207 Date: Thu Jun 5 13:12:05 2008 +0200
44208
44209 TQM85xx: Support for Intel 82527 compatible CAN controller
44210
44211 This patch adds initialization of the UPMC RAM to support up to two
44212 Intel 82527 compatible CAN controller on the TQM85xx modules.
44213
44214 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
44215 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44216
44217 commit 518d5cfe72916323c746af1647764459914f555f
44218 Author: Wolfgang Grandegger <wg@grandegger.com>
44219 Date: Thu Jun 5 13:12:04 2008 +0200
44220
44221 TQM85xx: Bugfix in the SDRAM initialisation
44222
44223 The CS0_BNDS register is now set according to the detected
44224 memory size.
44225
44226 Signed-off-by Martin Krause <martin.krause@tqs.de>
44227
44228 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
44229 Author: Wolfgang Grandegger <wg@grandegger.com>
44230 Date: Thu Jun 5 13:12:03 2008 +0200
44231
44232 TQM85xx: Fix chip select configuration for second FLASH bank
44233
44234 This patch fixes the re-calculation of the automatic chip select
44235 configuration for boards with two populated FLASH banks.
44236
44237 Signed-off-by: Martin Krause <martin.krause@tqs.de>
44238
44239 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
44240 Author: Wolfgang Grandegger <wg@grandegger.com>
44241 Date: Thu Jun 5 13:12:02 2008 +0200
44242
44243 TQM85xx: Support for Spansion 'N' type flashes added
44244
44245 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
44246 than the formerly used 'M' types (S29GLxxxM series), so the flash layout
44247 needs to be changed -> new start address of the environment. The macro
44248 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
44249 defined for boards with 'N' type flashes.
44250
44251 Signed-off-by: Martin Krause <martin.krause@tqs.de>
44252 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44253
44254 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
44255 Author: Wolfgang Grandegger <wg@grandegger.com>
44256 Date: Thu Jun 5 13:12:01 2008 +0200
44257
44258 TQM85xx: Fix CPM port pin configuration
44259
44260 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
44261 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
44262 as serial interface anyway. Worse, on some board variants configuring the
44263 pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
44264
44265 Signed-off-by: Martin Krause <martin.krause@tqs.de>
44266
44267 commit b99ba1679e8cd51b023e67098c89e606e47137d2
44268 Author: Wolfgang Grandegger <wg@grandegger.com>
44269 Date: Thu Jun 5 13:12:00 2008 +0200
44270
44271 TQM85xx: Various coding style fixes
44272
44273 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44274
44275 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
44276 Author: Gerald Van Baren <vanbaren@cideas.com>
44277 Date: Tue Jun 10 22:15:58 2008 -0400
44278
44279 libfdt: Move the working_fdt pointer to cmd_fdt.c
44280
44281 The working_fdt pointer was declared in common/fdt_support.c but was
44282 not used there. Move it to common/cmd_fdt.c where it is used (it is
44283 also used in lib_ppc/bootm.c).
44284
44285 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44286
44287 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
44288 Author: Kim Phillips <kim.phillips@freescale.com>
44289 Date: Tue Jun 10 11:06:17 2008 -0500
44290
44291 fdt: unshadow global working fdt variable
44292
44293 differentiate with local variables of the same name by renaming the
44294 global 'fdt' variable 'working_fdt'.
44295
44296 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44297
44298 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
44299 Author: Andy Fleming <afleming@freescale.com>
44300 Date: Tue Jun 10 18:49:34 2008 -0500
44301
44302 socrates: Fix PCI clk fix patch
44303
44304 The submitted patch seems to have been more up-to-date, but an older patch was
44305 already in the repository. This patch encompasses the differences
44306
44307 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
44308
44309 Signed-off-by: Andy Fleming <afleming@freescale.com>
44310
44311 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
44312 Author: Wolfgang Grandegger <wg@grandegger.com>
44313 Date: Thu Jun 5 13:02:29 2008 +0200
44314
44315 NAND FSL UPM: driver re-write using the hwcontrol callback
44316
44317 This is a re-write of the NAND FSL UPM driver using the more universal
44318 hwcontrol callback (instead of the cmdfunc callback). Here is a brief
44319 list of furher modifications:
44320
44321 - For the time being, the UPM setup writing the UPM array has been
44322 removed from the driver and must now be done by the board specific
44323 code.
44324
44325 - The bus width definition in "struct fsl_upm_nand" is now in bits to
44326 comply with the corresponding Linux driver and 8, 16 and 32 bit
44327 accesses are supported.
44328
44329 - chip->dev_read is only set if fun->dev_ready != NULL, which is
44330 required for boards not connecting the R/B pin.
44331
44332 - A few issue have been fixed with MxMR bit manipulation like in the
44333 corresponding Linux driver.
44334
44335 Note: I think the "io_addr" field of "struct fsl_upm" could be removed
44336 as well, because the address is already determined by
44337 "nand->IO_ADDR_[RW]", but I'm not 100% sure.
44338
44339 This patch has been tested on a TQM8548 modules with the NAND chip
44340 Micron MT29F8G08FABWP.
44341
44342 This patch is based on the following patches posted to this list a few
44343 minutes ago:
44344
44345 PPC: add accessor macros to clear and set bits in one shot
44346 83xx/85xx/86xx: add more MxMR local bus definitions
44347
44348 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44349 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44350
44351 commit 6beecfbb542992eede5831240cd58678274683a9
44352 Author: Wolfgang Grandegger <wg@grandegger.com>
44353 Date: Thu Jun 5 13:11:59 2008 +0200
44354
44355 MPC85xx: Beautify boot output of L2 cache configuration
44356
44357 The boot output is now aligned poperly with other boot output
44358 lines, e.g.:
44359
44360 FLASH: 128 MB
44361 L2: 512 KB enabled
44362
44363 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44364
44365 commit 398415114f0a705163a14543e9fef03f734b1ffa
44366 Author: Wolfgang Grandegger <wg@grandegger.com>
44367 Date: Wed Jun 4 12:45:22 2008 +0200
44368
44369 PPC: add accessor macros to clear and set bits in one shot
44370
44371 PPC: add accessor macros to clear and set bits in one shot
44372
44373 This patch adds macros from linux/include/asm-powerpc/io.h to clear and
44374 set bits in one shot using the in_be32, out_be32, etc. accessor functions.
44375 They are very handy to manipulate bits it I/O registers.
44376
44377 This patch is required for my forthcoming FSL NAND UPM driver re-write and
44378 the support for the TQM8548 module.
44379
44380 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44381
44382 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
44383 Author: Wolfgang Grandegger <wg@grandegger.com>
44384 Date: Wed Jun 4 13:52:17 2008 +0200
44385
44386 TQM: move TQM boards to board/tqc
44387
44388 Move all TQM board directories to the vendor specific directory "tqc"
44389 for modules from TQ-Components GmbH (http://www.tqc.de).
44390
44391 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44392
44393 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
44394 Author: Wolfgang Grandegger <wg@grandegger.com>
44395 Date: Mon Jun 2 12:09:30 2008 +0200
44396
44397 83xx/85xx/86xx: add more MxMR local bus definitions
44398
44399 83xx/85xx/86xx: add more MxMR local bus definitions
44400
44401 This patch adds more macro definitions for the UPM Machine Mode Registers
44402 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
44403 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
44404 required for my forthcoming FSL NAND UPM driver re-write and the support
44405 for the TQM8548 module.
44406
44407 This patch is based on the following two patches from Anton Vorontsov:
44408
44409 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
44410 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
44411
44412 I leave coding style violation fixes, code beautification and name
44413 corrections to somebody else ;-(.
44414
44415 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
44416
44417 commit c8c5fc266e4499e283c293ccb972863156aa4134
44418 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44419 Date: Thu May 29 18:14:56 2008 +0400
44420
44421 83xx/85xx: further localbus cleanups
44422
44423 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
44424 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
44425
44426 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44427
44428 commit 42dbd667c88d496882d53e22656e89b654205492
44429 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44430 Date: Wed May 28 18:20:15 2008 +0400
44431
44432 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
44433
44434 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
44435 use it on MPC85xx and MPC86xx processors.
44436
44437 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44438
44439 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
44440 Author: Kumar Gala <galak@kernel.crashing.org>
44441 Date: Thu May 29 11:22:06 2008 -0500
44442
44443 85xx: Add setting of cache props in the device tree.
44444
44445 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44446
44447 commit 4dbdb7681e243431530df0725627192a0c4aefda
44448 Author: Kumar Gala <galak@kernel.crashing.org>
44449 Date: Tue Jun 10 16:53:46 2008 -0500
44450
44451 85xx: expose cpu identification
44452
44453 The current cpu identification code is used just to return the name
44454 of the processor at boot. There are some other locations that the name
44455 is useful (device tree setup). Expose the functionality to other bits
44456 of code.
44457
44458 Also, drop the 'E' suffix and add it on by looking at the SVR version
44459 when we print this out. This is mainly to allow the most flexible use
44460 of the name. The device tree code tends to not care about the 'E' suffix.
44461
44462 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44463
44464 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
44465 Author: Kim Phillips <kim.phillips@freescale.com>
44466 Date: Tue Jun 10 13:25:24 2008 -0500
44467
44468 mpc83xx: MVBLM7: minor build fixups
44469
44470 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44471
44472 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
44473 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44474 Date: Tue Jun 10 09:14:05 2008 +0200
44475
44476 add MPC8343 based board mvBlueLYNX-M7 (board+make files)
44477
44478 Add MPC8343 based board mvBlueLYNX-M7.
44479 It's a single board stereo camera system.
44480 Please read doc/README.mvblm7 for details.
44481
44482 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44483 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44484
44485 commit c005b93925ba49f07da2aa748527996d927e172f
44486 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
44487 Date: Tue Jun 10 09:13:16 2008 +0200
44488
44489 add MPC8343 based board mvBlueLYNX-M7 (doc+config)
44490
44491 Add MPC8343 based board mvBlueLYNX-M7.
44492 It's a single board stereo camera system.
44493 Please read doc/README.mvblm7 for details.
44494
44495 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
44496 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44497
44498 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
44499 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44500 Date: Thu May 29 18:14:56 2008 +0400
44501
44502 83xx/85xx: further localbus cleanups
44503
44504 move the BRx_* and ORx_* left behind in mpc85xx.h
44505
44506 The same is needed for mpc8xx.h and mpc8260.h (defines are almost
44507 the same, just few differences which needs some attention though).
44508
44509 But the bad news for mpc8xx and mpc8260 is that there are a lot of users
44510 of these defines. So this cleanup I'll leave for the "better times".
44511
44512 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44513 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44514
44515 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
44516 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
44517 Date: Wed May 28 18:20:15 2008 +0400
44518
44519 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
44520
44521 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
44522 use it on MPC85xx and MPC86xx processors.
44523
44524 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
44525 Acked-by: Andy Fleming <afleming@freescale.com>
44526 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44527
44528 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
44529 Author: Tor Krill <tor@excito.com>
44530 Date: Mon Jun 2 15:09:30 2008 +0200
44531
44532 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
44533
44534 Signed-off-by: Tor Krill <tor@excito.com>
44535 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
44536
44537 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
44538 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44539 Date: Mon Jun 9 23:37:44 2008 +0900
44540
44541 net: Conditional COBJS inclusion of network drivers
44542
44543 Replace COBJS-y with appropriate driver config names.
44544
44545 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44546 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44547
44548 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
44549 Author: Gerald Van Baren <vanbaren@cideas.com>
44550 Date: Mon Jun 9 21:02:17 2008 -0400
44551
44552 Use strncmp() for the fdt command
44553
44554 Cleaner than doing multiple conditionals on characters.
44555
44556 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44557
44558 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
44559 Author: Gerald Van Baren <vanbaren@cideas.com>
44560 Date: Sat Jun 7 12:25:05 2008 -0400
44561
44562 The fdt boardsetup command criteria was not unique
44563
44564 It was checking just for "b", which is not unique with respect to the
44565 "boot" command. Change to check for "boa"[rdsetup].
44566
44567 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44568
44569 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
44570 Author: David Gibson <david@gibson.dropbear.id.au>
44571 Date: Tue May 20 17:19:11 2008 +1000
44572
44573 libfdt: Several cleanups to parameter checking
44574
44575 This patch makes a couple of small cleanups to parameter checking of
44576 libfdt functions.
44577
44578 - In several functions which take a node offset, we use an
44579 idiom involving fdt_next_tag() first to check that we have indeed been
44580 given a node offset. This patch adds a helper function
44581 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
44582
44583 - In fdt_rw.c in several places we have the expanded version
44584 of the RW_CHECK_HEADER() macro for no particular reason. This patch
44585 replaces those instances with an invocation of the macro; that's what
44586 it's for.
44587
44588 - In fdt_sw.c we rename the check_header_sw() function to
44589 sw_check_header() to match the analgous function in fdt_rw.c, and we
44590 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
44591 functions in fdt_rw.c
44592
44593 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
44594
44595 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
44596 Author: Gerald Van Baren <vanbaren@cideas.com>
44597 Date: Tue Jun 3 20:34:45 2008 -0400
44598
44599 Remove the deprecated CONFIG_OF_FLAT_TREE
44600
44601 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is
44602 cleaner, has better functionality, and is better supported.
44603
44604 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44605
44606 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
44607 Author: Gerald Van Baren <vanbaren@cideas.com>
44608 Date: Tue Jun 3 20:26:29 2008 -0400
44609
44610 Change the stxxst to CONFIG_OF_LIBFDT
44611
44612 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
44613 to CONFIG_OF_LIBFDT.
44614
44615 WARNING: It appears that this board lost its ability to boot via a
44616 flattened device tree prior to this changeset.
44617
44618 WARNING: This conversion was untested because I do not have a board to
44619 test it on.
44620
44621 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44622
44623 commit 589c04271d129729a8b01391453851ab9cc4069c
44624 Author: Gerald Van Baren <vanbaren@cideas.com>
44625 Date: Tue Jun 3 20:24:58 2008 -0400
44626
44627 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
44628
44629 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
44630 to CONFIG_OF_LIBFDT.
44631
44632 WARNING: This conversion is untested because I do not have a board to
44633 test it on.
44634
44635 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
44636 /aliases/ethernet1 property for the ethernet to work.
44637
44638 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
44639
44640 commit ee1e35bede91debc8bff9b02f75574486033b652
44641 Author: Kumar Gala <galak@kernel.crashing.org>
44642 Date: Thu May 29 01:21:24 2008 -0500
44643
44644 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
44645
44646 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44647
44648 commit 3b9519fc50802436e417c839e69df7b2016cade5
44649 Author: Becky Bruce <becky.bruce@freescale.com>
44650 Date: Wed May 14 13:10:04 2008 -0500
44651
44652 MPC85xx: Change traps.c to not reference non-addressable memory
44653
44654 Currently, END_OF_RAM is used by the trap code to determine if
44655 we should attempt to access the stack pointer or not. However,
44656 on systems with a lot of RAM, only a subset of the RAM is
44657 guaranteed to be mapped in and accessible. Change END_OF_RAM
44658 to use get_effective_memsize() instead of using the raw ram
44659 size out of the bd.
44660
44661 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
44662
44663 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
44664 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44665 Date: Mon Jun 9 13:39:57 2008 +0900
44666
44667 sh: Renesas Solutions SH7763RDP board support
44668
44669 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
44670 In this patch, support SCIF, NOR Flash, and Ethernet.
44671
44672 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44673 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44674
44675 commit 60179098a95eaa972007d7ec58e4c1588029720f
44676 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44677 Date: Fri Jun 6 16:24:13 2008 +0900
44678
44679 sh: Add support Renesas SH7763
44680
44681 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
44682 This patch supprts CPU register's header file.
44683
44684 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44685 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44686
44687 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
44688 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44689 Date: Fri Jun 6 16:16:08 2008 +0900
44690
44691 sh: SH7763 SCIF support
44692
44693 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
44694 but only SCIF2 is different. This patch work all SCIF channel.
44695
44696 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
44697 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
44698
44699 commit 79b51ff8205f0354d5300570614c1d2db499679c
44700 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44701 Date: Sat Jun 7 20:51:59 2008 +0900
44702
44703 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
44704
44705 Also get rid of some #ifdefs in *.c files.
44706
44707 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44708
44709 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
44710 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44711 Date: Sat Jun 7 20:51:56 2008 +0900
44712
44713 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
44714
44715 CONFIG_SOC_AU1X00
44716
44717 Common Alchemy Au1x00 stuff. All Alchemy processor based machines
44718 need to have this config as a system type specifier.
44719
44720 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
44721 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
44722
44723 Machine type specifiers. Each port should have one of aboves.
44724
44725 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44726
44727 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
44728 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
44729 Date: Fri May 30 16:05:28 2008 -0400
44730
44731 env_nand.c: Added bad block management for environment variables
44732
44733 Modified to check for bad blocks and to skipping over them when
44734 CFG_ENV_RANGE has been defined.
44735 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
44736 flash block size.
44737
44738 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
44739 Signed-off-by: Scott Wood <scottwood@freescale.com>
44740
44741 commit 279726bd00558e80263d44581c44167625b7fb9a
44742 Author: Becky Bruce <becky.bruce@freescale.com>
44743 Date: Wed May 14 13:09:58 2008 -0500
44744
44745 MPC86xx: Change traps.c to not reference non-addressable memory
44746
44747 Currently, END_OF_RAM is used by the trap code to determine if
44748 we should attempt to access the stack pointer or not. However,
44749 on systems with a lot of RAM, only a subset of the RAM is
44750 guaranteed to be mapped in and accessible. Change END_OF_RAM
44751 to use get_effective_memsize() instead of using the raw ram
44752 size out of the bd to prevent us from trying to access
44753 non-mapped memory.
44754
44755 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
44756
44757 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
44758 Author: Wolfgang Denk <wd@denx.de>
44759 Date: Fri Jun 6 14:28:14 2008 +0200
44760
44761 tools/mkimage: fix compiler warnings on some systems.
44762
44763 Signed-off-by: Wolfgang Denk <wd@denx.de>
44764
44765 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
44766 Author: Stefan Roese <sr@denx.de>
44767 Date: Fri Jun 6 16:10:41 2008 +0200
44768
44769 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
44770
44771 We use upper case letters for the AMCC processor defines (like
44772 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
44773 not CONFIG_440SPe. This patch fixes the last misspelled config options.
44774
44775 Signed-off-by: Stefan Roese <sr@denx.de>
44776
44777 commit 72675dc6c06a48846d180106161d49dd714383cc
44778 Author: Stefan Roese <sr@denx.de>
44779 Date: Fri Jun 6 15:55:21 2008 +0200
44780
44781 ppc4xx: Unify AMCC's board config files (part 3/3)
44782
44783 This patch series unifies the AMCC eval board ports by introducing
44784 a common include header for all AMCC eval boards:
44785
44786 include/configs/amcc-common.h
44787
44788 This header now includes all common configuration options/defines which
44789 are removed from the board specific headers.
44790
44791 The reason for this is ease of maintenance and unified look and feel
44792 of all AMCC boards.
44793
44794 Signed-off-by: Stefan Roese <sr@denx.de>
44795
44796 commit 490f204096d6e2c9940f67816f154a8125bab116
44797 Author: Stefan Roese <sr@denx.de>
44798 Date: Fri Jun 6 15:55:03 2008 +0200
44799
44800 ppc4xx: Unify AMCC's board config files (part 2/3)
44801
44802 This patch series unifies the AMCC eval board ports by introducing
44803 a common include header for all AMCC eval boards:
44804
44805 include/configs/amcc-common.h
44806
44807 This header now includes all common configuration options/defines which
44808 are removed from the board specific headers.
44809
44810 The reason for this is ease of maintenance and unified look and feel
44811 of all AMCC boards.
44812
44813 Signed-off-by: Stefan Roese <sr@denx.de>
44814
44815 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
44816 Author: Stefan Roese <sr@denx.de>
44817 Date: Fri Jun 6 15:54:31 2008 +0200
44818
44819 ppc4xx: Unify AMCC's board config files (part 1/3)
44820
44821 This patch series unifies the AMCC eval board ports by introducing
44822 a common include header for all AMCC eval boards:
44823
44824 include/configs/amcc-common.h
44825
44826 This header now includes all common configuration options/defines which
44827 are removed from the board specific headers.
44828
44829 The reason for this is ease of maintenance and unified look and feel
44830 of all AMCC boards.
44831
44832 Signed-off-by: Stefan Roese <sr@denx.de>
44833
44834 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
44835 Author: Remy Bohmer <linux@bohmer.net>
44836 Date: Thu Jun 5 13:03:36 2008 +0200
44837
44838 DM9000 fix status check fail 0x6d error for trizeps board
44839
44840 According to the Application Notes of the DM9000, only the 2 bits 0:1 of
44841 the status byte need to be checked to identify a valid packet in the fifo
44842
44843 But, The several different Application Notes do not all speak the same
44844 language on these bits. They do not disagree, but only 1 Application Note
44845 noted explicitly that only these 2 bits need to be checked.
44846 Even the datasheets do not mention anything about these 2 bits.
44847
44848 Because the old code, and the kernel check the whole byte, I left this piece
44849 untouched.
44850
44851 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
44852 it should work.
44853
44854 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
44855 in the fifo) is much shorter now, compared to the older U-boot driver code,
44856 so that we can maybe run into a hardware condition now that was never seen
44857 before, or maybe was seen very unfrequently.
44858
44859 Additionaly added a cleanup of a stack variable.
44860
44861 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44862 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44863
44864 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
44865 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44866 Date: Thu Jun 5 22:29:00 2008 +0900
44867
44868 [MIPS] Update <asm/addrspace.h> header
44869
44870 - Fix traditional KSEG names
44871 - Replace PHYSADDR with CPHYSADDR
44872
44873 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44874
44875 commit f0d5a6f060d00358b85c62a921a423ea8df71184
44876 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44877 Date: Thu Jun 5 22:29:00 2008 +0900
44878
44879 [MIPS] mips_config.mk: Misc fixes
44880
44881 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
44882 - Modify comments
44883
44884 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44885
44886 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
44887 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44888 Date: Thu Jun 5 22:29:00 2008 +0900
44889
44890 [MIPS] Kill unused <version.h> inclusions
44891
44892 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44893
44894 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
44895 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44896 Date: Thu Jun 5 22:29:00 2008 +0900
44897
44898 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
44899
44900 MIPS port has two problems in timer routines. One is now we assume CFG_HZ
44901 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
44902 in the U-Boot system.
44903
44904 The other is we don't have a proper time management counter like timestamp
44905 other ARCHs have. We need the 32-bit millisecond clock counter.
44906
44907 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
44908 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
44909 of calculated CP0 counter cycles in a CFG_HZ.
44910
44911 STRATEGY:
44912
44913 * Fix improper CFG_HZ value to have 1000
44914
44915 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
44916
44917 * timer_init: initialize timestamp and set up the first timer expiration.
44918 Note that we don't need to initialize CP0 count/compare registers here
44919 as they have been already zeroed out on the system reset. Leave them as
44920 they are.
44921
44922 * get_timer: calculate how many timestamps have been passed, then return
44923 base-relative timestamp. Make sure we can easily count missed timestamps
44924 regardless of CP0 count/compare value.
44925
44926 * get_ticks: return the current timestamp, that is get_timer(0).
44927
44928 Most parts are from good old Linux v2.6.16 kernel.
44929
44930 v2:
44931 - Remove FIXME comments as they turned out to be trivial.
44932 - Use CP0 compare register as a global variable for expirelo.
44933 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
44934 instead.
44935
44936 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44937
44938 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
44939 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44940 Date: Thu Jun 5 22:29:00 2008 +0900
44941
44942 [MIPS] lib_mips/time.c: Fix udelay
44943
44944 What we have to do is just to wait for given micro-seconds. No need to
44945 take into account current time, get_timer and CFG_HZ.
44946
44947 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44948
44949 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
44950 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44951 Date: Thu Jun 5 22:28:59 2008 +0900
44952
44953 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
44954
44955 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
44956 This patch replaces mips_{compare,count}_set and mips_count_get with
44957 existing macros.
44958
44959 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44960
44961 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
44962 Author: Remy Bohmer <linux@bohmer.net>
44963 Date: Tue Jun 3 15:48:17 2008 +0200
44964
44965 Get rid of annoying/superfluous bad-checksum warning message
44966
44967 U-boot can complain a lot about 'checksum bad' when it is attached to the network.
44968 It is annoying for ordinary users who start to doubt the network connection
44969 in general when they see messages like this.
44970
44971 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
44972 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
44973 now before checking the checksum.
44974
44975 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44976 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44977
44978 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
44979 Author: Remy Bohmer <linux@bohmer.net>
44980 Date: Wed Jun 4 10:47:25 2008 +0200
44981
44982 Fix order for reading rx-status registers in 32bit mode of DM9000
44983
44984 A last minute cleanup before submitting the DM9000A patch series yesterday introduced
44985 a bug in reading the rx-status registers in 32bit mode only.
44986 This patch repairs this.
44987
44988 Signed-off-by: Remy Bohmer <linux@bohmer.net>
44989 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
44990
44991 commit 98291e2e689096420465074cce926b226d2e71b4
44992 Author: Remy Bohmer <linux@bohmer.net>
44993 Date: Tue Jun 3 15:26:26 2008 +0200
44994
44995 DM9000: Some minor code cleanups
44996
44997 Some lines of the U-boot DM9000x driver are longer than 80 characters, or
44998 need some other minor cleanup.
44999
45000 Signed-off-by: Remy Bohmer <linux@bohmer.net>
45001 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45002
45003 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
45004 Author: Remy Bohmer <linux@bohmer.net>
45005 Date: Tue Jun 3 15:26:25 2008 +0200
45006
45007 DM9000: Make driver work properly for DM9000A
45008
45009 The DM9000A network controller does not work with the U-boot DM9000x driver.
45010 Analysis showed that many incoming packets are lost.
45011
45012 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
45013 check for a valid rx packet be done on the interrupt status register, not
45014 directly by performing the dummy read and the rx status check as is currently
45015 the case in the u-boot driver.
45016
45017 When the recommended poll is done as suggested the driver starts working
45018 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
45019 can be more than 1 package in the fifo at the same time.
45020
45021 The driver must perform the rx-status check in a loop and read and handle all
45022 packages until there is no more left _after_ the interrupt RX flag is set.
45023
45024 This change has been tested with DM9000A, DM9000E, DM9000EP.
45025
45026 Signed-off-by: Remy Bohmer <linux@bohmer.net>
45027 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45028
45029 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
45030 Author: Remy Bohmer <linux@bohmer.net>
45031 Date: Tue Jun 3 15:26:24 2008 +0200
45032
45033 DM9000: Improve eth_reset() routine
45034
45035 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
45036 reset procedure must be done twice to properly reset the DM9000 by means of software.
45037 This errata is not needed anymore for the DM9000A, but it does not bother it.
45038
45039 This change has been tested with DM9000A, DM9000E, DM9000EP.
45040
45041 Signed-off-by: Remy Bohmer <linux@bohmer.net>
45042 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45043
45044 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
45045 Author: Remy Bohmer <linux@bohmer.net>
45046 Date: Tue Jun 3 15:26:23 2008 +0200
45047
45048 DM9000: improve eth_send() routine
45049
45050 The eth_send routine of the U-boot DM9000x driver does not match the
45051 DM9000 or DM9000A application notes/programming guides.
45052
45053 This change improves the stability of the DM9000A network controller.
45054
45055 This change has been tested with DM9000A, DM9000E, DM9000EP.
45056
45057 Signed-off-by: Remy Bohmer <linux@bohmer.net>
45058 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45059
45060 commit 134e266253c02a7832560da59d394989c4f64453
45061 Author: Remy Bohmer <linux@bohmer.net>
45062 Date: Tue Jun 3 15:26:22 2008 +0200
45063
45064 DM9000: repair debug logging
45065
45066 It seems that the debugging code of the DM9000x driver in U-boot has not been
45067 compiled for a long time, because it cannot compile...
45068
45069 Also rearranged some loglines to get more useful info while debugging.
45070
45071 Signed-off-by: Remy Bohmer <linux@bohmer.net>
45072 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45073
45074 commit a101361bfe23c120321e45d114c0603b8e0763e9
45075 Author: Remy Bohmer <linux@bohmer.net>
45076 Date: Tue Jun 3 15:26:21 2008 +0200
45077
45078 DM9000: Add data bus-width auto detection.
45079
45080 The U-boot DM9000x driver contains a compile time bus-width definition for
45081 the databus connected to the network controller.
45082
45083 This compile check makes the code unclear, inflexible and is unneccessary.
45084 It can be asked to the network controller what its bus-width is by reading bits
45085 6 and 7 of the interrupt status register.
45086
45087 The linux kernel already uses a runtime mechanism to determine this bus-width,
45088 so the implementation below looks somewhat like that implementation.
45089
45090 This change has been tested with DM9000A, DM9000E, DM9000EP.
45091
45092 Signed-off-by: Remy Bohmer <linux@bohmer.net>
45093 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45094
45095 commit 63a0afa0c32e5f4ea98a9439542870072437404d
45096 Author: Stefan Roese <sr@denx.de>
45097 Date: Wed Jun 4 19:19:20 2008 +0200
45098
45099 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
45100
45101 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
45102 introduced by the commit:
45103
45104 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
45105
45106 With this patch SDRAM will get initialized again and booting from NAND
45107 is working again.
45108
45109 Signed-off-by: Stefan Roese <sr@denx.de>
45110 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
45111
45112 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
45113 Author: Wolfgang Denk <wd@denx.de>
45114 Date: Tue May 27 14:19:30 2008 +0200
45115
45116 Socrates: Fix PCI bus frequency report
45117
45118 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
45119
45120 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
45121 Author: Tor Krill <tor@excito.com>
45122 Date: Thu May 29 11:10:30 2008 +0200
45123
45124 Fix incorrect switch for IF_TYPE in part.c
45125
45126 Use correct field in block_dev_desc_t when writing interface type in
45127 dev_print. Error introduced in 574b3195.
45128
45129 Also added fix from Martin Krause
45130
45131 Signed-off-by: Tor Krill <tor@excito.com>
45132
45133 commit b64b8a0bd310935b70af69ac970952f2b364ae56
45134 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
45135 Date: Tue May 27 10:25:39 2008 +0200
45136
45137 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
45138
45139 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
45140
45141 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
45142 Author: Peter Tyser <ptyser@xes-inc.com>
45143 Date: Thu May 22 18:56:52 2008 -0500
45144
45145 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
45146
45147 Removed unneeded command line history initialization. Also, the original
45148 code would access the 'initted' variable before relocation to SDRAM
45149 which resulted in erratic behavior since the bss is not initialized when
45150 executing from flash.
45151
45152 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
45153
45154 commit 22f371b63038a4ecab04068877c1089e51a01ba1
45155 Author: Grant Erickson <gerickson@nuovations.com>
45156 Date: Wed May 21 13:28:30 2008 -0700
45157
45158 PPC4xx: Simplified post_word_{load, store}
45159
45160 This patch simplifies post_word_{load,store} by using the preprocessor
45161 to eliminate redundant, copy-and-pasted code.
45162
45163 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
45164
45165 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
45166 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
45167 Date: Wed May 7 21:25:33 2008 +0400
45168
45169 cfi_flash: enable M18 flash chips family support.
45170
45171 Added new command set ID. Buffered write command processing is changed
45172 in order to support M18 flash chips family.
45173
45174 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
45175 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
45176
45177 commit 93c56f212ccdadc182018f0769cb284426b88f1d
45178 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
45179 Date: Wed May 7 21:24:44 2008 +0400
45180
45181 cfi_flash: support of long cmd in U-boot.
45182
45183 Some NOR flash chips needs support of commands with length grether than max
45184 value size of uchar. For example all M18 family chips use 0x1ff command in
45185 buffered write mode as value of program loops count.
45186
45187 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
45188 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
45189
45190 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
45191 Author: Stefan Roese <sr@denx.de>
45192 Date: Fri May 16 11:06:06 2008 +0200
45193
45194 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
45195
45196 On AD7414 the first value upon bootup is not read correctly.
45197 This is most likely because of the 800ms update time of the
45198 temp register in normal update mode. To get current values
45199 each time we issue the "dtt" command including upon powerup
45200 we switch into one-short mode.
45201
45202 This patch fixes the problem on AD7414 equipped boards (Sequoia,
45203 Canyonlands etc), that temp value printed in the bootup log was
45204 incorrect.
45205
45206 Signed-off-by: Stefan Roese <sr@denx.de>
45207
45208 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
45209 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45210 Date: Fri May 30 16:55:06 2008 +0200
45211
45212 ppc4xx: Cleanup CPCI405 variant's config file
45213
45214 This patch removes some dead code from CPCI405 board's
45215 config files. JFFS2 support is also removed. It's not used and
45216 CPCI4052 does not build anymore without some size reduction.
45217
45218 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
45219
45220 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
45221 Author: Kenneth Johansson <kenneth@southpole.se>
45222 Date: Thu May 29 16:32:33 2008 +0200
45223
45224 Remove shell variable UNDEF_SYM.
45225
45226 UNDEF_SYM is a shell variable in the main Makefile used to force the
45227 linker to add all u-boot commands to the final image. It has no use here.
45228
45229 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
45230
45231 commit 8c66497e06bf803489c589df58ee591d71033274
45232 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45233 Date: Fri May 16 11:10:35 2008 +0200
45234
45235 Add support for environment in SPI flash
45236
45237 This is pretty incomplete...it doesn't handle reading the environment
45238 before relocation, it doesn't support redundant environment, and it
45239 doesn't support embedded environment. But apart from that, it does
45240 seem to work.
45241
45242 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45243
45244 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
45245 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45246 Date: Fri May 16 11:10:34 2008 +0200
45247
45248 SPI Flash: Add "sf" command
45249
45250 This adds a new command, "sf" which can be used to manipulate SPI
45251 flash. Currently, initialization, reading, writing and erasing is
45252 supported.
45253
45254 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45255
45256 commit d25ce7d24cc0f93881559f4009175ea305af65e8
45257 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45258 Date: Fri May 16 11:10:33 2008 +0200
45259
45260 SPI Flash subsystem
45261
45262 This adds a new SPI flash subsystem.
45263
45264 Currently, only AT45 DataFlash in non-power-of-two mode is supported,
45265 but some preliminary support for other flash types is in place as
45266 well.
45267
45268 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45269
45270 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
45271 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
45272 Date: Fri May 16 11:10:32 2008 +0200
45273
45274 atmel_spi: Driver for the Atmel SPI controller
45275
45276 This adds a driver for the SPI controller found on most AT91 and AVR32
45277 chips, implementing the new SPI API.
45278
45279 Changed in v4:
45280 - Update to new API
45281 - Handle zero-length transfers appropriately. The user may send a
45282 zero-length SPI transfer with SPI_XFER_END set in order to
45283 deactivate the chip select after a series of transfers with chip
45284 select active. This is useful e.g. when polling the status
45285 register of DataFlash.
45286
45287 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45288
45289 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
45290 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
45291 Date: Fri May 16 11:10:31 2008 +0200
45292
45293 SPI API improvements
45294
45295 This patch gets rid of the spi_chipsel table and adds a handful of new
45296 functions that makes the SPI layer cleaner and more flexible.
45297
45298 Instead of the spi_chipsel table, each board that wants to use SPI
45299 gets to implement three hooks:
45300 * spi_cs_activate(): Activates the chipselect for a given slave
45301 * spi_cs_deactivate(): Deactivates the chipselect for a given slave
45302 * spi_cs_is_valid(): Determines if the given bus/chipselect
45303 combination can be activated.
45304
45305 Not all drivers may need those extra functions however. If that's the
45306 case, the board code may just leave them out (assuming they know what
45307 the driver needs) or rely on the linker to strip them out (assuming
45308 --gc-sections is being used.)
45309
45310 To set up communication parameters for a given slave, the driver needs
45311 to call spi_setup_slave(). This returns a pointer to an opaque
45312 spi_slave struct which must be passed as a parameter to subsequent SPI
45313 calls. This struct can be freed by calling spi_free_slave(), but most
45314 driver probably don't want to do this.
45315
45316 Before starting one or more SPI transfers, the driver must call
45317 spi_claim_bus() to gain exclusive access to the SPI bus and initialize
45318 the hardware. When all transfers are done, the driver must call
45319 spi_release_bus() to make the bus available to others, and possibly
45320 shut down the SPI controller hardware.
45321
45322 spi_xfer() behaves mostly the same as before, but it now takes a
45323 spi_slave parameter instead of a spi_chipsel function pointer. It also
45324 got a new parameter, flags, which is used to specify chip select
45325 behaviour. This may be extended with other flags in the future.
45326
45327 This patch has been build-tested on all powerpc and arm boards
45328 involved. I have not tested NIOS since I don't have a toolchain for it
45329 installed, so I expect some breakage there even though I've tried
45330 fixing up everything I could find by visual inspection.
45331
45332 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
45333 DataFlash drivers posted as a follow-up. I'd like some help testing
45334 other boards that use the existing SPI API.
45335
45336 But most of all, I'd like some comments on the new API. Is this stuff
45337 usable for everyone? If not, why?
45338
45339 Changed in v4:
45340 - Build fixes for various boards, drivers and commands
45341 - Provide common struct spi_slave definition that can be extended by
45342 drivers
45343 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
45344 - Make default bus and mode build-time configurable
45345 - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
45346
45347 Changed in v3:
45348 - Add opaque struct spi_slave for controller-specific data associated
45349 with a slave.
45350 - Add spi_claim_bus() and spi_release_bus()
45351 - Add spi_free_slave()
45352 - spi_setup() is now called spi_setup_slave() and returns a
45353 struct spi_slave
45354 - soft_spi now supports four SPI modes (CPOL|CPHA)
45355 - Add bus parameter to spi_setup_slave()
45356 - Convert the new i.MX32 SPI driver
45357 - Convert the new MC13783 RTC driver
45358
45359 Changed in v2:
45360 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
45361 new API.
45362
45363 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
45364 Tested-by: Guennadi Liakhovetski <lg@denx.de>
45365
45366 commit 289011207d999b2e4085150d2aa30d547ad9b800
45367 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45368 Date: Fri May 16 11:10:30 2008 +0200
45369
45370 Move definition of container_of() to common.h
45371
45372 AVR32 and AT91SAM9 both have their own identical definitions of
45373 container_of() taken from the Linux kernel. Move it to common.h so
45374 that all architectures can use it.
45375
45376 container_of() is already used by some drivers, and will be used
45377 extensively by the new and improved SPI API.
45378
45379 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45380
45381 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
45382 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45383 Date: Fri May 16 11:08:11 2008 +0200
45384
45385 soft_i2c: Pull SDA high before reading
45386
45387 Spotted by Dean Capindale.
45388
45389 Systems that support open-drain GPIO properly are allowed provide an
45390 empty I2C_TRISTATE define. However, this means that we need to be
45391 careful not to drive SDA low when the slave is expected to respond.
45392
45393 This patch adds a missing I2C_SDA(1) to read_byte() required to
45394 tristate the SDA line on systems that support open-drain GPIO.
45395
45396 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45397
45398 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
45399 Author: Stefan Roese <sr@denx.de>
45400 Date: Mon May 19 11:34:53 2008 +0200
45401
45402 ppc4xx: Remove implementations of testdram()
45403
45404 This patch removes the used testdram() implementations of the board
45405 that are maintained by myself.
45406
45407 Signed-off-by: Stefan Roese <sr@denx.de>
45408
45409 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
45410 Author: Stefan Roese <sr@denx.de>
45411 Date: Mon Jun 2 17:37:28 2008 +0200
45412
45413 ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
45414
45415 Historically the 405 U-Boot port had a dram_init() call in early init
45416 stage. This function was still called from start.S and most of the time
45417 coded in assembler. This is not needed anymore (since a long time) and
45418 boards should implement the common initdram() function in C instead.
45419
45420 This patch now removed the dram_init() call from start.S and removes the
45421 empty implementations that are scattered through most of the 405 board
45422 ports. Some older board ports really implement this dram_init() though.
45423 These are:
45424
45425 csb272
45426 csb472
45427 ERIC
45428 EXBITGEN
45429 W7OLMC
45430 W7OLMG
45431
45432 I changed those boards to call this assembler dram_init() function now
45433 from their board specific initdram() instead. This *should* work, but please
45434 test again on those platforms. And it is perhaps a good idea that those
45435 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
45436 some time. So further patches welcome here.
45437
45438 Signed-off-by: Stefan Roese <sr@denx.de>
45439
45440 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
45441 Author: Stefan Roese <sr@denx.de>
45442 Date: Mon Jun 2 17:22:11 2008 +0200
45443
45444 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
45445
45446 Signed-off-by: Stefan Roese <sr@denx.de>
45447
45448 commit 39b32be18cd33b53a84065edcd4e465165cc5564
45449 Author: Stefan Roese <sr@denx.de>
45450 Date: Mon Jun 2 17:20:03 2008 +0200
45451
45452 ppc4xx: Fix common ECC generation code for 440GP style platforms
45453
45454 This patch makes the common 4xx ECC code really usable on 440GP style
45455 platforms.
45456
45457 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
45458 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
45459 we need to make some processor dependant defines used later on by the
45460 driver.
45461
45462 Signed-off-by: Stefan Roese <sr@denx.de>
45463
45464 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
45465 Author: Stefan Roese <sr@denx.de>
45466 Date: Mon Jun 2 17:13:55 2008 +0200
45467
45468 ppc4xx: Change Kilauea to use the common DDR2 init function
45469
45470 This patch changes the kilauea and kilauea_nand (for NAND booting)
45471 board port to not use a board specific DDR2 init routine anymore. Now
45472 the common code from cpu/ppc4xx is used.
45473
45474 Thanks to Grant Erickson for all his basic work on this 405EX early
45475 bootup.
45476
45477 Signed-off-by: Stefan Roese <sr@denx.de>
45478
45479 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
45480 Author: Stefan Roese <sr@denx.de>
45481 Date: Mon Jun 2 14:59:21 2008 +0200
45482
45483 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
45484
45485 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
45486 ppc4xx related SDRAM/DDR/DDR2 controller defines.
45487
45488 Signed-off-by: Stefan Roese <sr@denx.de>
45489
45490 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
45491 Author: Stefan Roese <sr@denx.de>
45492 Date: Mon Jun 2 14:57:41 2008 +0200
45493
45494 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
45495
45496 This patch removes all SDRAM related defines from the PPC4xx headers
45497 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
45498 the same SDRAM controller as 440 systems do (like 405EX and 440SP).
45499
45500 It also introduces new defines for the equipped SDRAM controller based on
45501 which PPC variant is used. There new defines are:
45502
45503 used on 405GR/CR/EP and some Xilinx Virtex boards.
45504
45505 used on 440GP/GX/EP/GR.
45506
45507 used on 440EPx/GRx.
45508
45509 used on 405EX/r/440SP/SPe/460EX/GT.
45510
45511 Signed-off-by: Stefan Roese <sr@denx.de>
45512
45513 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
45514 Author: Stefan Roese <sr@denx.de>
45515 Date: Mon Jun 2 14:35:44 2008 +0200
45516
45517 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
45518
45519 This patch consolidates the 405 and 440 parts of the NAND booting code
45520 selected via CONFIG_NAND_SPL. Now common code is used to initialize the
45521 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
45522 Only *after* running from this location, nand_boot() is called.
45523
45524 Please note that the initsdram() call is now moved from nand_boot.c
45525 to start.S. I experienced problems with some boards like Kilauea
45526 (405EX), which don't have internal SRAM (OCM) and relocation needs to
45527 be done to SDRAM before the NAND controller can get accessed. When
45528 initdram() is called later on in nand_boot(), this can lead to problems
45529 with variables in the bss sections like nand_ecc_pos[].
45530
45531 Signed-off-by: Stefan Roese <sr@denx.de>
45532 Acked-by: Scott Wood <scottwood@freescale.com>
45533
45534 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
45535 Author: Grant Erickson <gerickson@nuovations.com>
45536 Date: Thu May 22 14:44:24 2008 -0700
45537
45538 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
45539
45540 This patch (Part 2 of 2):
45541
45542 * Rolls up a suite of changes to enable correct primordial stack and
45543 global data handling when the data cache is used for such a purpose
45544 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
45545
45546 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
45547 eliminating redundant ECC initialization implementations and moving
45548 redundant SDRAM initialization out of board code into shared 4xx
45549 code.
45550
45551 * Enables MCSR visibility on the 405EX(r).
45552
45553 * Enables the use of the data cache for initial RAM on
45554 both AMCC's Kilauea and Makalu and removes a redundant
45555 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
45556
45557 - Removed, per Stefan Roese's request, defunct memory.c file for
45558 Makalu and rolled sdram_init from it into makalu.c.
45559
45560 With respect to the 4xx DDR initialization and ECC unification, there
45561 is certainly more work that can and should be done (file renaming,
45562 etc.). However, that can be handled at a later date on a second or
45563 third pass. As it stands, this patch moves things forward in an
45564 incremental yet positive way for those platforms that utilize this
45565 code and the features associated with it.
45566
45567 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
45568 Signed-off-by: Stefan Roese <sr@denx.de>
45569
45570 commit c821b5f120bedf73867513466412587c6912a8f8
45571 Author: Grant Erickson <gerickson@nuovations.com>
45572 Date: Thu May 22 14:44:14 2008 -0700
45573
45574 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
45575
45576 This patch (Part 1 of 2):
45577
45578 * Rolls up a suite of changes to enable correct primordial stack and
45579 global data handling when the data cache is used for such a purpose
45580 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
45581
45582 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
45583 eliminating redundant ECC initialization implementations and moving
45584 redundant SDRAM initialization out of board code into shared 4xx
45585 code.
45586
45587 * Enables MCSR visibility on the 405EX(r).
45588
45589 * Enables the use of the data cache for initial RAM on
45590 both AMCC's Kilauea and Makalu and removes a redundant
45591 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
45592
45593 - Removed, per Stefan Roese's request, defunct memory.c file for
45594 Makalu and rolled sdram_init from it into makalu.c.
45595
45596 With respect to the 4xx DDR initialization and ECC unification, there
45597 is certainly more work that can and should be done (file renaming,
45598 etc.). However, that can be handled at a later date on a second or
45599 third pass. As it stands, this patch moves things forward in an
45600 incremental yet positive way for those platforms that utilize this
45601 code and the features associated with it.
45602
45603 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
45604 Signed-off-by: Stefan Roese <sr@denx.de>
45605
45606 commit a439680019e06171d4a5694b7992accce87f590e
45607 Author: Grant Erickson <gerickson@nuovations.com>
45608 Date: Wed May 21 13:28:30 2008 -0700
45609
45610 PPC4xx: Simplified post_word_{load, store}
45611
45612 This patch simplifies post_word_{load,store} by using the preprocessor
45613 to eliminate redundant, copy-and-pasted code.
45614
45615 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
45616
45617 commit f979690ee337450b2030aba128f95b7a8d9881c0
45618 Author: Kumar Gala <galak@kernel.crashing.org>
45619 Date: Thu May 15 15:13:08 2008 -0500
45620
45621 Fix warnings from gcc-4.3.0 build on a ppc host
45622
45623 * The cfi_flash.c memset fix actual allows the board to boot so there is
45624 a bit more going on here than just resolving warnings associated with
45625 uninitialized variables.
45626
45627 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
45628 inline function 'ext2_find_next_zero_bit' which is not static
45629
45630 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45631
45632 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
45633 Author: Becky Bruce <becky.bruce@freescale.com>
45634 Date: Wed May 14 13:09:51 2008 -0500
45635
45636 MPC512x: Change traps.c to not reference non-addressable memory
45637
45638 Currently, END_OF_RAM is used by the trap code to determine if
45639 we should attempt to access the stack pointer or not. However,
45640 on systems with a lot of RAM, only a subset of the RAM is
45641 guaranteed to be mapped in and accessible. Change END_OF_RAM
45642 to use get_effective_memsize() instead of using the raw ram
45643 size out of the bd.
45644
45645 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
45646
45647 commit 81673e9ae14b771cd13faf19947192599cae3959
45648 Author: Kumar Gala <galak@kernel.crashing.org>
45649 Date: Tue May 13 19:01:54 2008 -0500
45650
45651 Make sure common.h is the first include.
45652
45653 If common.h isn't first we can get CONFIG_ options defined in the
45654 board config file ignored. This can cause an issue if any of those
45655 config options impact the size of types of data structures
45656 (eg CONFIG_PHYS_64BIT).
45657
45658 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
45659
45660 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
45661 Author: Marian Balakowicz <m8@semihalf.com>
45662 Date: Tue May 13 15:53:29 2008 +0200
45663
45664 Avoid initrd and logbuffer area overlaps
45665
45666 Add logbuffer to reserved LMB areas to prevent initrd allocation
45667 from overlaping with it.
45668
45669 Make sure to use correct logbuffer base address.
45670
45671 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
45672
45673 commit 6956d53d9934862507f83f0e3255dfd4662e7482
45674 Author: Sascha Laue <sascha.laue@liebherr.com>
45675 Date: Tue May 13 13:29:54 2008 +0200
45676
45677 lwmon5: add memory-pattern-test to FPGA POST.
45678
45679 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
45680 Author: Becky Bruce <becky.bruce@freescale.com>
45681 Date: Thu May 8 19:02:51 2008 -0500
45682
45683 PPC: 86xx Add bat registers to reginfo command
45684
45685 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
45686
45687 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
45688 Author: Becky Bruce <becky.bruce@freescale.com>
45689 Date: Fri May 9 15:41:35 2008 -0500
45690
45691 PPC: Add print_bats() to lib_ppc/bat_rw.c
45692
45693 This function prints the values of all the BAT register
45694 pairs - I needed this for debug earlier this week; adding it to
45695 lib_ppc so others can use it (and add it to reginfo commands
45696 if so desired).
45697
45698 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
45699
45700 commit c148f24c15743a02e855636e6bed013bd121f7f2
45701 Author: Becky Bruce <becky.bruce@freescale.com>
45702 Date: Thu May 15 21:29:04 2008 -0500
45703
45704 PPC: Change lib_ppc/bat_rw.c to use high bats
45705
45706 Currently, this code only deals with BATs 0-3, which makes
45707 it useless on systems that support BATs 4-7. Add the
45708 support for these registers.
45709
45710 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
45711
45712 commit 31d826722434931e1152a09d140187dcf72f8aac
45713 Author: Becky Bruce <becky.bruce@freescale.com>
45714 Date: Thu May 8 19:02:12 2008 -0500
45715
45716 PPC: Create and use CONFIG_HIGH_BATS
45717
45718 Change all code that conditionally operates on high bat
45719 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
45720 instead of the myriad ways this is done now. Define the option
45721 for every config for which high bats are supported (and
45722 enabled by early boot, on parts where they're not always
45723 enabled)
45724
45725 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
45726
45727 commit aa3b8bf9c30065bb2ea852799d32db5020598495
45728 Author: Wolfgang Grandegger <wg@grandegger.com>
45729 Date: Wed May 28 19:55:19 2008 +0200
45730
45731 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
45732
45733 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
45734 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45735
45736 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
45737 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45738 Date: Wed May 28 13:06:25 2008 -0500
45739
45740 ColdFire: Add 10 base ethernet support for mcf5445x
45741
45742 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
45743 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
45744
45745 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
45746 Author: Jason McMullan <mcmullan@netapp.com>
45747 Date: Fri May 30 00:53:38 2008 +0900
45748
45749 mips: Add an 'include/asm/errno.h', like all other architectures
45750
45751 All other u-boot architectures have an include/asm/errno.h, so
45752 this change adds it to the mips include/asm-mips headers also.
45753
45754 Stolen from Linux 2.6.25.
45755
45756 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
45757
45758 commit e2ad8426624bac457acc6925b6ff408e9bf20466
45759 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45760 Date: Fri May 30 00:53:38 2008 +0900
45761
45762 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
45763
45764 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45765
45766 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
45767 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45768 Date: Fri May 30 00:53:38 2008 +0900
45769
45770 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
45771
45772 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45773
45774 commit bf462ae450a7f2eeeddc699ed345b391e3263540
45775 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45776 Date: Fri May 30 00:53:37 2008 +0900
45777
45778 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
45779
45780 No functional changes.
45781
45782 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45783
45784 commit 89a1550ec6b74452274a7a23127936e2c7eec711
45785 Author: Jason McMullan <mcmullan@netapp.com>
45786 Date: Fri May 30 00:53:37 2008 +0900
45787
45788 mips: If CONFIG_CMD_SPI is defined, call spi_init()
45789
45790 The mips architecture currently does not call 'spi_init()' in the generic
45791 board initialization routine is CONFIG_CMD_SPI is defined.
45792
45793 This patch rectifies that problem.
45794
45795 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
45796 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45797
45798 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
45799 Author: Jason McMullan <mcmullan@netapp.com>
45800 Date: Fri May 30 00:53:37 2008 +0900
45801
45802 [MIPS] lib_mips/board.c: Add nand_init
45803
45804 This patch adds the standard 'nand_init()' call to the mips generic
45805 'board_init_r()' call, bringing MIPS in line with the other architectures.
45806
45807 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
45808 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
45809
45810 commit d6ac2ed893c2168738aee01579d6283af8d37045
45811 Author: Scott Wood <scottwood@freescale.com>
45812 Date: Thu May 22 10:49:46 2008 -0500
45813
45814 Remove prototypes of nand_init() in favor of including nand.h.
45815
45816 Likewise with onenand_init().
45817
45818 Signed-off-by: Scott Wood <scottwood@freescale.com>
45819
45820 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
45821 Author: Scott Wood <scottwood@freescale.com>
45822 Date: Thu May 22 10:49:00 2008 -0500
45823
45824 Make onenand_uboot.h self-sufficient.
45825
45826 Don't assume types are provided by previously included headers.
45827
45828 Signed-off-by: Scott Wood <scottwood@freescale.com>
45829
45830 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
45831 Author: Dirk Behme <dirk.behme@gmail.com>
45832 Date: Wed Jan 16 14:26:59 2008 +0100
45833
45834 nand: Correct NAND erase percentage output
45835
45836 For NAND erase sizes smaller than one NAND erase block, erase
45837 percentage output becomes grater than 100% e.g.
45838
45839 -- cut --
45840 > nand info
45841 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
45842 > nand erase 0x100000 0x2000
45843 NAND erase: device 0 offset 0x100000, size 0x2000
45844 Erasing at 0x100000 -- 200% complete.
45845 OK
45846 >
45847 -- cut --
45848
45849 Correct this and give user a warning that more is erased than specified:
45850
45851 -- cut --
45852 > nand erase 0x100000 0x2000
45853 NAND erase: device 0 offset 0x100000, size 0x2000
45854 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
45855 Erasing 0x00004000 instead
45856 Erasing at 0x100000 -- 100% complete.
45857 OK
45858 >
45859 -- cut --
45860
45861 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
45862
45863 commit 5922db6c0948506be91e0de44e7a6863a18a417f
45864 Author: Stelian Pop <stelian@popies.net>
45865 Date: Tue May 13 17:31:24 2008 +0200
45866
45867 Cleanup nand_info[] declaration.
45868
45869 The nand_info array is declared as extern in several .c files.
45870 Those days, nand.h contains a reference to the array, so there is
45871 no need to declare it elsewhere.
45872
45873 Signed-off-by: Stelian Pop <stelian@popies.net>
45874 Signed-off-by: Scott Wood <scottwood@freescale.com>
45875
45876 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
45877 Author: Scott Wood <scottwood@freescale.com>
45878 Date: Mon May 19 09:30:43 2008 -0500
45879
45880 NAND: Provide a sane default for NAND_MAX_CHIPS.
45881
45882 This allows the header to be included regardless of whether a board's
45883 config file provides NAND-related defininitions.
45884
45885 Signed-off-by: Scott Wood <scottwood@freescale.com>
45886
45887 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
45888 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45889 Date: Mon May 26 12:19:10 2008 +0200
45890
45891 avr32: Fix theoretical race in udelay()
45892
45893 If the specified delay is very short, the cycle counter may go past the
45894 "end" time we are waiting for before we get around to reading it.
45895
45896 Fix it by checking the different between the cycle count "now" and the
45897 cycle count at the beginning. This will work as long as the delay
45898 measured in number of cycles is below 2^31.
45899
45900 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45901
45902 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
45903 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45904 Date: Wed May 21 13:01:09 2008 +0200
45905
45906 avr32: Compile atmel_mci.o conditionally
45907
45908 Remove #ifdef CONFIG_MMC from the source file and use conditional
45909 compilation in the Makefile instead.
45910
45911 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45912
45913 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
45914 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45915 Date: Thu May 22 12:28:25 2008 +0200
45916
45917 avr32: Fix wrong error flags in atmel_mci driver
45918
45919 Make sure we check for CRC errors when sending commands that use CRC
45920 checking.
45921
45922 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
45923 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45924
45925 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
45926 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45927 Date: Wed May 21 11:10:59 2008 +0200
45928
45929 avr32: Fix two warnings in atmel_mci.c
45930
45931 The warnings are harmless but annoying. Let's fix them.
45932
45933 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45934
45935 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
45936 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45937 Date: Mon May 19 11:36:28 2008 +0200
45938
45939 avr32: Rework SDRAM initialization code
45940
45941 This cleans up the SDRAM initialization and related code a bit, and
45942 allows faster booting.
45943
45944 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
45945 * Remove memory test from sdram_init() and make caller responsible
45946 for verifying the SDRAM and determining its size.
45947 * Remove base_address member from struct sdram_config (was sdram_info)
45948 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
45949 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
45950
45951 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45952
45953 commit 95107b7c028806919630bf02c653aa8f4f867c94
45954 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45955 Date: Mon May 19 11:27:37 2008 +0200
45956
45957 avr32: Do stricter stack checking in the exception handler
45958
45959 Don't do a stack dump if the stack pointer is outside the memory area
45960 reserved for stack.
45961
45962 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45963
45964 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
45965 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45966 Date: Fri May 2 15:32:57 2008 +0200
45967
45968 avr32: Use the same entry point for reset and exception handling
45969
45970 Since the reset vector is always aligned to a very large boundary, we
45971 can save a couple of KB worth of alignment padding by placing the
45972 exception vectors at the same address.
45973
45974 Deciding which one it is is easy: If we're handling an exception, the
45975 CPU is in Exception mode. If we're starting up after reset, the CPU is
45976 in Supervisor mode. So this adds a very minimal overhead to the reset
45977 path (only executed once) and the exception handling path (normally
45978 never executed at all.)
45979
45980 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45981
45982 commit 0c16eed2189a190bd5655b33c029f809a9b31128
45983 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45984 Date: Fri May 2 15:24:22 2008 +0200
45985
45986 avr32: Put memset in its own section
45987
45988 All C code is compiled with -ffunction-sections -fdata-sections.
45989 Assembly functions should get their own sections as well so that
45990 everything looks consistent.
45991
45992 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45993
45994 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
45995 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
45996 Date: Fri May 2 15:21:40 2008 +0200
45997
45998 avr32: Rename pm_init() as clk_init() and make SoC-specific
45999
46000 pm_init() was always more about clock initialization than anything
46001 else. Dealing with PLLs, clock gating and such is also inherently
46002 SoC-specific, so move it into a SoC-specific directory.
46003
46004 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46005
46006 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
46007 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46008 Date: Wed Apr 30 16:15:57 2008 +0200
46009
46010 avr32: Use new-style Makefile for the at32ap platform
46011
46012 This makes it easier to avoid compiling certain files later.
46013
46014 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46015
46016 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
46017 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46018 Date: Wed Apr 30 14:36:47 2008 +0200
46019
46020 avr32: Remove unused file cpu/at32ap/pm.c
46021
46022 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46023
46024 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
46025 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46026 Date: Wed Apr 30 14:19:28 2008 +0200
46027
46028 avr32: Clean up the HMATRIX code
46029
46030 Rework the HMATRIX configuration interface so that it becomes easier
46031 to configure the HMATRIX for boards with special needs, and add new
46032 parts.
46033
46034 The HMATRIX header file has been split into a general,
46035 chip-independent part with register definitions, etc. and a
46036 chip-specific part with SFR bitfield definitions and master/slave
46037 identifiers.
46038
46039 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46040
46041 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
46042 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46043 Date: Thu Nov 22 12:14:11 2007 +0100
46044
46045 avr32: Add support for the ATSTK1006 board
46046
46047 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
46048 board. It's currently in production and will be available soon.
46049
46050 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46051
46052 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
46053 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46054 Date: Tue Apr 29 12:53:05 2008 +0200
46055
46056 avr32: Get rid of the .flashprog section
46057
46058 The .flashprog section was only needed back when we were running
46059 directly from flash, and it's even more useless on NGW100 since it
46060 uses the CFI flash driver which never used this workaround in the
46061 first place.
46062
46063 Remove it on STK1000 as well, and get rid of all the associated code and
46064 annotations.
46065
46066 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46067
46068 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
46069 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46070 Date: Wed Apr 30 13:09:56 2008 +0200
46071
46072 avr32: Use correct condition around macb clock accessors
46073
46074 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
46075 the chip has a MACB controller, not when it has a USART.
46076
46077 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46078
46079 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
46080 Author: David Brownell <david-b@pacbell.net>
46081 Date: Wed Apr 16 22:57:58 2008 -0700
46082
46083 avr32: Disable the AP7000 internal watchdog on startup
46084
46085 This patch forces the watchdog off in all cases. That will at least
46086 get rid of the constant reboot cycle, though it won't let the watchdog
46087 actually run in the new kernels: its probe() comes up with a polite
46088 warning.
46089
46090 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46091
46092 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
46093 Author: David Brownell <david-b@pacbell.net>
46094 Date: Fri Feb 22 12:54:39 2008 -0800
46095
46096 avr32: stk1002 and ngw100 convergence
46097
46098 Make STK1002 and NGW100 boards act more alike:
46099 - STK boards can use as many arguments as NGW
46100 - STK boards don't need to manage FPGAs either
46101 - NGW commands should match STK ones
46102
46103 Also spell U-Boot right in prompts for STK1002 and NGW100.
46104
46105 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
46106 [haavard.skinnemoen@atmel.com: update STK100[34] as well]
46107 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
46108
46109 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
46110 Author: Sergei Poselenov <sposelenov@emcraft.com>
46111 Date: Tue May 27 13:47:00 2008 +0200
46112
46113 Socrates: Fix PCI bus frequency report
46114
46115 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46116
46117 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
46118 Author: Sergei Poselenov <sposelenov@emcraft.com>
46119 Date: Tue May 27 11:49:13 2008 +0200
46120
46121 Socrates: Added USB support.
46122
46123 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46124
46125 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
46126 Author: Sergei Poselenov <sposelenov@emcraft.com>
46127 Date: Tue May 27 11:35:02 2008 +0200
46128
46129 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
46130
46131 In case of several PCI USB controllers on a board this variable
46132 specifys which controller to use.
46133 See doc/README.generic_usb_ohci for details.
46134
46135 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46136
46137 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
46138 Author: Sergei Poselenov <sposelenov@emcraft.com>
46139 Date: Tue May 27 10:36:07 2008 +0200
46140
46141 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
46142
46143 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46144
46145 commit 83e9d7a2614d4006b92690afa3390c291734267e
46146 Author: Sergei Poselenov <sposelenov@emcraft.com>
46147 Date: Mon May 26 18:16:04 2008 +0200
46148
46149 Socrates: Config file cleanup.
46150
46151 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46152
46153 commit 602cac1389b755b223272f2328a47e6f8c240848
46154 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46155 Date: Sat May 24 12:47:46 2008 +0200
46156
46157 MAKEALL: add at91 list
46158
46159 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46160
46161 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
46162 Author: Ron Madrid <ron_madrid@sbcglobal.net>
46163 Date: Fri May 23 15:37:05 2008 -0700
46164
46165 Add Marvell 88E1118 support for TSEC
46166
46167 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
46168 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46169
46170 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
46171 Author: Jens Gehrlein <sew_s@tqs.de>
46172 Date: Mon May 5 14:06:11 2008 +0200
46173
46174 smc911x: add 16 bit support
46175
46176 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
46177 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
46178
46179 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
46180 Author: Christian Eggers <ceggers@gmx.de>
46181 Date: Wed May 21 21:29:10 2008 +0200
46182
46183 Fix endianess conversion in usb_ohci.c
46184
46185 Sorry, I forgot this line:
46186
46187 Signed-off-by: Christian Eggers <ceggers@gmx.de>
46188
46189 I think this must be swapped (result may be equal).
46190
46191 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
46192 Author: Christian Eggers <ceggers@gmx.de>
46193 Date: Wed May 21 22:12:00 2008 +0200
46194
46195 USB: replace old swap_ with proper endianess conversion macros
46196
46197 Signed-off-by: Christian Eggers <ceggers@gmx.de>
46198 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46199
46200 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
46201 Author: Christian Eggers <ceggers@gmx.de>
46202 Date: Wed May 21 21:29:10 2008 +0200
46203
46204 Fix endianess conversion in usb_ohci.c
46205
46206 Signed-off-by: Christian Eggers <ceggers@gmx.de>
46207 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46208
46209 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
46210 Author: Sergei Poselenov <sposelenov@emcraft.com>
46211 Date: Thu May 22 01:15:53 2008 +0200
46212
46213 USB: add support for multiple PCI OHCI controllers
46214
46215 Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
46216 In case of several PCI USB controllers on a board this variable
46217 specifys which controller to use.
46218
46219 Also add USB support for sokrates board.
46220
46221 See doc/README.generic_usb_ohci for details.
46222
46223 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46224 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
46225
46226 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
46227 Author: Wolfgang Denk <wd@denx.de>
46228 Date: Wed May 21 16:56:08 2008 +0200
46229
46230 Fix some whitespace issues
46231
46232 introduced by 53677ef18 "Big white-space cleanup."
46233
46234 Signed-off-by: Wolfgang Denk <wd@denx.de>
46235
46236 commit 4416603aeb06861b468b06a981e52c3ff805db7b
46237 Author: York Sun <yorksun@freescale.com>
46238 Date: Mon May 12 14:36:39 2008 -0500
46239
46240 Make ads5121 out-of-tree compiling safe
46241
46242 Reuse the existing DIU driver in board/freescale/common.
46243
46244 Signed-off-by: York Sun <yorksun@freescale.com>
46245
46246 commit 0e1bad47cd345c76c91a64caf41011e431b62599
46247 Author: York Sun <yorksun@freescale.com>
46248 Date: Mon May 5 10:20:01 2008 -0500
46249
46250 Adding DIU support for Freescale 5121ADS
46251
46252 Add DIU and cfb console support to FSL 5121ADS board.
46253
46254 Use #define CONFIG_VIDEO in config file to enable fb console.
46255
46256 Signed-off-by: York Sun <yorksun@freescale.com>
46257
46258 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
46259 Author: York Sun <yorksun@freescale.com>
46260 Date: Mon May 5 10:20:00 2008 -0500
46261
46262 Replace DPRINTF with debug
46263
46264 Remove DPRINTF macro and replace it with generic debug macro.
46265
46266 Signed-off-by: York Sun <yorksun@freescale.com>
46267
46268 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
46269 Author: York Sun <yorksun@freescale.com>
46270 Date: Mon May 5 10:19:59 2008 -0500
46271
46272 Move pixel clock setting to board file
46273
46274 The clock divider has different format in 5121 and 8610. This patch moves it to
46275 board specific code.
46276
46277 Signed-off-by: York Sun <yorksun@freescale.com>
46278
46279 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
46280 Author: Wolfgang Denk <wd@denx.de>
46281 Date: Tue May 20 16:00:29 2008 +0200
46282
46283 Big white-space cleanup.
46284
46285 This commit gets rid of a huge amount of silly white-space issues.
46286 Especially, all sequences of SPACEs followed by TAB characters get
46287 removed (unless they appear in print statements).
46288
46289 Also remove all embedded "vim:" and "vi:" statements which hide
46290 indentation problems.
46291
46292 Signed-off-by: Wolfgang Denk <wd@denx.de>
46293
46294 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
46295 Author: Sergei Poselenov <sposelenov@emcraft.com>
46296 Date: Thu May 8 17:46:23 2008 +0200
46297
46298 socrates: fix second TSEC configuration (it is actually TSEC3)
46299
46300 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46301
46302 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
46303 Author: Sergei Poselenov <sposelenov@emcraft.com>
46304 Date: Thu May 8 14:17:08 2008 +0200
46305
46306 Fixed reset for socrates
46307
46308 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46309
46310 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
46311 Author: Sergei Poselenov <sposelenov@emcraft.com>
46312 Date: Wed May 7 15:10:49 2008 +0200
46313
46314 socrates: changes to support FDT
46315
46316 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46317 Signed-off-by: Wolfgang Denk <wd@denx.de>
46318
46319 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
46320 Author: Sergei Poselenov <sposelenov@emcraft.com>
46321 Date: Wed Apr 30 11:42:50 2008 +0200
46322
46323 Initial support for "Socrates" board
46324
46325 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
46326
46327 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
46328 Author: Yuri Tikhonov <yur@emcraft.com>
46329 Date: Thu May 8 15:46:42 2008 +0200
46330
46331 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
46332
46333 This way we become able to utilize the full post_log_word for POST
46334 activities (overwise, POST ECC, which has 0x8000 ID, could be
46335 erroneously treated as started in post_output_backlog() even if there
46336 was actually no POST ECC run (because of OCM POST failure, for
46337 example).
46338
46339 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
46340
46341 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
46342 Author: Yuri Tikhonov <yur@emcraft.com>
46343 Date: Thu May 8 15:46:02 2008 +0200
46344
46345 POST: mark OCM test as POST_STOP
46346
46347 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46348
46349 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
46350 Author: Yuri Tikhonov <yur@emcraft.com>
46351 Date: Thu May 8 15:45:26 2008 +0200
46352
46353 POST: add POST_STOP flag
46354
46355 Don't run futher tests in case of a test fails that is marked as
46356 POST_STOP.
46357
46358 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46359 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
46360
46361 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
46362 Author: Yuri Tikhonov <yur@emcraft.com>
46363 Date: Thu May 8 15:44:16 2008 +0200
46364
46365 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
46366
46367 Switch the OCM testid with the codec one. The reason is that current
46368 implementation requires the POST_ROM testid to fit into lower 16
46369 bits, and the codec test will never run with POST_ROM hopefully.
46370
46371 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46372
46373 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
46374 Author: Yuri Tikhonov <yur@emcraft.com>
46375 Date: Thu May 8 15:43:28 2008 +0200
46376
46377 lwmon5: enable OCM post test on lwmon5 board
46378
46379 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46380
46381 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
46382 Author: Yuri Tikhonov <yur@emcraft.com>
46383 Date: Thu May 8 15:42:47 2008 +0200
46384
46385 POST: OCM test added.
46386
46387 Added OCM test to POST layer. This version runs before all other tests
46388 but doesn't yet interrupt post sequence on failure.
46389
46390 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46391 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
46392
46393 commit 6891260bdd935a382c95d9fa333922b0dfded68a
46394 Author: Yuri Tikhonov <yur@emcraft.com>
46395 Date: Thu May 8 15:40:39 2008 +0200
46396
46397 POST: typo fix
46398
46399 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
46400
46401 commit 727f63334676e760877d43bfb8f0e9331ac8b101
46402 Author: Hebbar <gururajakr@sanyo.co.in>
46403 Date: Tue May 20 02:16:36 2008 -0700
46404
46405 common/usb.c: fix incorrect escape sequence
46406
46407 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
46408
46409 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
46410 Author: York Sun <yorksun@freescale.com>
46411 Date: Thu May 15 15:26:27 2008 -0500
46412
46413 Fix 8313ERDB board configuration
46414
46415 Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
46416 Correct TSEC1 vs TSEC2 assignment.
46417 Define ETHADDR and ETH1ADDR always.
46418
46419 Signed-off-by: York Sun <yorksun@freescale.com>
46420 Signed-off-by: Timur Tabi <timur@freescale.com>
46421
46422 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
46423 Author: Jon Loeliger <jdl@freescale.com>
46424 Date: Mon May 19 09:47:25 2008 -0500
46425
46426 mpc86xx: Removed unused and unconfigured memory test code.
46427
46428 Besides, other common code exists.
46429
46430 Signed-off-by: Jon Loeliger <jdl@freescale.com>
46431
46432 commit 180a90abdae72587c0f679edf8991455e559440d
46433 Author: Wolfgang Denk <wd@denx.de>
46434 Date: Mon May 19 12:47:11 2008 +0200
46435
46436 Release v1.3.3
46437
46438 Update CHANGELOG for release.
46439
46440 Signed-off-by: Wolfgang Denk <wd@denx.de>
46441
46442 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
46443 Author: Stefan Roese <sr@denx.de>
46444 Date: Mon May 19 07:14:38 2008 +0200
46445
46446 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
46447
46448 When SATA is selected (via jumper J6) we need to disable the first PCIe
46449 node in the device tree, so that Linux doesn't initialize it. Otherwise
46450 the Linux SATA driver will fail to detect the devices.
46451
46452 The same goes the other way around too. So if PCIe is selected we need
46453 to disable the SATA node in the device tree.
46454
46455 This is because PCIe port 0 and SATA on 460EX share the same pins
46456 (multiplexed) and we have to configure in U-Boot which peripheral is
46457 enabled.
46458
46459 Signed-off-by: Stefan Roese <sr@denx.de>
46460
46461 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
46462 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46463 Date: Sun May 18 19:09:58 2008 +0200
46464
46465 i386: Fix multiple definitions of __show_boot_progress
46466
46467 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46468
46469 commit 311f3446930c1e64c12026c1cfd00500b05be52d
46470 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46471 Date: Sun May 18 19:09:57 2008 +0200
46472
46473 sc530_spunk: add missing SOBJS entry
46474
46475 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46476
46477 commit a559317143b4f95927b08cd388707e6f077e95fa
46478 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46479 Date: Sun May 18 19:09:56 2008 +0200
46480
46481 sc520_spunk: Fix flash
46482
46483 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
46484 flash.c:398: error: label at end of compound statement
46485
46486 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46487
46488 commit 91f221317af64191ee8caf303ea9305943158691
46489 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46490 Date: Sun May 18 19:09:49 2008 +0200
46491
46492 drivers/pcmcia: add missing i82365
46493
46494 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46495
46496 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
46497 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46498 Date: Sun May 18 19:09:47 2008 +0200
46499
46500 i386/bootm: remove unused var
46501
46502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46503
46504 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
46505 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46506 Date: Sun May 18 19:09:45 2008 +0200
46507
46508 example/gitignore: update with all generated examples
46509
46510 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46511
46512 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
46513 Author: Wolfgang Denk <wd@denx.de>
46514 Date: Thu May 15 00:42:45 2008 +0200
46515
46516 TQM8272: fix out-of-tree building
46517
46518 ...and add to MAKEALL script
46519
46520 Signed-off-by: Wolfgang Denk <wd@denx.de>
46521
46522 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
46523 Author: Wolfgang Denk <wd@denx.de>
46524 Date: Wed May 14 23:34:53 2008 +0200
46525
46526 environment: fix bug introduced by commit a8409f4f1ac8
46527
46528 env_get_char is not a function, but a pointer to one.
46529
46530 Signed-off-by: Wolfgang Denk <wd@denx.de>
46531
46532 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
46533 Author: Gary Jennejohn <garyj@denx.de>
46534 Date: Wed May 14 13:39:22 2008 +0200
46535
46536 ppc4xx: QUAD100HD: Allow the environment to be put into flash.
46537
46538 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also
46539 use a redundant environment.
46540
46541 Signed-off-by: Gary Jennejohn <garyj@denx.de>
46542
46543 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
46544 Author: Wolfgang Denk <wd@denx.de>
46545 Date: Wed May 14 13:55:30 2008 +0200
46546
46547 Fix config files for out-of-tree building
46548
46549 Several board/<...>/config.mk files include dynamically built (by
46550 the Makefile) config files but used the wrong file name of
46551 $(TOPDIR)/board/$(BOARDDIR)/config.tmp
46552 instead if the correct
46553 $(OBJTREE)/board/$(BOARDDIR)/config.tmp
46554
46555 The bug is nasty because the build result is correct for the (normal)
46556 in-tree builds, and because 'sinclude' is used no errors get raised
46557 even for out-of-tree build tests. But out-of-tree builds use an
46558 incomplete and thus usually incorrect configuration...
46559
46560 Signed-off-by: Wolfgang Denk <wd@denx.de>
46561
46562 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
46563 Author: Stefan Roese <sr@denx.de>
46564 Date: Wed May 14 13:40:03 2008 +0200
46565
46566 ppc4xx: Fix bogus Canyonlands config.mk
46567
46568 This patch fixes the canyonlands config.mk file to enable correct
46569 out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
46570
46571 Signed-off-by: Stefan Roese <sr@denx.de>
46572
46573 commit fdd1247a66d788a3446244f6fde9955a93c26322
46574 Author: Stefan Roese <sr@denx.de>
46575 Date: Wed May 14 10:32:32 2008 +0200
46576
46577 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
46578
46579 Canyonlands has a file ddr2_fixed.c which needs special treatment when
46580 building in separate directory. It has to be linked to build directory
46581 otherwise it is not seen.
46582
46583 Signed-off-by: Stefan Roese <sr@denx.de>
46584
46585 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
46586 Author: Wolfgang Denk <wd@denx.de>
46587 Date: Wed May 14 12:22:49 2008 +0200
46588
46589 environment: cleanup prototype declarations of env functions.
46590
46591 Signed-off-by: Wolfgang Denk <wd@denx.de>
46592
46593 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
46594 Author: Wolfgang Denk <wd@denx.de>
46595 Date: Wed May 14 12:21:48 2008 +0200
46596
46597 linkstation_HGLAN: Fix out of tree building.
46598
46599 Signed-off-by: Wolfgang Denk <wd@denx.de>
46600
46601 commit 085551c05ca09e6c491ea11a1c6727a36776a545
46602 Author: Stefan Roese <sr@denx.de>
46603 Date: Wed May 14 10:32:32 2008 +0200
46604
46605 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
46606
46607 Canyonlands has a file ddr2_fixed.c which needs special treatment when
46608 building in separate directory. It has to be linked to build directory
46609 otherwise it is not seen.
46610
46611 Signed-off-by: Stefan Roese <sr@denx.de>
46612
46613 commit 1510b82d50615f344e89d42533e8224cce067dc0
46614 Author: Wolfgang Denk <wd@denx.de>
46615 Date: Tue May 13 23:15:52 2008 +0200
46616
46617 Makefile: fix "error: version_autogenerated.h: No such file or directory"
46618
46619 Signed-off-by: Wolfgang Denk <wd@denx.de>
46620
46621 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
46622 Author: Stelian Pop <stelian@popies.net>
46623 Date: Tue May 13 17:31:24 2008 +0200
46624
46625 Cleanup nand_info[] declaration.
46626
46627 The nand_info array is declared as extern in several .c files.
46628 Those days, nand.h contains a reference to the array, so there is
46629 no need to declare it elsewhere.
46630
46631 Signed-off-by: Stelian Pop <stelian@popies.net>
46632 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46633
46634 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
46635 Author: Stefan Roese <sr@denx.de>
46636 Date: Tue May 13 20:22:01 2008 +0200
46637
46638 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
46639
46640 Signed-off-by: Stefan Roese <sr@denx.de>
46641
46642 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
46643 Author: Wolfgang Denk <wd@denx.de>
46644 Date: Mon May 12 01:11:21 2008 +0200
46645
46646 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
46647
46648 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
46649 which broke many PowerPC boards.
46650
46651 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
46652 Author: Wolfgang Denk <wd@denx.de>
46653 Date: Mon May 12 00:56:28 2008 +0200
46654
46655 Revert "Avoid initrd and logbuffer area overlaps"
46656
46657 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
46658 which breaks building on all PPC boards that don't use a log buffer.
46659
46660 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
46661 Author: Nick Spence <nick.spence@freescale.com>
46662 Date: Sat May 10 14:02:04 2008 -0700
46663
46664 Fix offset calculation for multi-type legacy images.
46665
46666 Calculation of tail was incorrect when size % 4 == 0.
46667
46668 New code removes the conditional and does the same thing but with arithmetic
46669
46670 Signed-off-by: Nick Spence <nick.spence@freescale.com>
46671
46672 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
46673 Author: Wolfgang Denk <wd@denx.de>
46674 Date: Mon May 12 00:40:58 2008 +0200
46675
46676 Revert "Change env_get_char from a global function ptr to a function."
46677
46678 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
46679 which is known to break booting from dataflash and NAND.
46680
46681 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
46682 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46683 Date: Sun May 11 23:13:57 2008 +0200
46684
46685 API: remove duplicate syscall check
46686
46687 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46688
46689 commit 67e3beb52c320b0a31cf030716c99392cde2d532
46690 Author: Stelian Pop <stelian@popies.net>
46691 Date: Fri May 9 21:46:51 2008 +0200
46692
46693 AT91: Cleanup unused config header file definitions.
46694
46695 CONFIG_ENV_OVERWRITE is commented out in the config header files,
46696 so let's cleanup the files by removing the whole definition.
46697
46698 Signed-off-by: Stelian Pop <stelian@popies.net>
46699 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46700
46701 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
46702 Author: Stelian Pop <stelian@popies.net>
46703 Date: Thu May 8 14:52:34 2008 +0200
46704
46705 Support AT91CAP9 revC CPUs
46706
46707 The AT91CAP9 revC CPU has a few differences over the previous,
46708 revB CPU which was distributed in small quantities only (revA was
46709 an internal Atmel product only).
46710
46711 The revC silicon needs a special initialisation sequence to
46712 switch from the internal (imprecise) RC oscillator to the
46713 external 32k clock.
46714
46715 Signed-off-by: Stelian Pop <stelian@popies.net>
46716 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46717
46718 commit 098b7b4b441b12c2a64dd517930f43c793542759
46719 Author: Stelian Pop <stelian@popies.net>
46720 Date: Thu May 8 14:52:33 2008 +0200
46721
46722 Use custom logo for Atmel boards
46723
46724 This patch adds a custom vendor logo for the Atmel AT91 boards.
46725
46726 Signed-off-by: Stelian Pop <stelian@popies.net>
46727 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46728
46729 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
46730 Author: Stelian Pop <stelian@popies.net>
46731 Date: Thu May 8 14:52:32 2008 +0200
46732
46733 AT91SAM9RLEK: hook up the ATMEL LCD driver
46734
46735 This patch makes the necessary adaptations (PIO configurations and
46736 defines in config header file) to hook up the Atmel LCD driver to the
46737 AT91SAM9RLEK board.
46738
46739 Signed-off-by: Stelian Pop <stelian@popies.net>
46740 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46741
46742 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
46743 Author: Stelian Pop <stelian@popies.net>
46744 Date: Thu May 8 14:52:31 2008 +0200
46745
46746 AT91SAM9263EK: hook up the ATMEL LCD driver
46747
46748 This patch makes the necessary adaptations (PIO configurations and
46749 defines in config header file) to hook up the Atmel LCD driver to the
46750 AT91SAM9263EK board.
46751
46752 Signed-off-by: Stelian Pop <stelian@popies.net>
46753 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46754
46755 commit 820f2a958325061a446115f3035e48e4726b3390
46756 Author: Stelian Pop <stelian@popies.net>
46757 Date: Thu May 8 14:52:30 2008 +0200
46758
46759 AT91SAM9261EK: hook up the ATMEL LCD driver
46760
46761 This patch makes the necessary adaptations (PIO configurations and
46762 defines in config header file) to hook up the Atmel LCD driver to the
46763 AT91SAM9261EK board.
46764
46765 Signed-off-by: Stelian Pop <stelian@popies.net>
46766 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46767
46768 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
46769 Author: Stelian Pop <stelian@popies.net>
46770 Date: Thu May 8 14:52:29 2008 +0200
46771
46772 AT91CAP9ADK: hook up the ATMEL LCD driver
46773
46774 This patch makes the necessary adaptations (PIO configurations and
46775 defines in config header file) to hook up the Atmel LCD driver to the
46776 AT91CAP9ADK board.
46777
46778 Signed-off-by: Stelian Pop <stelian@popies.net>
46779 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46780
46781 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
46782 Author: Stelian Pop <stelian@popies.net>
46783 Date: Fri May 9 21:57:18 2008 +0200
46784
46785 Add ATMEL LCD driver
46786
46787 This patch adds support for the ATMEL LCDC driver which is used on some
46788 AT91 and AVR platforms.
46789
46790 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
46791 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
46792
46793 Signed-off-by: Stelian Pop <stelian@popies.net>
46794 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46795
46796 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
46797 Author: Stelian Pop <stelian@popies.net>
46798 Date: Thu May 8 18:52:25 2008 +0200
46799
46800 AT91SAM9RLEK support
46801
46802 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
46803 board.
46804
46805 Signed-off-by: Stelian Pop <stelian@popies.net>
46806 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46807
46808 commit 8e429b3eee23927c1222679f6b6f53667b21595c
46809 Author: Stelian Pop <stelian@popies.net>
46810 Date: Thu May 8 18:52:23 2008 +0200
46811
46812 AT91SAM9263EK support
46813
46814 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
46815 board.
46816
46817 Signed-off-by: Stelian Pop <stelian@popies.net>
46818 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46819
46820 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
46821 Author: Stelian Pop <stelian@popies.net>
46822 Date: Thu May 8 20:52:22 2008 +0200
46823
46824 AT91SAM9261EK support
46825
46826 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
46827 board.
46828
46829 Signed-off-by: Stelian Pop <stelian@popies.net>
46830 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46831
46832 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
46833 Author: Stelian Pop <stelian@popies.net>
46834 Date: Thu May 8 20:52:21 2008 +0200
46835
46836 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
46837
46838 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
46839 in order to cope with the changes in DataFlash partitionning scheme
46840 (cset c3a60cb3).
46841
46842 Signed-off-by: Stelian Pop <stelian@popies.net>
46843 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46844
46845 commit 96996ac25d5222611a8888968db6e53a6d3726da
46846 Author: Stelian Pop <stelian@popies.net>
46847 Date: Thu May 8 20:52:20 2008 +0200
46848
46849 AT91SAM9260EK: Normalize BOOTARGS
46850
46851 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
46852 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
46853 variable.
46854
46855 Signed-off-by: Stelian Pop <stelian@popies.net>
46856 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46857
46858 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
46859 Author: Stelian Pop <stelian@popies.net>
46860 Date: Thu May 8 20:52:19 2008 +0200
46861
46862 AT91SAM9260EK: Normalize SPI timings
46863
46864 This patch changes the SPI timings to closely match the ones
46865 used by the Linux kernel and the Atmel's own bootstrap project.
46866
46867 Signed-off-by: Stelian Pop <stelian@popies.net>
46868 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46869
46870 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
46871 Author: Stelian Pop <stelian@popies.net>
46872 Date: Thu May 8 20:52:18 2008 +0200
46873
46874 AT91SAM9260EK: Handle 8 or 16 bit NAND
46875
46876 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
46877 makes the support configurable in the board config header file
46878 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
46879
46880 Signed-off-by: Stelian Pop <stelian@popies.net>
46881 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46882
46883 commit ab52640fc01624e208424e527af0b7b3a5a65a12
46884 Author: Stelian Pop <stelian@popies.net>
46885 Date: Thu May 8 20:52:17 2008 +0200
46886
46887 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
46888
46889 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
46890 in order to cope with the changes in DataFlash partitionning scheme
46891 (cset c3a60cb3).
46892
46893 Signed-off-by: Stelian Pop <stelian@popies.net>
46894 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46895
46896 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
46897 Author: Stelian Pop <stelian@popies.net>
46898 Date: Thu May 8 20:52:16 2008 +0200
46899
46900 AT91CAP9ADK: Normalize BOOTARGS
46901
46902 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
46903 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
46904 variable.
46905
46906 Signed-off-by: Stelian Pop <stelian@popies.net>
46907 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46908
46909 commit 93da48b910511911ce110656e17ed733c8ac4c45
46910 Author: Stelian Pop <stelian@popies.net>
46911 Date: Thu May 8 20:52:15 2008 +0200
46912
46913 AT91CAP9ADK: Normalize SPI timings
46914
46915 This patch changes the SPI timings to closely match the ones
46916 used by the Linux kernel and the Atmel's own bootstrap project.
46917
46918 Signed-off-by: Stelian Pop <stelian@popies.net>
46919 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46920
46921 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
46922 Author: Stelian Pop <stelian@popies.net>
46923 Date: Thu May 8 20:52:14 2008 +0200
46924
46925 AT91CAP9ADK: Handle 8 or 16 bit NAND
46926
46927 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
46928 makes the support configurable in the board config header file
46929 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
46930
46931 Signed-off-by: Stelian Pop <stelian@popies.net>
46932 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46933
46934 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
46935 Author: Stelian Pop <stelian@popies.net>
46936 Date: Thu May 8 20:52:13 2008 +0200
46937
46938 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
46939
46940 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
46941 below avoids the duplication of u-boot.lds by putting the file in the
46942 cpu directory instead of the board one.
46943
46944 Signed-off-by: Stelian Pop <stelian@popies.net>
46945 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46946
46947 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
46948 Author: Stelian Pop <stelian@popies.net>
46949 Date: Thu May 8 20:52:12 2008 +0200
46950
46951 Add proper copyright notices in Atmel boards Makefiles
46952
46953 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
46954 copyright notice. This patch adds the missing pieces.
46955
46956 Signed-off-by: Stelian Pop <stelian@popies.net>
46957 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46958
46959 commit e817a042cef6164bf26fee86f90326f2ec9e6745
46960 Author: Stelian Pop <stelian@popies.net>
46961 Date: Thu May 8 20:52:11 2008 +0200
46962
46963 Add copyright information in Atmel boards partition.c
46964
46965 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
46966 the new created files. This patch fixes the problem.
46967
46968 Signed-off-by: Stelian Pop <stelian@popies.net>
46969 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46970
46971 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
46972 Author: Stelian Pop <stelian@popies.net>
46973 Date: Thu May 8 20:52:10 2008 +0200
46974
46975 Update origin and copyright information in arch-at91sam9 header files
46976
46977 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
46978 copied from the Linux kernel sources. This patch explicitly specifies
46979 this origin for all the copied headers, and for those missing copyright
46980 information, adds it.
46981
46982 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
46983 in the latest kernel sources by 'at91sam9_smc.h'.
46984
46985 The copyright information has been confirmed by the AT91 Linux kernel
46986 maintainer, Andrew Victor <avictor.za@gmail.com>.
46987
46988 Signed-off-by: Stelian Pop <stelian@popies.net>
46989 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
46990
46991 commit 79dd1712689d6a5031d7cbff54957049680751c7
46992 Author: Markus Klotzbücher <mk@denx.de>
46993 Date: Thu May 8 16:00:55 2008 +0200
46994
46995 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
46996
46997 When using dhcp/bootp the "netmask" environment variable is not set
46998 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
46999 desireable, so the following patch adds this this option to the board
47000 config.
47001
47002 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
47003 Signed-off-by: Stefan Roese <sr@denx.de>
47004
47005 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
47006 Author: Stefan Roese <sr@denx.de>
47007 Date: Sat May 10 10:30:36 2008 +0200
47008
47009 ppc4xx: Update Makalu defconfig to use device-tree booting as default
47010
47011 This patch reworks the default environment on Makalu. Now "net_nfs" for
47012 example uses the device-tree style booting formerly know as "net_nfs_fdt".
47013 Also the addresses in RAM were changed because of the new image booting
47014 support, which check for image overwriting. So the addresses needed to
47015 get adjusted.
47016
47017 Signed-off-by: Stefan Roese <sr@denx.de>
47018
47019 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
47020 Author: Becky Bruce <bgill@freescale.com>
47021 Date: Wed May 7 13:28:16 2008 -0500
47022
47023 PPC: fix map_physmem build warning
47024
47025 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
47026 enabled. This quiets the warning.
47027
47028 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
47029
47030 commit 36f32675f40292002ee1fed252c180a43022d2d4
47031 Author: Becky Bruce <bgill@freescale.com>
47032 Date: Wed May 7 13:24:57 2008 -0500
47033
47034 Update pci code to use phys_addr_t
47035
47036 Physical addrs need to be represented by phys_addr_t, not
47037 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT
47038 are going to fail mightily.
47039
47040 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
47041
47042 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
47043 Author: Nick Spence <nick.spence@freescale.com>
47044 Date: Thu May 8 22:32:22 2008 -0700
47045
47046 Support legacy multi-type images without FDT section.
47047
47048 This patch enables legacy multi-type images containing only a Linux kernel
47049 and root file system to be loaded, maintaining compatibility with previous
47050 versions of u-boot.
47051
47052 This is required when using old image files such as a Linux 2.4 kernel /
47053 filesystem.
47054
47055 Signed-off-by: Nick Spence <nick.spence@freescale.com>
47056 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
47057
47058 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
47059 Author: Wolfgang Denk <wd@denx.de>
47060 Date: Sat May 10 00:38:02 2008 +0200
47061
47062 Update CHANGELOG.
47063
47064 Signed-off-by: Wolfgang Denk <wd@denx.de>
47065
47066 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
47067 Author: Wolfgang Denk <wd@denx.de>
47068 Date: Sat May 10 00:36:09 2008 +0200
47069
47070 post/cpu/ppc4xx/Makefile: line length cleanup
47071
47072 Signed-off-by: Wolfgang Denk <wd@denx.de>
47073
47074 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
47075 Author: Stelian Pop <stelian@popies.net>
47076 Date: Thu May 8 22:52:09 2008 +0200
47077
47078 Fix @ -> <at> substitution
47079
47080 When applying the AT91CAP9 patches upstream, something transformed
47081 the '@' character into the ' <at> ' sequence.
47082
47083 The patch below restores the original form in all the places where
47084 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
47085 were copied from AT91CAP9, and a couple of other files where the
47086 ' <at> ' sequence was present).
47087
47088 Signed-off-by: Stelian Pop <stelian@popies.net>
47089
47090 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
47091 Author: Stelian Pop <stelian@popies.net>
47092 Date: Thu May 8 22:52:10 2008 +0200
47093
47094 Update origin and copyright information in arch-at91sam9 header files
47095
47096 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
47097 copied from the Linux kernel sources. This patch explicitly specifies
47098 this origin for all the copied headers, and for those missing copyright
47099 information, adds it.
47100
47101 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
47102 in the latest kernel sources by 'at91sam9_smc.h'.
47103
47104 The copyright information has been confirmed by the AT91 Linux kernel
47105 maintainer, Andrew Victor <avictor.za@gmail.com>.
47106
47107 Signed-off-by: Stelian Pop <stelian@popies.net>
47108
47109 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
47110 Author: Stelian Pop <stelian@popies.net>
47111 Date: Thu May 8 22:52:11 2008 +0200
47112
47113 Add copyright information in Atmel boards partition.c
47114
47115 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
47116 the new created files. This patch fixes the problem.
47117
47118 Signed-off-by: Stelian Pop <stelian@popies.net>
47119
47120 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
47121 Author: Guennadi Liakhovetski <lg@denx.de>
47122 Date: Thu May 8 10:09:27 2008 +0200
47123
47124 mx31ads: fix 32kHz clock handling
47125
47126 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
47127 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
47128 Also fix a typo when verifying a jumper configuration. While at it, make
47129 two needlessly global functions static.
47130
47131 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
47132
47133 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
47134 Author: Marian Balakowicz <m8@semihalf.com>
47135 Date: Wed May 7 13:10:04 2008 +0200
47136
47137 Avoid initrd and logbuffer area overlaps
47138
47139 Add logbuffer to reserved LMB areas to prevent initrd allocation
47140 from overlaping with it.
47141
47142 Make sure to use correct logbuffer base address.
47143
47144 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47145
47146 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
47147 Author: Marian Balakowicz <m8@semihalf.com>
47148 Date: Wed May 7 13:08:54 2008 +0200
47149
47150 ppc: Cleanup get_effective_memsize() use
47151
47152 Removed duplicated effective memory size calculation code.
47153
47154 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47155
47156 commit 273c37d843d5b581090378016cd12dd9c586907b
47157 Author: Marian Balakowicz <m8@semihalf.com>
47158 Date: Wed May 7 09:03:53 2008 +0200
47159
47160 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
47161
47162 Recent modifcations to LOGBUFFER handling code were incorrecly
47163 introduced to fit_check_kernel() routine during
47164 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
47165 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
47166
47167 This patch cleans up this merge issue.
47168
47169 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
47170
47171 commit bc11756daff89a3de09ca80adac962b88cf06e6e
47172 Author: Grant Erickson <gerickson@nuovations.com>
47173 Date: Tue May 6 20:16:15 2008 -0700
47174
47175 Propagate Error Status to the Shell on fw_printenv Errors
47176
47177 Changed implementation such that fw_printenv returns failure status
47178 when one or more specified variables do not exist or when incorrect
47179 command syntax is used.
47180
47181 This aids scripting fw_printenv such that the script can key of the
47182 return status rather than relying on standard error "scraping".
47183
47184 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
47185 Signed-off-by: Wolfgang Denk <wd@denx.de>
47186
47187 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
47188 Author: Grant Erickson <gerickson@nuovations.com>
47189 Date: Tue May 6 16:18:00 2008 -0700
47190
47191 Fix Compilation Errors with 'tools/env/fw_printenv'
47192
47193 In the current top-of-tree, 1.3.3.-rc2, the optional tool
47194 'tools/env/fw_printenv' fails to compile for two reasons:
47195
47196 1) The header watchdog.h cannot be found.
47197 2) The header zlib.h is picked up from the tool chain rather than the
47198 project causing a prototype conflict for crc32.
47199
47200 This patch addresses both of these issues.
47201
47202 Platforms Tested On:
47203 - AMCC "Kilauea"
47204
47205 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
47206
47207 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
47208 Author: James Yang <James.Yang@freescale.com>
47209 Date: Mon May 5 10:22:53 2008 -0500
47210
47211 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
47212
47213 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
47214 work before relocating to RAM because command history is written into
47215 a global array that is not writable before relocation. This patch
47216 defers to the no-editing and no-history code in readline_into_buffer()
47217 if it is called before relocation.
47218
47219 Signed-off-by: James Yang <James.Yang@freescale.com>
47220 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47221
47222 commit 726c0f1e5f108dccea052965123b95837d2bd402
47223 Author: Detlev Zundel <dzu@denx.de>
47224 Date: Mon May 5 16:11:22 2008 +0200
47225
47226 cosmetic: Adjust coding style for switch statements to be consistent
47227
47228 Signed-off-by: Detlev Zundel <dzu@denx.de>
47229
47230 commit 574b319512b13e10800f0045e39b993f4ca25e42
47231 Author: Detlev Zundel <dzu@denx.de>
47232 Date: Mon May 5 16:11:21 2008 +0200
47233
47234 Fix disk type output in disk/part.c
47235
47236 Signed-off-by: Detlev Zundel <dzu@denx.de>
47237
47238 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
47239 Author: Vlad Lungu <vlad.lungu@windriver.com>
47240 Date: Mon May 5 14:20:03 2008 +0300
47241
47242 Mail address change, documentation modified
47243
47244 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
47245
47246 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
47247 Author: Michal Simek <monstr@monstr.eu>
47248 Date: Sun May 4 15:42:41 2008 +0200
47249
47250 microblaze: Repare intc handling
47251
47252 Signed-off-by: Michal Simek <monstr@monstr.eu>
47253
47254 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
47255 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47256 Date: Sun May 4 15:17:52 2008 +0200
47257
47258 include/gitignore: update to all architectures
47259
47260 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47261
47262 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
47263 Author: Marcel Ziswiler <marcel@ziswiler.com>
47264 Date: Mon May 5 02:12:06 2008 +0200
47265
47266 ide: Remove spurious second include of io.h
47267
47268 Removed the second include, with all the #ifdef around as suggested by Wolfgang.
47269
47270 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47271
47272 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
47273 Author: Adrian Filipi <adrian.filipi@eurotech.com>
47274 Date: Tue May 6 16:46:37 2008 -0400
47275
47276 Fix some typos
47277
47278 This patch fixes three typos.
47279 The first is a repetition of CONFIG_CMD_BSP.
47280 The second makes the #endif comment match its #if.
47281 The third is a spelling error.
47282
47283 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
47284
47285 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
47286 Author: Grant Erickson <gerickson@nuovations.com>
47287 Date: Sun May 4 16:45:01 2008 -0700
47288
47289 Recognize 'powerpc' As an Alias for IH_ARCH_PPC
47290
47291 Add support for the recognition of 'powerpc' as an alias for the PowerPC
47292 architecture type since Linux is already trending in that direction,
47293 preferring 'powerpc' to 'ppc'.
47294
47295 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
47296
47297 commit f5a24259190c388c2527bdc49fee34577d862cc7
47298 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
47299 Date: Fri May 2 13:35:15 2008 -0700
47300
47301 7450 and 86xx L2 cache invalidate bug corrections
47302
47303 The 7610 and related parts have an L2IP bit in the L2CR that is
47304 monitored to signal when the L2 cache invalidate is complete whereas the
47305 7450 and related parts utilize L2I for this purpose. However, the
47306 current code does not account for this difference. Additionally the 86xx
47307 L2 cache invalidate code used an "andi" instruction where an "andis"
47308 instruction should have been used.
47309
47310 This patch addresses both of these bugs.
47311
47312 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
47313 Acked-By: Jon Loeliger <jdl@freescale.com>
47314
47315 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
47316 Author: Wolfgang Denk <wd@denx.de>
47317 Date: Fri May 9 10:16:13 2008 +0200
47318
47319 Avoid infinite loop "Generating include/autoconf.mk"
47320
47321 Fix a bogus circular dependency that caused an infinite loop of
47322 "Generating include/autoconf.mk" again and again.
47323
47324 Signed-off-by: Wolfgang Denk <wd@denx.de>
47325
47326 commit 567fb852178dbf59529d7301620a3f3732a4b02d
47327 Author: Stelian Pop <stelian@popies.net>
47328 Date: Thu May 8 22:52:09 2008 +0200
47329
47330 Fix @ -> <at> substitution
47331
47332 When applying the AT91CAP9 patches upstream, something transformed
47333 the '@' character into the ' <at> ' sequence.
47334
47335 The patch below restores the original form in all the places where
47336 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
47337 were copied from AT91CAP9, and a couple of other files where the
47338 ' <at> ' sequence was present).
47339
47340 Signed-off-by: Stelian Pop <stelian@popies.net>
47341 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47342
47343 commit 73ccb3410a0785593cda7aee455dfc51f790e281
47344 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
47345 Date: Mon Apr 28 14:04:32 2008 +0200
47346
47347 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
47348
47349 Signed-off-by: Gary Jennejohn <garyj@denx.de>
47350 Signed-off-by: Stefan Roese <sr@denx.de>
47351
47352 commit ef2642625cbfb1c3695e3478d08ae515052a4950
47353 Author: Stefan Roese <sr@denx.de>
47354 Date: Thu May 8 11:10:46 2008 +0200
47355
47356 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
47357
47358 Signed-off-by: Stefan Roese <sr@denx.de>
47359
47360 commit a00eccfebc954ad9485161efeca7d9aaf626d530
47361 Author: Stefan Roese <sr@denx.de>
47362 Date: Thu May 8 11:05:15 2008 +0200
47363
47364 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
47365
47366 This patch adds fdt (flattened device tree) support to all remaining AMCC
47367 eval boards. Most newer boards already support device tree. With this patch,
47368 all AMCC boards now enable device tree passing from U-Boot to Linux
47369 arch/powerpc kernels.
47370
47371 Signed-off-by: Stefan Roese <sr@denx.de>
47372
47373 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
47374 Author: Stefan Roese <sr@denx.de>
47375 Date: Thu May 8 11:01:09 2008 +0200
47376
47377 ppc4xx: Add weak default ft_board_setup() routine
47378
47379 This patch adds a default ft_board_setup() routine to the 4xx fdt code.
47380 This routine is defined as weak and can be overwritten by a board specific
47381 one if needed.
47382
47383 Signed-off-by: Stefan Roese <sr@denx.de>
47384
47385 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
47386 Author: Stefan Roese <sr@denx.de>
47387 Date: Thu May 8 10:48:58 2008 +0200
47388
47389 ppc4xx: acadia: Add fdt support and fix section overlap problem
47390
47391 This patch adds fdt (flattened device tree) support to the AMCC
47392 Acadia eval board. This increases the image size and it doesn't
47393 fit anymore into 256kByte. Since we didn't want to remove features
47394 from the configuration, we decided to increase the U-Boot image size
47395 (add one flash sector).
47396
47397 Also changed the default environment definition to make it
47398 independent of such changes.
47399
47400 Signed-off-by: Stefan Roese <sr@denx.de>
47401
47402 commit 4adb3023de75bc150f088c8935db340930ad38c8
47403 Author: Ira Snyder <iws@ovro.caltech.edu>
47404 Date: Tue Apr 29 11:18:54 2008 -0700
47405
47406 ppc4xx: Add device tree support to AMCC Yosemite
47407
47408 Add support for booting with a device tree blob. This is needed to boot
47409 ARCH=powerpc kernels. Also add support for setting the eth0 mac address
47410 via the ethaddr variable.
47411
47412 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
47413 Signed-off-by: Stefan Roese <sr@denx.de>
47414
47415 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
47416 Author: Dave Mitchell <dmitchell@amcc.com>
47417 Date: Wed May 7 09:00:23 2008 -0700
47418
47419 ppc4xx: Fix typos in 460GT/EX FBDV array
47420
47421 Corrected two typos in the 460GT/EX FBDV array.
47422
47423 Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
47424 Signed-off-by: Stefan Roese <sr@denx.de>
47425
47426 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
47427 Author: Andy Fleming <afleming@freescale.com>
47428 Date: Wed May 7 16:54:31 2008 -0500
47429
47430 85xx: Limit CPU2 workaround to parts that have the errata
47431
47432 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
47433 Signed-off-by: Andy Fleming <afleming@freescale.com>
47434
47435 commit a5fe514e8ace564300d2c1d73846ddff49654243
47436 Author: Lee Nipper <lee.nipper@freescale.com>
47437 Date: Fri Apr 25 15:44:45 2008 -0500
47438
47439 mpc83xx: system performance settings for MPC8349EMDS.
47440
47441 These same settings are used on MPC8349ITX, and
47442 improve performance on MPC8349EMDS.
47443
47444 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
47445 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
47446
47447 commit 49387dba910e485640b575e920ee463b7e611dc3
47448 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47449 Date: Tue May 6 13:22:52 2008 +0900
47450
47451 [MIPS] cpu/mips/cache.S: Fix build warning
47452
47453 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
47454 warns illegal global symbol references by bal (and jal also) instruction.
47455 This does not happen with the latest binutils v2.18.
47456
47457 Here's an example on gth2_config:
47458
47459 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
47460 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
47461 c -EB -c -o cache.o cache.S
47462 cache.S: Assembler messages:
47463 cache.S:243: Warning: Pretending global symbol used as branch target is local.
47464 cache.S:250: Warning: Pretending global symbol used as branch target is local.
47465
47466 In principle, gas might be sensitive to global symbol references in PIC
47467 code because they should be processed through GOT (global offset table).
47468 But if `bal' instruction is used, it results in PC-based offset jump.
47469 This is the cause of this warning.
47470
47471 In practice, we know it doesn't matter whether PC-based reference or GOT-
47472 based. As for this case, both will work before/after relocation. But let's
47473 fix the code.
47474
47475 This patch explicitly sets up a target address, then jump there.
47476 Here's an example of disassembled code with/without this patch.
47477
47478 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20>
47479 9000066c: ac80fffc sw zero,-4(a0)
47480 90000670: 01402821 move a1,t2
47481 -90000674: 0411ffba bal 90000560 <mips_init_icache>
47482 -90000678: 01803021 move a2,t4
47483 -9000067c: 01602821 move a1,t3
47484 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache>
47485 -90000684: 01a03021 move a2,t5
47486 -90000688: 03000008 jr t8
47487 -9000068c: 00000000 nop
47488 +90000674: 01803021 move a2,t4
47489 +90000678: 8f8f83ec lw t7,-31764(gp)
47490 +9000067c: 01e0f809 jalr t7
47491 +90000680: 00000000 nop
47492 +90000684: 01602821 move a1,t3
47493 +90000688: 01a03021 move a2,t5
47494 +9000068c: 8f8f81e0 lw t7,-32288(gp)
47495 +90000690: 01e0f809 jalr t7
47496 +90000694: 00000000 nop
47497 +90000698: 03000008 jr t8
47498 +9000069c: 00000000 nop
47499
47500 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47501
47502 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
47503 Author: Vlad Lungu <vlad.lungu@windriver.com>
47504 Date: Mon May 5 14:04:00 2008 +0300
47505
47506 Allow building mips versions with ELDK 3.1.1
47507
47508 .gpword works only with local symbols on certain binutils versions
47509
47510 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
47511
47512 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
47513 Author: Wolfgang Denk <wd@denx.de>
47514 Date: Mon May 5 12:52:36 2008 +0200
47515
47516 MAKEALL: add inka4x0 board
47517
47518 Signed-off-by: Wolfgang Denk <wd@denx.de>
47519
47520 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
47521 Author: Wolfgang Denk <wd@denx.de>
47522 Date: Sun May 4 21:34:23 2008 +0200
47523
47524 kb9202 board: fix build problem.
47525
47526 Signed-off-by: Wolfgang Denk <wd@denx.de>
47527
47528 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
47529 Author: Wolfgang Denk <wd@denx.de>
47530 Date: Sun May 4 12:10:33 2008 +0200
47531
47532 Prepare for v1.3.3-rc3
47533
47534 Update ChNAGELOG, minor white space cleanup.
47535
47536 Signed-off-by: Wolfgang Denk <wd@denx.de>
47537
47538 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
47539 Author: Wolfgang Denk <wd@denx.de>
47540 Date: Sun May 4 00:35:15 2008 +0200
47541
47542 drivers/net/tsec.c: Fix typo.
47543
47544 Signed-off-by: Wolfgang Denk <wd@denx.de>
47545
47546 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
47547 Author: Mike Frysinger <vapier@gentoo.org>
47548 Date: Fri May 2 21:45:12 2008 -0400
47549
47550 version_autogenerated.h: use printf rather than echo -n
47551
47552 Some systems are dumb and do not implement the -n flag to echo (like OS X).
47553 Convert the Makefile to use printf as this should work everywhere.
47554
47555 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47556 Signed-off-by: Wolfgang Denk <wd@denx.de>
47557
47558 commit 4acc2a108ad0a669165924704a6cb083f9138242
47559 Author: Mike Frysinger <vapier@gentoo.org>
47560 Date: Fri May 2 18:17:50 2008 -0400
47561
47562 fix building when saveenv is disabled in some setups
47563
47564 If you enable environment in the flash, but disable the embedded
47565 option, and you disable the saveenv command, then the #if nested
47566 logic will trigger a compile failure:
47567 env_flash.c: In function 'env_relocate_spec':
47568 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
47569 The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
47570
47571 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47572
47573 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
47574 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
47575 Date: Fri May 2 16:10:04 2008 -0400
47576
47577 SBC8548: fix address mask to allow 64M flash
47578
47579 Fix incorrect mask to enable all 64MB of onboard flash.
47580 Previously U-Boot incorrectly mapped only 8MB of flash, this
47581 patch correctly maps all the available flash.
47582
47583 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
47584
47585 commit 3648085c464c8c22ef76fab006ca4344d3796124
47586 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47587 Date: Fri May 2 19:48:56 2008 +0200
47588
47589 qemu_mips: add README
47590
47591 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47592
47593 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
47594 Author: Marcel Ziswiler <marcel@ziswiler.com>
47595 Date: Fri May 2 02:35:59 2008 +0200
47596
47597 Fix misspelled comment
47598
47599 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47600
47601 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
47602 Author: Mike Frysinger <vapier@gentoo.org>
47603 Date: Thu May 1 04:13:05 2008 -0400
47604
47605 mkimage: make mmap() checks consistent
47606
47607 The mmap() related code is full of inconsistent casts/constants when
47608 it comes to error checking, and may break when building on some
47609 systems (like ones that do not implicitly define the caddr_t type).
47610 Let's just avoid the whole mess by writing the code nice and clean in
47611 the first place.
47612
47613 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
47614
47615 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
47616 Author: Marcel Ziswiler <marcel@ziswiler.com>
47617 Date: Thu May 1 09:05:34 2008 +0200
47618
47619 Fix defined but not used build warning
47620
47621 - warning: 'srom' defined but not used
47622
47623 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47624
47625 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
47626 Author: Marcel Ziswiler <marcel@ziswiler.com>
47627 Date: Thu May 1 09:05:26 2008 +0200
47628
47629 Fix implicit declaration build warnings
47630
47631 - warning: implicit declaration of function ‘serial_initialize’
47632
47633 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
47634
47635 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
47636 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
47637 Date: Tue Apr 29 19:18:32 2008 +0200
47638
47639 TSEC: add config options for VSC8601 RGMII PHY
47640
47641 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
47642 and Tx clock lines. They are configured using 2 bits in extended
47643 register 0x17.
47644 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
47645 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
47646
47647 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
47648 Acked-by: Andy Fleming <afleming@freescale.com>
47649 Acked-by: Ben Warren <biggerbadderben@gmail.com>
47650 --
47651
47652 drivers/net/tsec.c | 6 ++++++
47653 drivers/net/tsec.h | 3 +++
47654 2 files changed, 9 insertions(+), 0 deletions(-)
47655
47656 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
47657 Author: Wolfgang Denk <wd@denx.de>
47658 Date: Sat May 3 23:07:15 2008 +0200
47659
47660 Revert "ColdFire: Get information from the correct GCC"
47661
47662 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
47663 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
47664
47665 commit c4e5f52a58d278eebb87f476e353972c5dacea40
47666 Author: Wolfgang Denk <wd@denx.de>
47667 Date: Sat May 3 22:25:00 2008 +0200
47668
47669 config.mk: use correct (cross) compiler
47670
47671 Some config.mk files reference $(CC) to test for specific tool chain
47672 features, so make sure $(CC) gets set before including any such
47673 config files.
47674
47675 This patch replaces commit b7166e05a5 ("ColdFire: Get information from
47676 the correct GCC").
47677
47678 Signed-off-by: Wolfgang Denk <wd@denx.de>
47679
47680 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
47681 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47682 Date: Thu May 1 02:13:44 2008 +0200
47683
47684 pxa: fix previous definition on cpu init
47685
47686 start.S:183:1: warning: "ICMR" redefined
47687 In file included from start.S:33:
47688 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
47689 start.S:187:1: warning: "RCSR" redefined
47690 ...
47691
47692 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47693
47694 commit 6d12e697de794d700767f22f950e3026ccf4daf6
47695 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47696 Date: Thu May 1 02:13:43 2008 +0200
47697
47698 pxa: fix pcmcia operation on 'i' may be undefined
47699
47700 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47701 Signed-off-by: Wolfgang Denk <wd@denx.de>
47702
47703 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
47704 Author: Kumar Gala <galak@kernel.crashing.org>
47705 Date: Wed Apr 30 16:24:35 2008 -0500
47706
47707 MPC8610HPCD: Drop -O2 from the build flags
47708
47709 Make the flags use -Os like all other boards
47710
47711 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47712
47713 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
47714 Author: Stefan Roese <sr@denx.de>
47715 Date: Wed Apr 30 15:50:39 2008 +0200
47716
47717 RTC: Fix month offset by one problem in M41T62 RTC driver
47718
47719 This patch fixes a problem with the month being read and written
47720 incorrectly (offset by one). This only gets visible by also using
47721 the Linux driver (rtc-m41t80).
47722
47723 Tested on AMCC Canyonlands.
47724
47725 Signed-off-by: Stefan Roese <sr@denx.de>
47726
47727 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
47728 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47729 Date: Sat May 3 13:51:44 2008 +0900
47730
47731 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
47732
47733 Current trick to pick up GNU assembler minor version uses a dot(.) as a
47734 delimiter, and take the second field to obtain minor version number. But
47735 as can be expected, this doesn't work with a version string which has
47736 dots more than needs.
47737
47738 Here's an example:
47739
47740 $ mips-linux-gnu-as --version | grep 'GNU assembler'
47741 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
47742 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
47743 2-129) 2
47744 $
47745
47746 This patch restricts the version format to 2.XX.XX... This will work
47747 in most cases.
47748
47749 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
47750 2.18.50.20080215
47751 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
47752 18
47753 $
47754
47755 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47756
47757 commit ea638951acead7f1086c908c0b9f086beab82a22
47758 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47759 Date: Sat May 3 13:51:28 2008 +0900
47760
47761 [MIPS] cpu/mips/cache.S: Add dcache_enable
47762
47763 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
47764 "allow ports to override bootelf behavior") requires ports to have this
47765 function.
47766
47767 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
47768 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47769
47770 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
47771 Author: Wolfgang Denk <wd@denx.de>
47772 Date: Thu May 1 21:30:16 2008 +0200
47773
47774 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
47775
47776 Onenand needs a version of memcpy() which performs 16 bit accesses
47777 only; make sure the name does not conflict with the standard
47778 function.
47779
47780 Signed-off-by: Wolfgang Denk <wd@denx.de>
47781
47782 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
47783 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47784 Date: Wed Apr 30 22:38:17 2008 +0200
47785
47786 cmd_nand: fix warning: str2long ncompatible pointer type
47787
47788 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
47789
47790 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
47791 Author: Timur Tabi <timur@freescale.com>
47792 Date: Fri Apr 4 11:16:11 2008 -0500
47793
47794 Fix calculation of I2C clock for some 86xx chips
47795
47796 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
47797 There is no pattern that can be used to determine which chips use which
47798 frequency, so the only way to determine is to look up the actual SOC
47799 designation and use the right value for that SOC.
47800
47801 Signed-off-by: Timur Tabi <timur@freescale.com>
47802
47803 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
47804 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47805 Date: Wed Apr 30 12:11:19 2008 -0500
47806
47807 ColdFire: Fix ethernet hang issue for mcf547x_8x
47808
47809 The ethernet hang is caused by receiving buffer in DRAM is not
47810 yet ready due to access cycles require longer time in DRAM.
47811 Relocate DMA buffer descriptors from DRAM to internal SRAM.
47812
47813 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47814
47815 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
47816 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47817 Date: Wed Apr 30 12:10:47 2008 -0500
47818
47819 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
47820
47821 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
47822 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47823
47824 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
47825 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47826 Date: Wed Apr 30 12:10:23 2008 -0500
47827
47828 ColdFire: Get information from the correct GCC
47829
47830 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
47831 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
47832
47833 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
47834 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
47835 Date: Wed Apr 30 18:02:59 2008 +0200
47836
47837 Fix warning in env_nand.c if compiled for DaVinci Schmoogie
47838
47839 Fix warnings
47840
47841 nv_nand.c: In function 'saveenv':
47842 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
47843 env_nand.c: In function 'env_relocate_spec':
47844 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
47845
47846 if compiled for davinci_schmoogie_config.
47847
47848 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
47849 Ack by: Sergey Kubushyn <ksi@koi8.net>
47850
47851 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
47852 Author: Anatolij Gustschin <agust@denx.de>
47853 Date: Wed Apr 30 13:34:40 2008 +0200
47854
47855 Fix warnings while compiling net/net.c for MPC8610HPCD board
47856
47857 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
47858 causing overriding default -Os option. New gcc (ver. 4.2.2)
47859 produces warnings while compiling net/net.c file with -O2
47860 option. The patch is an attempt to fix this.
47861
47862 Signed-off-by: Anatolij Gustschin <agust@denx.de>
47863
47864 commit 58b575e575c25fdf8c88141e145db201f3092149
47865 Author: Sascha Laue <Sascha.Laue@gmx.biz>
47866 Date: Wed Apr 30 15:23:38 2008 +0200
47867
47868 lwmon5: fix offset error in sysmon0 POST
47869
47870 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
47871 Signed-off-by: Wolfgang Denk <wd@denx.de>
47872
47873 commit e7419b243a373de4ee042f7d4f45f66de787240d
47874 Author: Sascha Laue <Sascha.Laue@gmx.biz>
47875 Date: Wed Apr 30 15:16:35 2008 +0200
47876
47877 lwmon5: fix manual merge error in POST
47878
47879 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
47880
47881 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
47882 Author: Wolfgang Denk <wd@denx.de>
47883 Date: Wed Apr 30 17:46:26 2008 +0200
47884
47885 cmd_nand.c: fix another 'incompatible pointer type' warning.
47886
47887 Signed-off-by: Wolfgang Denk <wd@denx.de>
47888
47889 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
47890 Author: Wolfgang Denk <wd@denx.de>
47891 Date: Wed Apr 30 17:25:07 2008 +0200
47892
47893 Makefile: fix parallel builds
47894
47895 This problem shows up with parallel builds only; it results in
47896 somewhat cryptic error messages like
47897
47898 $ JOBS=-j6 MAKEALL netstar
47899 Configuring for netstar board...
47900 arm-linux-ld: cannot find -lgeneric
47901 make[1]: *** [eeprom.srec] Error 1
47902
47903 A few boards (like netstar and voiceblue) need some libraries for
47904 building; however, the board Makefile does not contain any such
47905 dependencies which may cause problems with parallel builds. Adding
47906 such dependencies is difficult as we would also have to provide build
47907 rules, which already exist in the respective library Makefiles.
47908
47909 To solve this, we make sure that all libraries get built before the
47910 board code.
47911
47912 Signed-off-by: Wolfgang Denk <wd@denx.de>
47913
47914 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
47915 Author: Stefan Roese <sr@denx.de>
47916 Date: Wed Apr 30 14:51:36 2008 +0200
47917
47918 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
47919
47920 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
47921 used for NAND booting to match the values needed for the new 512MB
47922 DIMM modules shipped with the productions boards:
47923
47924 Crucial: CT6464AC667.8FB
47925
47926 Signed-off-by: Stefan Roese <sr@denx.de>
47927
47928 commit ea9202a659dc75996facf1475f1866a19a9d3129
47929 Author: Stefan Roese <sr@denx.de>
47930 Date: Wed Apr 30 10:49:43 2008 +0200
47931
47932 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
47933
47934 This patch fixes a problem with DIMMs that have 8 banks. Now the
47935 MCIF0_MBxCF register will be setup correctly for this setup too.
47936
47937 This was noticed with the 512MB DIMM on Canyonlands/Glacier.
47938
47939 Signed-off-by: Stefan Roese <sr@denx.de>
47940
47941 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
47942 Author: Wolfgang Denk <wd@denx.de>
47943 Date: Tue Apr 29 23:41:06 2008 +0200
47944
47945 Prepare v1.3.3-rc2, again.
47946
47947 Signed-off-by: Wolfgang Denk <wd@denx.de>
47948
47949 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
47950 Author: Wolfgang Denk <wd@denx.de>
47951 Date: Tue Apr 29 23:35:24 2008 +0200
47952
47953 Prepare v1.3.3-rc2
47954
47955 Signed-off-by: Wolfgang Denk <wd@denx.de>
47956
47957 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
47958 Author: Wolfgang Denk <wd@denx.de>
47959 Date: Tue Apr 29 23:32:20 2008 +0200
47960
47961 common/env_nand.c: fix one more incompatible pointer type issue
47962
47963 Signed-off-by: Wolfgang Denk <wd@denx.de>
47964
47965 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
47966 Author: Wolfgang Denk <wd@denx.de>
47967 Date: Tue Apr 29 21:33:08 2008 +0200
47968
47969 post/board/lwmon5/sysmon.c: fix manual merge error.
47970
47971 Signed-off-by: Wolfgang Denk <wd@denx.de>
47972
47973 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
47974 Author: Kumar Gala <galak@kernel.crashing.org>
47975 Date: Tue Apr 29 12:54:59 2008 -0500
47976
47977 85xx: Add -mno-spe to e500/85xx builds
47978
47979 Newer gcc's might be configured to enable autovectorization by default.
47980 If we happen to build with one of those compilers we will get SPE
47981 instructions in random code.
47982
47983 -mno-spe disables the compiler for automatically generating SPE
47984 instructions without our knowledge.
47985
47986 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47987
47988 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
47989 Author: Kumar Gala <galak@kernel.crashing.org>
47990 Date: Tue Apr 29 10:18:34 2008 -0500
47991
47992 Update .gitignore for zlib.h
47993
47994 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
47995
47996 commit 45239cf4152109caa925145ccd433529902df887
47997 Author: Kumar Gala <galak@kernel.crashing.org>
47998 Date: Tue Apr 29 10:27:08 2008 -0500
47999
48000 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
48001
48002 All the 85xx and 86xx UM describe the register as timing_cfg_3
48003 not as ext_refrec.
48004
48005 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48006
48007 commit ef7d30b14394e4c4a153118f5845760cadada02a
48008 Author: Kumar Gala <galak@kernel.crashing.org>
48009 Date: Tue Apr 29 10:28:34 2008 -0500
48010
48011 85xx/86xx: Rename DDR init address and init extended address register
48012
48013 Rename init_addr and init_ext_addr to match the docs between
48014 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'.
48015
48016 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48017
48018 commit cf6cc014270549684873a5972d2595052c468cb6
48019 Author: Kumar Gala <galak@kernel.crashing.org>
48020 Date: Mon Apr 28 02:24:04 2008 -0500
48021
48022 85xx: Additional fixes and cleanup of MP code
48023
48024 * adjust __spin_table alignment to match ePAPR v0.94 spec
48025 * loop over all cpus when determing who is up. This fixes an issue if
48026 the "boot cpu" isn't core0. The "boot cpu" will already be in the
48027 cpu_up_mask so there is no harm
48028 * Added some protection in the code to ensure proper behavior. These
48029 changes are explicitly needed but don't hurt:
48030 - Added eieio to ensure the "hot word" of the table is written after
48031 all other table updates have occurred.
48032 - Added isync to ensure we don't prefetch loading of table entries
48033 until we a released
48034
48035 These issues we raised by Dave Liu.
48036
48037 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48038
48039 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
48040 Author: Yuri Tikhonov <yur@emcraft.com>
48041 Date: Tue Apr 29 15:06:41 2008 +0200
48042
48043 lwmon5: minor clean-up to include/configs/lwmon5.h
48044
48045 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
48046 the CFG_DSPIC_TEST_ADDR definition more readable.
48047
48048 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48049
48050 commit f4c4d21a885ccc222fd0acdf653b683249e85117
48051 Author: Stefan Roese <sr@denx.de>
48052 Date: Tue Apr 29 16:08:05 2008 +0200
48053
48054 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
48055
48056 Signed-off-by: Stefan Roese <sr@denx.de>
48057
48058 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
48059 Author: Yuri Tikhonov <yur@emcraft.com>
48060 Date: Tue Apr 29 13:32:45 2008 +0200
48061
48062 ppc flush_cache: add watch-dog triggering into the loops.
48063
48064 Some boards (e.g. lwmon5) need rather a frequent watch-dog
48065 kicking. Since the time it takes for the flush_cache() function
48066 to complete its job depends on the size of data being flushed, one
48067 may encounter watch-dog resets on such boards when, for example,
48068 download big files over ethernet.
48069
48070 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48071
48072 commit cab99d6f3281ab6784feccf98b9b425daa58418a
48073 Author: Stefan Roese <sr@denx.de>
48074 Date: Tue Apr 29 14:44:54 2008 +0200
48075
48076 ppc4xx: Fix compilation warning in denali_spd_ddr2.c
48077
48078 Signed-off-by: Stefan Roese <sr@denx.de>
48079
48080 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
48081 Author: Stefan Roese <sr@denx.de>
48082 Date: Tue Apr 29 14:12:07 2008 +0200
48083
48084 ppc4xx: Fix Katmai CFG_MONITOR_LEN
48085
48086 Signed-off-by: Stefan Roese <sr@denx.de>
48087
48088 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
48089 Author: Stefan Roese <sr@denx.de>
48090 Date: Tue Apr 29 13:57:07 2008 +0200
48091
48092 ppc4xx: Complete remove bogus dflush()
48093
48094 Since the current dflush() implementation is know to have some problems
48095 (as seem on lwmon5 ECC init) this patch removes it completely and replaces
48096 it by using clean_dcache_range().
48097
48098 Tested on Katmai with ECC DIMM.
48099
48100 Signed-off-by: Stefan Roese <sr@denx.de>
48101
48102 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
48103 Author: Stefan Roese <sr@denx.de>
48104 Date: Tue Apr 29 13:36:51 2008 +0200
48105
48106 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
48107
48108 As it seems the "old" ECC initialization routine by using dflush() didn't
48109 write all lines in the dcache back to memory on lwmon5. This could lead
48110 to ECC error upon Linux booting. This patch changes the program_ecc()
48111 routine to now use clean_dcache_range() instead of dflush().
48112 clean_dcache_range() uses dcbst which is exactly what we want in this
48113 case.
48114
48115 Since dflush() is known is cause problems, this routine will be
48116 removed completely and replaced by clean_dcache_range() with an
48117 additional patch.
48118
48119 Signed-off-by: Stefan Roese <sr@denx.de>
48120
48121 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
48122 Author: Yuri Tikhonov <yur@emcraft.com>
48123 Date: Mon Apr 28 18:19:34 2008 +0200
48124
48125 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
48126
48127 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48128
48129 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
48130 Author: Markus Brunner <super.firetwister@googlemail.com>
48131 Date: Mon Apr 28 08:47:47 2008 +0200
48132
48133 ppc4xx: Fixup ebc clock in FDT for 405GP/EP
48134
48135 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
48136 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
48137 doesn't exist.
48138
48139 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
48140
48141 commit 2ef7503a593c77a80c2a054011970227c4b62774
48142 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48143 Date: Thu Apr 24 07:57:17 2008 +0200
48144
48145 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
48146
48147 Move non-inlied functions into specific drivers file
48148 Set get_prom as weak
48149
48150 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48151 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
48152 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48153
48154 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
48155 Author: Guennadi Liakhovetski <lg@denx.de>
48156 Date: Thu Apr 3 17:04:19 2008 +0200
48157
48158 net: make ARP timeout configurable
48159
48160 Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
48161 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
48162 to the boards get lost, which typically are ARP replies. By configuring
48163 the timeout to a lower value we significantly improve the first network
48164 transfer time on this board. The timeout is specified in milliseconds,
48165 later internally it is converted to deciseconds, because it has to be
48166 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
48167 different boards.
48168
48169 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48170 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48171
48172 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
48173 Author: Guennadi Liakhovetski <lg@denx.de>
48174 Date: Thu Apr 3 13:36:18 2008 +0200
48175
48176 minor cs8900 driver clean up
48177
48178 Remove a redundant register definition, clean up some coding style
48179 violations.
48180
48181 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48182 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
48183
48184 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
48185 Author: Wolfgang Denk <wd@denx.de>
48186 Date: Mon Apr 28 22:01:04 2008 +0200
48187
48188 jffs2_1pass.c: fix incompatible pointer type warning
48189
48190 Signed-off-by: Wolfgang Denk <wd@denx.de>
48191
48192 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
48193 Author: Sascha Laue <Sascha.Laue@gmx.biz>
48194 Date: Tue Apr 1 10:10:18 2008 +0200
48195
48196 lwmon5: update dsPIC POST spezification
48197
48198 The specification for the lwmon5 board dsPIC POST got changed.
48199 Also add defines for the temperatures and voltages.
48200
48201 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
48202
48203 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
48204 Author: Sascha Laue <Sascha.Laue@gmx.biz>
48205 Date: Tue Apr 1 15:13:03 2008 +0200
48206
48207 Fix watchdog POST for lwmon5
48208
48209 If the hardware watchdog detects a voltage error, the watchdog sets
48210 GPIO62 to low. The watchdog POST has to detect this low level.
48211
48212 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
48213 Signed-off-by: Wolfgang Denk <wd@denx.de>
48214
48215 commit dd5748bcd669f46aeb6686c1b341323843738ccc
48216 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48217 Date: Mon Apr 28 14:37:14 2008 +0200
48218
48219 rtl8169: fix compiler warnings
48220
48221 Fix multiple compiler warnings related to argument type mismatch.
48222
48223 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48224
48225 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
48226 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48227 Date: Mon Apr 28 14:36:06 2008 +0200
48228
48229 IDE: fix compiler warnings
48230
48231 The IDE driver can use 32-bit addresses in LBA mode, in which case it
48232 spits multiple warnings during compilation. Fix them.
48233
48234 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48235
48236 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
48237 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48238 Date: Mon Apr 28 14:35:57 2008 +0200
48239
48240 LinkStation: fix compiler warning, add a maintainer
48241
48242 out_8 wants a pointer to an unsigned as the first argument. Add a
48243 maintainer for Linkstation boards.
48244
48245 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
48246
48247 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
48248 Author: Wolfgang Denk <wd@denx.de>
48249 Date: Mon Apr 28 14:55:12 2008 +0200
48250
48251 cmd_nand.c: fix "differ in signedness" problem
48252
48253 Signed-off-by: Wolfgang Denk <wd@denx.de>
48254
48255 commit f2c288a35341ad02ac03b1563d786763c9c8f159
48256 Author: Wolfgang Denk <wd@denx.de>
48257 Date: Mon Apr 28 12:48:47 2008 +0200
48258
48259 pcnet.c: fix a merge issue
48260
48261 Signed-off-by: Wolfgang Denk <wd@denx.de>
48262
48263 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
48264 Author: Wolfgang Denk <wd@denx.de>
48265 Date: Mon Apr 28 12:08:18 2008 +0200
48266
48267 NAND: fix some strict-aliasing compiler warnings
48268
48269 Signed-off-by: Wolfgang Denk <wd@denx.de>
48270
48271 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
48272 Author: Stefan Roese <sr@denx.de>
48273 Date: Mon Apr 28 11:37:14 2008 +0200
48274
48275 ppc4xx: Fix compile warning of hcu4 board
48276
48277 Signed-off-by: Stefan Roese <sr@denx.de>
48278
48279 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
48280 Author: Wolfgang Denk <wd@denx.de>
48281 Date: Mon Apr 28 11:31:23 2008 +0200
48282
48283 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
48284
48285 Signed-off-by: Wolfgang Denk <wd@denx.de>
48286
48287 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
48288 Author: Guennadi Liakhovetski <lg@denx.de>
48289 Date: Mon Apr 28 00:25:32 2008 +0200
48290
48291 mx31ads: fix loadaddr environment variable define
48292
48293 Arithmetic expressions do not get evaluated under stringification. Remove
48294 default network configuration, add DHCP command support. Thanks to Felix
48295 Radensky for reporting.
48296
48297 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48298
48299 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
48300 Author: Wolfgang Denk <wd@denx.de>
48301 Date: Mon Apr 28 10:55:24 2008 +0200
48302
48303 katmai: fix section overlap problem
48304
48305 Since we didn't want to remove features from the configuration, we
48306 decided to increase the U-Boot image size (add one flash sector).
48307
48308 Also changed the default environment definition to make it
48309 independent of such changes.
48310
48311 Signed-off-by: Wolfgang Denk <wd@denx.de>
48312 Acked-by: Stefan Roese <sr@denx.de>
48313
48314 commit 941d696d25624e3cc65ebf924199541acf52d74e
48315 Author: Wolfgang Denk <wd@denx.de>
48316 Date: Mon Apr 28 10:55:24 2008 +0200
48317
48318 katmai: fix section overlap problem
48319
48320 Since we didn't want to remove features from the configuration, we
48321 decided to increase the U-Boot image size (add one flash sector).
48322
48323 Also changed the default environment definition to make it
48324 independent of such changes.
48325
48326 Signed-off-by: Wolfgang Denk <wd@denx.de>
48327 Acked-by: Stefan Roese <sr@denx.de>
48328
48329 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
48330 Author: Kumar Gala <galak@kernel.crashing.org>
48331 Date: Sat Apr 26 11:44:44 2008 -0500
48332
48333 post: Fix building with O=
48334
48335 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48336
48337 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
48338 Author: Wolfgang Denk <wd@denx.de>
48339 Date: Sat Apr 26 01:55:00 2008 +0200
48340
48341 Prepare v1.3.3-rc1
48342
48343 Signed-off-by: Wolfgang Denk <wd@denx.de>
48344
48345 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
48346 Author: Wolfgang Denk <wd@denx.de>
48347 Date: Sat Apr 26 01:25:39 2008 +0200
48348
48349 post/Makefile: make sure to use the correct flags
48350
48351 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
48352 messages to be printed.
48353
48354 Signed-off-by: Wolfgang Denk <wd@denx.de>
48355
48356 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
48357 Author: Wolfgang Denk <wd@denx.de>
48358 Date: Sat Apr 26 00:34:42 2008 +0200
48359
48360 Coding Style cleanup, update CHANGELOG
48361
48362 Signed-off-by: Wolfgang Denk <wd@denx.de>
48363
48364 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
48365 Author: Magnus Lilja <lilja.magnus@gmail.com>
48366 Date: Sun Apr 20 10:38:12 2008 +0200
48367
48368 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
48369
48370 This patch enables SPI and MC13783/RTC support for the Litekit board.
48371
48372 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
48373
48374 commit f97abbfb47d9e407354e157cae3f6369e460cd37
48375 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
48376 Date: Fri Apr 25 01:08:32 2008 -0500
48377
48378 MPC8544DS: decode pcie3 end-point configuration correctly.
48379
48380 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
48381 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48382
48383 commit 292188e15523c165c4269403fdcd33c26d89176e
48384 Author: Roy Zang <tie-fei.zang@freescale.com>
48385 Date: Fri Apr 25 00:55:09 2008 -0500
48386
48387 MPC8544DS: Removes the unknown flash message information
48388
48389 This patch removes the unknown flash message information:
48390 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
48391 This unknown flash message is caused by PromJet.
48392 Some of the board user is unhappy with this information.
48393
48394 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
48395 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48396
48397 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
48398 Author: Kim Phillips <kim.phillips@freescale.com>
48399 Date: Thu Apr 24 14:07:38 2008 -0500
48400
48401 mpc83xx: bump loadaddr over fdtaddr to 0x500000
48402
48403 this seems as a good compromise between human memory, typing,
48404 and last but not least, to accommodate for current and future kernel bloat.
48405
48406 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48407 Acked-by: Dave Liu <daveliu@freescale.com>
48408
48409 commit be5a7190265a34d968578ff266549c60f6f57654
48410 Author: Dave Liu <r63238@freescale.com>
48411 Date: Tue Apr 15 13:12:23 2008 +0800
48412
48413 mpc83xx: clean up the readme for 83xx boards
48414
48415 1. correct the typo
48416 2. correct the memory map for 837xerdb board
48417
48418 Signed-off-by: Dave Liu <daveliu@freescale.com>
48419
48420 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
48421 Author: Dave Liu <r63238@freescale.com>
48422 Date: Tue Apr 15 13:11:11 2008 +0800
48423
48424 mpc83xx: remove the unused CPM's stuff
48425
48426 The MPC83xx family never have CPM block, so remove it from 83xx.
48427
48428 Signed-off-by: Dave Liu <daveliu@freescale.com>
48429
48430 commit c63ad6325a8ac0097a54b418a3288926b0484b18
48431 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48432 Date: Fri Apr 18 16:29:40 2008 +0200
48433
48434 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
48435
48436 This patch adds a configurable flash auto protection list that can be used
48437 to make U-Boot protect flash regions in flash_init().
48438
48439 The idea has been discussed on the u-boot mailing list starting
48440 on Nov 18th, 2007.
48441
48442 Even this patch brings a new feature it is used as a bugfix for 4xx
48443 platforms where flash_init() does not completely protect the
48444 monitor's flash range in all situations.
48445
48446 U-Boot protects the flash range from CFG_MONITOR_BASE to
48447 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not
48448 include the reset vector at 0xfffffffc.
48449
48450 Example:
48451 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
48452
48453 This config option will auto protect the last 512k of flash that
48454 contains the bootloader on board like APC405 and PMC405.
48455
48456 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48457
48458 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
48459 Author: Stefan Roese <sr@denx.de>
48460 Date: Fri Apr 25 13:59:03 2008 +0200
48461
48462 ppc4xx: Remove double defines in lwmon5.h
48463
48464 introduced with latest lwmon5/POST merge
48465
48466 Signed-off-by: Stefan Roese <sr@denx.de>
48467
48468 commit 7590378fb9c686709492ceb142825cd058255956
48469 Author: Bartlomiej Sieka <tur@semihalf.com>
48470 Date: Fri Apr 25 13:54:02 2008 +0200
48471
48472 Use watchdog-aware functions when calculating hashes of images - take two
48473
48474 Some files didn't get updated properly with the "Use watchdog-aware
48475 functions when calculating hashes of images" commit, this commit
48476 fixes this.
48477
48478 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48479 Signed-off-by: Wolfgang Denk <wd@denx.de>
48480
48481 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
48482 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48483 Date: Fri Apr 25 12:01:39 2008 +0200
48484
48485 ppc4xx: Add bootcount limit handling for APC405 boards
48486
48487 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48488
48489 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
48490 Author: Bartlomiej Sieka <tur@semihalf.com>
48491 Date: Fri Apr 25 12:10:09 2008 +0200
48492
48493 Use watchdog-aware functions when calculating hashes of images
48494
48495 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48496
48497 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
48498 Author: Wolfgang Denk <wd@denx.de>
48499 Date: Fri Apr 25 12:44:08 2008 +0200
48500
48501 USB: fix more GCC 4.2.x aliasing warnings
48502
48503 Signed-off-by: Wolfgang Denk <wd@denx.de>
48504 Acked-by: Markus Klotzbuecher <mk@denx.de>
48505
48506 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
48507 Author: Wolfgang Denk <wd@denx.de>
48508 Date: Fri Apr 25 12:41:53 2008 +0200
48509
48510 lib_generic/crc32.c: add missing #include <watchdog.h>
48511
48512 Signed-off-by: Wolfgang Denk <wd@denx.de>
48513
48514 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
48515 Author: Wolfgang Denk <wd@denx.de>
48516 Date: Fri Apr 25 11:52:21 2008 +0200
48517
48518 lib_generic/crc32.c: fix compile problem
48519
48520 Signed-off-by: Wolfgang Denk <wd@denx.de>
48521
48522 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
48523 Author: Stefan Roese <sr@denx.de>
48524 Date: Tue Apr 22 12:20:32 2008 +0200
48525
48526 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
48527
48528 The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
48529 environment variable will now get passed to the Linux kernel by setting
48530 the device_type property of the PCIe device tree node. For normal root-
48531 complex configuration it will keep its defaults value of "pci" and for
48532 endpoint configuration it will get changed to "pci-endpoint".
48533
48534 Signed-off-by: Stefan Roese <sr@denx.de>
48535
48536 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
48537 Author: Yuri Tikhonov <yur@emcraft.com>
48538 Date: Thu Apr 24 10:30:53 2008 +0200
48539
48540 lwmon5: watchdog POST fix
48541
48542 Use the GPT0_MASKx registers as the temporary storage for watch-dog
48543 timer POST test instead of GPT0_COMPx. The latter
48544 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
48545
48546 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
48547 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48548
48549 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
48550 Author: Kim Phillips <kim.phillips@freescale.com>
48551 Date: Mon Apr 21 18:10:14 2008 -0500
48552
48553 lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
48554
48555 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
48556 proven problematic getting right from the start at least on 83xx and
48557 4xx.
48558
48559 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
48560
48561 commit a99715b8ebfc500f3f40e01b36b64d473938443d
48562 Author: Detlev Zundel <dzu@denx.de>
48563 Date: Fri Apr 18 14:50:01 2008 +0200
48564
48565 Realining some header definitions.
48566
48567 Signed-off-by: Detlev Zundel <dzu@denx.de>
48568
48569 commit 4acbc6c7f993cae409c424615415a3e76820f13d
48570 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48571 Date: Thu Apr 24 07:57:16 2008 +0200
48572
48573 NE2000: coding style cleanup
48574
48575 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48576
48577 commit b4aff1ffaf7120032c653357c007faa14f74d29d
48578 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48579 Date: Wed Apr 23 00:11:47 2008 +0900
48580
48581 qemu-mips.h: Add CFI support
48582
48583 CONFIG_ENV_OVERWRITE is also added.
48584
48585 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
48586
48587 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48588 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48589
48590 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
48591 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48592 Date: Tue Apr 22 22:47:27 2008 +0900
48593
48594 doc/README.mips: Add MIPS notes
48595
48596 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48597
48598 commit 215b01bba8bc662d35f72b084700b192d367dfb4
48599 Author: Bartlomiej Sieka <tur@semihalf.com>
48600 Date: Tue Apr 22 12:27:56 2008 +0200
48601
48602 Add support for calculating hashes with watchdog triggering
48603
48604 Implement watchodg-aware variants of hash calculation functions:
48605 - crc32_wd()
48606 - md5_wd()
48607 - sha1_csum_wd()
48608 The above functions calculate the hash of the input buffer in chunks,
48609 triggering the watchdog after processing each chunk. The chunk size
48610 is given as a function call parameter.
48611
48612 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48613
48614 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
48615 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
48616 Date: Wed Apr 23 11:02:12 2008 +0900
48617
48618 qemu-mips: Cleanup whitespace, indentation, etc.
48619
48620 No functional change.
48621
48622 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
48623 Then I re-created from scratch, and changed more lines than the original.
48624
48625 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48626 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
48627
48628 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
48629 Author: Vlad Lungu <vlad@comsys.ro>
48630 Date: Wed Oct 10 23:02:09 2007 +0300
48631
48632 Fixed pcnet io_base
48633
48634 Bus and phys address are not always the same
48635
48636 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
48637
48638 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
48639 Author: Wolfgang Denk <wd@denx.de>
48640 Date: Thu Apr 24 23:44:26 2008 +0200
48641
48642 drivers/net/pcnet.c: Coding Style cleanup.
48643
48644 Signed-off-by: Wolfgang Denk <wd@denx.de>
48645
48646 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
48647 Author: Vlad Lungu <vlad@comsys.ro>
48648 Date: Wed Oct 10 23:04:23 2007 +0300
48649
48650 Added Am79C970A chip id to pcnet
48651
48652 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
48653
48654 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
48655 Author: Magnus Lilja <lilja.magnus@gmail.com>
48656 Date: Sun Apr 20 10:35:03 2008 +0200
48657
48658 i.MX31: Fix architecture numbers for ADS and Litekit boards
48659
48660 Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
48661
48662 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
48663
48664 commit e7ae84d6c7288790e88639f57cb60daf89c11369
48665 Author: Magnus Lilja <lilja.magnus@gmail.com>
48666 Date: Sun Apr 20 10:36:36 2008 +0200
48667
48668 i.MX31: Use symbolic names for Litekit membases.
48669
48670 Use symbolic names instead of hard coded addresses for Litekit membases.
48671
48672 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
48673
48674 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
48675 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48676 Date: Sat Apr 19 17:59:20 2008 +0200
48677
48678 Fix show_boot_progress prototype
48679
48680 in commit fad634071 "make show_boot_progress () weak."
48681 show_boot_progress is supposed to be declared as weak but declared as
48682 inline instead.
48683
48684 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48685
48686 commit edbed247a14d70b94958010f736621212285de91
48687 Author: Bartlomiej Sieka <tur@semihalf.com>
48688 Date: Fri Apr 18 12:39:23 2008 +0200
48689
48690 Memory footprint optimizations
48691
48692 As suggested by Wolfgang Denk:
48693 - image printing functions:
48694 - remove wrappers
48695 - remove indentation prefix from functions' signatures
48696 - merge getenv_verify and getenv_autostart into one parametrized function
48697
48698 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
48699
48700 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
48701 Author: Guennadi Liakhovetski <lg@denx.de>
48702 Date: Tue Apr 15 13:33:11 2008 +0200
48703
48704 MX31ADS environment variable update, spi and rtc support
48705
48706 Update MX31ADS default environment to better match the flash layout and
48707 the memory map, support SPI and RTC.
48708
48709 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
48710
48711 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
48712 Author: Kumar Gala <galak@kernel.crashing.org>
48713 Date: Mon Apr 21 09:28:36 2008 -0500
48714
48715 85xx: Round up frequency calculations to get reasonable output
48716
48717 eg. because of rounding error we can get 799Mhz instead of 800Mhz.
48718
48719 Introduced DIV_ROUND_UP and roundup taken from linux kernel.
48720
48721 Signed-off-by: Dejan Minic <minic@freescale.com>
48722 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
48723 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48724 Acked-by: Andy Fleming <afleming@freescale.com>
48725
48726 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
48727 Author: Kumar Gala <galak@kernel.crashing.org>
48728 Date: Wed Apr 23 16:58:04 2008 -0500
48729
48730 fsl_pci: Only modify registers if we have them
48731
48732 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
48733
48734 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
48735
48736 commit 83fe32334337def160b302aa9d152d808bfcc68e
48737 Author: Markus Klotzbücher <mk@denx.de>
48738 Date: Wed Apr 23 10:57:33 2008 +0200
48739
48740 USB: remove a cpu bug workaround for an unsupported architecture.
48741
48742 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
48743
48744 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
48745 Author: Markus Klotzbücher <mk@denx.de>
48746 Date: Wed Apr 23 10:53:23 2008 +0200
48747
48748 USB: fix those pesky aliasing warnings issued by gcc-4.2
48749
48750 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
48751 Signed-off-by: Detlev Zundel <dzu@denx.de>
48752
48753 commit 89cdab788f3716b335fefb60b836ebcf975aceab
48754 Author: Mike Frysinger <vapier@gentoo.org>
48755 Date: Mon Mar 31 11:02:01 2008 -0400
48756
48757 crc32: use uint32_t rather than unsigned long
48758
48759 The envcrc.c does sizeof(unsigned long) when calculating the crc, but
48760 this is done with the build toolchain instead of the target tool
48761 chain, so if the build is a 64bit system but the target is 32bits,
48762 the size will obviously be wrong. This converts all unsigned long
48763 stuff related to crc32 to uint32_t types. Compile tested only: output
48764 of ./tools/envcrc when run on a 32bit build system matches that of a
48765 64bit build system.
48766
48767 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
48768 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
48769
48770 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
48771 Author: Dirk Behme <dirk.behme@googlemail.com>
48772 Date: Wed Mar 26 09:53:29 2008 +0100
48773
48774 ARM: Davinci: Fix DM644x timer overflow handling and cleanup
48775
48776 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
48777
48778 Changes:
48779
48780 - Remove *_masked() functions as noted by Wolfgang
48781
48782 - Adapt register naming to recent TI spec (sprue26, March 2007)
48783
48784 - Fix reset_timer() handling
48785
48786 - 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.
48787
48788 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
48789
48790 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
48791
48792 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
48793
48794 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
48795
48796 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
48797 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
48798
48799 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
48800 Author: Sergei Poselenov <sposelenov@emcraft.com>
48801 Date: Wed Apr 9 16:09:41 2008 +0200
48802
48803 Added watchdog triggering calls in the "mtest" test function.
48804
48805 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
48806
48807 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
48808 Author: Yuri Tikhonov <yur@emcraft.com>
48809 Date: Sun Apr 6 19:19:14 2008 +0200
48810
48811 lwmon5 watchdog: limit trigger rate
48812
48813 Limit the rate of h/w watch-dog triggering on the LWMON5 board by
48814 the CONFIG_WD_MAX_RATE value.
48815
48816 Note that an earlier version of this patch which used microseconds
48817 instead of ticks dis not work. The problem was that we used
48818 usec2ticks() to convert microseconds into ticks. usec2ticks() uses
48819 get_tbclk(), which in turn calls get_sys_info(). It turns out that
48820 this function does a lot of prolonged operations (like divisions)
48821 which take too much time so we do not trigger the watchdog in time,
48822 and it resets the system.
48823
48824 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48825
48826 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
48827 Author: Yuri Tikhonov <yur@emcraft.com>
48828 Date: Mon Mar 31 10:51:37 2008 +0200
48829
48830 POST: move CONFIG_POST to Makefiles
48831
48832 Introduce the new logical option CONFIG_HAS_POST which is set when the
48833 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
48834 to determine should the POST libs be compiled for the selected target
48835 platform, or not.
48836
48837 To avoid breaking u-boot linking process, the empty post/libpost.a file is
48838 created for platforms which do not have POSTs.
48839
48840 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48841 Signed-off-by: Wolfgang Denk <wd@denx.de>
48842
48843 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
48844 Author: Yuri Tikhonov <yur@emcraft.com>
48845 Date: Mon Mar 31 10:49:34 2008 +0200
48846
48847 POST: preparations for moving CONFIG_POST to Makefiles
48848
48849 Remove CONFIG_POST ifdefs from the post/ source files.
48850
48851 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
48852 Signed-off-by: Wolfgang Denk <wd@denx.de>
48853
48854 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
48855 Author: Stefan Roese <sr@denx.de>
48856 Date: Tue Apr 22 14:14:20 2008 +0200
48857
48858 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
48859
48860 This patch fixes the Canyonlands and Glacier default environment to better
48861 fit to the arch/powerpc device-tree kernels. The variables dealing with
48862 arch/ppc booting are removed, since these boards are supported only in
48863 arch/powerpc. Glacier uses the same config file as Canyonlands.
48864
48865 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
48866
48867 Signed-off-by: Stefan Roese <sr@denx.de>
48868
48869 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
48870 Author: Stefan Roese <sr@denx.de>
48871 Date: Tue Apr 22 14:06:42 2008 +0200
48872
48873 ppc4xx: Small coding style cleanup for the latest esd patches
48874
48875 Signed-off-by: Stefan Roese <sr@denx.de>
48876
48877 commit 79941d63bc03aed8c48d7602f18217cc200ee931
48878 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48879 Date: Mon Apr 21 18:01:07 2008 +0200
48880
48881 ppc4xx: Update CPU strapping for PMC440 boards
48882
48883 This patch removes the temporary 'test' strapping option
48884 of the sbe command. The '667' strapping option now uses
48885 a PLB/PCI divider of 3.
48886
48887 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48888
48889 commit f00cf3193a6635355b121e90debb2f54e777e7da
48890 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48891 Date: Mon Apr 21 14:42:21 2008 +0200
48892
48893 ppc4xx: Remove unused APC405 strataflash driver
48894
48895 The APC405 board support has been migrated to use the common
48896 CFI flash driver.
48897
48898 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48899
48900 commit 1c686676a86473bbd92151f0544e109413f6ed06
48901 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48902 Date: Mon Apr 21 14:42:17 2008 +0200
48903
48904 ppc4xx: Update APC405 configuration
48905
48906 - enable esd's auto_update mechanism
48907 - support alternative flash layout on rev. 1.8 boards
48908 - update default environment
48909 - use common CFI flash driver
48910 - coding style cleanup
48911
48912 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48913
48914 commit 0b9872515a521bf7866dc24b85ddce708e60d702
48915 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48916 Date: Mon Apr 21 14:42:11 2008 +0200
48917
48918 ppc4xx: Update APC405 board support
48919
48920 - enable esd's auto_update mechanism
48921 - fix LCD support on latest hardware revision (uses other LCD controller)
48922 - support alternative flash layout on rev. 1.8 boards
48923 - coding style cleanup
48924
48925 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48926
48927 commit 83975d02e225e231960784972e7820a8b303756b
48928 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48929 Date: Mon Apr 21 14:42:06 2008 +0200
48930
48931 ppc4xx: update esd's common auto_update code for 405 boards
48932
48933 - Coding style cleanup (long lines)
48934 - improve handling of protected flash regions
48935 - remove dead code
48936
48937 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48938
48939 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
48940 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48941 Date: Mon Apr 21 14:41:59 2008 +0200
48942
48943 ppc4xx: Update esd's common LCD code for 405 boards
48944
48945 - Coding style cleanup (long lines)
48946 - Add s1d13505 support
48947 - Make some functions return a result code instead of void
48948
48949 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48950
48951 commit dea68189424c3f1242427a8146a3861bf093173c
48952 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48953 Date: Mon Apr 21 11:36:55 2008 +0200
48954
48955 ppc4xx: Update FPGA image for APC405 boards
48956
48957 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48958
48959 commit 2a05b152924acfcec3b037693329e517e6d3578f
48960 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48961 Date: Mon Apr 21 11:36:08 2008 +0200
48962
48963 ppc4xx: Update bootlogo for APC405 boards
48964
48965 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48966
48967 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
48968 Author: Stefan Roese <sr@denx.de>
48969 Date: Fri Apr 18 16:41:31 2008 +0200
48970
48971 ppc4xx: Add dcache_enable() for 440
48972
48973 dcache_enable() was missing for 440 and the patch
48974 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
48975 "] behavior uses this function.
48976
48977 Note: Currently the cache handling functions like
48978 d/icache_disable/enable() are NOP's on 440. This may be changed in the
48979 future.
48980
48981 Signed-off-by: Stefan Roese <sr@denx.de>
48982
48983 commit a49e0d177a0749614b316ec847fb623f09c82c07
48984 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48985 Date: Mon Apr 21 11:19:04 2008 +0200
48986
48987 video: Add missing free for logo memory
48988
48989 This patch adds two missing free()s.
48990
48991 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
48992
48993 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
48994 Author: Troy Kisky <troy.kisky@boundarydevices.com>
48995 Date: Mon Sep 24 16:41:43 2007 -0700
48996
48997 PATCH - Fix oob data copied into supplied buffer
48998
48999 This patch correctly sets the oobavail variable
49000 and fixes a bug where the oob data was not valid when
49001 there where multiple groups in oobfree.
49002
49003 First segment fixes a typo
49004 Second segment fixes a bug where oob data may be copied incorrectly.
49005 Third segment adds an error message when exiting due to write protect.
49006 Forth segment fixes a bug where oobavail may be set incorrectly.
49007
49008 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
49009
49010 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
49011 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49012 Date: Fri Apr 18 17:24:32 2008 +0200
49013
49014 ppc4xx: Fix sys_get_info() for 405GP(r)
49015
49016 This patch assigns the correct EBC clock for 405GP(r) CPUs
49017 to PPC4xx_SYS_INFO structure. Without this patch U-Boot
49018 uses an uninitialized EBC clock in its startup message.
49019
49020 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
49021
49022 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
49023 Author: Wolfgang Denk <wd@denx.de>
49024 Date: Sun Apr 20 15:39:38 2008 -0700
49025
49026 Makefile: remove nand_spl/System.map when cleaning up.
49027
49028 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
49029 Author: Wolfgang Denk <wd@denx.de>
49030 Date: Sun Apr 20 15:35:52 2008 -0700
49031
49032 MAKEALL: sort entries / lists.
49033
49034 Signed-off-by: Wolfgang Denk <wd@denx.de>
49035
49036 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
49037 Author: Kumar Gala <galak@kernel.crashing.org>
49038 Date: Fri Apr 18 11:29:01 2008 -0500
49039
49040 85xx: Fix size of cpu-release-addr property
49041
49042 The cpu-release-addr is defined as always being a 64-bit quanity regardless
49043 if we are running on a 32-bit or 64-bit machine.
49044
49045 commit 88353a985109562a639b2f8a0c90d77011bfe374
49046 Author: Timur Tabi <timur@freescale.com>
49047 Date: Fri Apr 4 11:15:58 2008 -0500
49048
49049 Fix calculation of I2C clock for some 85xx chips
49050
49051 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and
49052 some use CCB/3. There is no pattern that can be used to determine which
49053 chips use which frequency, so the only way to determine is to look up the
49054 actual SOC designation and use the right value for that SOC.
49055
49056 Update immap_85xx.h to include the GUTS PORDEVSR2 register.
49057
49058 Signed-off-by: Timur Tabi <timur@freescale.com>
49059
49060 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
49061 Author: Wolfgang Denk <wd@denx.de>
49062 Date: Fri Apr 18 11:44:27 2008 -0700
49063
49064 Fix build breakage casued by commit c0559be371b2
49065
49066 Change env_get_char from a global function ptr to a function.
49067
49068 Signed-off-by: Wolfgang Denk <wd@denx.de>
49069
49070 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
49071 Author: Wolfgang Denk <wd@denx.de>
49072 Date: Fri Apr 18 10:53:41 2008 -0700
49073
49074 Coding Style cleanup, update CHANGELOG.
49075
49076 Signed-off-by: Wolfgang Denk <wd@denx.de>
49077
49078 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
49079 Author: Mike Frysinger <vapier@gentoo.org>
49080 Date: Tue Apr 8 14:00:57 2008 -0400
49081
49082 Add support for u-boot in svn and localversion-* files
49083
49084 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
49085
49086 commit d23ff6827decf121461fbc5622612fd7effe207e
49087 Author: Guennadi Liakhovetski <lg@denx.de>
49088 Date: Thu Apr 3 17:04:22 2008 +0200
49089
49090 MX31ADS network and flash updates
49091
49092 This patch allows U-Boot to use buffered writes to the Spansion NOR
49093 flash installed on this board, and eliminates long delays in network
49094 transfers after the board startup.
49095
49096 Also modify flash layout to embed main and redundant environment
49097 blocks in the U-Boot image.
49098
49099 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49100
49101 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
49102 Author: Guennadi Liakhovetski <lg@denx.de>
49103 Date: Mon Apr 14 10:53:12 2008 +0200
49104
49105 Support for the MX31ADS evaluation board from Freescale
49106
49107 This patch adds support for the MX31ADS evaluation board from Freescale,
49108 initialization code is copied from RedBoot sources, also provided by
49109 Freescale.
49110
49111 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49112
49113 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
49114 Author: Stefan Roese <sr@denx.de>
49115 Date: Tue Apr 8 10:33:29 2008 +0200
49116
49117 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
49118
49119 Signed-off-by: Stefan Roese <sr@denx.de>
49120
49121 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
49122 Author: Stefan Roese <sr@denx.de>
49123 Date: Tue Apr 8 10:33:28 2008 +0200
49124
49125 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
49126
49127 Signed-off-by: Stefan Roese <sr@denx.de>
49128
49129 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
49130 Author: Stefan Roese <sr@denx.de>
49131 Date: Tue Apr 8 10:33:27 2008 +0200
49132
49133 ppc4xx: Add Glacier NAND booting target
49134
49135 Signed-off-by: Stefan Roese <sr@denx.de>
49136
49137 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
49138 Author: Stefan Roese <sr@denx.de>
49139 Date: Tue Apr 8 10:31:00 2008 +0200
49140
49141 nand_spl: Update nand_spl to support 2k page size NAND devices
49142
49143 This patch adds support for booting from 2k page sized NAND device
49144 (e.g. Micron 29F2G08AAC).
49145
49146 Tested on AMCC Canyonlands.
49147
49148 Signed-off-by: Stefan Roese <sr@denx.de>
49149
49150 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
49151 Author: Anatolij Gustschin <agust@denx.de>
49152 Date: Thu Apr 17 18:18:00 2008 +0200
49153
49154 Fix crash on sequoia in ppc_4xx_eth_init
49155
49156 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
49157 with cache enabled (TLB Parity exeption). This patch
49158 fixes the problem.
49159
49160 Signed-off-by: Anatolij Gustschin <agust@denx.de>
49161
49162 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
49163 Author: Anatolij Gustschin <agust@denx.de>
49164 Date: Thu Apr 17 18:15:27 2008 +0200
49165
49166 ppc4xx: Fix crash on sequoia with cache enabled
49167
49168 Currently U-Boot crashes on sequoia board in CPU POST if
49169 cache is enabled (CONFIG_4xx_DCACHE defined). The cache
49170 won't be disabled by change_tlb before CPU POST because
49171 there is an insufficient adress range check since
49172 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
49173 this problem.
49174
49175 Signed-off-by: Anatolij Gustschin <agust@denx.de>
49176
49177 commit 43c509254fab375c49936498da944658117ed07c
49178 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
49179 Date: Thu Apr 17 23:35:13 2008 +0900
49180
49181 Use jr as register jump instruction
49182
49183 Current assembler codes are inconsistent in the way of register jump
49184 instruction usage; some use jr, some use j. Of course GNU as allows both
49185 usages, but as can be expected from `Jump Register' the mnemonic `jr' is
49186 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
49187 at all.
49188
49189 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
49190
49191 commit 7ce63709828d37b08866e537339a169bd0db2bd3
49192 Author: Guennadi Liakhovetski <lg@denx.de>
49193 Date: Tue Apr 15 14:15:30 2008 +0200
49194
49195 RTC driver for MC13783
49196
49197 MC13783 is a multifunction IS with an SPI interface to the host. This
49198 driver handles the RTC controller in this chip.
49199
49200 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49201
49202 commit 38254f45b0b412332726c90d3184ad47479fcffb
49203 Author: Guennadi Liakhovetski <lg@denx.de>
49204 Date: Tue Apr 15 14:14:25 2008 +0200
49205
49206 New i.MX31 SPI driver
49207
49208 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
49209 only implemented and tested on i.MX31, can with a modified register layout
49210 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
49211 controllers too.
49212
49213 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49214
49215 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
49216 Author: Magnus Lilja <lilja.magnus@gmail.com>
49217 Date: Tue Apr 15 19:09:10 2008 +0200
49218
49219 Fix name of i.MX31 boards in config file header
49220
49221 Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
49222
49223 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
49224
49225 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
49226 Author: Mike Frysinger <vapier@gentoo.org>
49227 Date: Sun Apr 13 19:42:19 2008 -0400
49228
49229 allow ports to override go behavior
49230
49231 Split the arch-specific logic out of the common go code and into a dedicated
49232 weak function called do_go_exec() that lives in cpu directories. This will
49233 need review from i386/nios people to make sure I didn't break them.
49234
49235 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
49236 Author: Mike Frysinger <vapier@gentoo.org>
49237 Date: Sun Apr 13 19:42:18 2008 -0400
49238
49239 allow ports to override bootelf behavior
49240
49241 Change the bootelf setup function into a dedicated weak function called
49242 do_bootelf_exec. This way ports can control the behavior however they
49243 like before/after calling the ELF entry point.
49244
49245 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
49246 Author: Ulf Samuelsson <ulf@atmel.com>
49247 Date: Sat Apr 12 20:56:03 2008 +0200
49248
49249 Reorder ARM boards in Makefile
49250
49251 Rearrange ARM boards in Makefile so that ARM926EJ-S boards
49252 are no longer under ARM92xT header.
49253
49254 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
49255 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49256
49257 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
49258 Author: Ulf Samuelsson <ulf@atmel.com>
49259 Date: Sat Apr 12 20:29:44 2008 +0200
49260
49261 Clean up dataflash partitioning
49262
49263 This patch removes the board dependent parts from
49264 "drivers/mtd/dataflash.c".
49265 Each board relying on this, will have the appropriate
49266 code in a new file, "partition.c" in the board directory.
49267 board Makefiles updated to use the file.
49268
49269 The dataflash partitions are aligned on sector/page boundaries.
49270
49271 The CONFIG_NEW_DF_PARTITION was used to create named partitions
49272 This is now the default operation, and the CONFIG variable is removed.
49273
49274 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
49275
49276 commit 51ecde946fec511a16346e498204ca10ad71080d
49277 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49278 Date: Sat Apr 12 14:08:45 2008 +0200
49279
49280 gitignore: udpate stgit generated and .patch file
49281
49282 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49283
49284 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
49285 Author: Wolfgang Denk <wd@denx.de>
49286 Date: Fri Apr 18 00:15:36 2008 -0700
49287
49288 Get rid of redundant copy of renamed header file.
49289
49290 Signed-off-by: Wolfgang Denk <wd@denx.de>
49291
49292 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
49293 Author: Vlad Lungu <vlad@comsys.ro>
49294 Date: Fri Apr 11 21:20:14 2008 +0300
49295
49296 Fix dependency generation for older gcc versions
49297
49298 With gcc 3.3.3 at least, compilation fails with
49299
49300 Generating include/autoconf.mk
49301 gcc: compilation of header file requested
49302 make: *** [include/autoconf.mk] Error 1
49303
49304 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
49305
49306 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
49307
49308 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
49309 Author: Marian Balakowicz <m8@semihalf.com>
49310 Date: Fri Apr 11 11:07:49 2008 +0200
49311
49312 Restore the ability to continue booting after legacy image overwrite
49313
49314 Before new uImage code was merged, bootm code allowed for the kernel image to
49315 get overwritten during decompresion. new uImage introduced a check for image
49316 overwrites and refused to boot the image that got overwritten. This patch
49317 restores the old behavior. It also adds a warning when the image overwriten is
49318 a multi-image file, because in such case accessing componentes other than the
49319 first one will fail.
49320
49321 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
49322
49323 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
49324 Author: Marian Balakowicz <m8@semihalf.com>
49325 Date: Fri Apr 11 11:07:43 2008 +0200
49326
49327 ppc: Fix ftd_blob variable init when processing raw blob
49328
49329 Set fdt_blob variable before its value is printed out.
49330
49331 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
49332
49333 commit 3d36be030043cd841a2551d00a395135e363a64b
49334 Author: Jason Wessel <jason.wessel@windriver.com>
49335 Date: Thu Apr 10 14:30:16 2008 -0500
49336
49337 Remove all the search paths from the .lds files.
49338
49339 The cross compiler is responsible for providing the correct libraries
49340 and the logic to find the linking libraries.
49341
49342 Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
49343
49344 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
49345 Author: Bartlomiej Sieka <tur@semihalf.com>
49346 Date: Mon Apr 14 15:44:16 2008 +0200
49347
49348 Boot-related documentation update
49349
49350 - document 'bootm_low' and 'bootm_size' environment variables
49351 - update inaccurate CFG_BOOTMAPSZ entry
49352
49353 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
49354
49355 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
49356 Author: Guennadi Liakhovetski <lg@denx.de>
49357 Date: Wed Apr 9 17:34:08 2008 +0200
49358
49359 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
49360
49361 Restore logic reverted by commit
49362
49363 commit 80767a6cead9990d9e77e62be947843c2c72f469
49364 Author: Peter Pearse <peter.pearse@arm.com>
49365 Date: Wed Sep 5 16:04:41 2007 +0100
49366
49367 Changed API name to coloured_led.h
49368 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
49369 Tidied other cpu/arm920t/start.S code
49370
49371 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49372
49373 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
49374 Author: Mike Frysinger <vapier@gentoo.org>
49375 Date: Tue Apr 8 10:24:24 2008 -0400
49376
49377 Remove conflicting NAND ID
49378
49379 There are two NAND entries with ID 0xDC and this obviously causes problems.
49380 In the kernel, they punted the first entry, so we should do the same.
49381
49382 See this upstream e-mail for more info:
49383 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
49384
49385 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
49386 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
49387
49388 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
49389 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49390 Date: Tue Apr 8 16:20:35 2008 +0900
49391
49392 cpu/mips/cpu.c: Fix flush_cache bug
49393
49394 Cache operations have to take line address (addr), not start_addr.
49395 I noticed this bug when debugging ping failure.
49396
49397 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
49398
49399 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
49400 Author: Martin Krause <martin.krause@tqs.de>
49401 Date: Thu Apr 3 14:29:01 2008 +0200
49402
49403 TQM5200: fix default IDE reset level
49404
49405 Before the first call of ide_reset(), the level of the IDE reset
49406 signal on the TQM5200 is low (reset asserted). This patch sets the
49407 default value to high (reset not asserted).
49408
49409 Currently this patch fixes no real problem, but it is cleaner to
49410 assert the reset signal only on demand, and not permanently.
49411
49412 Signed-off-by: Martin Krause <martin.krause@tqs.de>
49413
49414 commit c61e033d6e8abb7b4060ee36060961e1399f6079
49415 Author: Detlev Zundel <dzu@denx.de>
49416 Date: Thu Apr 3 14:18:48 2008 +0200
49417
49418 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
49419
49420 Signed-off-by: Detlev Zundel <dzu@denx.de>
49421
49422 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
49423 Author: Detlev Zundel <dzu@denx.de>
49424 Date: Thu Apr 3 14:18:47 2008 +0200
49425
49426 mgcoge, mgsuv: rename 'addcon' to 'addcons'
49427
49428 The latter name with 13 users is already established, so we will use
49429 that.
49430
49431 Signed-off-by: Detlev Zundel <dzu@denx.de>
49432
49433 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
49434 Author: Martin Krause <martin.krause@tqs.de>
49435 Date: Thu Apr 3 13:37:56 2008 +0200
49436
49437 IDE: fix bug in reset sequence
49438
49439 According to the ata (ata5) specification the RESET- signal
49440 shall be asserted for at least 25 us. Without this patch,
49441 the RESET- signal is asserted on some boards for only < 1 us
49442 (e. g. on the TQM5200). This patch adds a general delay of
49443 25 us to the RESET- signal.
49444
49445 Without this patch a Platinum 4 GiB CF card is not recognised
49446 properly on boards with a TQM5200 (STK52xx, TB5200).
49447
49448 Signed-off-by: Martin Krause <martin.krause@tqs.de>
49449
49450 commit 813bea96a960916c72b4a3a7df840151529c26ce
49451 Author: Sascha Laue <Sascha.Laue@gmx.biz>
49452 Date: Thu Apr 3 14:43:11 2008 +0200
49453
49454 lwmon5: disable CONFIG_ZERO_BOOTDELAY
49455
49456 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
49457
49458 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
49459 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49460 Date: Wed Apr 2 08:03:58 2008 +0200
49461
49462 ds174x: Fix warning on return in rtc_get and rtc_set functions
49463
49464 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49465
49466 commit a253b38bf50c85227c33ca0febc870ee49d1588e
49467 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49468 Date: Wed Apr 2 08:03:57 2008 +0200
49469
49470 cmd_log.c: Fix assignment differ in signedness
49471
49472 In function 'logbuff_init_ptrs':
49473 cmd_log.c:79: warning: pointer targets in assignment differ in signedness
49474
49475 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49476
49477 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
49478 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
49479 Date: Wed Apr 2 11:04:43 2008 +0530
49480
49481 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
49482
49483 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
49484
49485 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
49486 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49487 Date: Tue Apr 1 14:07:10 2008 +0200
49488
49489 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
49490
49491 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49492
49493 commit c08fb3ea36d19b1640b7906264581e9105534399
49494 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
49495 Date: Tue Apr 15 10:24:14 2008 +0200
49496
49497 Additional PCI IDs for IDE and network controllers
49498
49499 These PCI IDs are required by the Linkstation platforms.
49500
49501 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
49502
49503 commit c0559be371b2a64b1a817088c3308688e2182f93
49504 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
49505 Date: Mon Apr 14 23:01:50 2008 +0200
49506
49507 Change env_get_char from a global function ptr to a function.
49508
49509 This avoids an early global data reference.
49510
49511 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
49512
49513 commit 3e0f331c05d72f140715c1e9fca991927e44d422
49514 Author: Guennadi Liakhovetski <lg@denx.de>
49515 Date: Tue Apr 29 12:35:08 2008 +0000
49516
49517 Clean up smsc911x driver
49518
49519 Replace direct register address derefencing with accessor functions.
49520 Restrict explicitly 32-bit bus-width, extend affected configurations
49521 respectively.
49522
49523 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49524 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49525
49526 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
49527 Author: Sascha Hauer <s.hauer@pengutronix.de>
49528 Date: Tue Apr 15 00:08:20 2008 -0400
49529
49530 This patch adds a driver for the following smsc network controllers:
49531 LAN9115
49532 LAN9116
49533 LAN9117
49534 LAN9215
49535 LAN9216
49536 LAN9217
49537
49538 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49539 Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
49540 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
49541
49542 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
49543 Author: Sascha Laue <Sascha.Laue@gmx.biz>
49544 Date: Tue Apr 1 15:13:03 2008 +0200
49545
49546 Fix watchdog POST for lwmon5
49547
49548 If the hardware watchdog detects a voltage error, the watchdog sets
49549 GPIO62 to low. The watchdog POST has to detect this low level.
49550
49551 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
49552
49553 commit 24b448448a917e52806f82660a5c9d47608894fb
49554 Author: Dave Liu <r63238@freescale.com>
49555 Date: Tue Apr 1 15:22:11 2008 +0800
49556
49557 ata: update the libata.h from ata.h of linux kernel
49558
49559 Current libata.h of u-boot is out of sync from linux kernel,
49560 this patch make it be consistent with linux kernel.
49561
49562 Signed-off-by: Dave Liu <daveliu@freescale.com>
49563 Signed-off-by: Tor Krill <tor@excito.com>
49564
49565 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
49566 Author: Kumar Gala <galak@kernel.crashing.org>
49567 Date: Mon Mar 31 11:59:27 2008 -0500
49568
49569 Allow use of ARCH=powerpc when building
49570
49571 The linux kernel is now mostly ARCH=powerpc, so to make life easier
49572 allow use to use ARCH=powerpc and convert it to ARCH=ppc.
49573
49574 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49575
49576 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
49577 Author: Kyungmin Park <kmpark@infradead.org>
49578 Date: Mon Mar 31 10:40:54 2008 +0900
49579
49580 Add apollon board MAINTAINERS entry
49581
49582 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
49583
49584 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
49585 Author: Kyungmin Park <kmpark@infradead.org>
49586 Date: Mon Mar 31 10:40:36 2008 +0900
49587
49588 Fix OneNAND read
49589
49590 It should access with 16-bit instead of 8-bit
49591
49592 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
49593
49594 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
49595
49596 commit a9da2b41079d230db3a5641625311983f85ce1fb
49597 Author: Kyungmin Park <kmpark@infradead.org>
49598 Date: Mon Mar 31 10:40:19 2008 +0900
49599
49600 Fix OneNAND erase command
49601
49602 It mis-calculates the block address.
49603 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
49604
49605 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
49606
49607 commit 61525f2ffa156665a66908fda47dbf29d65ea579
49608 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
49609 Date: Mon Mar 31 01:32:15 2008 +0200
49610
49611 Support for LinkStation / KuroBox HD and HG PPC models
49612
49613 This patch is based on the port by Mihai Georgian (see linkstation.c for
49614 Copyright information) and implements support for LinkStation / KuroBox HD
49615 and HG PPC models from Buffalo Technology, whereby HD is deactivated at
49616 the moment, pending network driver fixing.
49617
49618 Notice to users: this is pretty much a barebone port. Support for network
49619 on HG models is already in the U-Boot mainline, but you might also want
49620 patches to switch fan / phy modes depending on the negotiated ethernet
49621 parameters. This patch also doesn't support console switching, booting EM
49622 mode, Buffalo specific ext2 magic number. So, if you want to use any of
49623 those, you need additional patches. Otherwise this patche provides a fully
49624 functional u-boot with a network console on your system.
49625
49626 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49627
49628 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
49629 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49630 Date: Sun Mar 30 01:22:13 2008 -0500
49631
49632 Add CONFIG_MII_INIT support to related boards
49633
49634 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
49635 cmd_init.c. Add CONFIG_MII_INIT to board configuration files
49636 that use mii_init() in cmd_init.c.
49637
49638 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49639 Acked-by: Ben Warren <biggerbadderben@gmail.com>
49640
49641 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
49642 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49643 Date: Sun Mar 30 01:19:06 2008 -0500
49644
49645 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
49646
49647 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
49648 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
49649
49650 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
49651
49652 commit e99ccb488181d012248c6be30b2093e950319fc5
49653 Author: Kumar Gala <galak@kernel.crashing.org>
49654 Date: Thu Mar 27 11:46:38 2008 -0500
49655
49656 Introduce phys_size_t and move phys_addr_t into asm/types.h
49657
49658 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
49659 that have larger physical addresses like 44x, 85xx, and 86xx.
49660
49661 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49662
49663 commit 20a14a42a25f72e379f38460b8a8484667536795
49664 Author: Andy Fleming <afleming@freescale.com>
49665 Date: Wed Apr 2 16:19:07 2008 -0500
49666
49667 Rename include/md5.h to include/u-boot/md5.h
49668
49669 Some systems have md5.h installed in /usr/include/. This isn't the
49670 desired file (we want the one in include/md5.h). This will avoid the
49671 conflict. This fixes the host tools building problem by creating a new
49672 directory for U-Boot specific header files.
49673
49674 [Patch by Andy Fleming, modified to use separate directory by Wolfgang
49675 Denk]
49676
49677 Signed-off-by: Wolfgang Denk <wd@denx.de>
49678 Signed-off-by: Andy Fleming <afleming@freescale.com>
49679 Acked-by: Timur Tabi <timur@freescale.com>
49680
49681 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
49682 Author: Dave Liu <r63238@freescale.com>
49683 Date: Thu Mar 27 18:51:17 2008 +0800
49684
49685 drivers: code clean up
49686
49687 Signed-off-by: Dave Liu <daveliu@freescale.com>
49688
49689 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
49690 Author: Dave Liu <r63238@freescale.com>
49691 Date: Thu Mar 27 18:50:41 2008 +0800
49692
49693 drivers: clean up the ata_piix.h
49694
49695 Signed-off-by: Dave Liu <daveliu@freescale.com>
49696
49697 commit e8f7ba404f1409606962815ecc955a06984b08b3
49698 Author: Dave Liu <r63238@freescale.com>
49699 Date: Thu Mar 27 18:49:56 2008 +0800
49700
49701 doc: english polishing for README.sata
49702
49703 according to gvb's suggestion, polishing for the doc.
49704
49705 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
49706 Signed-off-by: Dave Liu <daveliu@freescale.com>
49707
49708 commit 3e3f766a5274d204780460e1879723b565296d34
49709 Author: Kumar Gala <galak@kernel.crashing.org>
49710 Date: Wed Mar 26 18:53:28 2008 -0500
49711
49712 Fix warnings introduced by I2C bus speed setting patch
49713
49714 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49715
49716 commit 3c735e7437150e8615f26930c7819db85634276d
49717 Author: eran liberty <eran.liberty@gmail.com>
49718 Date: Thu Mar 27 00:50:49 2008 +0100
49719
49720 Altera Stratix II support
49721
49722 Adds Support for Altera's Stratix II.
49723
49724 Within your board specific init file you will have to call
49725
49726 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
49727 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
49728
49729 Altera_desc* contines (for example):
49730 {
49731 Altera_StratixII, /* part type */
49732 passive_serial, /* interface type */
49733 1, /* bytes of data part can accept */
49734 (void *)(&funcs), /* interface function table */
49735 0L, /* base interface address */
49736 0 /* implementation specific cookie */
49737 }
49738
49739 funcs is the interface. It is of type altera_board_specific_func.
49740 It looks like this:
49741 altera_board_specific_func func = {
49742 pre_fn,
49743 config_fn,
49744 status_fn,
49745 done_fn,
49746 clk_fn,
49747 data_fn,
49748 abort_fn,
49749 post_fn,
49750 };
49751
49752 you will have to implement these functions, which is usually bit
49753 banging some gpio.
49754
49755 Signed-off-by: Eran Liberty <liberty@extricom.com>
49756
49757 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
49758 Author: Wolfgang Denk <wd@denx.de>
49759 Date: Sun Apr 13 14:32:54 2008 -0700
49760
49761 Update CHANGELOG
49762
49763 Signed-off-by: Wolfgang Denk <wd@denx.de>
49764
49765 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
49766 Author: Sascha Hauer <s.hauer@pengutronix.de>
49767 Date: Wed Mar 26 20:41:17 2008 +0100
49768
49769 Phytec Phycore-i.MX31 support
49770
49771 This patch adds support for the Phytec Phycore-i.MX31 board
49772
49773 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49774 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49775
49776 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
49777 Author: Sascha Hauer <s.hauer@pengutronix.de>
49778 Date: Wed Mar 26 20:41:09 2008 +0100
49779
49780 mx31 litekit support
49781
49782 This patch adds support for the mx31 litekit board
49783
49784 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49785 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49786
49787 commit cdace0661208754a53019ea0dc7b803a040e0939
49788 Author: Sascha Hauer <s.hauer@pengutronix.de>
49789 Date: Wed Mar 26 20:40:49 2008 +0100
49790
49791 add an i2c driver for mx31
49792
49793 This patch adds an i2c driver for Freescale i.MX processors
49794
49795 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49796 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49797
49798 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
49799 Author: Sascha Hauer <s.hauer@pengutronix.de>
49800 Date: Wed Mar 26 20:40:42 2008 +0100
49801
49802 core support for Freescale mx31
49803
49804 This patch adds the core support for Freescale mx31
49805
49806 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49807 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49808
49809 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
49810 Author: Wolfgang Denk <wd@denx.de>
49811 Date: Sun Apr 13 14:19:23 2008 -0700
49812
49813 Fix compile error
49814
49815 ...as suggested by Peter Pearse
49816
49817 Signed-off-by: Wolfgang Denk <wd@denx.de>
49818
49819 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
49820 Author: Sascha Hauer <s.hauer@pengutronix.de>
49821 Date: Wed Mar 26 20:40:36 2008 +0100
49822
49823 Separate omap24xx specific code from arm1136
49824
49825 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
49826 to cpu/arm1136/omap24xx.
49827
49828 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
49829 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49830
49831 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
49832 Author: Mike Frysinger <vapier@gentoo.org>
49833 Date: Tue Jan 29 18:21:05 2008 -0500
49834
49835 disable caches before booting an app for Blackfin apps
49836
49837 It isn't generally save to execute applications outside of U-Boot with caches
49838 enabled due to the way the Blackfin processor handles caches (requires
49839 software assistance). This patch disables caches before booting an ELF or
49840 just booting raw code. The previous discussion on the patch was that we
49841 wanted to use weaks instead, but that proved to not be feasible when multiple
49842 symbols are involved, which puts us back at the ifdef solution. I've
49843 minimized the ugliness by moving the setup step outside of the main function.
49844
49845 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
49846
49847 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
49848 Author: Wolfgang Denk <wd@denx.de>
49849 Date: Sun Apr 13 10:03:54 2008 -0700
49850
49851 ppc: Get rid of unused machine type definitions
49852
49853 Signed-off-by: Wolfgang Denk <wd@denx.de>
49854
49855 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
49856 Author: Wolfgang Denk <wd@denx.de>
49857 Date: Sun Apr 13 09:59:26 2008 -0700
49858
49859 Coding Style cleanup; update CHANGELOG
49860
49861 Signed-off-by: Wolfgang Denk <wd@denx.de>
49862
49863 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
49864 Author: Larry Johnson <lrj@acm.org>
49865 Date: Thu Feb 21 13:58:11 2008 -0500
49866
49867 LM73 bug fix for negative temperatures and cleanup
49868
49869 When the LM73 temperature sensor measures a temperature below 0 C, the
49870 current driver does not perform sign extension, so the result returned is
49871 512 C too high. This patch fixes the problem, and does general cleanup
49872 of the code.
49873
49874 Signed-off-by: Larry Johnson <lrj@acm.org>
49875
49876 commit 96ef831f713289afba19da0c8f905e99da2b23e0
49877 Author: Guennadi Liakhovetski <lg@denx.de>
49878 Date: Thu Apr 3 13:36:02 2008 +0200
49879
49880 cfi_flash: Support buffered writes on non-standard Spansion NOR flash
49881
49882 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
49883 series require different addresses for buffered write commands. Define a
49884 configuration option to support buffered writes on those chips. A more
49885 elegant solution would be to automatically detect those chips by parsing
49886 their CFI records, but that would require introduction of a fixup table
49887 into the cfi_flash driver.
49888
49889 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
49890
49891 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
49892 Author: Lee Nipper <lee.nipper@freescale.com>
49893 Date: Thu Apr 10 09:35:06 2008 -0500
49894
49895 mpc83xx: Update DIMM data bus width test to support 40-bit width
49896
49897 32-bit wide ECC memory modules report 40-bit width.
49898 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
49899
49900 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
49901 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49902
49903 commit 5fb5a689d822ca61e814bd523fc930af335242fa
49904 Author: Dave Liu <r63238@freescale.com>
49905 Date: Mon Mar 31 17:05:12 2008 +0800
49906
49907 mpc83xx: Fix the bug of serdes initialization
49908
49909 Currently the serdes will not be initializated due to the
49910 partid's error.
49911
49912 Signed-off-by: Dave Liu <daveliu@freescale.com>
49913 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49914
49915 commit 2000784818f043db7ca60e2846a72d097766b894
49916 Author: Dave Liu <r63238@freescale.com>
49917 Date: Thu Apr 3 16:28:29 2008 +0800
49918
49919 mpc83xx: Fix the SATA clock setting of 837x targets
49920
49921 Currently the SATA controller clock is configured as CSB clock,
49922 usually the CSB clock is 400/333/266MHz.
49923
49924 However, The SATA IP block is only guaranteed to operate up to
49925 200 MHz as stated in the HW spec.
49926
49927 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
49928
49929 This patch makes the SATA clock as half of CSB clock.
49930
49931 Signed-off-by: Dave Liu <daveliu@freescale.com>
49932 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49933
49934 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
49935 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49936 Date: Wed Apr 2 13:41:21 2008 +0200
49937
49938 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
49939
49940 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
49941 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
49942
49943 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
49944 Author: Kumar Gala <galak@kernel.crashing.org>
49945 Date: Wed Apr 9 04:20:57 2008 -0500
49946
49947 85xx: Fix detection of MP cpu spin up
49948
49949 We were looking at the wrong memory offset to determine of a secondary
49950 cpu had been spun up or not. Also added a warning message if the
49951 all the secondary cpus we expect don't spin up.
49952
49953 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49954
49955 commit f3e04bdc3f360c66801a9048956e61e41a16edba
49956 Author: Kumar Gala <galak@kernel.crashing.org>
49957 Date: Tue Apr 8 10:45:50 2008 -0500
49958
49959 85xx: Use SVR_SOC_VER instead of SVR_VER
49960
49961 The recent change introduced by 'Update SVR numbers to expand support'
49962 now requires that we use SVR_SOC_VER instead of SVR_VER if we want
49963 to compare against a particular processor id.
49964
49965 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49966
49967 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
49968 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
49969 Date: Fri Apr 11 10:00:35 2008 -0400
49970
49971 ppc4xx: Fix power mgt definitions for PPC440
49972
49973 Corrected DCR addresses of PPC440EP power management registers.
49974
49975 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
49976
49977 commit 950a392464e616b4590bc4501be46e2d7d162dea
49978 Author: Wolfgang Denk <wd@denx.de>
49979 Date: Fri Apr 11 15:11:26 2008 +0200
49980
49981 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
49982
49983 Reverting became necessary after it turned out that the patches in
49984 the u-boot-arm repo were modified, and in some cases corrupted.
49985
49986 This reverts the following commits:
49987
49988 066bebd6353e33af3adefc3404560871699e9961
49989 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
49990 c88ae20580b2b01487b4cdcc8b2a113f551aee36
49991 a147e56f03871bba4f05058d5e04ce7deb010b04
49992 d6674e0e2a6a1f033945f78838566210d3f28c95
49993 8c8463cce44d849e37744749b32d38e1dfb12e50
49994 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
49995 8bf69d81782619187933a605f1a95ee1d069478d
49996 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
49997 a574a73852a527779234e73e17e7597fd8128882
49998 1377b5583a48021d983e1fd565f7d40c89e84d63
49999 1704dc20917b4f71e373e2c888497ee666d40380
50000
50001 Signed-off-by: Wolfgang Denk <wd@denx.de>
50002
50003 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
50004 Author: Stefan Roese <sr@denx.de>
50005 Date: Fri Apr 11 07:02:29 2008 +0200
50006
50007 ppc4xx: Update Kilauea defconfig to use device-tree booting as default
50008
50009 This patch reworks the default environment on Kilauea/Haleakala. Now
50010 "net_nfs" for exmaple uses the device-tree style booting formerly know
50011 as "net_nfs_fdt". Also the addresses in RAM were changed because of the
50012 new image booting support, which check for image overwriting. So the
50013 addresses needed togeet adjusted.
50014
50015 Signed-off-by: Stefan Roese <sr@denx.de>
50016
50017 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
50018 Author: Stefan Roese <sr@denx.de>
50019 Date: Wed Apr 9 11:58:02 2008 +0200
50020
50021 ppc4xx: Fix Canyonlands default environment to work with new image support
50022
50023 Since the new image support checks for image overwriting, the default
50024 environment needs to get adjusted to use correct addresses.
50025
50026 Signed-off-by: Stefan Roese <sr@denx.de>
50027
50028 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
50029 Author: Stefan Roese <sr@denx.de>
50030 Date: Wed Apr 9 11:54:11 2008 +0200
50031
50032 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
50033
50034 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
50035 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
50036 on 4xx systems _start currently cannot be used for this calculation.
50037 So revert back to the original version for now.
50038
50039 Signed-off-by: Stefan Roese <sr@denx.de>
50040
50041 commit f91374f65eae8b42cac329e06ba1c54728278efb
50042 Author: Michal Simek <monstr@monstr.eu>
50043 Date: Fri Mar 28 12:49:52 2008 +0100
50044
50045 microblaze: Sort microblaze boards in MAKEALL script
50046
50047 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
50048 Author: Michal Simek <monstr@monstr.eu>
50049 Date: Fri Mar 28 11:58:45 2008 +0100
50050
50051 microblaze: clean microblaze_config.mk
50052
50053 FLAGS are generated by U-BOOT generator.
50054 Board specific FLAGS are in board directory
50055
50056 Signed-off-by: Michal Simek <monstr@monstr.eu>
50057
50058 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
50059 Author: Michal Simek <monstr@monstr.eu>
50060 Date: Fri Mar 28 12:47:19 2008 +0100
50061
50062 microblaze: xupv2p fix config file for supporting FDT
50063
50064 commit 188dc16b189143573b1ed90e584bf866d75cdd12
50065 Author: Michal Simek <monstr@monstr.eu>
50066 Date: Fri Mar 28 11:53:02 2008 +0100
50067
50068 microblaze: ml401 fix config file for supporting FDT
50069
50070 Signed-off-by: Michal Simek <monstr@monstr.eu>
50071
50072 commit 4c6a6f02e239236261333759997eeaf86b30b54c
50073 Author: Michal Simek <monstr@monstr.eu>
50074 Date: Fri Mar 28 11:22:48 2008 +0100
50075
50076 microblaze: ml401 - add ifdef for GPIO
50077
50078 Signed-off-by: Michal Simek <monstr@monstr.eu>
50079
50080 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
50081 Author: Michal Simek <monstr@monstr.eu>
50082 Date: Fri Mar 28 12:13:03 2008 +0100
50083
50084 microblaze: clean uart16550 and uartlite handling
50085
50086 Signed-off-by: Michal Simek <monstr@monstr.eu>
50087
50088 commit 0b20f250877441460fb79d72192954abe8498834
50089 Author: Michal Simek <monstr@monstr.eu>
50090 Date: Fri Mar 28 11:08:31 2008 +0100
50091
50092 microblaze: Add Emaclite driver to Makefile
50093
50094 Signed-off-by: Michal Simek <monstr@monstr.eu>
50095
50096 commit 868cde5310f88234b774878e4f06e79df10a88b3
50097 Author: Michal Simek <monstr@monstr.eu>
50098 Date: Fri Mar 28 11:08:01 2008 +0100
50099
50100 microblaze: Add Emac driver to Makefile
50101
50102 Signed-off-by: Michal Simek <monstr@monstr.eu>
50103
50104 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
50105 Author: Michal Simek <monstr@monstr.eu>
50106 Date: Fri Mar 28 12:42:29 2008 +0100
50107
50108 microblaze: add Emac ethernet driver
50109
50110 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
50111 Author: Michal Simek <monstr@monstr.eu>
50112 Date: Fri Mar 28 12:41:56 2008 +0100
50113
50114 microblaze: add Emaclite ethernet driver
50115
50116 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
50117 Author: Michal Simek <monstr@monstr.eu>
50118 Date: Fri Mar 28 11:04:01 2008 +0100
50119
50120 microblaze: ML401 and XUPV2P remove emac and emaclite reference
50121
50122 Signed-off-by: Michal Simek <monstr@monstr.eu>
50123
50124 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
50125 Author: Michal Simek <monstr@monstr.eu>
50126 Date: Fri Mar 28 10:59:32 2008 +0100
50127
50128 microblaze: remove old setting for emac driver
50129
50130 Signed-off-by: Michal Simek <monstr@monstr.eu>
50131
50132 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
50133 Author: Michal Simek <monstr@monstr.eu>
50134 Date: Fri Mar 28 10:58:15 2008 +0100
50135
50136 microblaze: Clean Makefile from ancient emac driver
50137
50138 Signed-off-by: Michal Simek <monstr@monstr.eu>
50139
50140 commit ab68f921d9c741830f721c3d879c13a0c5597183
50141 Author: Daniel Hellstrom <daniel@gaisler.com>
50142 Date: Fri Mar 28 10:20:43 2008 +0100
50143
50144 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
50145
50146 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50147
50148 commit 6ed8a43a19bb0275501bc286007daafa923552cf
50149 Author: Daniel Hellstrom <daniel@gaisler.com>
50150 Date: Wed Mar 26 23:38:48 2008 +0100
50151
50152 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.
50153
50154 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50155
50156 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
50157 Author: Daniel Hellstrom <daniel@gaisler.com>
50158 Date: Wed Mar 26 23:34:47 2008 +0100
50159
50160 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
50161
50162 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50163
50164 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
50165 Author: Daniel Hellstrom <daniel@gaisler.com>
50166 Date: Fri Mar 28 10:06:52 2008 +0100
50167
50168 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
50169
50170 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50171
50172 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
50173 Author: Daniel Hellstrom <daniel@gaisler.com>
50174 Date: Wed Mar 26 23:26:48 2008 +0100
50175
50176 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
50177
50178 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50179
50180 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
50181 Author: Daniel Hellstrom <daniel@gaisler.com>
50182 Date: Fri Mar 28 10:00:33 2008 +0100
50183
50184 SPARC: Added support for SPARC LEON2 SOC Processor.
50185
50186 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50187
50188 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
50189 Author: Daniel Hellstrom <daniel@gaisler.com>
50190 Date: Wed Mar 26 23:00:38 2008 +0100
50191
50192 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.
50193
50194 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50195
50196 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
50197 Author: Daniel Hellstrom <daniel@gaisler.com>
50198 Date: Wed Mar 26 22:51:29 2008 +0100
50199
50200 SPARC: Added support for SPARC LEON3 SOC processor.
50201
50202 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50203
50204 commit bf3d8b31169546fcddb4737391e1893fb12d033a
50205 Author: Daniel Hellstrom <daniel@gaisler.com>
50206 Date: Fri Mar 28 08:29:26 2008 +0100
50207
50208 SPARC: added SPARC support for new uimage in common code.
50209
50210 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50211
50212 commit 00ab32c85405a4fe65fd4128243086210fc90a21
50213 Author: Daniel Hellstrom <daniel@gaisler.com>
50214 Date: Wed Mar 26 22:36:03 2008 +0100
50215
50216 SPARC: added SPARC board information to the command bdinfo.
50217
50218 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50219
50220 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
50221 Author: Daniel Hellstrom <daniel@gaisler.com>
50222 Date: Fri Mar 28 09:47:00 2008 +0100
50223
50224 SPARC: Added generic support for SPARC architecture.
50225
50226 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50227
50228 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
50229 Author: Stefan Roese <sr@denx.de>
50230 Date: Thu Apr 3 14:50:34 2008 +0200
50231
50232 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
50233
50234 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
50235 has 2 RGMII instances and we need to configure the 2nd RGMII instance
50236 for the EMAC2+3 channels.
50237
50238 Signed-off-by: Stefan Roese <sr@denx.de>
50239
50240 commit c2a545ce33b26d80337f80b533828839249fb1c9
50241 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50242 Date: Wed Apr 2 08:03:56 2008 +0200
50243
50244 MPC8xx: Fix libfdt support introduced in commit 77ff7b74
50245
50246 fdt.c: In function 'ft_cpu_setup':
50247 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
50248 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
50249 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
50250 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
50251
50252 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50253
50254 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
50255 Author: Andy Fleming <afleming@freescale.com>
50256 Date: Mon Mar 31 20:45:56 2008 -0500
50257
50258 Fix fdt set command to conform to dts spec
50259
50260 The fdt set command was treating properties specified as <00> and <0011>
50261 as byte streams, rather than as an array of cells. As we already have
50262 syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
50263 we should use the <> syntax to describe arrays of cells, which are always
50264 32-bits per element. If we imagine this likely (IMHO) scenario:
50265
50266 > fdt set /ethernet-phy@1 reg <1>
50267
50268 With the old code, this would create a bad fdt, since the reg cell would be
50269 made to be one byte in length. But the cell must be 4 bytes, so this would
50270 break mysteriously.
50271
50272 Also, the dts spec calls for constants inside the angle brackets (<>)
50273 to conform to C constant standards as they pertain to base.
50274 Take this scenario:
50275
50276 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
50277
50278 The old fdt command would complain that it couldn't parse that. Or, if you
50279 wanted to specify that a certain clock ran at 33 MHz, you'd be required to
50280 do this:
50281
50282 > fdt set /mydev clock <1f78a40>
50283
50284 Whereas the new code will accept decimal numbers.
50285
50286 While I was in there, I extended the fdt command parser to handle property
50287 strings which are split across multiple arguments:
50288
50289 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
50290 > fdt p /ethernet@f00
50291 ethernet@f00 {
50292 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
50293 };
50294
50295 Lastly, the fdt print code was rearranged slightly to print arrays of cells
50296 if the length of the property is a multiple of 4 bytes, and to not print
50297 leading zeros.
50298
50299 Signed-off-by: Andy Fleming <afleming@freescale.com>
50300
50301 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
50302 Author: Stefan Roese <sr@denx.de>
50303 Date: Wed Apr 2 08:39:33 2008 +0200
50304
50305 ppc4xx: Canyonlands: Init SATA/PCIe port correctly
50306
50307 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
50308 interface. This usage can be configured with the jumper J6. This patch
50309 correctly configures the SATA/PCIe PHY for SATA usage when this jumper
50310 is installed.
50311
50312 Signed-off-by: Stefan Roese <sr@denx.de>
50313
50314 commit 6fe2946f198481254a6ee9600d7456b8316a4083
50315 Author: Kim Phillips <kim.phillips@freescale.com>
50316 Date: Fri Mar 28 17:37:49 2008 -0500
50317
50318 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
50319
50320 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
50321 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
50322 started.
50323
50324 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50325
50326 commit b5873f1732b92a25690e1513b90dfb0d644f6697
50327 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50328 Date: Tue Apr 1 07:30:51 2008 +0200
50329
50330 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
50331
50332 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50333
50334 commit 2d934ea51f276522b532f870a820e844ff480b5b
50335 Author: Tor Krill <tor@excito.com>
50336 Date: Fri Mar 28 15:29:45 2008 +0100
50337
50338 Add Vitesse 8601 support to TSEC driver
50339
50340 Add phy_info for Vitesse VSC8601.
50341 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
50342
50343 Signed-off-by: Tor Krill <tor@excito.com>
50344 Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
50345 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50346
50347 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
50348 Author: Daniel Hellstrom <daniel@gaisler.com>
50349 Date: Mon Mar 31 14:25:00 2008 +0000
50350
50351 SPARC: added SMC91111 driver in and out macros for LEON processors.
50352
50353 This patch makes SPARC/LEON processors able to read and write
50354 to the SMC91111 chip using the chip external I/O bus of the memory
50355 controller. This patchs defines the standard in and out macros
50356 expected by the SMC9111 driver.
50357
50358 To access that I/O bus one must set up the memory controller
50359 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
50360 up this correctly when the other MCTRL parameters are set up. It
50361 can be set up from the board configuration header file.
50362
50363 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50364 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50365
50366 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
50367 Author: Stelian Pop <stelian@popies.net>
50368 Date: Wed Mar 26 18:52:34 2008 +0100
50369
50370 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
50371
50372 Signed-off-by: Stelian Pop <stelian@popies.net>
50373
50374 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
50375 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50376 Date: Mon Mar 31 21:31:04 2008 +0200
50377
50378 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
50379
50380 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50381
50382 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
50383 Author: Stelian Pop <stelian@popies.net>
50384 Date: Wed Mar 26 18:52:33 2008 +0100
50385
50386 Add support for AT91SAM9260EK
50387
50388 Support for booting from internal DataFlash, external DataFlash card
50389 or NAND flash is available.
50390
50391 Signed-off-by: Stelian Pop <stelian@popies.net>
50392
50393 commit 1762f13b4aab88b685b1722f17dada247945624b
50394 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50395 Date: Mon Mar 31 21:20:49 2008 +0200
50396
50397 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
50398
50399 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50400
50401 commit 761712188b353494defb2b644491ff73d0daaa6f
50402 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50403 Date: Mon Mar 31 21:12:17 2008 +0200
50404
50405 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
50406
50407 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50408
50409 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
50410 Author: Stelian Pop <stelian@popies.net>
50411 Date: Wed Mar 26 20:52:32 2008 +0100
50412
50413 Port AT91CAP9 to the new headers
50414
50415 Adapt the existing AT91CAP9 code to the new headers and APIs.
50416
50417 Signed-off-by: Stelian Pop <stelian@popies.net>
50418
50419 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
50420 Author: Stelian Pop <stelian@popies.net>
50421 Date: Wed Mar 26 19:52:31 2008 +0100
50422
50423 Finish header files reworking
50424
50425 Replace AT91CAP9.h file with several splitted header files coming
50426 from the Linux kernel.
50427
50428 This is part 2 of the replacement: more header imports and edits.
50429
50430 Signed-off-by: Stelian Pop <stelian@popies.net>
50431
50432 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
50433 Author: Stelian Pop <stelian@popies.net>
50434 Date: Wed Mar 26 19:52:30 2008 +0100
50435
50436 Import several header files from Linux
50437
50438 Replace AT91CAP9.h file with several splitted header files coming
50439 from the Linux kernel.
50440
50441 This is part 1 of the replacement: pristine header files import.
50442
50443 Signed-off-by: Stelian Pop <stelian@popies.net>
50444
50445 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
50446 Author: Stelian Pop <stelian@popies.net>
50447 Date: Wed Mar 26 20:52:28 2008 +0100
50448
50449 Move at91cap9 specific files to at91sam9 directory
50450
50451 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
50452 common infrastructure can be used. Let this infrastructure be
50453 named after the AT91SAM9 family, and move the existing AT91CAP9
50454 files to the new place.
50455
50456 Signed-off-by: Stelian Pop <stelian@popies.net>
50457
50458 commit 61106a565870ff503f92b251b94bd7afef889a04
50459 Author: Stelian Pop <stelian@popies.net>
50460 Date: Wed Mar 26 21:52:27 2008 +0100
50461
50462 Use timer_init() instead of board supplied interrupt_init()
50463
50464 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
50465 the board, so use timer_init() instead of interrupt_init().
50466
50467 Signed-off-by: Stelian Pop <stelian@popies.net>
50468
50469 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
50470 Author: Stelian Pop <stelian@popies.net>
50471 Date: Wed Mar 26 21:52:36 2008 +0100
50472
50473 Cleanup DataFlash partition handling
50474
50475 DataFlash partition information has become a mess. This patch
50476 defines a single partition scheme for Atmel DataFlashes. This partition
50477 scheme will be used by all AT91CAP9 and AT91SAM9 boards.
50478
50479 Signed-off-by: Stelian Pop <stelian@popies.net>
50480
50481 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
50482 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50483 Date: Fri Mar 28 08:47:45 2008 -0500
50484
50485 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
50486
50487 When the version_string function in start.S is not 4-byte align,
50488 it will cause the compiler generates "unaligned opcodes detected
50489 in executable segment". This issue affects all ColdFire CPUs.
50490 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
50491 it is not aligned.
50492
50493 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50494 Acked-by: John Rigby <jrigby@freescale.com>
50495
50496 commit bae61eefe15b4d454060a7140e49ae58322be803
50497 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50498 Date: Tue Mar 25 15:41:15 2008 -0500
50499
50500 ColdFire: Add dspi and serial flash support for MCF5445x
50501
50502 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50503 Acked-by: John Rigby <jrigby@freescale.com>
50504
50505 commit 48ead7a7a922fceaf494e352abfab8216a41b417
50506 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50507 Date: Tue Mar 18 17:37:01 2008 -0500
50508
50509 ColdFire: Remove R5200 board
50510
50511 This board never went into production
50512
50513 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
50514 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50515 Acked-by: John Rigby <jrigby@freescale.com>
50516
50517 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
50518 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
50519 Date: Thu Jan 24 14:02:32 2008 -0600
50520
50521 ColdFire: Added M5275EVB support.
50522
50523 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
50524 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50525 Acked-by: John Rigby <jrigby@freescale.com>
50526
50527 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
50528 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
50529 Date: Mon Feb 4 15:38:20 2008 -0600
50530
50531 ColdFire: Added MCF5275 cpu support.
50532
50533 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
50534 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50535 Acked-by: John Rigby <jrigby@freescale.com>
50536
50537 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
50538 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50539 Date: Mon Mar 17 12:14:11 2008 -0500
50540
50541 ColdFire: Define bootdelay in configuration file for M52277EVB
50542
50543 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
50544 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50545 Acked-by: John Rigby <jrigby@freescale.com>
50546
50547 commit 77878f16cedee17161ff2336990970fffc6cea35
50548 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50549 Date: Mon Mar 17 12:09:07 2008 -0500
50550
50551 ColdFire: Fix second memory Chipselect for M5475EVB
50552
50553 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50554 Acked-by: John Rigby <jrigby@freescale.com>
50555
50556 commit 43d60642395a550956cb21d287c8cfa563913d28
50557 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50558 Date: Thu Mar 13 14:26:32 2008 -0500
50559
50560 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
50561
50562 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50563 Acked-by: John Rigby <jrigby@freescale.com>
50564
50565 commit eb14ebe813a0cb5d47905228da446a5ad692473b
50566 Author: Larry Johnson <lrj@acm.org>
50567 Date: Sun Mar 30 20:33:04 2008 -0500
50568
50569 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
50570
50571 Signed-off-by: Larry Johnson <lrj@acm.org>
50572
50573 commit 02e3892021112f21067d9ed1d04ae4182725ba52
50574 Author: Stefan Roese <sr@denx.de>
50575 Date: Mon Mar 31 12:20:48 2008 +0200
50576
50577 ppc4xx: Small whitespace fix of esd patches
50578
50579 Signed-off-by: Stefan Roese <sr@denx.de>
50580
50581 commit 034394abb524785047c815f00dde8cdbdc1593c5
50582 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50583 Date: Sun Mar 30 18:52:44 2008 +0200
50584
50585 ppc4xx: Cleanup PMC440 board support
50586
50587 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50588
50589 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
50590 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50591 Date: Sun Mar 30 18:52:06 2008 +0200
50592
50593 ppc4xx: Add ptm configuration variables for PMC440
50594
50595 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
50596 environment variables.
50597
50598 Cleanup pci_target_init.
50599
50600 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50601
50602 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
50603 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50604 Date: Sun Mar 30 18:01:15 2008 +0200
50605
50606 ppc4xx: Minor updates for DU440 boards
50607
50608 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
50609
50610 commit d5bffeb868d6b4d462f558dac43011027b6644b7
50611 Author: Mike Frysinger <vapier@gentoo.org>
50612 Date: Tue Feb 19 00:54:20 2008 -0500
50613
50614 Blackfin: cleanup and overhaul common board init functions
50615
50616 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50617
50618 commit b86b3416f874358acaf07519e7620cdb2145f75b
50619 Author: Mike Frysinger <vapier@gentoo.org>
50620 Date: Tue Feb 19 00:50:58 2008 -0500
50621
50622 Blackfin: cleanup lib_blackfin/cache.c
50623
50624 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50625
50626 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
50627 Author: Mike Frysinger <vapier@gentoo.org>
50628 Date: Sun Mar 30 15:46:13 2008 -0400
50629
50630 Blackfin: unify cpu and boot modes
50631
50632 All of the duplicated code for Blackfin processors and boot modes have been
50633 unified. After all, the core is the same for all processors, just the
50634 peripheral set differs (which gets handled in the drivers).
50635
50636 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50637
50638 commit 880cc4381ea8360248cddcdf87a64566745a5724
50639 Author: Stelian Pop <stelian@popies.net>
50640 Date: Wed Mar 26 22:52:35 2008 +0100
50641
50642 Fix CFG_NO_FLASH compilation.
50643
50644 Many Atmel boards have no "real" (NOR) flash on board, and rely only
50645 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
50646 be present in a board configuration file, while still enabling flash
50647 commands like 'flinfo', 'protect', etc.
50648
50649 Signed-off-by: Stelian Pop <stelian@popies.net>
50650
50651 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
50652 Author: Mike Frysinger <vapier@gentoo.org>
50653 Date: Tue Feb 19 00:58:13 2008 -0500
50654
50655 Blackfin: BF537-stamp: cleanup spi flash driver
50656
50657 This punts the old spi flash driver for a new/generalized one until the
50658 common one can be integrated.
50659
50660 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
50661
50662 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
50663 Author: Ben Warren <biggerbadderben@gmail.com>
50664 Date: Sun Mar 30 11:34:34 2008 -0400
50665
50666 Fix macro typo in common/cmd_mii.c
50667
50668 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I
50669 actually applied the wrong patch.
50670
50671 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50672
50673 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
50674 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50675 Date: Sun Mar 30 16:39:53 2008 +0200
50676
50677 use correct at91rm9200 register name in m501sk board
50678
50679 This fixes a naming bug for at91rm9200 lowlevel init code:
50680 NOR boot flash is on chipselect 0, not chipselect 2. This
50681 makes code use the register name from chip datasheets.
50682
50683 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
50684
50685 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
50686 Author: David Brownell <david-b@pacbell.net>
50687 Date: Fri Jan 18 12:55:00 2008 -0800
50688
50689 use correct at91rm9200 register name
50690
50691 This fixes a naming bug for at91rm9200 lowlevel init code:
50692 NOR boot flash is on chipselect 0, not chipselect 2. This
50693 makes code use the register name from chip datasheets.
50694
50695 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
50696
50697 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
50698 Author: David Brownell <david-b@pacbell.net>
50699 Date: Fri Jan 18 12:45:45 2008 -0800
50700
50701 add missing ARM boards to MAKEALL
50702
50703 Add some missing ARM boards to MAKEALL. These build correctly,
50704 unlike several of the boards already listed.
50705
50706 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
50707
50708 commit 066bebd6353e33af3adefc3404560871699e9961
50709 Author: Peter Pearse <peter.pearse@arm.com>
50710 Date: Sun Mar 30 11:34:09 2008 +0100
50711
50712 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
50713 to prevent compilation error.
50714
50715 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
50716
50717 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
50718 Author: Guennadi Liakhovetski <[lg@denx.de]>
50719 Date: Sun Mar 30 11:32:30 2008 +0100
50720
50721 Support for the MX31ADS evaluation board from Freescale
50722
50723 This patch adds support for the MX31ADS evaluation board from Freescale,
50724 initialization code is copied from RedBoot sources, also provided by Freescale.
50725
50726 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50727
50728 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
50729 Author: Sascha Hauer <s.hauer@pengutronix.de>
50730 Date: Sun Mar 30 11:32:27 2008 +0100
50731
50732 Phytec Phycore-i.MX31 support
50733
50734 This patch adds support for the Phytec Phycore-i.MX31 board
50735
50736 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50737 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50738
50739 commit a147e56f03871bba4f05058d5e04ce7deb010b04
50740 Author: Sascha Hauer <s.hauer@pengutronix.de>
50741 Date: Sun Mar 30 11:32:24 2008 +0100
50742
50743 mx31 litekit support
50744
50745 This patch adds support for the mx31 litekit board
50746
50747 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50748 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50749
50750 commit d6674e0e2a6a1f033945f78838566210d3f28c95
50751 Author: Sascha Hauer <s.hauer@pengutronix.de>
50752 Date: Sun Mar 30 11:32:21 2008 +0100
50753
50754 add SMSC LAN9x1x Network driver
50755
50756 This patch adds a driver for the following smsc network controllers:
50757 LAN9115
50758 LAN9116
50759 LAN9117
50760 LAN9215
50761 LAN9216
50762 LAN9217
50763
50764 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50765 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50766
50767 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
50768 Author: Sascha Hauer <s.hauer@pengutronix.de>
50769 Date: Sun Mar 30 11:32:16 2008 +0100
50770
50771 add an i2c driver for mx31
50772
50773 This patch adds an i2c driver for Freescale i.MX processors
50774
50775 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50776 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50777
50778 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
50779 Author: Sascha Hauer <s.hauer@pengutronix.de>
50780 Date: Sun Mar 30 11:30:43 2008 +0100
50781
50782 core support for Freescale mx31
50783
50784 This patch adds the core support for Freescale mx31
50785
50786 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50787 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50788
50789 commit 8bf69d81782619187933a605f1a95ee1d069478d
50790 Author: Sascha Hauer <s.hauer@pengutronix.de>
50791 Date: Sun Mar 30 11:28:46 2008 +0100
50792
50793 Separate omap24xx specific code from arm1136
50794
50795 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
50796
50797 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
50798 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
50799
50800 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
50801 Author: Peter Pearse <peter.pearse@arm.com>
50802 Date: Sun Mar 30 11:23:05 2008 +0100
50803
50804 Add pmdra into MAKEALL
50805
50806 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
50807
50808 commit a574a73852a527779234e73e17e7597fd8128882
50809 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
50810 Date: Sun Mar 30 11:21:58 2008 +0100
50811
50812 Adds support for the Prodrive PMDRA board, based on a DM6441
50813
50814 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
50815
50816 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
50817 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
50818 Date: Sun Mar 30 11:11:34 2008 +0100
50819
50820 Removes all board specific code from the arch. part for DM644x (DaVinci) boards
50821
50822 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
50823
50824 commit 1704dc20917b4f71e373e2c888497ee666d40380
50825 Author: Dirk Behme <dirk.behme@gmail.com>
50826 Date: Sun Mar 30 11:09:01 2008 +0100
50827
50828 - Remove *_masked() functions as noted by Wolfgang
50829 - Adapt register naming to recent TI spec (sprue26, March 2007)
50830 - Fix reset_timer() handling
50831 - As reported by Pieter [1] the overflow fix introduced a
50832 delay of factor 16 (e.g 2 seconds became 32). While the
50833 overflow fix is basically okay, it missed to divide udelay by
50834 16, too. Fix this.
50835 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
50836 - Remove software division of timer count value (DIV(x)
50837 macro) and do it in hardware (TIM_CLK_DIV).
50838 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
50839 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
50840 the hints & testing!
50841
50842 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
50843
50844 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
50845
50846 commit ac3315c26e143c31680750c9c13f027efbcc887e
50847 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
50848 Date: Thu Mar 6 16:45:44 2008 +0100
50849
50850 new PHY @ e1000 - 2nd try
50851
50852 Add 82541ER device with latest integrated IGP2 PHY.
50853 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
50854
50855 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
50856 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50857
50858 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
50859 Author: Daniel Hellstrom <daniel@gaisler.com>
50860 Date: Fri Mar 28 20:22:53 2008 +0100
50861
50862 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
50863
50864 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
50865 a debug link (EDCL). The GRETH core is documented in GRIP.pdf
50866 available at www.gaisler.com.
50867
50868 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
50869 offloading etc.) can be determined by a bit in the control register.
50870 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
50871
50872 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50873 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50874
50875 commit 233a8bcd94997f3f345833a3b82e836222f2a206
50876 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
50877 Date: Mon Mar 17 17:08:22 2008 -0500
50878
50879 Add CONFIG_MII_INIT in cmd_mii.c
50880
50881 Provide common configuration in do_mii() to execute mii_init()
50882 for all cpu architectures
50883
50884 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50885 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50886
50887 commit f605479de2deb11e834f31dfdb0af107c86aced6
50888 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
50889 Date: Mon Mar 17 17:08:16 2008 -0500
50890
50891 ColdFire: Fix FEC transmit issue for MCF5275
50892
50893 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
50894 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50895
50896 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
50897 Author: Aras Vaichas <arasv@magtech.com.au>
50898 Date: Wed Mar 26 09:43:57 2008 +1100
50899
50900 DHCP request fix for Windows Server 2003
50901
50902 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
50903 delay before sending "DHCP Request" in net/bootp.c. Required to overcome
50904 interoperability problems with Windows Server 200x DHCP server when U-Boot
50905 client responds too fast for server to handle.
50906
50907 Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
50908 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
50909
50910 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
50911 Author: Daniel Hellstrom <daniel@gaisler.com>
50912 Date: Fri Mar 28 20:40:19 2008 +0100
50913
50914 MTD/CFI: flash_read64 is defined a weak function (for SPARC)
50915
50916 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
50917 SPARC CPUs implement flash_read64 which calls __raw_readq.
50918
50919 For current SPARC architectures (LEON2 and LEON3) each read from the
50920 FLASH must lead to a cache miss. This is because FLASH can not be set
50921 non-cacheable since program code resides there, and alternatively disabling
50922 cache is poor from performance view, or doing a cache flush between each
50923 read is even poorer.
50924
50925 Forcing a cache miss on a SPARC is done by a special instruction "lda" -
50926 load alternative space, the alternative space number (ASI) is processor
50927 implementation spcific and can be found by including <asm/processor.h>.
50928
50929 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
50930
50931 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
50932 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50933 Date: Fri Mar 28 15:41:25 2008 +0100
50934
50935 Make MPC83xx one step closer to full relocation.
50936
50937 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
50938 and use GOT relative reference.
50939
50940 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
50941 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50942
50943 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
50944 Author: Michael Barkowski <michael.barkowski@freescale.com>
50945 Date: Thu Mar 27 14:34:43 2008 -0400
50946
50947 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
50948
50949 This patch fixes eeprom page size so that you can now write more than
50950 64 bytes at a time.
50951
50952 It also makes the board take MAC addresses, if found, from EEPROM.
50953
50954 User should place up to 4 addresses at offset 0x7f00, for
50955 eth{,1,2,3}addr. Any unused addresses should be zero. This group of
50956 four six-byte values should have it's CRC at the end. crc32 and
50957 eeprom commands can be used to accomplish this.
50958
50959 If CRC fails, MAC addresses come from the environment. If CRC
50960 succeeds, the environment is overwritten at startup.
50961
50962 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
50963 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50964
50965 commit 8f325cff31f6e745e6540014b131b9a97f61944c
50966 Author: Michael Barkowski <michael.barkowski@freescale.com>
50967 Date: Fri Mar 28 15:15:38 2008 -0400
50968
50969 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
50970
50971 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
50972 controller on the PCI bus in Linux on the MPC8323ERDB.
50973
50974 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
50975 config file.
50976
50977 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
50978 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50979
50980 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
50981 Author: Kim Phillips <kim.phillips@freescale.com>
50982 Date: Fri Mar 28 10:19:07 2008 -0500
50983
50984 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
50985
50986 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
50987 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
50988 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
50989 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
50990 convenience macros.
50991
50992 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
50993
50994 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
50995 Author: Kim Phillips <kim.phillips@freescale.com>
50996 Date: Fri Mar 28 10:18:53 2008 -0500
50997
50998 mpc83xx: display ddr frequency in board_add_ram_info banner
50999
51000 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51001
51002 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
51003 Author: Kim Phillips <kim.phillips@freescale.com>
51004 Date: Fri Mar 28 10:18:40 2008 -0500
51005
51006 mpc83xx: unreinvent mem_clk
51007
51008 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to
51009 mem_*_clk for consistency's sake.
51010
51011 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51012
51013 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
51014 Author: Kim Phillips <kim.phillips@freescale.com>
51015 Date: Fri Mar 28 14:31:23 2008 -0500
51016
51017 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
51018
51019 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51020
51021 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
51022 Author: Dave Liu <r63238@freescale.com>
51023 Date: Wed Mar 26 22:57:19 2008 +0800
51024
51025 mpc83xx: enable the SATA interface on mpc837xemds board
51026
51027 Enable the first two SATA interfaces on MPC837xEMDS board,
51028 The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
51029
51030 Signed-off-by: Dave Liu <daveliu@freescale.com>
51031 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51032
51033 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
51034 Author: Dave Liu <r63238@freescale.com>
51035 Date: Wed Mar 26 22:56:36 2008 +0800
51036
51037 mpc83xx: initialize serdes for MPC837xEMDS boards
51038
51039 This patch is stolen from Anton Vorontsov's patch
51040 for mpc837xerdb boards.
51041
51042 The reference clk and xcorevdd voltage of serdes1/2
51043 is same between mpc837xemds and mpc837xerdb.
51044
51045 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE
51046 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE
51047 8379E: LYNX1- 2 SATA LYNX2- 2 SATA
51048
51049 Signed-off-by: Dave Liu <daveliu@freescale.com>
51050 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51051
51052 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
51053 Author: Stefan Roese <sr@denx.de>
51054 Date: Fri Mar 28 14:09:04 2008 +0100
51055
51056 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
51057
51058 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
51059 interface. This usage can be configured with the jumper J6. This patch
51060 displays the current configuration upon bootup and changes the PCIe
51061 init loop, to only initialize the availabel PCIe slots.
51062
51063 Signed-off-by: Stefan Roese <sr@denx.de>
51064
51065 commit 90447ecbbac8572457b6d8903073ac3f120995ba
51066 Author: Tor Krill <tor@excito.com>
51067 Date: Fri Mar 28 11:29:10 2008 +0100
51068
51069 MTD/CFI: Add support for 16bit legacy AMD flash
51070
51071 Add entry for 512Kx16 AMD flash to jedec_table.
51072 Read out 16bit device id if chipwidth is 16bit.
51073 Fixed coding style after Stefans feedback
51074
51075 Signed-off-by: Tor Krill <tor@excito.com>
51076
51077 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
51078 Author: Stefan Roese <sr@denx.de>
51079 Date: Fri Mar 28 11:02:53 2008 +0100
51080
51081 ppc: Small change to CFG_MEM_TOP_HIDE description
51082
51083 Signed-off-by: Stefan Roese <sr@denx.de>
51084
51085 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
51086 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51087 Date: Thu Mar 27 15:44:12 2008 +0900
51088
51089 sh: Add support stat structure and stat.h
51090
51091 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51092
51093 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
51094 Author: Mark Jonas <toertel@gmail.com>
51095 Date: Sat Mar 22 19:27:52 2008 +0100
51096
51097 sh: Removed warning when compiling drivers/serial/serial_sh.c.
51098
51099 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
51100 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51101
51102 commit f309fa38929ffba71230c02330ffa42f4bba6333
51103 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51104 Date: Wed Mar 12 18:02:57 2008 +0900
51105
51106 sh: Remove disable_ctrlc function from R7780MP
51107
51108 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51109
51110 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
51111 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51112 Date: Wed Mar 12 17:55:15 2008 +0900
51113
51114 sh: Add maintainer of R7780MP to MAINTAINER file
51115
51116 Update MAINTAINER entry for R7780MP. And fix maintainer's name.
51117
51118 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51119
51120 commit f5e2466f7baa887a7df0c536333eea8231333497
51121 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51122 Date: Tue Mar 25 17:11:24 2008 +0900
51123
51124 sh: Add support Renesas Solutions R2D plus board
51125
51126 R2D plus is SH reference board used with SH7751R.
51127 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
51128 one PCI bus, VGA, and two Ethernet controller.
51129
51130 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51131
51132 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
51133 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51134 Date: Wed Mar 12 12:15:29 2008 +0900
51135
51136 sh: Add support SH4 cache control
51137
51138 Add support SH4 cache control and flash_cache function
51139
51140 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51141
51142 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
51143 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51144 Date: Mon Mar 24 01:53:01 2008 +0900
51145
51146 sh: Add support PCI host driver for SH7751/SH7751R
51147
51148 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51149
51150 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
51151 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51152 Date: Mon Mar 24 02:11:26 2008 +0900
51153
51154 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
51155
51156 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51157
51158 commit 566933278101c144d75361ea682678a326c1290d
51159 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51160 Date: Wed Mar 12 12:10:28 2008 +0900
51161
51162 sh: Add support SuperH SH7751/SH7751R
51163
51164 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51165
51166 commit 3313e0e26224fc9a0c445124f3455058c696df84
51167 Author: Mark Jonas <toertel@gmail.com>
51168 Date: Mon Mar 10 11:37:10 2008 +0100
51169
51170 sh: Added support for SH7720 based board MPR2.
51171
51172 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
51173 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51174
51175 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
51176 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51177 Date: Thu Mar 6 14:05:53 2008 +0900
51178
51179 sh: Fix receive FIFO level register of SH4A
51180
51181 Receive FIFO level register is different in SH4A.
51182 Because register is different, cannot occasionally receive data.
51183
51184 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51185
51186 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
51187 Author: Yusuke Goda <goda.yusuke@renesas.com>
51188 Date: Tue Mar 11 12:55:12 2008 +0900
51189
51190 sh: Add support Renesas Solutions R7780MP
51191
51192 Renesas Solutions R7780MP is a reference board on SH7780.
51193 This board has serial, 10/100 base Ethernet deivice, CF slot
51194 and VGA devices. This board can set extension board.
51195 Extension board has 10/100/1000 base Ethernet device, PCI slot,
51196 S-ATA, iDVR slot.
51197
51198 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
51199 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51200
51201 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
51202 Author: Yusuke Goda <goda.yusuke@renesas.com>
51203 Date: Wed Mar 5 14:30:02 2008 +0900
51204
51205 sh: Add support PCI of SuperH and SH7780
51206
51207 This patch add support PCI of SuperH base code and SH7780 specific code.
51208
51209 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
51210 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51211
51212 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
51213 Author: Yusuke Goda <goda.yusuke@renesas.com>
51214 Date: Wed Mar 5 14:23:26 2008 +0900
51215
51216 sh: Add support SH7780
51217
51218 SH7780 is CPU of Renesas Technology.
51219 This CPU has
51220 - CPU clock 400MHz
51221 - PCI support
51222 - DDR-SDRAM controller
51223 - etc ...
51224
51225 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
51226 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51227
51228 commit c2042f5952a686c414031309b8f244513bf578f0
51229 Author: goda.yusuke <goda.yusuke@renesas.com>
51230 Date: Fri Jan 25 20:46:36 2008 +0900
51231
51232 sh: Add support Renesas Solutions Migo-R board
51233
51234 Migo-R is a board based on SH7722 and has may devices.
51235 In this patch, supported SCIF, NOR flash and Ethernet.
51236
51237 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
51238 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51239
51240 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
51241 Author: Bartlomiej Sieka <tur@semihalf.com>
51242 Date: Thu Mar 27 15:06:40 2008 +0100
51243
51244 Fix host tool build breakage, take two
51245
51246 Revert commit 87c8431f and fix build breakage so that the build continues
51247 to work on FC systems.
51248
51249 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
51250
51251 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
51252 Author: Stefan Roese <sr@denx.de>
51253 Date: Wed Mar 19 09:36:47 2008 +0100
51254
51255 ppc4xx: Enable ECC on LWMON5
51256
51257 Since all ECC related problems seem to be resolved on LWMON5, this patch
51258 now enables ECC support.
51259
51260 We have to write the ECC bytes by zeroing and flushing in smaller
51261 steps, since the whole 256MByte takes too long for the external
51262 watchdog.
51263
51264 Signed-off-by: Stefan Roese <sr@denx.de>
51265
51266 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
51267 Author: Larry Johnson <lrj@acm.org>
51268 Date: Mon Mar 17 11:10:35 2008 -0500
51269
51270 ppc4xx: Updates to Korat-specific code
51271
51272 This patch contains updates for changes for the Korat PPC440EPx board.
51273 These changes include:
51274
51275 (1) Support for "permanent" and "upgradable" copies of U-Boot, as
51276 described in the new "doc/README.korat" file;
51277
51278 (2) a new memory map for the registers in the board's CPLD;
51279
51280 (3) a revised format for manufacturer's data in serial EEPROM; and
51281
51282 (4) changes to track updates to U-Boot for the Sequoia board.
51283
51284 Signed-off-by: Larry Johnson <lrj@acm.org>
51285
51286 commit f766cdf89b3a2a7634b8c5869f606150e332036c
51287 Author: Markus Brunner <super.firetwister@gmail.com>
51288 Date: Thu Mar 27 10:46:25 2008 +0100
51289
51290 ppc4xx: PPC405EP Set EMAC noise filter bits
51291
51292 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
51293 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
51294 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
51295
51296 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
51297 Signed-off-by: Stefan Roese <sr@denx.de>
51298
51299 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
51300 Author: Mike Nuss <mike@terascala.com>
51301 Date: Wed Feb 20 11:54:20 2008 -0500
51302
51303 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
51304
51305 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
51306 after startup to change the speed of the clocks. This patch adds the
51307 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
51308 initialization code will reconfigure the PLL to run the system with a CPU
51309 frequency of 667MHz and PLB frequency of 166MHz, without the need for an
51310 external EEPROM.
51311
51312 Signed-off-by: Mike Nuss <mike@terascala.com>
51313 Acked-by: Stefan Roese <sr@denx.de>
51314
51315 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
51316 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51317 Date: Thu Mar 27 09:12:40 2008 +0100
51318
51319 new-image: Fix host tool build breakage
51320
51321 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
51322
51323 commit 6fb4b640562a10daff0dbe537638d511b5b48650
51324 Author: Stefan Roese <sr@denx.de>
51325 Date: Thu Mar 27 10:24:03 2008 +0100
51326
51327 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
51328
51329 Signed-off-by: Stefan Roese <sr@denx.de>
51330
51331 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
51332 Author: Stefan Roese <sr@denx.de>
51333 Date: Wed Mar 19 10:23:43 2008 +0100
51334
51335 ppc4xx: Add fdt support to Prodrive alpr
51336
51337 Since this board will probably be ported to arch/powerpc in the
51338 near future, we add device tree support now. This way we are
51339 "ready" for arch/powerpc from now on.
51340
51341 Signed-off-by: Stefan Roese <sr@denx.de>
51342
51343 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
51344 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
51345 Date: Mon Mar 17 09:27:56 2008 +0100
51346
51347 ppc4xx: Enable cache support on the ALPR board
51348
51349 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
51350
51351 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
51352 Author: Stefan Roese <sr@denx.de>
51353 Date: Wed Mar 26 10:14:11 2008 +0100
51354
51355 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
51356
51357 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
51358 memory area will get subtracted from the top (end) of ram and won't get
51359 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
51360 should gets passed the now "corrected" memory size and won't touch it
51361 either. This should work for arch/ppc and arch/powerpc. Only Linux board
51362 ports in arch/powerpc with bootwrapper support, which recalculate the
51363 memory size from the SDRAM controller setup, will have to get fixed
51364 in Linux additionally.
51365
51366 This patch enables this config option on some PPC440EPx boards as a workaround
51367 for the CHIP 11 errata. Here the description from the AMCC documentation:
51368
51369 CHIP_11: End of memory range area restricted access.
51370 Category: 3
51371
51372 Overview:
51373 The 440EPx DDR controller does not acknowledge any
51374 transaction which is determined to be crossing over the
51375 end-of-memory-range boundary, even if the starting address is
51376 within valid memory space. Any such transaction from any PLB4
51377 master will result in a PLB time-out on PLB4 bus.
51378
51379 Impact:
51380 In case of such misaligned bursts, PLB4 masters will not
51381 retrieve any data at all, just the available data up to the
51382 end of memory, especially the 440 CPU. For example, if a CPU
51383 instruction required an operand located in memory within the
51384 last 7 words of memory, the DCU master would burst read 8
51385 words to update the data cache and cross over the
51386 end-of-memory-range boundary. Such a DCU read would not be
51387 answered by the DDR controller, resulting in a PLB4 time-out
51388 and ultimately in a Machine Check interrupt. The data would
51389 be inaccessible to the CPU.
51390
51391 Workaround:
51392 Forbid any application to access the last 256 bytes of DDR
51393 memory. For example, make your operating system believe that
51394 the last 256 bytes of DDR memory are absent. AMCC has a patch
51395 that does this, available for Linux.
51396
51397 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
51398 lwmon5, korat, sequoia
51399
51400 The other remaining 440EPx board were intentionally not included
51401 since it is not clear to me, if they use the end of ram for some
51402 other purpose. This is unclear, since these boards have CONFIG_PRAM
51403 defined and even comments like this:
51404
51405 PMC440.h:
51406 /* esd expects pram at end of physical memory.
51407 * So no logbuffer at the moment.
51408 */
51409
51410 It is strongly recommended to not use the last 256 bytes on those
51411 boards too. Patches from the board maintainers are welcome.
51412
51413 Signed-off-by: Stefan Roese <sr@denx.de>
51414
51415 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
51416 Author: Stefan Roese <sr@denx.de>
51417 Date: Thu Mar 27 10:09:05 2008 +0100
51418
51419 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
51420
51421 Signed-off-by: Stefan Roese <sr@denx.de>
51422
51423 commit d56a3ce179688cde61073a3690e21703d68fafd7
51424 Author: Stefan Roese <sr@denx.de>
51425 Date: Tue Mar 25 17:51:13 2008 +0100
51426
51427 ppc4xx: Correctly pass phyiscal FLASH base address into dtb
51428
51429 The routine ft_board_setup() configures the EBC NOR mappings for the
51430 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
51431 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
51432 problem, we need to pass the corrected address here too.
51433
51434 Signed-off-by: Stefan Roese <sr@denx.de>
51435
51436 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
51437 Author: Stefan Roese <sr@denx.de>
51438 Date: Wed Mar 19 16:35:12 2008 +0100
51439
51440 ppc4xx: Fix compilation warning in 4xx_enet.c
51441
51442 Signed-off-by: Stefan Roese <sr@denx.de>
51443
51444 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
51445 Author: Stefan Roese <sr@denx.de>
51446 Date: Wed Mar 19 16:20:49 2008 +0100
51447
51448 ppc4xx: Add AMCC Glacier 406GT eval board support
51449
51450 This patch adds support for the AMCC Glacier 460GT eval board.
51451 The main difference to the Canyonlands board are listed here:
51452
51453 - 4 ethernet ports instead of 2
51454 - no SATA port
51455 - no USB port
51456
51457 Currently EMAC2+3 are not working. This will be fixed in a later
51458 release.
51459
51460 Signed-off-by: Stefan Roese <sr@denx.de>
51461
51462 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
51463 Author: Stefan Roese <sr@denx.de>
51464 Date: Thu Mar 27 08:47:26 2008 +0100
51465
51466 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
51467
51468 Signed-off-by: Stefan Roese <sr@denx.de>
51469
51470 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
51471 Author: Anatolij Gustschin <agust@denx.de>
51472 Date: Wed Mar 26 21:05:43 2008 +0100
51473
51474 Fix out of tree building issue
51475
51476 Currently U-Boot building in some external directory
51477 doesn't work. This patch tries to fix the problem.
51478
51479 Signed-off-by: Anatolij Gustschin <agust@denx.de>
51480
51481 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
51482 Author: Anatolij Gustschin <agust@denx.de>
51483 Date: Wed Mar 26 18:13:33 2008 +0100
51484
51485 README: update documentation (availability, links, etc.)
51486
51487 Fix typo in README
51488
51489 Signed-off-by: Anatolij Gustschin <agust@denx.de>
51490
51491 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
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
51503 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
51504 Author: Timur Tabi <timur@freescale.com>
51505 Date: Fri Mar 14 17:45:29 2008 -0500
51506
51507 Add support for setting the I2C bus speed in fsl_i2c.c
51508
51509 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
51510 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro,
51511 but fsl_i2c.c ignores it and uses conservative value when programming the
51512 I2C bus speed.
51513
51514 Signed-off-by: Timur Tabi <timur@freescale.com>
51515 Acked-by: Andy Fleming <afleming@freescale.com>
51516
51517 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
51518 Author: Wolfgang Denk <wd@denx.de>
51519 Date: Thu Mar 27 00:03:57 2008 +0100
51520
51521 Coding style cleanup, update CHANGELOG
51522
51523 Signed-off-by: Wolfgang Denk <wd@denx.de>
51524
51525 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
51526 Author: Dave Liu <r63238@freescale.com>
51527 Date: Wed Mar 26 22:55:32 2008 +0800
51528
51529 drivers: add the support for Freescale SATA controller
51530
51531 Add the Freescale on-chip SATA controller driver to u-boot,
51532 The SATA controller is used on the 837x and 8315 targets,
51533 The driver can be used to load kernel, fs and dtb.
51534
51535 The features list:
51536 - 1.5/3 Gbps link speed
51537 - LBA48, LBA28 support
51538 - DMA and FPDMA support
51539 - Two ports support
51540
51541 Signed-off-by: Dave Liu <daveliu@freescale.com>
51542
51543 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
51544 Author: Dave Liu <r63238@freescale.com>
51545 Date: Wed Mar 26 22:54:44 2008 +0800
51546
51547 ata: add the readme for SATA command line
51548
51549 Signed-off-by: Dave Liu <daveliu@freescale.com>
51550
51551 commit cd54081cd479e542fc399b8a40651ff11a1ad849
51552 Author: Dave Liu <r63238@freescale.com>
51553 Date: Wed Mar 26 22:53:24 2008 +0800
51554
51555 ata: enable the sata initialize on boot up
51556
51557 Signed-off-by: Dave Liu <daveliu@freescale.com>
51558
51559 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
51560 Author: Dave Liu <r63238@freescale.com>
51561 Date: Wed Mar 26 22:52:36 2008 +0800
51562
51563 ata: add the fis struct for SATA
51564
51565 Signed-off-by: Dave Liu <daveliu@freescale.com>
51566
51567 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
51568 Author: Dave Liu <r63238@freescale.com>
51569 Date: Wed Mar 26 22:51:44 2008 +0800
51570
51571 ata: add the libata support
51572
51573 add simple libata support in u-boot
51574
51575 Signed-off-by: Dave Liu <daveliu@freescale.com>
51576
51577 commit 8e9bb43429e50df55fa41932cbe65841ff579220
51578 Author: Dave Liu <r63238@freescale.com>
51579 Date: Wed Mar 26 22:50:45 2008 +0800
51580
51581 ata: make the ata_piix driver using new SATA framework
51582
51583 original ata_piix driver is using IDE framework, not real
51584 SATA framework. For now, the ata_piix driver is only used
51585 by x86 sc520_cdp board. This patch makes the ata_piix driver
51586 use the new SATA framework, so
51587
51588 - remove the duplicated command stuff
51589 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
51590 - add the CONFIG_CMD_SATA define to sc520_cdp.h
51591
51592 Signed-off-by: Dave Liu <daveliu@freescale.com>
51593
51594 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
51595 Author: Dave Liu <r63238@freescale.com>
51596 Date: Wed Mar 26 22:49:44 2008 +0800
51597
51598 ata: add the support for SATA framework
51599
51600 - add the SATA framework
51601 - add the SATA command line
51602
51603 Signed-off-by: Dave Liu <daveliu@freescale.com>
51604
51605 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
51606 Author: Dave Liu <r63238@freescale.com>
51607 Date: Wed Mar 26 22:48:18 2008 +0800
51608
51609 ata: merge the header of ata_piix driver
51610
51611 move the sata.h from include/ to drivers/block/ata_piix.h
51612
51613 Signed-off-by: Dave Liu <daveliu@freescale.com>
51614
51615 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
51616 Author: Dave Liu <r63238@freescale.com>
51617 Date: Wed Mar 26 22:47:06 2008 +0800
51618
51619 ata: merge the ata_piix driver
51620
51621 move the cmd_sata.c from common/ to drivers/ata_piix.c,
51622 the cmd_sata.c have some part of ata_piix controller drivers.
51623 consolidate the driver to have better framework.
51624
51625 Signed-off-by: Dave Liu <daveliu@freescale.com>
51626
51627 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
51628 Author: Markus Klotzbuecher <mk@denx.de>
51629 Date: Wed Mar 26 18:26:43 2008 +0100
51630
51631 USB, Storage: fix a bug introduced in commit
51632 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
51633 to only print only information on one storage device, but not for
51634 multiple.
51635
51636 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51637
51638 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
51639 Author: Anatolij Gustschin <agust@denx.de>
51640 Date: Wed Mar 26 17:47:44 2008 +0100
51641
51642 Fix compilation error in cmd_usb.c
51643
51644 This patch fixes compilation error
51645 cmd_usb.c: In function 'do_usb':
51646 cmd_usb.c:552: error: void value not ignored as it ought to be
51647
51648 Signed-off-by: Anatolij Gustschin <agust@denx.de>
51649 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51650
51651 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
51652 Author: Kumar Gala <galak@kernel.crashing.org>
51653 Date: Wed Mar 26 08:53:53 2008 -0500
51654
51655 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
51656
51657 Provide a board_lmb_reserve helper function to ensure we reserve
51658 the page of memory we are using for the boot page translation code.
51659
51660 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51661
51662 commit 79679d80021ab095e639e250ca472fe526da02e2
51663 Author: Kumar Gala <galak@kernel.crashing.org>
51664 Date: Wed Mar 26 08:34:25 2008 -0500
51665
51666 85xx: Update multicore boot mechanism to ePAPR v0.81 spec
51667
51668 The following changes are needed to be inline with ePAPR v0.81:
51669
51670 * r4, r5 and now always set to 0 on boot release
51671 * r7 is used to pass the size of the initial map area (IMA)
51672 * EPAPR_MAGIC value changed for book-e processors
51673 * changes in the spin table layout
51674 * spin table supports a 64-bit physical release address
51675
51676 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51677
51678 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
51679 Author: Jon Loeliger <jdl@freescale.com>
51680 Date: Wed Mar 19 15:02:07 2008 -0500
51681
51682 FSL: Clean up board/freescale/common/Makefile
51683
51684 Each file that can be built here now follows some
51685 CONFIG_ option so that they are appropriately built
51686 or not, as needed. And CONFIG_ defines were added
51687 to various board config files to make sure that happens.
51688
51689 The other board/freescale/*/Makefiles no longer need
51690 to reach up and over into ../common to build their
51691 individually needed files any more.
51692
51693 Boards that are CDS specific were renamed with cds_ prefix.
51694
51695 Signed-off-by: Jon Loeliger <jdl@freescale.com>
51696
51697 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
51698 Author: Kumar Gala <galak@kernel.crashing.org>
51699 Date: Wed Feb 27 22:00:27 2008 -0600
51700
51701 85xx: Fix merge duplication
51702
51703 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate.
51704
51705 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51706
51707 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
51708 Author: James Yang <James.Yang@freescale.com>
51709 Date: Tue Feb 12 16:35:07 2008 -0600
51710
51711 85xx: Expand CCSR space with more DDR controller registers.
51712
51713 Signed-off-by: James Yang <James.Yang@freescale.com>
51714 Signed-off-by: Jon Loeliger <jdl@freescale.com>
51715 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51716
51717 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
51718 Author: James Yang <James.Yang@freescale.com>
51719 Date: Fri Feb 8 18:05:08 2008 -0600
51720
51721 85xx: Speed up get_ddr_freq() and get_bus_freq()
51722
51723 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
51724 called. However, get_sys_info() recalculates extraneous information when
51725 called each time. Have get_ddr_freq() and get_bus_freq() return memoized
51726 values from global_data instead.
51727
51728 Signed-off-by: James Yang <James.Yang@freescale.com>
51729 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51730
51731 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
51732 Author: James Yang <James.Yang@freescale.com>
51733 Date: Fri Feb 8 16:46:27 2008 -0600
51734
51735 85xx: Show DDR memory data rate in addition to the memory clock frequency.
51736
51737 Show the DDR memory data rate in addition to the memory clock
51738 frequency. For DDR/DDR2 memories the memory data rate is 2x the
51739 memory clock.
51740
51741 Signed-off-by: James Yang <James.Yang@freescale.com>
51742 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51743
51744 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
51745 Author: James Yang <James.Yang@freescale.com>
51746 Date: Fri Feb 8 16:44:53 2008 -0600
51747
51748 85xx: get_tbclk() speed up and rounding fix
51749
51750 Speed up get_tbclk() by referencing pre-computed bus clock
51751 frequency value from global data instead of sys_info_t. Fix
51752 rounding of result to nearest; previously it was rounding
51753 upwards.
51754
51755 Signed-off-by: James Yang <James.Yang@freescale.com>
51756 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51757
51758 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
51759 Author: Andy Fleming <afleming@freescale.com>
51760 Date: Wed Feb 6 01:19:40 2008 -0600
51761
51762 Update SVR numbers to expand support
51763
51764 FSL has taken to using SVR[16:23] as an SOC sub-version field. This
51765 is used to distinguish certain variants within an SOC family. To
51766 account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
51767 constants to reflect the larger value. We also add SVR numbers for all
51768 of the current variants. Finally, to make things neater, rather than
51769 use an enormous switch statement to print out the CPU type, we create
51770 and array of SVR/name pairs (using a macro), and print out the CPU name
51771 that matches the SVR SOC version.
51772
51773 Signed-off-by: Andy Fleming <afleming@freescale.com>
51774
51775 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
51776 Author: Andy Fleming <afleming@freescale.com>
51777 Date: Wed Feb 6 01:12:57 2008 -0600
51778
51779 Add the Freescale PCI device IDs
51780
51781 Signed-off-by: Andy Fleming <afleming@freescale.com>
51782
51783 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
51784 Author: Kumar Gala <galak@kernel.crashing.org>
51785 Date: Thu Feb 14 11:04:23 2008 -0600
51786
51787 85xx: Added support for multicore boot mechanism
51788
51789 Added the cpu command that provides a generic mechanism to get status,
51790 reset, and release secondary cores in multicore processors.
51791
51792 Added support for using the ePAPR defined spin-table mechanism on 85xx.
51793
51794 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51795 Signed-off-by: Andy Fleming <afleming@freescale.com>
51796
51797 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
51798 Author: Kumar Gala <galak@kernel.crashing.org>
51799 Date: Thu Jan 17 16:48:33 2008 -0600
51800
51801 85xx: Added support for multicore boot mechanism
51802
51803 Added the cpu command that provides a generic mechanism to get status,
51804 reset, and release secondary cores in multicore processors.
51805
51806 Added support for using the ePAPR defined spin-table mechanism on 85xx.
51807
51808 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51809
51810 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
51811 Author: Kumar Gala <galak@kernel.crashing.org>
51812 Date: Wed Jan 30 14:55:14 2008 -0600
51813
51814 85xx: Add the concept of CFG_CCSRBAR_PHYS
51815
51816 When we go to 36-bit physical addresses we need to keep the concept of
51817 the physical CCSRBAR address seperate from the virtual one.
51818
51819 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
51820
51821 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
51822
51823 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
51824 Author: Wolfgang Denk <wd@denx.de>
51825 Date: Wed Mar 26 15:38:47 2008 +0100
51826
51827 Coding style cleanup.
51828
51829 Signed-off-by: Wolfgang Denk <wd@denx.de>
51830
51831 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
51832 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
51833 Date: Wed Mar 26 13:02:13 2008 +0100
51834
51835 Add CFG_RTC_DS1337_NOOSC to turn off OSC output
51836
51837 The default settings for RTC DS1337 keeps the OSC
51838 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
51839 turn it off.
51840
51841 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
51842
51843 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
51844 Author: Wolfgang Denk <wd@denx.de>
51845 Date: Wed Mar 26 11:48:46 2008 +0100
51846
51847 Cleanup coding style, update CHANGELOG
51848
51849 Signed-off-by: Wolfgang Denk <wd@denx.de>
51850
51851 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
51852 Author: Wolfgang Denk <wd@denx.de>
51853 Date: Wed Mar 26 10:40:12 2008 +0100
51854
51855 README: update documentation (availability, links, etc.)
51856
51857 Signed-off-by: Wolfgang Denk <wd@denx.de>
51858
51859 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
51860 Author: Aras Vaichas <arasv@magtech.com.au>
51861 Date: Tue Mar 25 12:09:07 2008 +1100
51862
51863 USB Storage, add meaningful return value
51864
51865 This patch changes the "usb storage" command to return success if it
51866 finds a USB storage device, otherwise it returns error.
51867
51868 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
51869
51870 commit 18e69a35efbb078403db0c0063986470dad7d082
51871 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51872 Date: Fri Mar 14 23:20:18 2008 +0300
51873
51874 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
51875
51876 Linux understands "host" (default), "peripheral" and "otg" (broken).
51877 Though, U-Boot doesn't restrict dr_mode variable to these values (think
51878 of renames in future).
51879
51880 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51881 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51882
51883 commit c7604783b236e368f225efb7b3efb418fe20b404
51884 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51885 Date: Fri Mar 14 23:20:30 2008 +0300
51886
51887 tsec: fix link detection for the RTL8211B PHY
51888
51889 RTL8211B sets link state register after autonegotiation complete,
51890 so with bootdelay=0 RTL8211B will report lack of the link.
51891
51892 To fix this, we should wait for aneg to complete, even if the
51893 link is currently down.
51894
51895 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51896 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
51897
51898 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
51899 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51900 Date: Mon Mar 24 20:47:09 2008 +0300
51901
51902 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
51903
51904 device_type = "soc" is being deprecated, newer device trees will use
51905 "fsl,soc" and/or "fsl,immr" for the soc nodes.
51906
51907 This patch also adds clock-frequency property for soc nodes (the same
51908 value as bus-frequency).
51909
51910 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51911
51912 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
51913 Author: Joe D'Abbraccio <ljd015@freescale.com>
51914 Date: Mon Mar 24 13:00:59 2008 -0400
51915
51916 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
51917
51918 With the original value of 1/2 clock cycle delay, the system ran relatively
51919 stable except when we run benchmarks that are intensive users of memory.
51920 When I run samba connected disk with a HDBENCH test, the system locks-up
51921 or reboots sporadically.
51922
51923 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
51924
51925 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
51926 Author: Scott Wood <scottwood@freescale.com>
51927 Date: Mon Mar 24 12:44:13 2008 -0500
51928
51929 mpc83xx: Set PCI I/O bus-address base to zero.
51930
51931 The device trees for these boards describe PCI I/O as starting from
51932 address zero from the device's perspective.
51933
51934 Placing I/O elsewhere may cause problems with certain PCI boards, and may
51935 cause problems with Linux.
51936
51937 Signed-off-by: Scott Wood <scottwood@freescale.com>
51938
51939 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
51940 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51941 Date: Mon Mar 24 20:47:05 2008 +0300
51942
51943 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
51944
51945 At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
51946 This patch fixes "system time drifting" problem.
51947
51948 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51949
51950 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
51951 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51952 Date: Mon Mar 24 20:47:02 2008 +0300
51953
51954 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
51955
51956 This is needed to update /choosen/linux,stdout-path properly.
51957
51958 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51959
51960 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
51961 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51962 Date: Mon Mar 24 20:47:00 2008 +0300
51963
51964 mpc83xx: MPC8360E-RDK: add dhcp command
51965
51966 Plus modify environment to use it and remove bootfile env variable,
51967 it is internal and CONFIG_BOOTFILE is used for these purposes.
51968
51969 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51970
51971 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
51972 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51973 Date: Mon Mar 24 20:46:57 2008 +0300
51974
51975 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
51976
51977 Current DDR setup easily causes memory corruption, this patch fixes it.
51978
51979 Also fix TIMING_CFG0_MRS_CYC definition.
51980
51981 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51982
51983 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
51984 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51985 Date: Mon Mar 24 20:46:53 2008 +0300
51986
51987 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
51988
51989 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
51990 controller and FHCI (QE USB).
51991
51992 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
51993
51994 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
51995 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
51996 Date: Mon Mar 24 20:46:51 2008 +0300
51997
51998 mpc83xx: MPC8360E-RDK: add support for NAND
51999
52000 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52001
52002 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
52003 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52004 Date: Mon Mar 24 20:46:46 2008 +0300
52005
52006 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
52007
52008 This is needed for BCM PHYs to work on this board.
52009
52010 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52011
52012 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
52013 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52014 Date: Mon Mar 24 20:46:34 2008 +0300
52015
52016 uec: add support for Broadcom BCM5481 Gigabit PHY
52017
52018 This patch adds basic support for Broadcom BCM5481 PHY.
52019
52020 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
52021 Peter Barada <peterb@logicpd.com>.
52022
52023 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52024
52025 commit 6a600c3a1876bc203445df4f0fd6b12648259666
52026 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52027 Date: Mon Mar 24 20:46:28 2008 +0300
52028
52029 uec: add support for RGMII_RXID interface mode
52030
52031 PHY drivers will use it to setup software delay between RXD and RXC
52032 signals.
52033
52034 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52035
52036 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
52037 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52038 Date: Mon Mar 24 20:46:24 2008 +0300
52039
52040 uec: add support for gbit mii status readings
52041
52042 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52043
52044 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
52045 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52046 Date: Mon Mar 24 17:40:47 2008 +0300
52047
52048 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
52049
52050 This is primarily for the early console support.
52051
52052 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52053
52054 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
52055 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52056 Date: Mon Mar 24 17:40:43 2008 +0300
52057
52058 83xx: initialize serdes for MPC837XRDB boards
52059
52060 On the MPC8377ERDB: 2 SATA and 2 PCI-E.
52061 On the MPC8378ERDB: 2 PCI-E
52062 On the MPC8379ERDB: 4 SATA
52063
52064 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52065
52066 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
52067 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52068 Date: Mon Mar 24 17:40:32 2008 +0300
52069
52070 83xx: serdes setup routines
52071
52072 This patch adds few routines to configure serdes on 837x targets.
52073
52074 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52075
52076 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
52077 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52078 Date: Mon Mar 24 17:40:27 2008 +0300
52079
52080 83xx: split COBJS onto separate lines
52081
52082 ..plus get rid of some #ifdefs in the .c files.
52083
52084 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52085
52086 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
52087 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
52088 Date: Mon Mar 24 17:40:23 2008 +0300
52089
52090 83xx: nand support for MPC837XRDB boards
52091
52092 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
52093
52094 commit 82e45a204190593e8613145a928f998fb8c909c4
52095 Author: Jerry Van Baren <gvb.uboot@gmail.com>
52096 Date: Tue Mar 18 21:44:41 2008 -0400
52097
52098 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
52099
52100 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52101 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52102
52103 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
52104 Author: Michael Barkowski <michael.barkowski@freescale.com>
52105 Date: Thu Mar 20 13:15:39 2008 -0400
52106
52107 mpc8323erdb: remove RTC and add EEPROM
52108
52109 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
52110
52111 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
52112 Acked-by: Kim Phillips <kim.phillips@freescale.com>
52113
52114 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
52115 Author: Michael Barkowski <michael.barkowski@freescale.com>
52116 Date: Thu Mar 20 13:15:34 2008 -0400
52117
52118 mpc8323erdb: Improve the system performance
52119
52120 The following changes are based on kernel UCC ethernet performance:
52121
52122 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode
52123 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT
52124 switch to enable this setting.
52125
52126 The following changes are based on the App Note AN3369 and
52127 verified to improve memory latency using LMbench:
52128
52129 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0
52130 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting
52131 previously.
52132 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on
52133 Twr=15ns, and this was already the setting in DDR_MODE)
52134 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
52135 Trp=15ns)
52136 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
52137 Tras=40ns)
52138 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
52139 Trcd=15ns)
52140 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on
52141 Trfc=75ns)
52142 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based
52143 on Tfaw=50ns)
52144 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
52145 on CL=3 and WL=2).
52146
52147 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
52148 Acked-by: Kim Phillips <kim.phillips@freescale.com>
52149
52150 commit fc549c871f43933396a5b3e21d897023d4b31b8d
52151 Author: Michael Barkowski <michael.barkowski@freescale.com>
52152 Date: Thu Mar 20 13:15:28 2008 -0400
52153
52154 mpc8323erdb: use readable DDR config macros
52155
52156 Use available shift/mask macros to define DDR configuration.
52157
52158 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
52159 Acked-by: Kim Phillips <kim.phillips@freescale.com>
52160
52161 commit 89c7784ed90ba50301eec521144f95111e472906
52162 Author: Timur Tabi <timur@freescale.com>
52163 Date: Fri Feb 8 13:15:55 2008 -0600
52164
52165 83xx: Add Vitesse VSC7385 firmware uploading
52166
52167 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
52168 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
52169 Cleaned up the board header files to make selecting the VSC7385 easier to
52170 control.
52171
52172 Signed-off-by: Timur Tabi <timur@freescale.com>
52173 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
52174
52175 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
52176 Author: Timur Tabi <timur@freescale.com>
52177 Date: Fri Feb 8 13:15:54 2008 -0600
52178
52179 NET: Add Vitesse VSC7385 firmware uploading
52180
52181 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
52182 and other boards. A small firwmare must be uploaded to its on-board memory
52183 before it can be enabled. This patch adds the code which uploads firmware
52184 (but not the firmware itself).
52185
52186 Previously, this feature was provided by a U-Boot application that was
52187 made available only on Freescale BSPs. The VSC7385 firmware must still
52188 be obtained separately, but at least there is no longer a need for a separate
52189 application.
52190
52191 Signed-off-by: Timur Tabi <timur@freescale.com>
52192 Acked-by: Ben Warren <biggerbadderben@gmail.com>
52193
52194 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
52195 Author: Wolfgang Denk <wd@denx.de>
52196 Date: Wed Mar 26 00:52:10 2008 +0100
52197
52198 Coding Style cleanyp; update CHANGELOG
52199
52200 Signed-off-by: Wolfgang Denk <wd@denx.de>
52201
52202 commit 43ddd9c820fec44816188f53346b464e20b3142d
52203 Author: Jerry Van Baren <gvb.uboot@gmail.com>
52204 Date: Sat Mar 22 14:23:49 2008 -0400
52205
52206 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
52207
52208 These defines embedded the u-boot env variables and/or the bd_t structure
52209 in the fdt blob. The conclusion of discussion on the u-boot email list
52210 was that embedding these in the fdt blob is not useful: there are better
52211 ways of passing the data (in fact, the fdt blob itself replaces the
52212 bd_t struct).
52213
52214 The only board that enables these is the stxxtc and they don't appear
52215 to be used by linux.
52216
52217 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52218 Acked-by: Kim Phillips <kim.phillips@freescale.com>
52219
52220 commit 22ed2285743359fd1fe73e411dff914b2256e68f
52221 Author: Stefan Roese <sr@denx.de>
52222 Date: Mon Mar 17 10:49:25 2008 +0100
52223
52224 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
52225
52226 Signed-off-by: Stefan Roese <sr@denx.de>
52227
52228 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
52229 Author: Kyungmin Park <kmpark@infradead.org>
52230 Date: Mon Mar 17 08:54:06 2008 +0900
52231
52232 Add Flex-OneNAND booting support
52233
52234 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
52235 using a NOR Flash interface. This on-chip integration enables system designers
52236 to reduce external system logic and use high-density NAND Flash
52237 in applications that would otherwise have to use more NOR components.
52238
52239 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
52240 in more flexible way. While MLC area of Flex-OneNAND can be used to store data
52241 that require low reliability and high density, SLC area of Flex-OneNAND
52242 to store data that need high reliability and high performance. Flex-OneNAND
52243 can let users take advantage of storing these two different types of data
52244 into one chip, which is making Flex-OneNAND more cost- and space-effective.
52245
52246 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
52247
52248 commit c512389cc4a10253249271ff6c887c6dab1f0db2
52249 Author: André Schwarz <andre.schwarz@matrix-vision.de>
52250 Date: Thu Mar 13 13:50:52 2008 +0100
52251
52252 MPC5200: support setup without FEC
52253
52254 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
52255 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
52256
52257 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
52258 Acked-by: Grant Likely <grant.likely@secretlab.ca>
52259
52260 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
52261 Author: Jon Loeliger <jdl@freescale.com>
52262 Date: Wed Mar 5 18:05:46 2008 -0600
52263
52264 FSL: Move board/mpc8266ads under board/freescale
52265
52266 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52267
52268 commit 7f1d846e5c5754449c286587d099d85246062772
52269 Author: Jon Loeliger <jdl@freescale.com>
52270 Date: Wed Mar 5 18:05:47 2008 -0600
52271
52272 FSL: Move board/mpc7448hpc2 under board/freescale
52273
52274 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52275
52276 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
52277 Author: Jon Loeliger <jdl@freescale.com>
52278 Date: Wed Mar 5 18:05:45 2008 -0600
52279
52280 FSL: Move board/mpc8260ads under board/freescale
52281
52282 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52283
52284 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
52285 Author: goda.yusuke <goda.yusuke@renesas.com>
52286 Date: Wed Mar 5 17:08:33 2008 +0900
52287
52288 net: Add support AX88796L ethernet device
52289
52290 AX88796L is device of NE2000 compatible.
52291 This patch support AX88796L ethernet device.
52292
52293 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
52294 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52295
52296 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
52297 Author: Wolfgang Denk <wd@denx.de>
52298 Date: Tue Mar 25 22:50:41 2008 +0100
52299
52300 ne2000 driver: change #ifdef to Makefile conditional compilation
52301
52302 Signed-off-by: Wolfgang Denk <wd@denx.de>
52303
52304 commit e710185aae90c64d39c2d453e40e58ceefe4f250
52305 Author: goda.yusuke <goda.yusuke@renesas.com>
52306 Date: Wed Mar 5 17:08:20 2008 +0900
52307
52308 net: Divided code of NE2000 ethernet driver
52309
52310 There are more devices of the NE2000 base.
52311 A present code is difficult for us to support more devices.
52312 To support more NE2000 clone devices, separated the function.
52313
52314 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
52315 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52316
52317 commit 395bce4f59a507a60a475f7ee46bed47de9482df
52318 Author: Mike Frysinger <vapier@gentoo.org>
52319 Date: Sun Feb 24 23:58:13 2008 -0500
52320
52321 net/Blackfin: move on-chip MAC driver into drivers/net/
52322
52323 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
52324 directory, but it is not board specific, so relocate it to the drivers dir
52325 so that other Blackfin ports can utilize it.
52326
52327 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52328
52329 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
52330 Author: Mike Frysinger <vapier@gentoo.org>
52331 Date: Sun Feb 24 23:52:35 2008 -0500
52332
52333 smc91111: use SSYNC() rather than asm(ssync) for Blackfin
52334
52335 Since the "ssync" instruction may have hardware anomalies associated with
52336 it, have the smc91111 driver use the SSYNC macro rather than invoking it
52337 directly. We workaround all the anomalies via this macro.
52338
52339 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
52340
52341 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
52342 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
52343 Date: Sun Feb 17 22:57:47 2008 +0000
52344
52345 8xx: Update OF support on 8xx
52346
52347 This patch does some shifting around of OF support on 8xx.
52348
52349 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
52350
52351 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
52352 Author: Kumar Gala <galak@kernel.crashing.org>
52353 Date: Fri Feb 15 15:16:18 2008 -0600
52354
52355 ppc: Allow boards to specify how much memory they can map
52356
52357 For historical reasons we limited the stack to 256M because some boards
52358 could only map that much via BATS. However newer boards are capable of
52359 mapping more memory (for example 85xx is capble of doing up to 2G).
52360
52361 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52362
52363 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
52364 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
52365 Date: Fri Feb 15 01:05:58 2008 +0000
52366
52367 8xx : Add OF support to Adder875 board port - resubmit
52368
52369 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
52370
52371 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
52372 Author: Kumar Gala <galak@kernel.crashing.org>
52373 Date: Thu Feb 14 20:44:42 2008 -0600
52374
52375 Add setexpr command
52376
52377 Add a simple expr style command that will set an env variable as the result
52378 of the command. This allows us to do simple math in shell. The following
52379 operations are supported: &, |, ^, +, -, *, /.
52380
52381 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52382
52383 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
52384 Author: Jon Loeliger <jdl@freescale.com>
52385 Date: Wed Mar 5 17:27:48 2008 -0600
52386
52387 FSL: Move board/mpc7448hpc2 under board/freescale
52388
52389 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52390
52391 commit 449c703374a8868453425e15da7e2f76221b72e4
52392 Author: Jon Loeliger <jdl@freescale.com>
52393 Date: Wed Mar 5 17:21:43 2008 -0600
52394
52395 FSL: Move board/mpc8266ads under board/freescale
52396
52397 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52398
52399 commit 5863577989ad689427bb750107e9a75f1c1645d2
52400 Author: Jon Loeliger <jdl@freescale.com>
52401 Date: Wed Mar 5 16:41:41 2008 -0600
52402
52403 FSL: Move board/mpc8260ads under board/freescale
52404
52405 Signed-off-by: Jon Loeliger <jdl@freescale.com>
52406
52407 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
52408 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52409 Date: Tue Mar 25 21:30:08 2008 +0900
52410
52411 [MIPS] Move gth2_config from ARM section to MIPS
52412
52413 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52414
52415 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
52416 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52417 Date: Tue Mar 25 21:30:07 2008 +0900
52418
52419 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
52420
52421 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52422
52423 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
52424 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52425 Date: Tue Mar 25 21:30:07 2008 +0900
52426
52427 [MIPS] Fix dcache_status()
52428
52429 You can't judge UNCACHED by Config.K0 LSB.
52430
52431 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52432
52433 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
52434 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52435 Date: Tue Mar 25 21:30:07 2008 +0900
52436
52437 [MIPS] Introduce _machine_restart
52438
52439 Handles machine specific functions by using weak functions.
52440
52441 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52442
52443 commit decaba6f5cf386d569ac3997bebb871b966c6b18
52444 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52445 Date: Tue Mar 25 21:30:07 2008 +0900
52446
52447 [MIPS] Cleanup CP0 Status initialization
52448
52449 Add setup_c0_status from Linux. For the moment we disable interrupts, set
52450 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
52451 reset-time configuration and will work well across most processors.
52452
52453 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52454
52455 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
52456 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52457 Date: Tue Mar 25 21:30:07 2008 +0900
52458
52459 [MIPS] Initialize CP0 Cause before setting up CP0 Status register
52460
52461 Without this change, we'll be suffering from deffered WATCH exception
52462 once Status.EXL is cleared. Make sure Cause.WP is cleared.
52463
52464 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52465
52466 commit 26138623230ca2bad3c78e05a65527ea70c8b688
52467 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52468 Date: Tue Mar 25 21:30:07 2008 +0900
52469
52470 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
52471
52472 Move things to appropriate place.
52473
52474 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52475
52476 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
52477 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52478 Date: Tue Mar 25 21:30:06 2008 +0900
52479
52480 [MIPS] Implement flush_cache()
52481
52482 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
52483 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
52484 function is used not only in U-Boot specfic programs but also at loading
52485 target binaries.
52486
52487 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52488
52489 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
52490 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52491 Date: Tue Mar 25 21:30:06 2008 +0900
52492
52493 [MIPS] Fix I-/D-cache initialization loops
52494
52495 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
52496 again per a loop for I-cache initialization. But according to 'See MIPS
52497 Run', we're encouraged to use three separate loops rather than combining
52498 them *for both I- and D-cache*. This patch tries to fix this.
52499
52500 In accordance with fixing above, mips_init_[id]cache are separated from
52501 mips_cache_reset(), and rewrite cache loops are completely rewritten with
52502 useful macros.
52503
52504 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52505
52506 commit 1898840797c7f50799377bd5b285a8a93a82c419
52507 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52508 Date: Tue Mar 25 21:30:06 2008 +0900
52509
52510 [MIPS] Replace memory clearance code with f_fill64
52511
52512 This routine fills memory with zero by 64 bytes, and is 64-bit capable.
52513
52514 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52515
52516 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
52517 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52518 Date: Tue Mar 25 21:30:06 2008 +0900
52519
52520 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
52521
52522 This patch replaces the current function definitions with NESTED, LEAF
52523 and END macro. They specify some more additional information about the
52524 function; an alignment of symbol, type of symbol, stack frame usage, etc.
52525 These information explicitly tells the assembler and the debugger about
52526 the types of code we want to generate.
52527
52528 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52529
52530 commit 282223a607c611425fa33f5428f8eae6636972bb
52531 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52532 Date: Tue Mar 25 11:43:17 2008 +0900
52533
52534 [MIPS] asm headers' updates
52535
52536 Make some asm headers adjusted to the latest Linux kernel.
52537
52538 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52539
52540 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
52541 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52542 Date: Tue Mar 25 11:39:29 2008 +0900
52543
52544 [MIPS] Request for the 'mips_cache_lock()' removal
52545
52546 The initial intension of having mips_cache_lock() was to use the cache
52547 as memory for temporary stack use so that a C environment can be set up
52548 as early as possible.
52549
52550 But now mips_cache_lock() follow lowlevel_init(). We've already have the
52551 real memory initilaized at this point, therefore we could/should use it.
52552 No reason to lock at all.
52553
52554 Other problems:
52555
52556 Cache locking is not consistent across MIPS implementaions. Some imple-
52557 mentations don't support locking at all. The style of locking varies -
52558 some support per line locking, others per way, etc. Some parts use bits
52559 in status registers instead of cache ops. Current mips_cache_lock() is
52560 not necessarily general-purpose.
52561
52562 And this is worthy of special mention; once U-Boot/MIPS locks the lines,
52563 they are never get unlocked, so the code relies on whatever gets loaded
52564 after U-Boot to re-initialize the cache and clear the locks. We're sup-
52565 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
52566 but leave the situation as it is for a long time.
52567
52568 For these reasons, I proposed the removal of mips_cache_lock() from the
52569 global start-up code.
52570
52571 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
52572 *things have changed*. If he wants the same behavior as before, he needs
52573 to have CFG_INIT_RAM_LOCK_MIPS in his config file.
52574
52575 If we don't have any regression report through several releases, then
52576 we'll remove codes entirely.
52577
52578 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
52579 Acked-by: Andrew Dyer <amdyer@gmail.com>
52580
52581 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
52582 Author: Yuri Tikhonov <yur@emcraft.com>
52583 Date: Mon Mar 24 11:30:54 2008 +0100
52584
52585 lwmon5 SYSMON POST: fix backlight control
52586
52587 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
52588 run on the board, then the SYSMON POST controls the display backlight
52589 (doesn't switch backlight ON if POST FAILED, and does switch the
52590 backlight ON if PASSED).
52591
52592 If not, then the video driver controls the display backlight (just
52593 switch ON the backlight upon initialization).
52594
52595 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52596
52597 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
52598 Author: Yuri Tikhonov <yur@emcraft.com>
52599 Date: Mon Mar 24 11:29:14 2008 +0100
52600
52601 lwmon5 SYSMON POST: fix handling of negative temperatures
52602
52603 Fix errors in the LWMON5 Sysmon POST for negative temperatures.
52604
52605 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52606
52607 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
52608 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52609 Date: Fri Mar 7 16:04:25 2008 +0900
52610
52611 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
52612
52613 In current source code, when the device number of PCI is 0, process PCI
52614 bridge without fail. However, when the device number is 0, it is not PCI
52615 always bridge. There are times when device of PCI allocates.
52616
52617 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
52618 use this patch.
52619
52620 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
52621 Acked-by: Stefan Roese <sr@denx.de>
52622
52623 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
52624 Author: Yuri Tikhonov <yur@emcraft.com>
52625 Date: Fri Mar 21 09:18:40 2008 +0100
52626
52627 LWMON5: fix dsPIC POST
52628
52629 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
52630
52631 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
52632
52633 commit 388b82fddc7c05596f3f615f190da0448227dc82
52634 Author: Bartlomiej Sieka <tur@semihalf.com>
52635 Date: Thu Mar 20 23:23:13 2008 +0100
52636
52637 [new uImage] Enable new uImage support for the pcs440ep board.
52638
52639 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52640
52641 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
52642 Author: Bartlomiej Sieka <tur@semihalf.com>
52643 Date: Thu Mar 20 23:23:13 2008 +0100
52644
52645 [new uImage] Do not compile new uImage format support by default
52646
52647 Disable default building of new uImage format support in preparation
52648 for merge with the master. Support for new format can be enabled on
52649 a per-board basis, by defining the following in the board's config file:
52650
52651 #define CONFIG_FIT 1
52652 #define CONFIG_OF_LIBFDT 1
52653
52654 This can be optionally defined to give more verbose output:
52655
52656 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
52657
52658 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52659
52660 commit dafaede8a46c7159310239e036c93e31c6374487
52661 Author: Bartlomiej Sieka <tur@semihalf.com>
52662 Date: Thu Mar 20 23:20:31 2008 +0100
52663
52664 [new uImage] Disable debuging output in preparation for merge with master
52665
52666 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52667
52668 commit fbe7a155027beacebaee9b32e1ada781fe924bca
52669 Author: Bartlomiej Sieka <tur@semihalf.com>
52670 Date: Thu Mar 20 19:38:45 2008 +0100
52671
52672 [new uImage] Compilation and new uImage handling fixes for imxtract
52673
52674 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
52675 include/config_cmd_default.h. Fix few warnings and handling of new format
52676 images.
52677
52678 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52679
52680 commit 36cc8cbb3379d5166f882641123521735c469f92
52681 Author: Bartlomiej Sieka <tur@semihalf.com>
52682 Date: Thu Mar 20 23:10:19 2008 +0100
52683
52684 [new uImage] Fix autoscr command used with new uImage format
52685
52686 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52687
52688 commit 43142e817f0597be412e7cbe19413f5532eafa5d
52689 Author: Bartlomiej Sieka <tur@semihalf.com>
52690 Date: Thu Mar 20 23:10:19 2008 +0100
52691
52692 [new uImage] Fix *.its files location in documentation
52693
52694 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52695
52696 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
52697 Author: Wolfgang Denk <wd@denx.de>
52698 Date: Thu Mar 20 22:01:38 2008 +0100
52699
52700 lwmon5 POST: remove unreachable code
52701
52702 plus some coding style cleanup
52703
52704 Signed-off-by: Wolfgang Denk <wd@denx.de>
52705
52706 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
52707 Author: Yuri Tikhonov <yur@emcraft.com>
52708 Date: Thu Mar 20 17:56:04 2008 +0300
52709
52710 LWMON5: POST RTC fix
52711
52712 Modify the RTC API to provide one a status for the time reported by
52713 the rtc_get() function:
52714 0 - a reliable time is guaranteed,
52715 < 0 - a reliable time isn't guaranteed (power fault, clock issues,
52716 and so on).
52717
52718 The RTC chip drivers are responsible for providing this info if the
52719 corresponding chip supports such functionality. If not - always
52720 report that the time is reliable.
52721
52722 The POST RTC test was modified to detect the RTC faults utilizing
52723 this new rtc_get() feature.
52724
52725 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52726
52727 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
52728 Author: Martin Krause <martin.krause@tqs.de>
52729 Date: Wed Mar 19 14:25:14 2008 +0100
52730
52731 TQM5200B: update MTD partition layout
52732
52733 - insert partition for dtb blob to TQM5200B MTD layout
52734 - set env variables dependent on the configured board
52735 (TQM5200 or TQM5200B)
52736
52737 Signed-off-by: Martin Krause <martin.krause@tqs.de>
52738
52739 commit f0105727d132f56a21fa3ed8b162309cca6cac44
52740 Author: Stefan Roese <sr@denx.de>
52741 Date: Wed Mar 19 07:09:26 2008 +0100
52742
52743 CFI: Small cleanup for FLASH_SHOW_PROGRESS
52744
52745 With this patch we don't need that many #ifdef's in the code. It moves
52746 the subtraction into the macro and defines a NOP-macro when
52747 CONFIG_FLASH_SHOW_PROGRESS is not defined.
52748
52749 Signed-off-by: Stefan Roese <sr@denx.de>
52750 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
52751
52752 commit 9a042e9ca512beaaa2cb450274313fc477141241
52753 Author: Jerry Van Baren <gvb.uboot@gmail.com>
52754 Date: Sat Mar 8 13:48:01 2008 -0500
52755
52756 Flash programming progress countdown.
52757
52758 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
52759
52760 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
52761 Author: Bartlomiej Sieka <tur@semihalf.com>
52762 Date: Wed Mar 19 10:00:06 2008 +0100
52763
52764 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
52765
52766 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
52767
52768 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
52769 Author: David Gibson <david@gibson.dropbear.id.au>
52770 Date: Mon Feb 18 18:09:04 2008 +1100
52771
52772 libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
52773
52774 Since fdt_node_offset_by_compatible() was converted to the new
52775 fdt_next_node() iterator, a chunk of initialization code became
52776 redundant, but was not removed by oversight. This patch cleans it up.
52777
52778 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52779
52780 commit d0ccb9b140b472039732de102fc14597eedb14df
52781 Author: David Gibson <david@gibson.dropbear.id.au>
52782 Date: Mon Feb 18 18:06:31 2008 +1100
52783
52784 libfdt: Trivial cleanup for CHECK_HEADER)
52785
52786 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
52787 However, there are a handful of functions (fdt_move, rw_check_header,
52788 fdt_open_into) from other files which could also use it (currently
52789 they open-code something more-or-less identical). Therefore, this
52790 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
52791 places.
52792
52793 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52794
52795 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
52796 Author: Kumar Gala <galak@kernel.crashing.org>
52797 Date: Wed Feb 20 14:32:36 2008 -0600
52798
52799 Fix fdt boardsetup command parsing
52800
52801 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
52802
52803 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52804
52805 commit 804887e6001e2f00bea11431bf34d6d472512cda
52806 Author: Kumar Gala <galak@kernel.crashing.org>
52807 Date: Fri Feb 15 03:34:36 2008 -0600
52808
52809 Add sub-commands to fdt
52810
52811 fdt header - Display header info
52812 fdt bootcpu <id> - Set boot cpuid
52813 fdt memory <addr> <size> - Add/Update memory node
52814 fdt rsvmem print - Show current mem reserves
52815 fdt rsvmem add <addr> <size> - Add a mem reserve
52816 fdt rsvmem delete <index> - Delete a mem reserves
52817
52818 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
52819
52820 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
52821 Author: David Gibson <david@gibson.dropbear.id.au>
52822 Date: Thu Feb 14 16:50:34 2008 +1100
52823
52824 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
52825
52826 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
52827 node which has NOP tags interspersed with its properties. In this
52828 case fdt_add_subnode_namelen() will put the new subnode before the
52829 first NOP tag, even if there are properties after it, which will
52830 result in an invalid blob.
52831
52832 This patch fixes the bug, and adds a testcase for it.
52833
52834 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52835
52836 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
52837 Author: David Gibson <david@gibson.dropbear.id.au>
52838 Date: Tue Feb 12 11:58:31 2008 +1100
52839
52840 libfdt: Add and use a node iteration helper function.
52841
52842 This patch adds an fdt_next_node() function which can be used to
52843 iterate through nodes of the tree while keeping track of depth. This
52844 function is used to simplify the iteration code in a lot of other
52845 functions, and is also exported for use by library users.
52846
52847 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52848
52849 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
52850 Author: David Gibson <david@gibson.dropbear.id.au>
52851 Date: Fri Jan 11 14:55:05 2008 +1100
52852
52853 libfdt: Add fdt_set_name() function
52854
52855 This patch adds an fdt_set_name() function to libfdt, mirroring
52856 fdt_get_name(). This is a r/w function which alters the name of a
52857 given device tree node.
52858
52859 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
52860
52861 commit 23e20aa6488e6c0622496549861bfdc74108debe
52862 Author: Yuri Tikhonov <yur@pollux.denx.de>
52863 Date: Tue Mar 18 13:33:30 2008 +0100
52864
52865 lwmon5: Fix register test logic to match the specific GDC h/w.
52866
52867 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52868 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52869
52870 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
52871 Author: Yuri Tikhonov <yur@pollux.denx.de>
52872 Date: Tue Mar 18 13:27:57 2008 +0100
52873
52874 Fix backlight in the lwmon5 POST.
52875
52876 Backlight was switched on even when temperature was too low.
52877
52878 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52879 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52880
52881 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
52882 Author: Yuri Tikhonov <yur@pollux.denx.de>
52883 Date: Wed Feb 6 18:48:36 2008 +0100
52884
52885 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).
52886
52887 To enable this, alternative, configuration the U-Boot board configuration
52888 file for lwmon5 includes the definitions of alternative addresses for header
52889 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
52890
52891 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
52892 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
52893 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
52894
52895 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52896
52897 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
52898 Author: Yuri Tikhonov <yur@pollux.denx.de>
52899 Date: Mon Feb 4 17:11:53 2008 +0100
52900
52901 Add support for the lwmon5 board reset via GPIO58.
52902
52903 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52904 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52905
52906 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
52907 Author: Yuri Tikhonov <yur@pollux.denx.de>
52908 Date: Mon Feb 4 17:09:55 2008 +0100
52909
52910 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
52911
52912 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52913 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52914
52915 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
52916 Author: Yuri Tikhonov <yur@pollux.denx.de>
52917 Date: Mon Feb 4 14:11:03 2008 +0100
52918
52919 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.
52920
52921 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52922 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52923
52924 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
52925 Author: Yuri Tikhonov <yur@pollux.denx.de>
52926 Date: Mon Feb 4 14:10:42 2008 +0100
52927
52928 The patch adds new POST tests for the Lwmon5 board. These are:
52929
52930 * External Watchdog test;
52931 * dsPIC tests;
52932 * FPGA test;
52933 * GDC test;
52934 * Sysmon tests.
52935
52936 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52937 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52938
52939 commit c2ed33efbfff5767bca236828e021c55fd547b6c
52940 Author: Yuri Tikhonov <yur@pollux.denx.de>
52941 Date: Mon Feb 4 14:10:01 2008 +0100
52942
52943 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
52944
52945 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52946
52947 commit 3a5d1e7f1309998791702b2a559e3126781746b9
52948 Author: Yuri Tikhonov <yur@pollux.denx.de>
52949 Date: Tue Mar 18 13:33:30 2008 +0100
52950
52951 lwmon5: Fix register test logic to match the specific GDC h/w.
52952
52953 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52954 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52955
52956 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
52957 Author: Yuri Tikhonov <yur@pollux.denx.de>
52958 Date: Tue Mar 18 13:27:57 2008 +0100
52959
52960 Fix backlight in the lwmon5 POST.
52961
52962 Backlight was switcehd on even when temperature was too low.
52963
52964 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52965 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52966
52967 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
52968 Author: Yuri Tikhonov <yur@pollux.denx.de>
52969 Date: Wed Feb 6 18:48:36 2008 +0100
52970
52971 The patch introduces the alternative configuration of the log buffer for
52972 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
52973 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
52974 PPC440EPX_GPT0_COMP5).
52975
52976 To enable this, alternative, configuration the U-Boot board configuration
52977 file for lwmon5 includes the definitions of alternative addresses for header
52978 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
52979
52980 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
52981 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
52982 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
52983
52984 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52985
52986 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
52987 Author: Yuri Tikhonov <yur@pollux.denx.de>
52988 Date: Mon Feb 4 17:11:53 2008 +0100
52989
52990 Add support for the lwmon5 board reset via GPIO58.
52991
52992 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
52993 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
52994
52995 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
52996 Author: Yuri Tikhonov <yur@pollux.denx.de>
52997 Date: Mon Feb 4 17:09:55 2008 +0100
52998
52999 Some fixes to dspic, fpga, and gdc post tests for lwmon5.
53000 Disable external watch-dog for now.
53001
53002 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
53003 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
53004
53005 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
53006 Author: Yuri Tikhonov <yur@pollux.denx.de>
53007 Date: Mon Feb 4 14:11:03 2008 +0100
53008
53009 The patch introduces the CRITICAL feature of POST tests. If the test
53010 marked as POST_CRITICAL fails then the alternative, post_critical,
53011 boot-command is used. If this command is not defined then U-Boot
53012 enters into interactive mode.
53013
53014 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
53015 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
53016
53017 commit 65b20dcefc89618193fa51947968dada91e4c778
53018 Author: Yuri Tikhonov <yur@pollux.denx.de>
53019 Date: Mon Feb 4 14:10:42 2008 +0100
53020
53021 The patch adds new POST tests for the Lwmon5 board.
53022 These are:
53023
53024 * External Watchdog test;
53025 * dsPIC tests;
53026 * FPGA test;
53027 * GDC test;
53028 * Sysmon tests.
53029
53030 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
53031 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
53032
53033 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
53034 Author: Yuri Tikhonov <yur@pollux.denx.de>
53035 Date: Mon Feb 4 14:10:01 2008 +0100
53036
53037 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
53038
53039 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
53040
53041 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
53042 Author: Wolfgang Denk <wd@denx.de>
53043 Date: Tue Mar 18 17:35:51 2008 +0100
53044
53045 HMI1001: fix compile problem.
53046
53047 Signed-off-by: Wolfgang Denk <wd@denx.de>
53048
53049 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
53050 Author: Mike Frysinger <vapier@gentoo.org>
53051 Date: Mon Feb 18 05:32:30 2008 -0500
53052
53053 Blackfin: BF537-stamp: drop board-specific flash driver for CFI
53054
53055 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
53056 for the board specific driver at all. Just use the common CFI driver.
53057
53058 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53059
53060 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
53061 Author: Mike Frysinger <vapier@gentoo.org>
53062 Date: Tue Feb 19 00:36:14 2008 -0500
53063
53064 Blackfin: add proper ELF markings to some assembly functions
53065
53066 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53067
53068 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
53069 Author: Mike Frysinger <vapier@gentoo.org>
53070 Date: Tue Feb 19 00:35:17 2008 -0500
53071
53072 Blackfin: new cplbinfo command for viewing cplb tables
53073
53074 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53075
53076 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
53077 Author: Mike Frysinger <vapier@gentoo.org>
53078 Date: Mon Feb 18 05:37:51 2008 -0500
53079
53080 Blackfin: update MAINTAINERS list
53081
53082 Add maintainer information for the Blackfin boards.
53083
53084 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53085
53086 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
53087 Author: Mike Frysinger <vapier@gentoo.org>
53088 Date: Mon Feb 18 05:26:48 2008 -0500
53089
53090 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
53091
53092 Stop tying things to the processor that should be tied to other defines and
53093 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
53094 system to select the -mcpu option.
53095
53096 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53097
53098 commit 86a20fb920bd198105acf7b1191117f566d637ed
53099 Author: Mike Frysinger <vapier@gentoo.org>
53100 Date: Sat Feb 16 07:40:36 2008 -0500
53101
53102 Blackfin: move bootldr command to common code
53103
53104 This moves the Blackfin-common bootldr command out of the BF537-STAMP
53105 specific board directory and into the common directory so that all Blackfin
53106 boards may utilize it.
53107
53108 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
53109
53110 commit decbe029b2a9d3333d02c433389b1c821eea96d7
53111 Author: Heiko Schocher <hs@denx.de>
53112 Date: Fri Mar 14 11:05:20 2008 +0100
53113
53114 mgcoge: update configuration
53115
53116 Fix configuration for mgcoge board
53117
53118 Signed-off-by: Heiko Schocher <hs@denx.de>
53119
53120 commit c136724cda0219c49f1d4b346f00da29b14fdf14
53121 Author: Wolfgang Denk <wd@denx.de>
53122 Date: Sun Mar 16 01:22:59 2008 +0100
53123
53124 drivers/rtc/Makefile: keep list sorted
53125
53126 Signed-off-by: Wolfgang Denk <wd@denx.de>
53127
53128 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
53129 Author: Tor Krill <tor@excito.com>
53130 Date: Sat Mar 15 15:40:26 2008 +0100
53131
53132 Add support for Intersil isl1208 RTC
53133
53134 Signed-off-by: Tor Krill <tor@excito.com>
53135
53136 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
53137 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53138 Date: Sat Mar 15 17:36:41 2008 +0100
53139
53140 cramfs: Fix ifdef
53141
53142 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53143
53144 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
53145 Author: Wolfgang Denk <wd@denx.de>
53146 Date: Sun Mar 16 01:12:58 2008 +0100
53147
53148 Conding style cleanup
53149
53150 Signed-off-by: Wolfgang Denk <wd@denx.de>
53151
53152 commit 41712b4e8c95dff23354bcd620e1f9477160c190
53153 Author: Stefan Roese <sr@denx.de>
53154 Date: Wed Mar 5 12:31:53 2008 +0100
53155
53156 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
53157
53158 This patch adds USB OHCI support to the Canyonlands board port. It also
53159 enables EXT2 support.
53160
53161 Signed-off-by: Stefan Roese <sr@denx.de>
53162
53163 commit 2596f5b9d353ff3e4387a3325d05740f16958038
53164 Author: Stefan Roese <sr@denx.de>
53165 Date: Wed Mar 5 12:29:32 2008 +0100
53166
53167 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
53168
53169 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
53170 way a board just needs to define this new option to enable the "force
53171 NoPowerSwitching mode" instead of adding new CPU/architecture defines
53172 to the USB source itself.
53173
53174 This new option will be used first with the new AMCC 460EX Canyonlands
53175 board port, which will be posted in a few days.
53176
53177 This patch also fixes a small compilation problem when DEBUG is enabled.
53178
53179 Signed-off-by: Stefan Roese <sr@denx.de>
53180
53181 commit 71665ebf88408ff2acb762af47989fd4365b321a
53182 Author: Stefan Roese <sr@denx.de>
53183 Date: Mon Mar 3 17:27:02 2008 +0100
53184
53185 ppc4xx: Add Canyonlands NAND booting support
53186
53187 460EX doesn't support a fixed bootstrap option to boot from 512 byte page
53188 NAND devices. The only bootstrap option for NAND booting is option F for
53189 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
53190 EEPROM needs to be programmed accordingly.
53191
53192 This patch adds basic NAND booting support for the AMCC Canyonlands aval
53193 board and also adds support to the "bootstrap" command, to enable NAND
53194 booting I2C setting.
53195
53196 Tested with 512 byte page NAND device (32MByte) on Canyonlands.
53197
53198 Signed-off-by: Stefan Roese <sr@denx.de>
53199
53200 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
53201 Author: Stefan Roese <sr@denx.de>
53202 Date: Tue Mar 11 16:53:00 2008 +0100
53203
53204 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
53205
53206 This patch adds support for the AMCC Canyonlands 460EX evaluation
53207 board.
53208
53209 Signed-off-by: Stefan Roese <sr@denx.de>
53210
53211 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
53212 Author: Stefan Roese <sr@denx.de>
53213 Date: Tue Mar 11 16:52:24 2008 +0100
53214
53215 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
53216
53217 This patch adds support for the AMCC Canyonlands 460EX evaluation
53218 board.
53219
53220 Signed-off-by: Stefan Roese <sr@denx.de>
53221
53222 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
53223 Author: Stefan Roese <sr@denx.de>
53224 Date: Tue Mar 11 16:51:17 2008 +0100
53225
53226 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
53227
53228 This patch adds support for the AMCC Canyonlands 460EX evaluation
53229 board.
53230
53231 Signed-off-by: Stefan Roese <sr@denx.de>
53232
53233 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
53234 Author: Stefan Roese <sr@denx.de>
53235 Date: Tue Mar 11 15:11:43 2008 +0100
53236
53237 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
53238
53239 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53240
53241 Signed-off-by: Stefan Roese <sr@denx.de>
53242
53243 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
53244 Author: Stefan Roese <sr@denx.de>
53245 Date: Tue Mar 11 15:11:18 2008 +0100
53246
53247 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
53248
53249 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53250
53251 Signed-off-by: Stefan Roese <sr@denx.de>
53252
53253 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
53254 Author: Stefan Roese <sr@denx.de>
53255 Date: Tue Mar 11 15:07:10 2008 +0100
53256
53257 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
53258
53259 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53260
53261 Signed-off-by: Stefan Roese <sr@denx.de>
53262
53263 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
53264 Author: Stefan Roese <sr@denx.de>
53265 Date: Tue Mar 11 15:05:50 2008 +0100
53266
53267 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
53268
53269 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53270
53271 Signed-off-by: Stefan Roese <sr@denx.de>
53272
53273 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
53274 Author: Stefan Roese <sr@denx.de>
53275 Date: Tue Mar 11 15:05:26 2008 +0100
53276
53277 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
53278
53279 This patch adds basic support for the AMCC 460EX/460GT PPC's.
53280
53281 Signed-off-by: Stefan Roese <sr@denx.de>
53282
53283 commit 56e410178375d9f20be25fb24e180974f0ae120b
53284 Author: Stefan Roese <sr@denx.de>
53285 Date: Tue Feb 19 22:07:57 2008 +0100
53286
53287 ppc4xx: interrupt.c reworked
53288
53289 This patch is a rework of the 4xx interrupt handling done while
53290 adding the 460EX/GT support. Interrupts are needed on 4xx for the
53291 EMAC driver.
53292
53293 Signed-off-by: Stefan Roese <sr@denx.de>
53294
53295 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
53296 Author: Stefan Roese <sr@denx.de>
53297 Date: Tue Feb 19 22:01:57 2008 +0100
53298
53299 ppc4xx: program_tlb now uses 64bit physical addess
53300
53301 This patch changes the physical addess parameter from 32bit to 64bit.
53302 This is needed for 36bit 4xx platforms to access areas located
53303 beyond the 4GB border, like SoC peripherals (EBC etc.).
53304
53305 Signed-off-by: Stefan Roese <sr@denx.de>
53306
53307 commit c3307fa186af85771924c434997089b8104c0a46
53308 Author: Stefan Roese <sr@denx.de>
53309 Date: Tue Feb 19 21:58:25 2008 +0100
53310
53311 ppc4xx: miiphy.c reworked
53312
53313 While adding the 460EX/GT support I reworked the 4xx miiphy code. It
53314 badly neede some cleanup.
53315
53316 Signed-off-by: Stefan Roese <sr@denx.de>
53317
53318 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
53319 Author: Stefan Roese <sr@denx.de>
53320 Date: Tue Feb 19 16:21:49 2008 +0100
53321
53322 rtc: Add M41T62 support
53323
53324 This patch add support for the STM M41T62 RTC. It is used and tested
53325 on the AMCC Canyonlands 406EX platform.
53326
53327 Signed-off-by: Stefan Roese <sr@denx.de>
53328
53329 commit 217d383e201adc7f2271145ae345ea5eae2b7170
53330 Author: Niklaus Giger <niklaus.giger@netstal.com>
53331 Date: Mon Feb 25 18:46:43 2008 +0100
53332
53333 ppc4xx: Add 405GPr based MCU25 board specific files
53334
53335 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53336
53337 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
53338 Author: Niklaus Giger <niklaus.giger@netstal.com>
53339 Date: Mon Feb 25 18:46:42 2008 +0100
53340
53341 ppc4xx: Add 405GPr based MCU25 board config file
53342
53343 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53344
53345 commit b05f35436b733a240559e77e46bed8439665ecc5
53346 Author: Niklaus Giger <niklaus.giger@netstal.com>
53347 Date: Mon Feb 25 18:46:41 2008 +0100
53348
53349 ppc4xx: Add 405GPr based MCU25 board. Global files
53350
53351 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53352
53353 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
53354 Author: Niklaus Giger <niklaus.giger@netstal.com>
53355 Date: Mon Feb 25 18:37:02 2008 +0100
53356
53357 ppc4xx: HCU4/5. remove obsolete hcu_flash.c
53358
53359 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53360
53361 commit a079494853cc2bfeddb26673219db0b4b2b31566
53362 Author: Niklaus Giger <niklaus.giger@netstal.com>
53363 Date: Mon Feb 25 18:37:01 2008 +0100
53364
53365 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
53366
53367 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
53368 the FLASH_CFI_LEGACY et al. config options.
53369
53370 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
53371
53372 commit e4170e5a50c8110f792bc37472833ae669d69951
53373 Author: Stefan Roese <sr@denx.de>
53374 Date: Tue Mar 11 13:52:25 2008 +0100
53375
53376 ppc4xx: Fix comment in 405EX DDR2 init code
53377
53378 Signed-off-by: Stefan Roese <sr@denx.de>
53379
53380 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
53381 Author: Bartlomiej Sieka <tur@semihalf.com>
53382 Date: Fri Mar 14 16:22:34 2008 +0100
53383
53384 Add MD5 support to the new uImage format
53385
53386 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53387
53388 commit 0ede0c383530a418cf98be9122371a86573cd0db
53389 Author: Bartlomiej Sieka <tur@semihalf.com>
53390 Date: Fri Mar 14 16:22:34 2008 +0100
53391
53392 Add the MD5 algorithm
53393
53394 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
53395 calculated using the md5() function -- see include/md5.h for details.
53396
53397 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53398
53399 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
53400 Author: Wolfgang Denk <wd@denx.de>
53401 Date: Fri Mar 14 16:04:54 2008 +0100
53402
53403 tools/setlocalversion: use a git-describe-ish format
53404
53405 Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
53406 where 'nnnnn' is the number of commits since the last tag (i.e.,
53407 1.3.2-rc3). This makes it much easier to recognize "newer" versions
53408 and to see how much has been changed since the referenced tag.
53409
53410 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
53411
53412 Signed-off-by: Wolfgang Denk <wd@denx.de>
53413
53414 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
53415 Author: Wolfgang Denk <wd@denx.de>
53416 Date: Thu Mar 13 14:32:03 2008 +0100
53417
53418 HMI1001: add support for MPC5200 Rev. B processors.
53419
53420 Signed-off-by: Wolfgang Denk <wd@denx.de>
53421
53422 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
53423 Author: Wolfgang Denk <wd@denx.de>
53424 Date: Thu Mar 13 14:29:49 2008 +0100
53425
53426 TQM5200: remove dead code
53427
53428 This board never used a MGT5100 processor.
53429
53430 Signed-off-by: Wolfgang Denk <wd@denx.de>
53431
53432 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
53433 Author: Marian Balakowicz <m8@semihalf.com>
53434 Date: Wed Mar 12 12:14:15 2008 +0100
53435
53436 [new uImage] Fix build issue on ARM
53437
53438 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
53439
53440 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
53441
53442 commit 3310c549a73a949430bfda90876df7552a1dab0c
53443 Author: Marian Balakowicz <m8@semihalf.com>
53444 Date: Wed Mar 12 12:13:13 2008 +0100
53445
53446 [new uImage] Add new uImage format documentation and examples
53447
53448 Create doc/uImage.FIT documentation directory with the following files:
53449 - command_syntax_extensions.txt : extended command syntax description
53450 - howto.txt : short usage howto
53451 - source_file_format.txt : internal new uImage format description
53452
53453 Add example image source files:
53454 - kernel.its
53455 - kernel_fdt.its
53456 - multi.its
53457
53458 Update README appropriately.
53459
53460 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53461 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53462
53463 commit 1ec73761d2e247078f4520a265d463e8b73391a2
53464 Author: Marian Balakowicz <m8@semihalf.com>
53465 Date: Wed Mar 12 10:35:52 2008 +0100
53466
53467 [new uImage] Fix definition of common bootm_headers_t fields
53468
53469 verify, autostart and lmb fields are used regardless of CONFIG_FIT
53470 setting, move their definitions to common section.
53471
53472 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53473
53474 commit 1d1cb4270edc6a99276834064069717f9782c491
53475 Author: Marian Balakowicz <m8@semihalf.com>
53476 Date: Wed Mar 12 10:35:51 2008 +0100
53477
53478 [new uImage] Fix build problems on trab board
53479
53480 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53481
53482 commit f773bea8e11f4a11c388dcee956b2444203e6b65
53483 Author: Marian Balakowicz <m8@semihalf.com>
53484 Date: Wed Mar 12 10:35:46 2008 +0100
53485
53486 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
53487
53488 Save FIT configuration provied in the first bootm argument and use it
53489 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
53490 arguments are not specified.
53491
53492 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53493
53494 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
53495 Author: Marian Balakowicz <m8@semihalf.com>
53496 Date: Wed Mar 12 10:33:01 2008 +0100
53497
53498 [new uImage] More verbose kernel image uncompress error message
53499
53500 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53501
53502 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
53503 Author: Marian Balakowicz <m8@semihalf.com>
53504 Date: Wed Mar 12 10:33:01 2008 +0100
53505
53506 [new uImage] Use show_boot_progress() for new uImage format
53507
53508 This patch allocates a set of show_boot_progress() IDs for new uImage format
53509 and adds show_boot_progress() calls in new uImage format handling code.
53510
53511 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53512
53513 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
53514 Author: Marian Balakowicz <m8@semihalf.com>
53515 Date: Wed Mar 12 10:33:01 2008 +0100
53516
53517 [new uImage] Add new uImage fromat support to fpga command
53518
53519 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53520
53521 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
53522 Author: Marian Balakowicz <m8@semihalf.com>
53523 Date: Wed Mar 12 10:33:01 2008 +0100
53524
53525 [new uImage] Add new uImage format handling to other bootm related commands
53526
53527 Updated commands:
53528
53529 docboot - cmd_doc.c
53530 fdcboot - cmd_fdc.c
53531 diskboot - cmd_ide.c
53532 nboot - cmd_nand.c
53533 scsiboot - cmd_scsi.c
53534 usbboot - cmd_usb.c
53535
53536 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53537
53538 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
53539 Author: Marian Balakowicz <m8@semihalf.com>
53540 Date: Wed Mar 12 10:33:00 2008 +0100
53541
53542 [new uImage] Add new uImage format support to imgextract command
53543
53544 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53545
53546 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
53547 Author: Marian Balakowicz <m8@semihalf.com>
53548 Date: Wed Mar 12 10:33:00 2008 +0100
53549
53550 [new uImage] Add new uImage format support to autoscript routine
53551
53552 autoscript() routine is updated to accept second argument, which
53553 is only used for FIT images and provides a FIT subimage unit name.
53554
53555 autoscript() routine callers must now pass two arguments. For
53556 non-interactive use (like in cmd_load.c, cmd_net.c), new environment
53557 variable 'autoscript_uname' is introduced and used as a FIT
53558 subimage unit name source.
53559
53560 autoscript command accepts extended syntax of the addr argument:
53561 addr:<subimg_uname>
53562
53563 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53564
53565 commit cd7c596e9f561dbbc17b717277438aee78cde14f
53566 Author: Marian Balakowicz <m8@semihalf.com>
53567 Date: Wed Mar 12 10:33:00 2008 +0100
53568
53569 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
53570
53571 This patch updates architecture specific implementations of
53572 do_bootm_linux() adding new uImage format handling for
53573 operations like get kernel entry point address, get kernel
53574 image data start address.
53575
53576 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53577
53578 commit 3dfe110149311425919e6d6a14b561b4207498f1
53579 Author: Marian Balakowicz <m8@semihalf.com>
53580 Date: Wed Mar 12 10:32:59 2008 +0100
53581
53582 [new uImage] Add node offsets for FIT images listed in struct bootm_headers
53583
53584 This patch adds new node offset fields to struct bootm_headers
53585 and updates bootm_headers processing code to make use of them.
53586 Saved node offsets allow to avoid repeating fit_image_get_node() calls.
53587
53588 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53589
53590 commit bc8ed486b125452ba3bd8344f052f437329150c5
53591 Author: Marian Balakowicz <m8@semihalf.com>
53592 Date: Wed Mar 12 10:32:53 2008 +0100
53593
53594 [new uImage] ppc: Add new uImage format support to FDT handling routines
53595
53596 Support for new (FIT) format uImages is added to powerpc specific
53597 boot_get_fdt() routine which now recognizes, sanity checks FIT image
53598 and is able to access data sections of the requested component image.
53599
53600 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53601
53602 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
53603 Author: Marian Balakowicz <m8@semihalf.com>
53604 Date: Wed Mar 12 10:14:57 2008 +0100
53605
53606 [new uImage] Re-enable interrupts for non automatic booting
53607
53608 Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
53609 environment variable is not set to 'yes'.
53610
53611 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53612
53613 commit d985c8498c4e47095820da97aa722381d39172c5
53614 Author: Marian Balakowicz <m8@semihalf.com>
53615 Date: Wed Mar 12 10:14:38 2008 +0100
53616
53617 [new uImage] Remove unnecessary arguments passed to ramdisk routines
53618
53619 boot_get_ramdisk() and image_get_ramdisk() do not need all
53620 cmdtp, flag, argc and argv arguments. Simplify routines definition.
53621
53622 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53623
53624 commit c87796483bc7c2900470dc747c367f602577608d
53625 Author: Marian Balakowicz <m8@semihalf.com>
53626 Date: Wed Mar 12 10:12:37 2008 +0100
53627
53628 [new uImage] Add new uImage format support for ramdisk handling
53629
53630 This patch updates boot_get_ramdisk() routine adding format
53631 verification and handling for new (FIT) uImages.
53632
53633 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53634
53635 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
53636 Author: Marian Balakowicz <m8@semihalf.com>
53637 Date: Wed Mar 12 10:01:05 2008 +0100
53638
53639 [new uImage] Add new uImage format support for kernel booting
53640
53641 New format uImages are recognized by the bootm command,
53642 validity of specified kernel component image is checked and
53643 its data section located and used for further processing
53644 (uncompress, load, etc.)
53645
53646 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53647
53648 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
53649 Author: Marian Balakowicz <m8@semihalf.com>
53650 Date: Tue Mar 11 12:35:20 2008 +0100
53651
53652 [new uImage] Add new uImage format support for imls and iminfo commands
53653
53654 imls and iminfo can now recognize nad print out contents of the new (FIT)
53655 format uImages.
53656
53657 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53658
53659 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
53660 Author: Bartlomiej Sieka <tur@semihalf.com>
53661 Date: Tue Mar 11 12:34:47 2008 +0100
53662
53663 [new uImage] Add support for new uImage format to mkimage tool
53664
53665 Support for the new uImage format (FIT) is added to mkimage tool.
53666 Commandline syntax is appropriately extended:
53667
53668 mkimage [-D dtc_options] -f fit-image.its fit-image
53669
53670 mkimage (together with dtc) takes fit-image.its and referenced therein
53671 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
53672 final image that can be transferred to the target (e.g., via tftp) and then
53673 booted using the bootm command in U-Boot.
53674
53675 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53676
53677 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
53678 Author: Marian Balakowicz <m8@semihalf.com>
53679 Date: Mon Mar 10 17:53:49 2008 +0100
53680
53681 [new uImage] Make node unit names const in struct bootm_headers
53682
53683 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53684
53685 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
53686 Author: Marian Balakowicz <m8@semihalf.com>
53687 Date: Fri Feb 29 21:24:06 2008 +0100
53688
53689 [new uImage] New uImage low-level API
53690
53691 Add FDT-based functions for handling new format component images,
53692 configurations, node operations, property get/set, etc.
53693
53694 fit_ - routines handling global new format uImage operations
53695 like get/set top level property, process all nodes, etc.
53696 fit_image_ - routines handling component images subnodes
53697 fit_conf_ - routines handling configurations node
53698
53699 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
53700 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
53701
53702 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
53703 Author: Wolfgang Denk <wd@denx.de>
53704 Date: Sun Mar 9 16:20:02 2008 +0100
53705
53706 Release v1.3.2
53707
53708 Update CHANGELOG for release.
53709
53710 Signed-off-by: Wolfgang Denk <wd@denx.de>
53711
53712 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
53713 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53714 Date: Sun Mar 9 14:52:11 2008 +0100
53715
53716 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
53717
53718 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53719 Signed-off-by: Wolfgang Denk <wd@denx.de>
53720
53721 commit db695b78515ddb88a2d4f3357c120345efbf59ec
53722 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53723 Date: Sun Mar 9 10:44:01 2008 +0100
53724
53725 scb9328: Fix flash warning: type qualifiers ignored on function return type
53726
53727 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53728
53729 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
53730 Author: Wolfgang Denk <wd@denx.de>
53731 Date: Sun Mar 9 10:50:41 2008 +0100
53732
53733 esd/common/fpga.c: fix indentation.
53734
53735 Signed-off-by: Wolfgang Denk <wd@denx.de>
53736
53737 commit cc3843e36453e2b8db65d7e56de938ba045016a0
53738 Author: Wolfgang Denk <wd@denx.de>
53739 Date: Sun Mar 9 10:33:31 2008 +0100
53740
53741 common/kgdb.c: fix 'dereferencing type-punned pointer' warning
53742
53743 and get rid of a couple of unneeded casts.
53744
53745 Signed-off-by: Wolfgang Denk <wd@denx.de>
53746
53747 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
53748 Author: Wolfgang Denk <wd@denx.de>
53749 Date: Sun Mar 9 10:09:53 2008 +0100
53750
53751 esd/common/fpga.c: fix 'assignment of read-only location' error
53752
53753 Signed-off-by: Wolfgang Denk <wd@denx.de>
53754
53755 commit c6fe4dabac066e8758345d249032768496983a3e
53756 Author: Wolfgang Denk <wd@denx.de>
53757 Date: Sun Mar 9 02:13:19 2008 +0100
53758
53759 Makefile: make build silently again.
53760
53761 Signed-off-by: Wolfgang Denk <wd@denx.de>
53762
53763 commit 76babc86576f092573599334c85ec543fdbc6015
53764 Author: Wolfgang Denk <wd@denx.de>
53765 Date: Sun Mar 9 02:07:49 2008 +0100
53766
53767 m501sk: Fix out of tree building
53768
53769 Signed-off-by: Wolfgang Denk <wd@denx.de>
53770
53771 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
53772 Author: Wolfgang Denk <wd@denx.de>
53773 Date: Sun Mar 9 00:06:09 2008 +0100
53774
53775 ADS5121: fix out of tree build
53776
53777 and simplify Makefile a bit.
53778
53779 Signed-off-by: Wolfgang Denk <wd@denx.de>
53780
53781 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
53782 Author: Wolfgang Denk <wd@denx.de>
53783 Date: Sat Mar 8 22:35:31 2008 +0100
53784
53785 Release v1.3.2
53786
53787 Signed-off-by: Wolfgang Denk <wd@denx.de>
53788
53789 commit 78a90f827df74520e939c794fc7413dace21c4db
53790 Author: Wolfgang Denk <wd@denx.de>
53791 Date: Sat Mar 8 22:35:04 2008 +0100
53792
53793 Update CHANGELOG
53794
53795 Signed-off-by: Wolfgang Denk <wd@denx.de>
53796
53797 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
53798 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53799 Date: Sat Mar 8 21:30:04 2008 +0100
53800
53801 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
53802
53803 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
53804
53805 commit d75469d48c05795144f4b8ba76addbb4920a7bba
53806 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53807 Date: Sat Mar 8 09:25:49 2008 +0900
53808
53809 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
53810
53811 When rtl_recv() of rtl8169 is called, OWNbit of status register
53812 is not enable occasionally.
53813 rtl_recv() doesn't work normally when the driver doesn't do
53814 appropriate processing.
53815 This patch fix this problem.
53816
53817 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
53818
53819 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
53820 Author: Heiko Schocher <hs@denx.de>
53821 Date: Fri Mar 7 08:15:28 2008 +0100
53822
53823 mgsuvd: update board configuration
53824
53825 initialize the UPIOx controller.
53826
53827 Signed-off-by: Heiko Schocher <hs@denx.de>
53828
53829 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
53830 Author: Heiko Schocher <hs@denx.de>
53831 Date: Fri Mar 7 08:13:41 2008 +0100
53832
53833 mgcoge: update board configuration
53834
53835 add support for the config Flash.
53836 initialize the UPIOx controller.
53837
53838 Signed-off-by: Heiko Schocher <hs@denx.de>
53839
53840 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
53841 Author: Kim Phillips <kim.phillips@freescale.com>
53842 Date: Fri Mar 7 12:27:31 2008 -0600
53843
53844 mpc83xx: make dtb basename file references equal those of linux
53845
53846 the dts file basenames were updated in linux - this helps avoid
53847 inadvertently loading any old dtbs laying around.
53848
53849 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53850
53851 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
53852 Author: Kim Phillips <kim.phillips@freescale.com>
53853 Date: Wed Feb 27 16:08:22 2008 -0600
53854
53855 net: uec_phy: actually increment the timeout counter
53856
53857 allow u-boot to recover (and, e.g., switch to another interface) in the
53858 case where a PHY does not report autonegotiation is complete within its
53859 two second timeout value.
53860
53861 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
53862
53863 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
53864 Author: Markus Brunner <super.firetwister@googlemail.com>
53865 Date: Wed Mar 5 21:38:12 2008 +0100
53866
53867 fix taihu soft spi_read
53868
53869 The taihu board used gpio_read_out_bit which reads the output register and not
53870 the pin state.
53871
53872 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
53873
53874 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
53875 Author: Stefan Roese <sr@denx.de>
53876 Date: Fri Mar 7 08:01:43 2008 +0100
53877
53878 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
53879
53880 Signed-off-by: Stefan Roese <sr@denx.de>
53881
53882 commit bd4458cb47abecabd406b1210457be96c69fc49d
53883 Author: Dave Liu <r63238@freescale.com>
53884 Date: Tue Mar 4 16:59:22 2008 +0800
53885
53886 837xEMDS: Improve the system performance
53887
53888 1. Make the CSB bus pipeline depth as 4, and enable
53889 the repeat mode;
53890 2. Raise the eTSEC emergency priority;
53891 3. Use the highest IP blocks clock.
53892
53893 Signed-off-by: Dave Liu <daveliu@freescale.com>
53894
53895 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
53896 Author: Detlev Zundel <dzu@denx.de>
53897 Date: Thu Mar 6 16:45:53 2008 +0100
53898
53899 Replace "run load; run update" with conditionalized "run load update".
53900
53901 The latter version stops when "run load" fails for whatever reasons
53902 rendering the combination *a lot* more secure.
53903
53904 Signed-off-by: Detlev Zundel <dzu@denx.de>
53905
53906 commit 6bc113886d7d316df1a4e459bec8baf027518551
53907 Author: Stefan Roese <sr@denx.de>
53908 Date: Tue Mar 4 17:40:41 2008 +0100
53909
53910 net: Print error message upon net usage when no ethernet-interface is found
53911
53912 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
53913 defined. Then no ethernet interface is available but a simple "tftp"
53914 command will return without any error message which is quite confusing.
53915
53916 Signed-off-by: Stefan Roese <sr@denx.de>
53917
53918 commit a30a549a3553032d809e0356306b62de0b125901
53919 Author: Jon Loeliger <jdl@freescale.com>
53920 Date: Tue Mar 4 10:03:03 2008 -0600
53921
53922 Remove erroneous or extra spd.h #includers.
53923
53924 Many of the spd.h #includers don't need it,
53925 and wanted to have spd_sdram() declared instead.
53926 Since they didn't get that, some also had open
53927 coded extern declarations of it instead or as well.
53928 Fix it all up by using spd_sdram.h where needed.
53929
53930 Signed-off-by: Jon Loeliger <jdl@freescale.com>
53931
53932 commit a4475386cef14af3fd88f0518b688e755669486d
53933 Author: Wolfgang Denk <wd@denx.de>
53934 Date: Tue Mar 4 17:41:28 2008 +0100
53935
53936 PCS440EP: fix build problems (redundant #define)
53937
53938 Signed-off-by: Wolfgang Denk <wd@denx.de>
53939
53940 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
53941 Author: Stefan Roese <sr@denx.de>
53942 Date: Tue Mar 4 17:39:25 2008 +0100
53943
53944 net: Print error message upon net usage when no ethernet-interface is found
53945
53946 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
53947 defined. Then no ethernet interface is available but a simple "tftp"
53948 command will return without any error message which is quite confusing.
53949
53950 Signed-off-by: Stefan Roese <sr@denx.de>
53951
53952 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
53953 Author: Wolfgang Denk <wd@denx.de>
53954 Date: Tue Mar 4 17:38:50 2008 +0100
53955
53956 W7OLMC/W7OLMG: fix build problems (redundant #define)
53957
53958 Signed-off-by: Wolfgang Denk <wd@denx.de>
53959
53960 commit f9301e1cda296245ba052d7b08321199c3d0af9d
53961 Author: Wolfgang Denk <wd@denx.de>
53962 Date: Tue Mar 4 14:58:31 2008 +0100
53963
53964 Makefile: fix problem with out-of-tree builds introduced by 5013c09f
53965
53966 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
53967 problem for out-of-tree builds which caused "make clean" to fail.
53968
53969 Signed-off-by: Wolfgang Denk <wd@denx.de>
53970
53971 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
53972 Author: Wolfgang Denk <wd@denx.de>
53973 Date: Tue Mar 4 11:58:26 2008 +0100
53974
53975 examples/Makefile: build "hello_world" on 8xx, too.
53976
53977 Signed-off-by: Wolfgang Denk <wd@denx.de>
53978
53979 commit 74eb0222594fd23aafdf168e60e872814eea8b62
53980 Author: Mike Nuss <mike@terascala.com>
53981 Date: Mon Mar 3 15:27:05 2008 -0500
53982
53983 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
53984
53985 Every now and then a Sequoia board (or equivalent hardware) had
53986 problems connecting to a Gigabit capable network interface.
53987
53988 There were differences in the PHY setup between Linux and U-Boot.
53989
53990 This patch fixes the problem. Apparently "remote fault" is being set,
53991 which signals to some devices (on the other end of the cable) that a
53992 fault has occurred, while other devices ignore it. I believe the RF bit
53993 was causing the issue, but I removed T4 also, to match up with Linux.
53994
53995 Signed-off-by: Mike Nuss <mike@terascala.com>
53996
53997 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
53998 Author: Timur Tabi <timur@freescale.com>
53999 Date: Mon Mar 3 09:58:52 2008 -0600
54000
54001 fix QE firmware uploading limit
54002
54003 Fix a typo in qe_upload_firmware() that prevented uploading firmware on
54004 systems with more than one RISC core.
54005
54006 Signed-off-by: Timur Tabi <timur@freescale.com>
54007
54008 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
54009 Author: Bernhard Nemec <bnemec@ganssloser.com>
54010 Date: Mon Mar 3 11:57:23 2008 +0000
54011
54012 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
54013
54014 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
54015 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
54016
54017 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
54018
54019 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
54020 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
54021 Date: Mon Mar 3 10:39:13 2008 +0200
54022
54023 fix copy from ram to dataflash
54024
54025 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
54026 routines instead of dataflash. This is because it checks "if source
54027 address is not dataflash" instead of target address.
54028
54029 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
54030
54031 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
54032 Author: Wolfgang Denk <wd@denx.de>
54033 Date: Mon Mar 3 12:16:44 2008 +0100
54034
54035 Fix quoting problem (preboot setting) in many board config files.
54036
54037 Signed-off-by: Wolfgang Denk <wd@denx.de>
54038
54039 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
54040 Author: Wolfgang Denk <wd@denx.de>
54041 Date: Mon Mar 3 12:36:49 2008 +0100
54042
54043 ADS5121: Fix default environment.
54044
54045 Signed-off-by: Wolfgang Denk <wd@denx.de>
54046
54047 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
54048 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54049 Date: Sun Mar 2 16:12:31 2008 +0100
54050
54051 Makefile: Fix missing unconfig and mkconfig use
54052
54053 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54054
54055 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
54056 Author: michael <trimarchi@gandalf.sssup.it>
54057 Date: Sun Mar 2 23:33:46 2008 +0100
54058
54059 Fix checking fat32 cluster size.
54060
54061 This fixes the cluster size tests in the FAT32 file system.
54062 The current implementation of VFAT support doesn't work if the
54063 referred cluster has an offset > 16bit representation, causing
54064 "fatload" and "fatls" commands etc. to fail.
54065
54066 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
54067
54068 commit 661bad63a076a96c39c64f136915f146725af92b
54069 Author: Wolfgang Denk <wd@denx.de>
54070 Date: Sun Mar 2 22:57:23 2008 +0100
54071
54072 Prepare v1.3.2-rc2 release candidate
54073
54074 Signed-off-by: Wolfgang Denk <wd@denx.de>
54075
54076 commit 76957cb3d621bf664311908e5962e151c633c285
54077 Author: Stefan Roese <sr@denx.de>
54078 Date: Sat Mar 1 12:11:40 2008 +0100
54079
54080 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
54081
54082 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
54083 currently 4k/2k is configured. This patch fixes this issue.
54084
54085 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
54086
54087 Signed-off-by: Stefan Roese <sr@denx.de>
54088
54089 commit 118978c8eb43803e2794233922df4249fa278b83
54090 Author: Woodruff, Richard <r-woodruff2@ti.com>
54091 Date: Fri Feb 29 17:34:35 2008 -0600
54092
54093 Fix alignment error on ARM for modules
54094
54095 Fix alignment fault on ARM when running modules. With out an explicit
54096 linker file gcc4.2.1 will half word align __bss_start's value. The word
54097 dereference will crash hello_world.
54098
54099 signed-off-by Richard Woodruff <r-woodruff2@ti.com>
54100
54101 commit ce1120dd703e6f12c59e4eba9962356a0300b832
54102 Author: Dave Liu <r63238@freescale.com>
54103 Date: Fri Feb 29 17:45:31 2008 +0800
54104
54105 fs: Fix ext2 read issue
54106
54107 The ext2 aligned process will corrupt the key
54108 data struct, the patch fix this.
54109
54110 Signed-off-by: Dave Liu <daveliu@freescale.com>
54111
54112 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
54113 Author: Wolfgang Denk <wd@denx.de>
54114 Date: Sun Mar 2 22:45:33 2008 +0100
54115
54116 Makefile: cleanup "clean" target
54117
54118 Make sure CDPATH settings cannot interfere.
54119 Update CHANGELOG.
54120
54121 Signed-off-by: Wolfgang Denk <wd@denx.de>
54122
54123 commit ffda586fc1373243c9794babde69500f6293a8d8
54124 Author: Li Yang <leoli@freescale.com>
54125 Date: Fri Feb 29 11:46:05 2008 +0800
54126
54127 add cscope build target
54128
54129 Add cscope build target to generate cscope database for code browsing.
54130
54131 Signed-off-by: Li Yang <leoli@freescale.com>
54132
54133 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
54134 Author: Kim Phillips <kim.phillips@freescale.com>
54135 Date: Wed Feb 27 15:06:39 2008 -0600
54136
54137 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
54138
54139 erratum 5.6 states the autoneg completion bit is functional only if the
54140 autoneg bit is asserted.
54141
54142 This fixes any secondarily-issued networking commands on non-gigabit
54143 links on the mpc8360 mds board.
54144
54145 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
54146
54147 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
54148 Author: John Rigby <jrigby@freescale.com>
54149 Date: Tue Feb 26 09:38:14 2008 -0700
54150
54151 MPC5121e ADS PCI support take 3
54152
54153 Adds PCI support for MPC5121
54154
54155 Tested with drivers/net/rtl8139.c
54156
54157 Support is conditional since PCI on old silicon does not work.
54158
54159 ads5121_PCI_config turns on PCI
54160
54161 In this version, condition compilation of PCI code has been moved
54162 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
54163 suggested by Jean-Christophe PLAGNIOL-VILLARD
54164
54165 Signed-off-by: John Rigby <jrigby@freescale.com>
54166
54167 commit 44b4dbed4133f657705b7c5193209da9978243a7
54168 Author: Anatolij Gustschin <agust@denx.de>
54169 Date: Mon Feb 25 23:53:07 2008 +0100
54170
54171 Fix warnings while compilation of post/drivers/memory.c
54172
54173 Fix warnings while compilation with new gcc in eldk-4.2
54174
54175 Signed-off-by: Anatolij Gustschin <agust@denx.de>
54176
54177 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
54178 Author: Anatolij Gustschin <agust@denx.de>
54179 Date: Mon Feb 25 20:54:04 2008 +0100
54180
54181 ppc4xx: Fix problem in 4xx_enet.c driver
54182
54183 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
54184 enabled. To reproduce the problem ensure that 'ethrotate'
54185 environment variable isn't set to "no" and then run
54186 "tftp 200000 not_existent_file".
54187 This patch tries to fix the issue.
54188
54189 Signed-off-by: Anatolij Gustschin <agust@denx.de>
54190
54191 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
54192 Author: Anatolij Gustschin <agust@denx.de>
54193 Date: Mon Feb 25 20:04:20 2008 +0100
54194
54195 POST: Disable cache while SPR POST
54196
54197 Currently (since commit b2e2142c) u-boot crashes on
54198 sequoia board while SPR test if CONFIG_4xx_DCACHE is
54199 enabled. This patch disables the cache while SPR test.
54200
54201 Signed-off-by: Anatolij Gustschin <agust@denx.de>
54202
54203 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
54204 Author: Martin Krause <martin.krause@tqs.de>
54205 Date: Mon Feb 25 17:52:40 2008 +0100
54206
54207 TQM5200: use automatic fdt memory fixup (part 2)
54208
54209 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
54210 TB5200 and TB5200_B to fixup the /memory node with the memory values
54211 detected by U-Boot.
54212
54213 Signed-off-by: Martin Krause <martin.krause@tqs.de>
54214
54215 commit 44ceec253ea941b301abf4b079d52324def69d92
54216 Author: Martin Krause <martin.krause@tqs.de>
54217 Date: Mon Feb 25 15:17:05 2008 +0100
54218
54219 TQM5200: use automatic fdt memory fixup
54220
54221 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
54222 TB5200 and TB5200_B to fixup the /memory node with the memory values
54223 detected by U-Boot.
54224
54225 Signed-off-by: Martin Krause <martin.krause@tqs.de>
54226
54227 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
54228 Author: Martin Krause <martin.krause@tqs.de>
54229 Date: Mon Feb 25 13:27:52 2008 +0100
54230
54231 TQM5200: fix bug in SDRAM initialization code
54232
54233 This patch fixes a bug in the SDRAM initialization code for the
54234 TQM5200. The hi_addr bit is now set correctly. Without this patch
54235 the hi_addr bit is always set to 1, if the second SDRAM bank is
54236 not populated.
54237
54238 For other MPC5200 boards a correspondig patch has already been applied
54239 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
54240
54241 Signed-off-by: Martin Krause <martin.krause@tqs.de>
54242 --
54243 Forget the first patch please. I confused flash with SDRAM in
54244 the comment ...
54245
54246 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
54247 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54248 Date: Mon Feb 25 00:03:12 2008 +0100
54249
54250 mx1fs2/flash: Fix multiple compiler warnings
54251
54252 "pointer targets in assignment differ in signedness"
54253
54254 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54255
54256 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
54257 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54258 Date: Mon Feb 25 00:03:11 2008 +0100
54259
54260 arm-imx: Fix register definitions
54261
54262 Sync register definitions with linux
54263
54264 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54265
54266 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
54267 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54268 Date: Mon Feb 25 00:03:10 2008 +0100
54269
54270 actua1/actua2/actua3: Fix multiple unused variable warnings
54271
54272 - actua1:
54273 actux1.c: In function 'checkboard':
54274 actux1.c:92: warning: unused variable 'revision'
54275
54276 - actua2:
54277 actux2.c: In function 'checkboard':
54278 actux2.c:100: warning: unused variable 's'
54279 actux2.c:99: warning: unused variable 'revision'
54280 actux2.c: In function 'reset_phy':
54281 actux2.c:130: warning: unused variable 'i'
54282
54283 - actua3:
54284 actux3.c: In function 'checkboard':
54285 actux3.c:114: warning: unused variable 'revision'
54286
54287 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54288
54289 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
54290 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54291 Date: Sun Feb 24 11:44:29 2008 +0900
54292
54293 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
54294
54295 The previous patch was lacking of i386, microblaze, nios and nios2. This
54296 patch tries to fix them.
54297
54298 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54299
54300 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
54301 Author: Marian Balakowicz <m8@semihalf.com>
54302 Date: Fri Feb 29 22:22:46 2008 +0100
54303
54304 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
54305
54306 Do not use global fdt blob pointer, calculate blob size from routine
54307 argument blob pointer.
54308
54309 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54310
54311 commit d1cc52879c8966507dad9fb575481e6d3985e64e
54312 Author: David Gibson <david@gibson.dropbear.id.au>
54313 Date: Tue Feb 12 00:58:31 2008 +1100
54314
54315 libfdt: Add and use a node iteration helper function.
54316
54317 This patch adds an fdt_next_node() function which can be used to
54318 iterate through nodes of the tree while keeping track of depth. This
54319 function is used to simplify the iteration code in a lot of other
54320 functions, and is also exported for use by library users.
54321
54322 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
54323
54324 commit 8cf30809a82902a471866d2f07725ce3b8a22291
54325 Author: Bartlomiej Sieka <tur@semihalf.com>
54326 Date: Fri Feb 29 16:00:24 2008 +0100
54327
54328 [new uImage] Add libfdt support to mkimage
54329
54330 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54331
54332 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
54333 Author: Bartlomiej Sieka <tur@semihalf.com>
54334 Date: Fri Feb 29 16:00:23 2008 +0100
54335
54336 [new uImage] Add sha1.o object to mkimage binary build
54337
54338 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
54339
54340 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
54341 Author: Marian Balakowicz <m8@semihalf.com>
54342 Date: Fri Feb 29 16:00:06 2008 +0100
54343
54344 [new uImage] Fix component handling for legacy multi component images
54345
54346 Use uint32_t when accessing size table in image_multi_count() and
54347 image_multi_getimg() for multi component images.
54348
54349 Add missing uimage_to_cpu() endianness conversion.
54350
54351 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54352
54353 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
54354 Author: Marian Balakowicz <m8@semihalf.com>
54355 Date: Fri Feb 29 15:59:59 2008 +0100
54356
54357 [new uImage] Share common uImage code between mkimage and U-boot
54358
54359 This patch adds the following common routines:
54360
54361 1) Dedicated mkimage print_header() is replaced with common
54362 image_print_contents()
54363 image_print_contents_noindent()
54364
54365 2) Common os/arch/type/comp fields name <--> id translation routines
54366 genimg_get_os_name()
54367 genimg_get_arch_name()
54368 genimg_get_type_name()
54369 genimg_get_comp_name()
54370 genimg_get_os_id()
54371 genimg_get_arch_id()
54372 genimg_get_type_id()
54373 genimg_get_comp_id()
54374
54375 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54376
54377 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
54378 Author: Marian Balakowicz <m8@semihalf.com>
54379 Date: Fri Feb 29 14:58:34 2008 +0100
54380
54381 [new uImage] Update naming convention for bootm/uImage related code
54382
54383 This patch introduces the following prefix convention for the
54384 image format handling and bootm related code:
54385
54386 genimg_ - dual format shared code
54387 image_ - legacy uImage format specific code
54388 fit_ - new uImage format specific code
54389 boot_ - booting process related code
54390
54391 Related routines are renamed and a few pieces of code are moved around and
54392 re-grouped.
54393
54394 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54395
54396 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
54397 Author: Kumar Gala <galak@kernel.crashing.org>
54398 Date: Wed Feb 27 21:51:51 2008 -0600
54399
54400 [new uImage] Respect autostart setting in linux bootm
54401
54402 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54403 Acked-by: Marian Balakowicz <m8@semihalf.com>
54404
54405 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
54406 Author: Kumar Gala <galak@kernel.crashing.org>
54407 Date: Wed Feb 27 21:51:50 2008 -0600
54408
54409 [new uImage] Provide ability to restrict region used for boot images
54410
54411 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
54412 to restrict what memory range is used for bootm.
54413
54414 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54415 Acked-by: Marian Balakowicz <m8@semihalf.com>
54416
54417 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
54418 Author: Kumar Gala <galak@kernel.crashing.org>
54419 Date: Wed Feb 27 21:51:49 2008 -0600
54420
54421 [new uImage] Use lmb for bootm allocations
54422
54423 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
54424 functions over to using lmb for allocation of the ramdisk, command line
54425 and kernel bd info.
54426
54427 Convert PPC specific fdt_relocate() to use lmb for allocation of the device
54428 tree.
54429
54430 Provided a weak function that board code can call to do additional
54431 lmb reserves if needed.
54432
54433 Also introduce the concept of bootmap_base to specify the offset in
54434 physical memory that the bootmap is located at. This is used for
54435 allocations of the cmdline, kernel bd, and device tree as they should
54436 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
54437
54438 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54439
54440 commit f5614e7926863bf0225ec860d9b319741a9c4004
54441 Author: Kumar Gala <galak@kernel.crashing.org>
54442 Date: Wed Feb 27 21:51:48 2008 -0600
54443
54444 [new uImage] Add autostart flag to bootm_headers structure
54445
54446 The autostart env variable was dropped as part of the initial new uImage
54447 cleanup. Add it back here so the arch specific code can decide if it
54448 wants to really boot or not.
54449
54450 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54451 Acked-by: Marian Balakowicz <m8@semihalf.com>
54452
54453 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
54454 Author: Kumar Gala <galak@kernel.crashing.org>
54455 Date: Wed Feb 27 21:51:47 2008 -0600
54456
54457 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
54458
54459 Introduce the LMB lib used on PPC in the kernel as a clean way to manage
54460 the memory spaces used by various boot images and structures. This code
54461 will allow us to simplify the code in bootm and its support functions.
54462
54463 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54464
54465 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
54466 Author: Kumar Gala <galak@kernel.crashing.org>
54467 Date: Tue Feb 19 22:03:47 2008 -0600
54468
54469 [new uImage] ppc: Allow boards to specify effective amount of memory
54470
54471 For historical reasons we limited the stack to 256M because some boards
54472 could only map that much via BATS. However newer boards are capable of
54473 mapping more memory (for example 85xx is capable of doing up to 2G).
54474
54475 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54476 Acked-by: Marian Balakowicz <m8@semihalf.com>
54477
54478 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
54479 Author: Kumar Gala <galak@kernel.crashing.org>
54480 Date: Wed Feb 27 21:51:46 2008 -0600
54481
54482 [new uImage] rework error handling so common functions don't reset
54483
54484 Changed image_get_ramdisk() to just return NULL on error and have
54485 get_ramdisk() propogate that error to the caller. It's left to the
54486 caller to call do_reset() if it wants to.
54487
54488 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
54489 to a common location. In the future we will change get_fdt() and
54490 fdt_relocate() to return success/failure and not call do_reset() at all.
54491
54492 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54493 Acked-by: Marian Balakowicz <m8@semihalf.com>
54494
54495 commit d2bc095a639672def11d5d043b5688d0dbd692ec
54496 Author: Kumar Gala <galak@kernel.crashing.org>
54497 Date: Wed Feb 27 21:51:45 2008 -0600
54498
54499 [new uImage] ppc: Re-order ramdisk/fdt handling sequence
54500
54501 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
54502 however it does mean we have to go in and fixup the initrd info since
54503 we don't know where it will be.
54504
54505 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54506
54507 commit 27953493ef025fb698d68c5dee39b36f01f4d530
54508 Author: Kumar Gala <galak@kernel.crashing.org>
54509 Date: Wed Feb 27 21:51:44 2008 -0600
54510
54511 [new uImage] ppc: Determine if we are booting an OF style
54512
54513 If we are bootin OF style than we can skip setting up some things
54514 that are used for the old boot method.
54515
54516 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54517 Acked-by: Marian Balakowicz <m8@semihalf.com>
54518
54519 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
54520 Author: Kumar Gala <galak@kernel.crashing.org>
54521 Date: Wed Feb 27 21:51:43 2008 -0600
54522
54523 [new uImage] Don't pass kdb to ramdisk_high since we may not have one
54524
54525 We don't actually need the kdb param as we are just using it to get
54526 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
54527 boot via OF we might not actually fill out a kdb.
54528
54529 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54530 Acked-by: Marian Balakowicz <m8@semihalf.com>
54531
54532 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
54533 Author: Kumar Gala <galak@kernel.crashing.org>
54534 Date: Wed Feb 27 16:30:47 2008 -0600
54535
54536 85xx: Don't icbi when unlocking the cache
54537
54538 There is no reason to icbi when invalidating the temporary stack in
54539 the d-cache. Its impossible on e500 to have the i-cache contain
54540 any addresses in the temp stack and it can be problematic in generating
54541 transactions on the bus to non-valid addresses.
54542
54543 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54544
54545 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
54546 Author: Andy Fleming <afleming@freescale.com>
54547 Date: Wed Feb 27 15:50:50 2008 -0600
54548
54549 Fix source for ECM error IVPR
54550
54551 The source vector for the ECM was being set to 2,
54552 but that's what the source vector for DDR was being
54553 set to. Change it to 1.
54554
54555 Signed-off-by: Andy Fleming <afleming@freescale.com>
54556
54557 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
54558 Author: Andy Fleming <afleming@freescale.com>
54559 Date: Wed Feb 27 14:29:58 2008 -0600
54560
54561 Invalidate INIT_RAM TLB mappings
54562
54563 Commit 0db37dc... (and some others) changed the INIT_RAM TLB
54564 mappings to be unguarded. This collided with an existing "bug"
54565 where the mappings for the INIT_RAM were being kept around.
54566 This meant that speculative loads to those addresses were
54567 succeeding in the TLB, and going out to the bus, where they
54568 were causing an exception (there's nothing at that address). The
54569 Flash code was coincidentally causing such a speculative load.
54570 Rather than go back to mapping the INIT RAM as guarded, we fix
54571 it so that the entries for the INIT_RAM are invalidated. Thus
54572 the speculative loads will fail in the TLB, and have no effect.
54573
54574 Signed-off-by: Andy Fleming <afleming@freescale.com>
54575
54576 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
54577 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54578 Date: Sun Feb 17 22:56:17 2008 +0100
54579
54580 sbc8548: Fix Revision reading and unused variable 'path'
54581
54582 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54583
54584 commit 495d162374c472f46454453553382ad0735dc725
54585 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54586 Date: Sun Feb 17 22:56:16 2008 +0100
54587
54588 sbc8548: Fix cfi flash bank declaration
54589
54590 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54591
54592 commit 4efbe9dbb129f857f27856936112c8c02f016be6
54593 Author: Marian Balakowicz <m8@semihalf.com>
54594 Date: Wed Feb 27 11:02:26 2008 +0100
54595
54596 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
54597
54598 Dual format image code must properly handle all three FDT passing methods:
54599 - raw FDT blob passed
54600 - FDT blob embedded in the legacy uImage
54601 - FDT blob embedded in the new uImage
54602
54603 This patch enables proper raw FDT handling when no FIT imaeg support
54604 is compiled in. This is a bit tricky as we must dected FIT format even
54605 when FIT uImage handling is not enabled as both FIT uImages and raw FDT
54606 blobs use tha same low level format (libfdt).
54607
54608 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54609
54610 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
54611 Author: Marian Balakowicz <m8@semihalf.com>
54612 Date: Wed Feb 27 11:02:26 2008 +0100
54613
54614 [new uImage] POWERPC: Add image_get_fdt() routine
54615
54616 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
54617 (3) or embedded in the new uImage. For the (2) case embedding image must be
54618 verified before we get FDT from it. This patch factors out legacy image
54619 specific verification routine to the separate helper routine.
54620
54621 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54622 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54623
54624 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
54625 Author: Marian Balakowicz <m8@semihalf.com>
54626 Date: Wed Feb 27 11:02:07 2008 +0100
54627
54628 [new uImage] Add image_get_kernel() routine
54629
54630 Legacy image specific verification is factored out to a separate helper
54631 routine to keep get_kernel() generic and simple.
54632
54633 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54634 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54635
54636 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
54637 Author: Marian Balakowicz <m8@semihalf.com>
54638 Date: Wed Feb 27 11:01:04 2008 +0100
54639
54640 [new uImage] Move image verify flag to bootm_headers structure
54641
54642 Do not pass image verification flag directly to related routines.
54643 Simplify argument passing and move it to the bootm_header structure which
54644 contains curently processed image specific data and is already being passed
54645 on the argument list.
54646
54647 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54648 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54649
54650 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
54651 Author: Marian Balakowicz <m8@semihalf.com>
54652 Date: Wed Feb 27 11:00:47 2008 +0100
54653
54654 [Makefile] Sort COBJS in lib_<arch> Makefiles
54655
54656 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54657
54658 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
54659 Author: Marian Balakowicz <m8@semihalf.com>
54660 Date: Wed Feb 27 11:00:47 2008 +0100
54661
54662 [new uImage] Optimize gen_get_image() flow control
54663
54664 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
54665 to do, update its control flow to better reflect that simple case.
54666
54667 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54668 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54669
54670 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
54671 Author: Marian Balakowicz <m8@semihalf.com>
54672 Date: Mon Feb 4 08:28:17 2008 +0100
54673
54674 [new uImage] POWERPC: Split get_fdt() into get and relocate routines
54675
54676 PPC specific FDT blob handling code is divided into two separate routines:
54677
54678 get_fdt() - find and verify a FDT blob (either raw or image embedded)
54679 fdt_relocate() - move FDT blob to within BOOTMAP if needed
54680
54681 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54682 Acked-by: Kumar Gala <galak@kernel.crashing.org>
54683
54684 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
54685 Author: Jon Loeliger <jdl@freescale.com>
54686 Date: Mon Feb 25 13:13:37 2008 -0600
54687
54688 86xx: Fix renamed GUR symbols in sbc8641d board.
54689
54690 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
54691 (86xx: Fix GUR PCI config registers properly), we should have
54692 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
54693 symbols in the sbc8641d board as well. Fix this oversight.
54694
54695 Signed-off-by: Jon Loeliger <jdl@freescale.com>
54696
54697 commit 64cd594e623c39f73964d18787763e4533f791f7
54698 Author: Stefan Roese <sr@denx.de>
54699 Date: Mon Feb 25 16:50:48 2008 +0100
54700
54701 ppc4xx: Fix acadia_nand build problem
54702
54703 Don't include testdram() on NAND-booting target acadia_nand. This saves
54704 a few bytes and makes the target build clean again.
54705
54706 Signed-off-by: Stefan Roese <sr@denx.de>
54707
54708 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
54709 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54710 Date: Sun Feb 24 23:03:12 2008 +0000
54711
54712 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
54713
54714 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54715
54716 commit 724902c8464e610642b3a170278b99710325888e
54717 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54718 Date: Sun Feb 24 23:03:11 2008 +0000
54719
54720 arm-imx: Fix registers definition
54721
54722 Sync registers definition with linux
54723
54724 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54725
54726 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
54727 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54728 Date: Sun Feb 24 23:03:10 2008 +0000
54729
54730 actua1/actua2/actua3: Fix multipleunused variable
54731
54732 - actua1:
54733 actux1.c: In function 'checkboard':
54734 actux1.c:92: warning: unused variable 'revision'
54735
54736 - actua2:
54737 actux2.c: In function 'checkboard':
54738 actux2.c:100: warning: unused variable 's'
54739 actux2.c:99: warning: unused variable 'revision'
54740 actux2.c: In function 'reset_phy':
54741 actux2.c:130: warning: unused variable 'i'
54742
54743 - actua3:
54744 actux3.c: In function 'checkboard':
54745 actux3.c:114: warning: unused variable 'revision'
54746
54747 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54748
54749 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
54750 Author: Marian Balakowicz <m8@semihalf.com>
54751 Date: Mon Feb 4 08:28:09 2008 +0100
54752
54753 [new uImage] Add dual format uImage support framework
54754
54755 This patch adds framework for dual format images. Format detection is added
54756 and the bootm controll flow is updated to include cases for new FIT format
54757 uImages.
54758
54759 When the legacy (image_header based) format is detected appropriate
54760 legacy specific handling is invoked. For the new (FIT based) format uImages
54761 dual boot framework has a minial support, that will only print out a
54762 corresponding debug messages. Implementation of the FIT specific handling will
54763 be added in following patches.
54764
54765 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
54766
54767 commit b29661fc1151077776454288051bc9a488351ce8
54768 Author: Wolfgang Denk <wd@denx.de>
54769 Date: Sun Feb 24 15:21:36 2008 +0100
54770
54771 Coding style cleanup. Prepare v1.3.2-rc2 release candidate
54772
54773 Signed-off-by: Wolfgang Denk <wd@denx.de>
54774
54775 commit 00b48a48424894daa589d166d73277830b1c6ac4
54776 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54777 Date: Sat Feb 23 12:15:56 2008 +0100
54778
54779 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
54780
54781 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
54782
54783 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
54784 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54785 Date: Sat Feb 23 17:24:16 2008 +0900
54786
54787 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
54788
54789 ----------------------------------------------------------------
54790 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
54791
54792 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
54793 32bit targets.
54794
54795 GCC can be made to warn about usage of long long types with ISO C90
54796 (-ansi), but only with -pedantic. You can write this in a way that even
54797 then it doesn't cause warnings, namely by:
54798
54799 #ifdef __GNUC__
54800 __extension__ typedef __signed__ long long __s64;
54801 __extension__ typedef unsigned long long __u64;
54802 #endif
54803
54804 The __extension__ keyword in front of this switches off any pedantic
54805 warnings for this expression.
54806
54807 Signed-off-by: Olaf Hering <olh@suse.de>
54808 Cc: <linux-arch@vger.kernel.org>
54809 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
54810 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
54811 ----------------------------------------------------------------
54812
54813 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54814
54815 commit 208acd112e6517b21fc30c420396902b103563ac
54816 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54817 Date: Sat Feb 23 17:07:57 2008 +0900
54818
54819 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
54820
54821 This will reduce the build time.
54822
54823 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54824
54825 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
54826 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54827 Date: Sat Feb 23 17:05:00 2008 +0900
54828
54829 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
54830
54831 This will reduce the build time.
54832
54833 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54834
54835 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
54836 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54837 Date: Sat Feb 23 16:58:41 2008 +0900
54838
54839 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
54840
54841 This reduces the build time by ~10%. Here's the gth2_config example.
54842
54843 BEFORE AFTER
54844 real 0m31.441s 0m27.833s
54845 user 0m24.766s 0m23.045s
54846 sys 0m10.425s 0m7.468s
54847
54848 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
54849
54850 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
54851 Author: Marcel Moolenaar <marcelm@juniper.net>
54852 Date: Fri Feb 22 10:48:07 2008 -0800
54853
54854 make define2mk.sed work on FreeBSD
54855
54856 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
54857 the define2mk.sed script was identified as the source of the link
54858 failure on FreeBSD. The problem is that sed(1) does not always support
54859 the '+' operator. It isn't on FreeBSD. The attach patch implements the
54860 equivalent, using the '*' operator instead and should work everywhere.
54861
54862 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
54863
54864 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
54865 Author: Detlev Zundel <dzu@denx.de>
54866 Date: Fri Feb 22 17:21:32 2008 +0100
54867
54868 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
54869
54870 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
54871 final traces of long-deprecated "ramdisk" kernel parm") makes these
54872 changes neccessary.
54873
54874 Signed-off-by: Detlev Zundel <dzu@denx.de>
54875
54876 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
54877 Author: Larry Johnson <lrj@acm.org>
54878 Date: Thu Feb 21 13:58:16 2008 -0500
54879
54880 LM75 bug fix for negative temperatures
54881
54882 When the LM75 temperature sensor measures a temperature below 0 C, the
54883 current driver does not perform sign extension, so the result returned is
54884 256 C too high. This patch fixes the problem.
54885
54886 Signed-off-by: Larry Johnson <lrj@acm.org>
54887
54888 commit 5a910c224b13e413bda41922379add6d75c32da3
54889 Author: Heiko Schocher <hs@denx.de>
54890 Date: Thu Feb 21 18:33:45 2008 +0100
54891
54892 IDS8247: update MAINTAINER entry.
54893
54894 Signed-off-by: Heiko Schocher <hs@denx.de>
54895
54896 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
54897 Author: Heiko Schocher <hs@denx.de>
54898 Date: Thu Feb 21 18:31:15 2008 +0100
54899
54900 Fix device tree for mgsuvd board.
54901
54902 Rename the "scc" node in "ethernet" for the mgsuvd board.
54903
54904 Signed-off-by: Heiko Schocher <hs@denx.de>
54905
54906 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
54907 Author: Yuri Tikhonov <yur@emcraft.com>
54908 Date: Thu Feb 21 14:23:42 2008 +0100
54909
54910 lwmon5: enable hardware watchdog
54911
54912 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
54913 causing it to reboot the board if U-Boot does a long busy-wait with
54914 udelay(). Thus, for these boards we have to restart WD more
54915 frequently.
54916
54917 This patch splits the busy-wait udelay() into smaller, predefined,
54918 intervals, so that the watchdog timer may be resetted with the
54919 configurable (CONFIG_WD_PERIOD) interval.
54920
54921 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
54922
54923 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
54924 Author: Anatolij Gustschin <agust@denx.de>
54925 Date: Thu Feb 21 12:52:29 2008 +0100
54926
54927 ppc4xx: Support for ATI Radeon 9200 card on sequoia
54928
54929 Adds configuration option for ATI Radeon 9200 card
54930 support to sequoia config file. If CONFIG_VIDEO
54931 is enabled, TEXT_BASE should be changed to 0xFFF80000.
54932
54933 Signed-off-by: Anatolij Gustschin <agust@denx.de>
54934
54935 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
54936 Author: Kumar Gala <galak@kernel.crashing.org>
54937 Date: Mon Feb 18 08:18:07 2008 -0600
54938
54939 Remove duplicate defines for ARRAY_SIZE
54940
54941 A few duplicate of the ARRAY_SIZE macro sneaked in since we put
54942 the define in common.h.
54943
54944 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54945
54946 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
54947 Author: Kumar Gala <galak@kernel.crashing.org>
54948 Date: Mon Feb 18 08:09:37 2008 -0600
54949
54950 ppc: Allow boards to specify effective amount of memory
54951
54952 For historical reasons we limited the stack to 256M because some boards
54953 could only map that much via BATS. However newer boards are capable of
54954 mapping more memory (for example 85xx is capable of doing up to 2G).
54955
54956 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
54957
54958 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
54959 Author: Mike Frysinger <vapier@gentoo.org>
54960 Date: Mon Feb 18 05:24:13 2008 -0500
54961
54962 include autoconf.mk before any other .mk files
54963
54964 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
54965 those .mk files can have make if statements based on the current config.
54966
54967 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54968
54969 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
54970 Author: Mike Frysinger <vapier@gentoo.org>
54971 Date: Mon Feb 18 05:10:07 2008 -0500
54972
54973 error check autoconf.mk generation
54974
54975 If any of the steps for generating autoconf.mk fail currently, they go
54976 unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
54977 This is simpler and more robust than placing '|| exit $$?' after every line.
54978
54979 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
54980
54981 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
54982 Author: Stefano Babic <sbabic@denx.de>
54983 Date: Mon Feb 18 08:03:51 2008 +0100
54984
54985 Fix bug in dependency checking
54986
54987 By adding VERSION_FILE to the PHONY targets the script
54988 /tools/setlocalversion is always called and version_autogenerated.h
54989 is replaced only if the script find a modified source file.
54990
54991 Signed-off-by: Stefano Babic <sbabic@denx.de>
54992
54993 commit 98ba144ccc912eee90dd42699f023c497ce774c6
54994 Author: Kyungmin Park <kmpark@infradead.org>
54995 Date: Mon Feb 18 14:35:43 2008 +0900
54996
54997 Fix GPMC CS2 memory setup at apollon
54998
54999 It disables the current map first
55000
55001 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55002
55003 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
55004 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55005 Date: Sun Feb 17 23:52:46 2008 +0100
55006
55007 uli526x: Fix multiple differ in signedness and parentheses around comparison
55008
55009 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55010
55011 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
55012 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55013 Date: Sun Feb 17 16:58:04 2008 +0100
55014
55015 MIPS: Fix CFG_NO_FLASH support
55016
55017 - Fix flash_init call when CFG_NO_FLASH is used
55018 - Remove no more needed flash.c for qemu-mips
55019
55020 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55021
55022 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
55023 Author: Mike Frysinger <vapier@gentoo.org>
55024 Date: Sat Feb 16 02:40:18 2008 -0500
55025
55026 easylogo: clean up some more and add -r (rgb) support
55027
55028 Michael Hennerich added support for outputting an image in RGB format rather
55029 than forcing YUYV all the time. This makes obvious sense if the display you
55030 have takes RGB input rather than YUYV.
55031
55032 Rather than hack in support for options, I've converted it to use getopt and
55033 cleaned up the argument parsing in the process.
55034
55035 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
55036 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55037
55038 commit f65c98129ccada3f7caf97d80395a95b84e911de
55039 Author: Mike Frysinger <vapier@gentoo.org>
55040 Date: Sat Feb 16 02:12:37 2008 -0500
55041
55042 Makefile: add target for $(LDSCRIPT)
55043
55044 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
55045 then change into the board directory and try and create it. This allows you
55046 to generate the linker script on the fly based upon board defines (like the
55047 Blackfin boards do).
55048
55049 There should be no regressions due to this change as the normal case is to
55050 already have a u-boot.lds file. If that's the case, then there's nothing to
55051 generate, and so make will always exit. The fix here is that if the linker
55052 script does not exist, the implicit rules take over and attempt to guess how
55053 to generate the file.
55054
55055 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55056
55057 commit 5583cbf736474ef754e128a54fb78632f57b48fd
55058 Author: Marian Balakowicz <m8@semihalf.com>
55059 Date: Thu Feb 21 17:27:49 2008 +0100
55060
55061 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
55062
55063 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55064
55065 commit 2242f5369822bc7780db95c47985bb408ea9157b
55066 Author: Marian Balakowicz <m8@semihalf.com>
55067 Date: Thu Feb 21 17:27:41 2008 +0100
55068
55069 [new uImage] Rename and move print_image_hdr() routine
55070
55071 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55072
55073 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
55074 Author: Marian Balakowicz <m8@semihalf.com>
55075 Date: Thu Feb 21 17:20:20 2008 +0100
55076
55077 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
55078
55079 Introducing routines for parsing new uImage format bootm arguments:
55080 [<addr>]#<conf> - configuration specification
55081 [<addr>]:<subimg> - subimage specification
55082
55083 New format images can contain multiple subimages of the same type. For example
55084 a single new format image file can contain three kernels, two ramdisks and a
55085 couple of FDT blobs. Subimage and configuration specifications are extensions
55086 to bootm (and other image-related commands) arguments' syntax that allow to
55087 specify which particular subimage should be operated on.
55088
55089 Subimage specification is used to denote a particular subimage. Configurations
55090 are a bit more complex -- they are used to define a particualr booting setup,
55091 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
55092 etc.
55093
55094 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55095
55096 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
55097 Author: Marian Balakowicz <m8@semihalf.com>
55098 Date: Thu Feb 21 17:20:19 2008 +0100
55099
55100 [new uImage] Add gen_get_image() routine
55101
55102 This routine assures that image (whether legacy or FIT) is not
55103 in a special dataflash storage.
55104
55105 If image address is a dataflash address image is moved to system RAM.
55106
55107 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55108
55109 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
55110 Author: Marian Balakowicz <m8@semihalf.com>
55111 Date: Thu Feb 21 17:20:18 2008 +0100
55112
55113 [new uImage] Pull in libfdt if CONFIG_FIT is enabled
55114
55115 New uImage format (Flattened Image Tree) requires libfdt
55116 functionality, print out error message if CONFIG_OF_LIBFDT
55117 is not defined.
55118
55119 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
55120 This commit turns it on by default.
55121
55122 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55123
55124 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
55125 Author: Michael Schwingen <michael@schwingen.org>
55126 Date: Mon Feb 18 23:16:35 2008 +0100
55127
55128 CFI: Do not use uninitialized cmd_reset
55129
55130 Do not use uninitialized cmd_reset; issue both AMD and Intel reset
55131 commands instead
55132
55133 From a short test, it looks like AMD-style flash roms treat *any* unknown
55134 command write as a reset, at least when in CFI Query mode, so issuing the
55135 Intel reset command to AMD-style flashs seems safe (from the small sample I
55136 have), plus the 3-cycle magic sequence should kick the state machine into
55137 the right state even without a reset command. Since the AMD-style flashs
55138 require the unlock sequence for real operation, I chose to try the AMD reset
55139 command first, so that Intel flashs do no see an invalid command prior to
55140 the CFI query.
55141
55142 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
55143 plus Intel StrataFlash.
55144
55145 Signed-off-by: Michael Schwingen <michael@schwingen.org>
55146 Signed-off-by: Stefan Roese <sr@denx.de>
55147
55148 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
55149 Author: Rafal Jaworowski <raj@semihalf.com>
55150 Date: Thu Feb 21 11:56:44 2008 +0100
55151
55152 API: Add (c) and licensing notice to the public API header.
55153
55154 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
55155
55156 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
55157 Author: Yuri Tikhonov <yur@emcraft.com>
55158 Date: Thu Feb 21 11:06:07 2008 +0100
55159
55160 Fix CPU POST test failure
55161
55162 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
55163 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
55164 by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
55165 This patch just saves the CR value before running the test code, so allowing
55166 it to do anything it wants with CR.
55167
55168 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
55169 Acked-by: Yuri Tikhonov <yur@emcraft.com>
55170 --
55171
55172 commit d5908b093955415f3d340706378b991f911af671
55173 Author: Jon Loeliger <jdl@freescale.com>
55174 Date: Wed Feb 20 15:26:51 2008 -0600
55175
55176 8610HPCD: Document the flashbank selection switches.
55177
55178 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55179
55180 commit a551cee99ad1d1da20fd23ad265de47448852f56
55181 Author: Jon Loeliger <jdl@freescale.com>
55182 Date: Wed Feb 20 14:22:26 2008 -0600
55183
55184 86xx: Fix GUR PCI config registers properly.
55185
55186 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
55187 I tried to "8610HPCD: Fix typos in two PCI setup registers", I
55188 botched it due to not realizing that 8610 and 8641 had different
55189 Global Utility Register defintions, one of which was like 85xx,
55190 and the other wasn't. Correct this problem by introducing two
55191 symbols, one for each 86xx SoC, but neither of which is named
55192 anything like 85xx.
55193
55194 My bad. Lovely Wednesday with git bisect. You know.
55195
55196 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55197
55198 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
55199 Author: Jon Loeliger <jdl@freescale.com>
55200 Date: Wed Feb 20 12:24:11 2008 -0600
55201
55202 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
55203
55204 Without an actual supported video card hooked up, enabling
55205 the CONFIG_VIDEO by default just makes it look broken by
55206 routing all console output to the video card. Don't.
55207
55208 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55209
55210 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
55211 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55212 Date: Wed Jan 30 15:08:15 2008 -0600
55213
55214 ColdFire: Fix missing code flash size for M5485EVB
55215
55216 Signed-off-by: James Mahan <kmahan@freescale.com>
55217 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55218
55219 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
55220 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
55221 Date: Wed Jan 30 15:04:42 2008 -0600
55222
55223 ColdFire: Fix 5282 and 5271 interrupt mask bit
55224
55225 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
55226
55227 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
55228 Author: Jon Loeliger <jdl@freescale.com>
55229 Date: Tue Feb 19 12:31:08 2008 -0600
55230
55231 8610HPCD: Fix typos in two PCI setup registers.
55232
55233 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
55234 were erroneously present as 85xx names and values, leftover from
55235 the clone wars. Fix this by removing the 85xx cruft from the
55236 86xx codebase.
55237
55238 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55239
55240 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
55241 Author: Jon Loeliger <jdl@freescale.com>
55242 Date: Mon Feb 18 14:01:56 2008 -0600
55243
55244 86xx: Convert sbc8641d to use libfdt.
55245
55246 This is the proper fix for a missing closing brace in the function
55247 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
55248 The ft_cpu_setup() function in mpc8641hpcn.c should have been
55249 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
55250 but was missed. Only, the sbc8641d was nominally still using it.
55251 It all got ripped out, and the funcality that was in ft_board_setup()
55252 was refactored to remove the CPU portions into the new file
55253 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now.
55254
55255 Based loosely on an original patch from joe.hamman@embeddedspecialties.com
55256
55257 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55258
55259 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
55260 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55261 Date: Sun Feb 17 23:35:31 2008 +0100
55262
55263 mpc86xx: Fix unused variable 'config' and 'immap'
55264
55265 and remove useless CONFIG_DDR_INTERLEAVE
55266
55267 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55268
55269 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
55270 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55271 Date: Sun Feb 17 23:03:36 2008 +0100
55272
55273 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
55274
55275 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55276
55277 commit b6f29c84c208a091f95a10cbc9852d729659ba20
55278 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55279 Date: Sun Feb 17 14:15:31 2008 +0100
55280
55281 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
55282
55283 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55284
55285 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
55286 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55287 Date: Sun Feb 17 14:15:32 2008 +0100
55288
55289 pxa: fix assignment from incompatible pointer type
55290
55291 fix mmc_bread function prototype
55292
55293 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55294
55295 commit 64d792063fff90b8118179b092feee09fe5cae13
55296 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55297 Date: Sun Feb 17 14:15:30 2008 +0100
55298
55299 at91cap9adk: fix implicit declaration of function 'eth_init'
55300
55301 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55302
55303 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
55304 Author: Wolfgang Denk <wd@denx.de>
55305 Date: Sun Feb 17 15:43:44 2008 +0100
55306
55307 Remove files added by mistake, update CHANGELOG.
55308
55309 Signed-off-by: Wolfgang Denk <wd@denx.de>
55310
55311 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
55312 Author: Mike Nuss <mike@terascala.com>
55313 Date: Wed Feb 6 11:10:11 2008 -0500
55314
55315 PPC440EPx: Optionally enable second I2C bus
55316
55317 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
55318 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
55319 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
55320
55321 Signed-off-by: Mike Nuss <mike@terascala.com>
55322 Cc: Stefan Roese <sr@denx.de>
55323
55324 commit ef5b4f221c22d05770878513951745f236b5b43f
55325 Author: Niklaus Giger <niklaus.giger@netstal.com>
55326 Date: Tue Feb 5 10:26:44 2008 +0100
55327
55328 ppc4xx: HCU4/5. Cleanup configs
55329
55330 - hcu4.h: Removed define of CONFIG_PPC405GPr
55331 - Corrected phy addresses
55332 - Fix boot variables
55333 - Respect line length of 80 chars
55334
55335 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55336
55337 commit 74973126d1be63ac75bdc192f46234dca3a7c421
55338 Author: Niklaus Giger <niklaus.giger@netstal.com>
55339 Date: Tue Feb 5 11:31:28 2008 +0100
55340
55341 ppc4xx: HCU4/5. Cleanups
55342
55343 - Fix some coding style violations.
55344 - Use in/out_u16/32 where appropriate.
55345 - Use register names from ppc405.h.
55346 - Fix trace useage for Lauterbach.
55347 - Remove obsolete generation HCU2.
55348 - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
55349
55350 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55351
55352 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
55353 Author: Niklaus Giger <niklaus.giger@netstal.com>
55354 Date: Tue Feb 5 10:26:41 2008 +0100
55355
55356 ppc4xx: PPC405GPr fix missing register definitions
55357
55358 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55359
55360 commit 214398d9cb22268d9d4f7563359edca0f78297a2
55361 Author: Larry Johnson <lrj@acm.org>
55362 Date: Fri Jan 18 21:49:05 2008 -0500
55363
55364 ppc4xx: Beautify configuration files for Sequoia and Korat boards
55365
55366 Signed-off-by: Larry Johnson <lrj@acm.org>
55367
55368 commit 30c6a241e88499f536e86d325759e29ba00ff67f
55369 Author: Anatolij Gustschin <agust@denx.de>
55370 Date: Fri Feb 15 20:09:01 2008 +0100
55371
55372 Wipe out assembler warnings while compiling x86 biosemu
55373
55374 This patch tries to get rid of some assembler warnings about
55375 changed .got2 section type while compiling x86 bios emulator
55376 code.
55377
55378 Signed-off-by: Anatolij Gustschin <agust@denx.de>
55379
55380 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
55381 Author: Wolfgang Denk <wd@denx.de>
55382 Date: Fri Feb 15 00:57:09 2008 +0100
55383
55384 Prepare v1.3.2-rc1 release candidate
55385
55386 commit f33e9653c9c09868995d788511d573771c209fe5
55387 Author: Anatolij Gustschin <agust@denx.de>
55388 Date: Fri Feb 15 00:13:20 2008 +0100
55389
55390 Fix compile warning on lib_ppc/board.c
55391
55392 Signed-off-by: Anatolij Gustschin <agust@denx.de>
55393
55394 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
55395 Author: Anatolij Gustschin <agust@denx.de>
55396 Date: Thu Feb 14 18:22:04 2008 +0100
55397
55398 Add Radeon Mobility 9200 pci device id to the radeon driver
55399
55400 This patch extends PCI device id table of the
55401 radeon driver so that the driver will also support
55402 Radeon Mobility 9200 (M9+) based boards.
55403
55404 Signed-off-by: Anatolij Gustschin <agust@denx.de>
55405
55406 commit 1b8607e1f7143548c6062c28371449ec69588c00
55407 Author: Anatolij Gustschin <agust@denx.de>
55408 Date: Thu Feb 14 18:19:50 2008 +0100
55409
55410 Extend ATI Radeon driver to support more video modes
55411
55412 Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
55413 800x600, 640x480 at 24, 16 and 8 bpp.
55414
55415 Signed-off-by: Anatolij Gustschin <agust@denx.de>
55416
55417 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
55418 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55419 Date: Sun Feb 10 17:05:20 2008 +0100
55420
55421 xsengine: fix typo and few coding style
55422
55423 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55424
55425 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
55426 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55427 Date: Fri Feb 8 21:25:58 2008 +0100
55428
55429 Fix wrong memory limit calculation in memory-test
55430
55431 If the length of the memory address range passed to the "mtest" command is
55432 not of the form 2^x - 1, not all address lines are tested. This bug is
55433 inherited from the original software at
55434 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
55435 this.
55436
55437 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55438
55439 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
55440 Author: Wolfgang Denk <wd@denx.de>
55441 Date: Fri Feb 15 00:11:39 2008 +0100
55442
55443 Coding STyle cleanup.
55444
55445 Signed-off-by: Wolfgang Denk <wd@denx.de>
55446
55447 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
55448 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55449 Date: Tue Feb 5 13:30:43 2008 +0900
55450
55451 sh: Fix register address of SH7722
55452
55453 The address of SH7722 is wrong by old document.
55454 This patch fixes this problem.
55455
55456 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
55457
55458 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
55459 Author: Mike Frysinger <vapier@gentoo.org>
55460 Date: Mon Feb 4 17:44:23 2008 -0500
55461
55462 only update version header as needed
55463
55464 Constantly rebuilding the version header will force useless relinking, so we
55465 simply need to compare the new header with the existing one before updating
55466 it.
55467
55468 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55469
55470 commit 208447f8e953f347425eb92c8e28d59e6d911363
55471 Author: Mike Frysinger <vapier@gentoo.org>
55472 Date: Mon Jan 28 05:56:19 2008 -0500
55473
55474 Do not specify a CROSS_COMPILE default when executing size
55475
55476 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55477
55478 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
55479 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55480 Date: Wed Feb 13 11:19:19 2008 +0100
55481
55482 Fix return value of mtest when CFG_ALT_MEMTEST set
55483
55484 Fix a missing return statement from a non-void function.
55485
55486 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
55487
55488 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
55489 Author: Timur Tabi <timur@freescale.com>
55490 Date: Wed Jan 9 14:35:26 2008 -0600
55491
55492 85xx, 86xx: Determine I2C clock frequencies and store in global_data
55493
55494 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
55495
55496 Update the get_clocks() function in 85xx and 86xx to determine the I2C
55497 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
55498
55499 Signed-off-by: Timur Tabi <timur@freescale.com>
55500
55501 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
55502 Author: Wolfgang Denk <wd@denx.de>
55503 Date: Thu Feb 14 23:18:01 2008 +0100
55504
55505 TQM834x: clean up configuration
55506
55507 Get board name consistent with Linux and elsewhere;
55508 get rid of local network definitions etc.
55509
55510 Signed-off-by: Wolfgang Denk <wd@denx.de>
55511
55512 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
55513 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55514 Date: Thu Feb 14 08:02:12 2008 +0100
55515
55516 TFTP: fix search of ':' in BootFile
55517
55518 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55519
55520 commit 0bc9efada170096c6b273f19165e32936d330d80
55521 Author: Wolfgang Denk <wd@denx.de>
55522 Date: Thu Feb 14 22:46:55 2008 +0100
55523
55524 Coding style cleanup; update CHANGELOG.
55525
55526 Signed-off-by: Wolfgang Denk <wd@denx.de>
55527
55528 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
55529 Author: Wolfgang Denk <wd@denx.de>
55530 Date: Thu Feb 14 22:43:22 2008 +0100
55531
55532 PPC: Use r2 instead of r29 as global data pointer
55533
55534 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
55535 will refuse to use load/store multiple insns; instead, it issues a
55536 list of simple load/store instructions upon function entry and exit,
55537 resulting in bigger code size, which in turn makes the build for a
55538 few boards fail.
55539
55540 Use r2 instead.
55541
55542 Signed-off-by: Wolfgang Denk <wd@denx.de>
55543
55544 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
55545 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
55546 Date: Wed Jan 30 09:08:49 2008 +0100
55547
55548 ARM: make the machid configurable via the environment
55549
55550 If the variable "machid" exists, let do_bootm_linux use that instead
55551 of bd->bi_arch_number.
55552
55553 Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
55554
55555 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
55556 Author: Vlad Lungu <vlad@comsys.ro>
55557 Date: Wed Jan 23 16:34:46 2008 +0200
55558
55559 Use #ifdef CONFIG_FSLDMAFEC
55560
55561 MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
55562 fails
55563
55564 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
55565
55566 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
55567 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55568 Date: Sat Jan 19 10:25:59 2008 +0900
55569
55570 common/miiphyutil.c: Cleanup MII_DEBUG and debug()
55571
55572 Current MII_DEBUG is confusing in two ways. One is useless define-then-
55573 undef at the top of the file. The other is there is only one debug() in
55574 this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
55575 While there are many useful printf()/puts() debug codes, but they are for
55576 DEBUG, not for MII_DEBUG.
55577
55578 This patch tries to put them all together into MII_DEBUG and debug().
55579
55580 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
55581
55582 commit 751b9b5189f3274b03c809172631316d6b002c82
55583 Author: Kyungmin Park <kmpark@infradead.org>
55584 Date: Thu Jan 17 16:43:25 2008 +0900
55585
55586 OneNAND Initial Program Loader (IPL) support
55587
55588 This patch enables the OneNAND boot within U-Boot.
55589 Before this work, we used another OneNAND IPL called X-Loader based
55590 on open source. With this work, we can build the oneboot.bin image
55591 without other program.
55592
55593 The build sequence is simple.
55594 First, it compiles the u-boot.bin
55595 Second, it compiles OneNAND IPL
55596 Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
55597 The mechanism is similar with NAND boot except it boots from itself.
55598
55599 Another thing is that you can only use the OneNAND IPL only to work
55600 other bootloader such as RedBoot and so on.
55601
55602 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
55603
55604 commit 21f6f9636f0e978397548751347425fbf8d42bb3
55605 Author: Andy Fleming <afleming@freescale.com>
55606 Date: Wed Jan 16 13:06:59 2008 -0600
55607
55608 Fix CONFIG_MMC usage in fat code
55609
55610 A #if statement in fat.c depended on CONFIG_MMC, instead of
55611 defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined
55612 as "1" rather than just defined. Now it's better.
55613
55614 Signed-off-by: Andy Fleming <afleming@freescale.com>
55615
55616 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
55617 Author: Rafal Jaworowski <raj@semihalf.com>
55618 Date: Tue Jan 15 12:52:31 2008 +0100
55619
55620 ppc: Refactor cache routines, so there is only one common set.
55621
55622 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
55623
55624 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
55625 Author: Jon Loeliger <jdl@jdl.com>
55626 Date: Wed Jan 23 15:55:02 2008 -0600
55627
55628 86xx: Fix compilation warning in sys_eprom.c
55629
55630 sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
55631
55632 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55633
55634 commit 65230107025733e89e28fd5e5cfd916d4953c28a
55635 Author: Haavard Skinnemoen <hskinnemoen at>
55636 Date: Fri Feb 22 11:40:50 2008 +0000
55637
55638 Move AT91RM9200DK board support under board/atmel
55639
55640 We already have a vendor subdir for Atmel, so we should use it.
55641
55642 Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
55643
55644 commit 6d0943a6be99977d6d853d51749e9963d68eb192
55645 Author: Andreas Engel <andreas.engel@ericsson.com>
55646 Date: Mon Jan 14 09:06:52 2008 +0000
55647
55648 ARM: cleanup duplicated exception handlingcode
55649
55650 Move duplicated exception handling code into lib_arm.
55651
55652 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
55653
55654 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
55655 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
55656 Date: Fri Feb 1 10:09:03 2008 +0000
55657
55658 Support for Artila M-501 starter kit
55659
55660 Kimmo Leppala / Sysart and
55661 Timo Tuunainen / Sysart
55662
55663 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
55664 Author: Stelian Pop <stelian@popies.net>
55665 Date: Mon Feb 11 10:50:19 2008 +0000
55666
55667 AT91CAP9 support
55668
55669 ---------------------------------
55670
55671 read_dataflash() takes a signed char pointer as a parameter. Silence a
55672 few warnings dues to incorrect parameter types in env_dataflash.c.
55673
55674 Signed-off-by: Stelian Pop <stelian@popies.net>
55675
55676 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
55677 Author: Stelian Pop <stelian@popies.net>
55678 Date: Thu Feb 7 09:42:57 2008 +0000
55679
55680 AT91CAP9 support : move board files to Atmel vendor directory.
55681
55682 AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
55683
55684 Signed-off-by: Stelian Pop <stelian@popies.net>
55685
55686 commit 7263ef191b87da94768f762c7093bedeb70db98f
55687 Author: Stelian Pop <stelian at>
55688 Date: Thu Jan 3 21:15:56 2008 +0000
55689
55690 AT91CAP9 support : MACB changes
55691
55692 Signed-off-by: Stelian Pop <stelian <at> popies.net>
55693 Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
55694
55695 commit 6afcabf11d7321850f4feaadfee841488ace54c5
55696 Author: Stelian Pop <stelian@popies.net>
55697 Date: Thu Feb 7 16:37:54 2008 +0000
55698
55699 AT91CAP9 support : board/ files
55700
55701 Signed-off-by: Stelian Pop <stelian@popies.net>
55702
55703 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
55704 Author: Stelian Pop <stelian at>
55705 Date: Wed Jan 30 21:15:54 2008 +0000
55706
55707 AT91CAP9 support : cpu/ files
55708
55709 Signed-off-by: Stelian Pop <stelian <at> popies.net>
55710
55711 commit fa506a926cec348805143576c941f8e61b333cc0
55712 Author: Stelian Pop <stelian@popies.net>
55713 Date: Thu Jan 31 21:15:53 2008 +0000
55714
55715 AT91CAP9 support : include/ files
55716
55717 Signed-off-by: Stelian Pop <stelian@popies.net>
55718
55719 commit 20b197c6f2799af399a68f96a1aff543a75621b8
55720 Author: Stelian Pop <stelian@popies.net>
55721 Date: Sun Jan 20 19:49:21 2008 +0000
55722
55723 AT91CAP9 support : build integration
55724
55725 Signed-off-by: Stelian Pop <stelian@popies.net>
55726
55727 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
55728 Author: Stelian Pop <stelian@popies.net>
55729 Date: Sun Jan 20 21:07:00 2008 +0000
55730
55731 Improve DataFlash CS definition.
55732
55733 Use a structure instead of the error prone unnamed array to
55734 define the possible dataflash banks.
55735
55736 Signed-off-by: Stelian Pop <stelian@popies.net>
55737
55738 commit a6cdd21b56014208706238712a853a9e9a0a2290
55739 Author: Stelian Pop <stelian@popies.net>
55740 Date: Sat Jan 19 21:09:35 2008 +0000
55741
55742 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
55743
55744 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
55745
55746 cpu/arm926ejs/start.o: In function `cpu_init_crit':
55747 .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
55748
55749 Signed-off-by: Stelian Pop <stelian@popies.net>
55750
55751 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
55752 Author: Peter Pearse <peter.pearse@arm.com>
55753 Date: Fri Feb 1 16:50:24 2008 +0000
55754
55755 Fix timer overflow in DaVinci
55756 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
55757
55758 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
55759 Author: Peter Pearse <peter.pearse@arm.com>
55760 Date: Fri Feb 1 16:49:08 2008 +0000
55761
55762 Update board NetStar
55763 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
55764
55765 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
55766 Author: Niklaus Giger <niklaus.giger@netstal.com>
55767 Date: Tue Feb 5 10:26:42 2008 +0100
55768
55769 ppc4xx: HCU4/5. Fix make O=../xx
55770
55771 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55772
55773 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
55774 Author: Larry Johnson <lrj@acm.org>
55775 Date: Tue Jan 22 08:51:59 2008 -0500
55776
55777 ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
55778
55779 Signed-off-by: Larry Johnson <lrj@acm.org>
55780
55781 commit fe891ecf4d187e9d11dde869ed4623af52b54451
55782 Author: Hiroshi Ito <ito@mlb.co.jp>
55783 Date: Thu Jan 31 18:35:04 2008 +0900
55784
55785 NFS Timeout with large files.
55786
55787 Retry to send NFS packet before reaching timeout.
55788
55789 Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
55790
55791 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
55792 Author: Johannes Stezenbach <js@sig21.net>
55793 Date: Tue Jan 29 00:11:25 2008 +0100
55794
55795 Add dependencies to avoid race conditions with parallel make.
55796
55797 Signed-off-by: Johannes Stezenbach <js@sig21.net>
55798
55799 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
55800 Author: Mike Frysinger <vapier@gentoo.org>
55801 Date: Mon Jan 28 05:46:01 2008 -0500
55802
55803 Mark board_init_[fr] as noreturn
55804
55805 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55806
55807 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
55808 Author: Mike Frysinger <vapier@gentoo.org>
55809 Date: Mon Jan 28 05:28:50 2008 -0500
55810
55811 Only use TEXT_BASE if defined by the board
55812
55813 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
55814
55815 commit 1b769881750030f10743808b9d6013e11f559350
55816 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55817 Date: Fri Jan 25 07:54:47 2008 +0100
55818
55819 Fix remaining CONFIG_COMMANDS
55820
55821 update comments
55822 Fix coding style
55823
55824 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
55825
55826 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
55827 Author: Niklaus Giger <niklaus.giger@netstal.com>
55828 Date: Mon Jan 21 16:46:00 2008 +0100
55829
55830 Add *~ to .gitignore
55831
55832 One should never add a backup file ending in with ~ to the git repository.
55833
55834 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
55835
55836 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
55837 Author: Kumar Gala <galak@kernel.crashing.org>
55838 Date: Thu Jan 17 00:02:10 2008 -0600
55839
55840 Remove duplicate defines for ARRAY_SIZE
55841
55842 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55843
55844 commit c77ce474b1c57b13e9d36d9830f147966c143694
55845 Author: Stelian Pop <stelian@popies.net>
55846 Date: Mon Jan 14 22:08:14 2008 +0100
55847
55848 Fix incorrect address test in AT91F_DataflashSelect().
55849
55850 Signed-off-by: Stelian Pop <stelian@popies.net>
55851
55852 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
55853 Author: Kumar Gala <galak@kernel.crashing.org>
55854 Date: Wed Feb 13 15:09:58 2008 -0600
55855
55856 Fix building of fdt_support.c if DEBUG set
55857
55858 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55859
55860 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
55861 Author: Jon Loeliger <jdl@freescale.com>
55862 Date: Tue Feb 12 14:53:28 2008 -0600
55863
55864 Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
55865
55866 These replace direct structure references for IMMR sections.
55867
55868 Signed-off-by: Jon Loeliger <jdl@freescale.com>
55869
55870 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
55871 Author: Wolfgang Denk <wd@denx.de>
55872 Date: Tue Feb 12 00:45:06 2008 +0100
55873
55874 Get rid of "#undef DEBUG" from board config files.
55875
55876 Signed-off-by: Wolfgang Denk <wd@denx.de>
55877
55878 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
55879 Author: Timur Tabi <timur@freescale.com>
55880 Date: Tue Jan 15 17:09:41 2008 -0600
55881
55882 Remove #undef DEBUG from MPC83xx board header files
55883
55884 Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
55885 The inclusion of this line makes it impossible to enable debug code in
55886 other source files, because "#define DEBUG" typically needs to be defined
55887 before any header files are included.
55888
55889 Signed-off-by: Timur Tabi <timur@freescale.com>
55890
55891 commit 69018ce2e086e9caf35b914d675b82bc4888f077
55892 Author: Kumar Gala <galak@kernel.crashing.org>
55893 Date: Thu Jan 17 08:25:45 2008 -0600
55894
55895 QE: Move FDT support into a common file
55896
55897 Move the flat device tree setup for QE related devices into
55898 a common file shared between 83xx & 85xx platforms that have QE's.
55899
55900 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
55901
55902 commit 5cf746c303710329f8040d9c62ee354313e3e91f
55903 Author: Marian Balakowicz <m8@semihalf.com>
55904 Date: Thu Jan 31 13:59:09 2008 +0100
55905
55906 [new uImage] Move kernel data find code to get_kernel() routine
55907
55908 Verification of the kernel image (in old format) and finding kernel
55909 data is moved to a dedicated routine. The routine will also hold
55910 support for, to be added, new image format.
55911
55912 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55913
55914 commit 7b325454fd231d4273de3fe373850f777fb086bf
55915 Author: Marian Balakowicz <m8@semihalf.com>
55916 Date: Thu Jan 31 13:58:20 2008 +0100
55917
55918 [new uImage] Cleanup FDT handling in PPC do_boot_linux()
55919
55920 Move FDT blob finding and relocation to a dedicated
55921 get_fdt() routine. It increases code readability and
55922 will make adding support for new uImage format easier.
55923
55924 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55925
55926 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
55927 Author: Marian Balakowicz <m8@semihalf.com>
55928 Date: Thu Jan 31 13:58:13 2008 +0100
55929
55930 [new uImage] Cleanup do_botm_linux() boot allocations
55931
55932 This patch moves common pre-boot allocation steps shared between PPC
55933 and M68K to a helper routines:
55934
55935 common:
55936 - get_boot_sp_limit()
55937 - get_boot_cmline()
55938 - get_boot_kbd()
55939
55940 platform:
55941 - set_clocks_in_mhz()
55942
55943 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55944
55945 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
55946 Author: Marian Balakowicz <m8@semihalf.com>
55947 Date: Thu Jan 31 13:57:17 2008 +0100
55948
55949 [new uImage] Move ramdisk loading to a common routine
55950
55951 Ramdisk loading code, including initrd_high variable handling,
55952 was duplicated for PPC and M68K platforms. This patch creates
55953 common helper routine that is being called from both platform
55954 do_bootm_linux() routines.
55955
55956 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55957
55958 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
55959 Author: Marian Balakowicz <m8@semihalf.com>
55960 Date: Thu Jan 31 13:55:53 2008 +0100
55961
55962 [new uImage] Removed dead ramdisk code on microblaze architectures
55963
55964 Microblaze do_bootm_linux() includes ramdisk processing code but
55965 the ramdisk does not get used anywhere later on.
55966
55967 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55968
55969 commit 5ad03eb3854c162684222a718b44c0716ea0db03
55970 Author: Marian Balakowicz <m8@semihalf.com>
55971 Date: Thu Jan 31 13:55:39 2008 +0100
55972
55973 [new uImage] Factor out common image_get_ramdisk() routine
55974
55975 Architecture specific do_bootm_linux() routines share common
55976 ramdisk image processing code. Move this code to a common
55977 helper routine.
55978
55979 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55980
55981 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
55982 Author: Marian Balakowicz <m8@semihalf.com>
55983 Date: Thu Jan 31 13:20:08 2008 +0100
55984
55985 [new uImage] Move FDT error printing to common fdt_error() routine
55986
55987 FDT error handling in PPC do_bootm_linux() shares the same message format.
55988 This patch moves error message printing to a helper fdt_error() routine.
55989
55990 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
55991 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
55992
55993 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
55994 Author: Marian Balakowicz <m8@semihalf.com>
55995 Date: Thu Jan 31 13:20:07 2008 +0100
55996
55997 [new uImage] Factor out common routines for getting os/arch/type/comp names
55998
55999 Move numeric-id to name translation for image os/arch/type/comp header
56000 fields to a helper routines: image_get_os_name(), image_get_arch_name(),
56001 image_get_type_name(), image_get_comp_name().
56002
56003 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56004
56005 commit e99c26694a384221d336f6448c06a57479c0baa4
56006 Author: Marian Balakowicz <m8@semihalf.com>
56007 Date: Thu Jan 31 13:20:07 2008 +0100
56008
56009 [new uImage] Remove standalone applications handling from boootm
56010
56011 Standalone applications are supposed to be run using the "go" command.
56012 This patch removes standalone images handling from the do_bootm().
56013
56014 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56015
56016 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
56017 Author: Marian Balakowicz <m8@semihalf.com>
56018 Date: Thu Jan 31 13:20:07 2008 +0100
56019
56020 [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
56021
56022 Support for OF_FLAT_TREE is to be obsoleted in the near future,
56023 remove related code from the bootm routines.
56024
56025 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56026
56027 commit 82850f3d32a2661868ec6876bed7a22c55cef718
56028 Author: Marian Balakowicz <m8@semihalf.com>
56029 Date: Thu Jan 31 13:20:06 2008 +0100
56030
56031 [new uImage] Use image API in SH do_bootm_linux() routine
56032
56033 Introduce image handling API for lately added Hitachi SH architecture.
56034
56035 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56036
56037 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
56038 Author: Marian Balakowicz <m8@semihalf.com>
56039 Date: Thu Jan 31 13:20:06 2008 +0100
56040
56041 [new uImage] Rename architecture specific bootm code files
56042
56043 Implementation of the do_bootm_linux() and other bootm helper routines is
56044 architecture specific code. As such it resides in lib_<arch> directories
56045 in files named <arch>_linux.c
56046
56047 This patch renames those files to a more clear and accurate
56048 lib_<arch>/bootm.c form.
56049
56050 List of the renamed files:
56051 lib_arm/armlinux.c -> lib_arm/bootm.c
56052 lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
56053 lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
56054 lib_i386/i386_linux.c -> lib_i386/bootm.c
56055 lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
56056 lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
56057 lib_mips/mips_linux.c -> lib_mips/bootm.c
56058 lib_nios/nios_linux.c -> lib_nios/bootm.c
56059 lib_nios2/nios_linux.c -> lib_nios2/bootm.c
56060 lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
56061 lib_sh/sh_linux.c -> lib_sh/bootm.c
56062
56063 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56064
56065 commit 7582438c285bf0cef82909d0f232de64ec567a8a
56066 Author: Marian Balakowicz <m8@semihalf.com>
56067 Date: Thu Jan 31 13:20:06 2008 +0100
56068
56069 [new uImage] Return error on image move/uncompress overwrites
56070
56071 Check for overwrites during image move/uncompress, return with error
56072 when the original image gets corrupted. Report clear message to the user
56073 and prevent further troubles when pointer to the corrupted images is passed
56074 to do_bootm_linux routine.
56075
56076 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56077
56078 commit f13e7b2e993c61fed1f607962501e051940d6e80
56079 Author: Marian Balakowicz <m8@semihalf.com>
56080 Date: Tue Jan 8 18:12:17 2008 +0100
56081
56082 [new uImage] Cleanup image header pointer use in bootm code
56083
56084 - use single image header pointer instead of a set of auxilliary variables.
56085 - add multi component image helper routines: get component size/data address
56086
56087 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56088
56089 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
56090 Author: Marian Balakowicz <m8@semihalf.com>
56091 Date: Tue Jan 8 18:17:10 2008 +0100
56092
56093 [new uImage] Cleanup cmd_bootm.c
56094
56095 - sort and cleanup headers, declarations, etc.
56096 - group related routines
56097 - cleanup indentation, white spaces
56098
56099 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56100
56101 commit af13cdbc01eaf88880978bfb4f603e012818ba24
56102 Author: Marian Balakowicz <m8@semihalf.com>
56103 Date: Tue Jan 8 18:11:45 2008 +0100
56104
56105 [new uImage] Add memmove_wd() common routine
56106
56107 Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
56108
56109 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56110
56111 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
56112 Author: Marian Balakowicz <m8@semihalf.com>
56113 Date: Tue Jan 8 18:11:44 2008 +0100
56114
56115 [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
56116
56117 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56118
56119 commit 15158971f49255ccef54f0979a942cfd3de2ae52
56120 Author: Marian Balakowicz <m8@semihalf.com>
56121 Date: Tue Jan 8 18:11:44 2008 +0100
56122
56123 [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
56124
56125 Use image header copy instead of a (possibly corrupted) pointer to
56126 a initial image location.
56127
56128 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56129
56130 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
56131 Author: Marian Balakowicz <m8@semihalf.com>
56132 Date: Tue Jan 8 18:11:44 2008 +0100
56133
56134 [new uImage] Remove I386 uImage fake_header() routine
56135
56136 I386 targets are not using a uImage format, instead fake header
56137 is added to ram image before it is further processed by bootm.
56138
56139 Remove this fixup and force proper uImage use for I386.
56140
56141 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56142
56143 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
56144 Author: Marian Balakowicz <m8@semihalf.com>
56145 Date: Tue Jan 8 18:11:44 2008 +0100
56146
56147 [new uImage] Move CHUNKSZ definition to image.h
56148
56149 CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
56150 move this definition to a common header.
56151
56152 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56153
56154 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
56155 Author: Marian Balakowicz <m8@semihalf.com>
56156 Date: Tue Jan 8 18:11:43 2008 +0100
56157
56158 [new uImage] Move gunzip() common code to common/gunzip.c
56159
56160 Move gunzip(), zalloc() and zfree() to a separate file.
56161 Share zalloc() and zfree() with cramfs uncompress routine.
56162
56163 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56164
56165 commit d45d5a18b6b36688f2365623f9d550566c664b5b
56166 Author: Marian Balakowicz <m8@semihalf.com>
56167 Date: Tue Jan 8 18:11:43 2008 +0100
56168
56169 [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
56170
56171 Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
56172 readable in PPC variant of do_bootm_linux() routine.
56173
56174 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56175
56176 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
56177 Author: Marian Balakowicz <m8@semihalf.com>
56178 Date: Tue Jan 8 18:11:43 2008 +0100
56179
56180 [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
56181
56182 PPC implementation of do_bootm_linux() routine is moved to
56183 a dedicated file lib_ppc/ppc_linux.c
56184
56185 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56186
56187 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
56188 Author: Marian Balakowicz <m8@semihalf.com>
56189 Date: Tue Jan 8 18:14:09 2008 +0100
56190
56191 [new uImage] Define a API for image handling operations
56192
56193 - Add inline helper macros for basic header processing
56194 - Move common non inline code common/image.c
56195 - Replace direct header access with the API routines
56196 - Rename IH_CPU_* to IH_ARCH_*
56197
56198 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56199
56200 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
56201 Author: Marian Balakowicz <m8@semihalf.com>
56202 Date: Thu Jan 31 13:19:58 2008 +0100
56203
56204 Add missing cmd_ximg.o to common/Makefile
56205
56206 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
56207
56208 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
56209 Author: Grzegorz Bernacki <gjb@semihalf.com>
56210 Date: Mon Jan 28 10:15:02 2008 +0100
56211
56212 ADS5121e: DDR2 init/timing update.
56213
56214 Signed-off-by: John Rigby <jrigby@freescale.com>
56215 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
56216
56217 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
56218 Author: John Rigby <jrigby@freescale.com>
56219 Date: Wed Jan 30 13:36:57 2008 -0700
56220
56221 Device tree updates
56222
56223 Changes to match 5121 device tree going mainline in 2.6.25.
56224
56225 Change OF_SOC from "soc5121" to plain "soc".
56226 Remove unneeded "ref-frequency" fixups.
56227 Remove "address" enetaddr fixup.
56228
56229 Add bus-frequency fixup for old OF_SOC so old
56230 kernels with old device trees will work with new
56231 u-boot with 66MHz IPS clock
56232
56233 Signed-off-by: John Rigby <jrigby@freescale.com>
56234
56235 commit de55d18df3ff2ea614624e74793de7c43520e0e7
56236 Author: John Rigby <jrigby@freescale.com>
56237 Date: Wed Jan 30 13:36:56 2008 -0700
56238
56239 Change IPS freq to 66MHz
56240
56241 Recommended frequency is 66MHz
56242 Change divider from 4 to 3.
56243
56244 Signed-off-by: John Rigby <jrigby@freescale.com>
56245
56246 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
56247 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56248 Date: Mon Jan 14 22:38:55 2008 +0100
56249
56250 xsengine: rename board_post_init to board_late_init
56251
56252 missing migration from "Cleanup of some init functions"
56253 in c837dcb1a316745092567bfe4fb266d0941884ff
56254
56255 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56256
56257 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
56258 Author: Larry Johnson <lrj@acm.org>
56259 Date: Sat Jan 12 23:35:33 2008 -0500
56260
56261 Add attribute POST_PREREL to ECC memory POST
56262
56263 Signed-off-by: Larry Johnson <lrj@acm.org>
56264
56265 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
56266 Author: Kumar Gala <galak@kernel.crashing.org>
56267 Date: Thu Jan 17 08:25:45 2008 -0600
56268
56269 QE: Move FDT support into a common file
56270
56271 Move the flat device tree setup for QE related devices into
56272 a common file shared between 83xx & 85xx platforms that have QE's.
56273
56274 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
56275
56276 commit d38da537943cd36356b9d3d9d9b60533554b81d8
56277 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56278 Date: Wed Jan 23 17:20:14 2008 +0100
56279
56280 AVR32: Make SDRAM refresh rate configurable
56281
56282 The existing code assumes the SDRAM row refresh period should always
56283 be 15.6 us. This is not always true, and indeed on the ATNGW100, the
56284 refresh rate should really be 7.81 us.
56285
56286 Add a refresh_period member to struct sdram_info and initialize it
56287 properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
56288 panic() until the refresh_period member is updated properly.
56289
56290 Big thanks to Gerhard Berghofer for pointing out this issue.
56291
56292 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56293
56294 commit 61151cccb660cdb06a07fb283de6089913d7bde0
56295 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56296 Date: Thu Apr 19 10:10:11 2007 +0200
56297
56298 ATSTK1000: Fix potential flash programming bug
56299
56300 The (now obsolete) atngw100 flash programming code was having problems
56301 programming the onboard at49bv642 chip. The atstk1000 flash
56302 programming code may have the same bug, so import fix for this problem
56303 from the AVR32 Linux BSP.
56304
56305 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56306
56307 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
56308 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56309 Date: Thu Nov 22 17:04:13 2007 +0100
56310
56311 ATSTK1004: Fix comment about default load address
56312
56313 The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
56314 wouldn't have worked anyway since the board can only access 4MB of
56315 SDRAM.
56316
56317 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56318
56319 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
56320 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56321 Date: Thu Nov 22 17:01:24 2007 +0100
56322
56323 ATSTK1002: Use SDRAM + 4MB as default load address
56324
56325 Many people run into problems when they compile a big kernel and load
56326 the uImage at the default SDRAM + 2MB address as the kernel will
56327 overwrite the uImage as it is being unpacked. Increase the default
56328 load address so that we can load a 4MB kernel image without any
56329 problems.
56330
56331 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56332
56333 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
56334 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56335 Date: Thu Nov 22 16:51:39 2007 +0100
56336
56337 ATNGW100: Fix default mtest range
56338
56339 Let mtest cover the whole SDRAM except the last megabyte, which is
56340 where u-boot lives.
56341
56342 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56343
56344 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
56345 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
56346 Date: Tue Jan 22 15:31:56 2008 +0900
56347
56348 sh: Fix register address of SH7722.
56349
56350 The address of SH7722 is wrong by old document.
56351 This patch fixes this problem.
56352
56353 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
56354
56355 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
56356 Author: Mike Frysinger <vapier@gentoo.org>
56357 Date: Mon Feb 4 19:26:57 2008 -0500
56358
56359 new command for displaying strings at specified memory locations
56360
56361 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56362
56363 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
56364 Author: Mike Frysinger <vapier@gentoo.org>
56365 Date: Mon Feb 4 19:26:57 2008 -0500
56366
56367 rewrite/cleanup Blackfin RTC driver
56368
56369 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56370
56371 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
56372 Author: Mike Frysinger <vapier@gentoo.org>
56373 Date: Mon Feb 4 19:26:57 2008 -0500
56374
56375 generate u-boot.ldr for Blackfin targets
56376
56377 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56378
56379 commit b779f7a59530436040f157f7841db7ab796542df
56380 Author: Mike Frysinger <vapier@gentoo.org>
56381 Date: Mon Feb 4 19:26:57 2008 -0500
56382
56383 scrub unused symbols
56384
56385 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56386
56387 commit cc2977acc3bbbb7850f16645dd1081f95335868d
56388 Author: Mike Frysinger <vapier@gentoo.org>
56389 Date: Mon Feb 4 19:26:57 2008 -0500
56390
56391 move Blackfin cpu object list to respective cpu directories
56392
56393 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56394
56395 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
56396 Author: Mike Frysinger <vapier@gentoo.org>
56397 Date: Mon Feb 4 19:26:57 2008 -0500
56398
56399 interface to Blackfin on-chip One-Time-Programmable memory
56400
56401 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56402
56403 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
56404 Author: Mike Frysinger <vapier@gentoo.org>
56405 Date: Mon Feb 4 19:26:56 2008 -0500
56406
56407 add support for memory commands with Blackfin L1 instruction memory
56408
56409 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56410
56411 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
56412 Author: Mike Frysinger <vapier@gentoo.org>
56413 Date: Mon Feb 4 19:26:56 2008 -0500
56414
56415 use C code rather than inline assembly
56416
56417 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56418
56419 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
56420 Author: Mike Frysinger <vapier@gentoo.org>
56421 Date: Mon Feb 4 19:26:56 2008 -0500
56422
56423 add Blackfin-specific reginfo command
56424
56425 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56426
56427 commit 0858b835e7ea501ea084d34cef75932f098342bb
56428 Author: Mike Frysinger <vapier@gentoo.org>
56429 Date: Mon Feb 4 19:26:55 2008 -0500
56430
56431 add support for Blackfin symbol prefixes to examples
56432
56433 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56434
56435 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
56436 Author: Mike Frysinger <vapier@gentoo.org>
56437 Date: Mon Feb 4 19:26:55 2008 -0500
56438
56439 add Blackfin-specific bdinfo command
56440
56441 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56442
56443 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
56444 Author: Mike Frysinger <vapier@gentoo.org>
56445 Date: Mon Feb 4 19:26:55 2008 -0500
56446
56447 move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
56448
56449 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56450
56451 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
56452 Author: Mike Frysinger <vapier@gentoo.org>
56453 Date: Mon Feb 4 19:26:55 2008 -0500
56454
56455 unify the Blackfin board targets
56456
56457 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56458
56459 commit d4d7730853e5d675f76ec666807da3028c91d592
56460 Author: Mike Frysinger <vapier@gentoo.org>
56461 Date: Mon Feb 4 19:26:55 2008 -0500
56462
56463 punt Blackfin VDSP headers and import sanitized/auto-generated ones
56464
56465 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56466
56467 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
56468 Author: Mike Frysinger <vapier@gentoo.org>
56469 Date: Mon Feb 4 19:26:54 2008 -0500
56470
56471 always pull in asm/blackfin.h for Blackfin ports
56472
56473 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56474
56475 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
56476 Author: Mike Frysinger <vapier@gentoo.org>
56477 Date: Mon Feb 4 19:26:54 2008 -0500
56478
56479 add missing __raw versions of Blackfin read/write io functions
56480
56481 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56482
56483 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
56484 Author: Mike Frysinger <vapier@gentoo.org>
56485 Date: Mon Feb 4 19:26:54 2008 -0500
56486
56487 add the default Blackfin logo used by Blackfin boards with splash screens
56488
56489 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56490
56491 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
56492 Author: Mike Frysinger <vapier@gentoo.org>
56493 Date: Mon Feb 4 19:26:54 2008 -0500
56494
56495 add some more Blackfin docs
56496
56497 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56498
56499 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
56500 Author: Mike Frysinger <vapier@gentoo.org>
56501 Date: Mon Feb 4 19:26:54 2008 -0500
56502
56503 make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
56504
56505 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56506
56507 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
56508 Author: Mike Frysinger <vapier@gentoo.org>
56509 Date: Mon Feb 4 19:26:54 2008 -0500
56510
56511 fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
56512
56513 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56514
56515 commit b45264ee85cbd92020640a32e02fb434fd557108
56516 Author: Mike Frysinger <vapier@gentoo.org>
56517 Date: Mon Feb 4 19:26:53 2008 -0500
56518
56519 add gitignores for Blackfin pieces
56520
56521 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
56522
56523 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
56524 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56525 Date: Fri Jan 18 01:14:03 2008 +0100
56526
56527 TFTP: add host ip addr support
56528
56529 allow to use a different server as set in serverip
56530 add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
56531 if not defined the max length will be at 128
56532
56533 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56534
56535 commit e56b4b494cd92def577969f9678395aa22d34c9f
56536 Author: Timur Tabi <timur@freescale.com>
56537 Date: Wed Jan 9 14:35:26 2008 -0600
56538
56539 85xx,86xx: Determine I2C clock frequencies and store in global_data
56540
56541 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
56542
56543 Update the get_clocks() function in 85xx and 86xx to determine the I2C
56544 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
56545
56546 Signed-off-by: Timur Tabi <timur@freescale.com>
56547
56548 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
56549 Author: Wolfgang Denk <wd@denx.de>
56550 Date: Thu Dec 27 10:56:54 2007 +0100
56551
56552 OMAP5912: fix FIFO handling in UART driver
56553
56554 According to the OMAP5912 Serial Interfaces Reference Guide (see
56555 http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
56556 FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
56557 changed when the baud clock is not running, i. e. when both DLL and
56558 DLH are set to 0.
56559
56560 Thus make sure that DLL and DLH are 0 when writing the FCR.
56561
56562 Signed-off-by: Wolfgang Denk <wd@denx.de>
56563
56564 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
56565 Author: Harald Welte <laforge@openmoko.org>
56566 Date: Wed Dec 19 15:10:52 2007 +0100
56567
56568 ARM: S3C24x0 SoC NAND controller support
56569
56570 This patch adds NAND support to the S3C24x0 SoC code in u-boot
56571
56572 Signed-off-by: Harald Welte <laforge@openmoko.org>
56573
56574 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
56575 Author: Harald Welte <laforge@openmoko.org>
56576 Date: Wed Dec 19 14:24:40 2007 +0100
56577
56578 ARM: s3c24xx: Multiple serial port support
56579
56580 This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
56581
56582 Signed-off-by: Harald Welte <laforge@openmoko.org>
56583
56584 commit a25f72f1f73a11de68251fb88c89991e202e68fa
56585 Author: Harald Welte <laforge@openmoko.org>
56586 Date: Wed Dec 19 14:16:57 2007 +0100
56587
56588 ARM: arm920t: Allow use of 'gd' pointer from IRQ
56589
56590 This patch allows us to use the 'gd' pointer (and thus environment
56591 and everything else associated with it) from interrupt context on
56592 arm920t.
56593
56594 Signed-off-by: Harald Welte <laforge@openmoko.org>
56595
56596 commit be19bd5cd0f454b63298844a0b5377e029b2caad
56597 Author: Harald Welte <laforge@openmoko.org>
56598 Date: Wed Dec 19 14:19:38 2007 +0100
56599
56600 ARM: arm920/s3c24xx: IRQ demulitplexer callback
56601
56602 This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
56603 plus a stub implementation of it for the S3C2410.
56604
56605 The purpose is to allow arm920t implementations such as the s3c24x0 to
56606 implement interrupt handlers in u-boot without having to touch core
56607 arm920t code.
56608
56609 Signed-off-by: Harald Welte <laforge@openmoko.org>
56610
56611 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
56612 Author: Hebbar <gururajakr@sanyo.co.in>
56613 Date: Tue Dec 18 16:03:07 2007 -0800
56614
56615 ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
56616
56617 Add ifdef to bdinfo command to display ethernet information
56618 only if CONFIG_CMD_NET is defined for arm modules.
56619
56620 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
56621
56622 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
56623 Author: Hebbar <gururajakr@sanyo.co.in>
56624 Date: Tue Dec 18 16:00:54 2007 -0800
56625
56626 ARM: add I2C init function call in lib_arm/board.c
56627
56628 Adds I2C init func call to init sequence for ARM boards. This is
56629 present in ppc,blackfin and other processor init sequence.
56630
56631 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
56632
56633 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
56634 Author: Stefan Roese <sr@denx.de>
56635 Date: Fri Feb 1 09:38:29 2008 +0100
56636
56637 ppc4xx: Fix ndfc HW ECC byte order
56638
56639 The current ndfc HW ECC implementation swaps the first two ECC bytes.
56640 But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
56641 so this swapping in the HW ECC driver is bogus. This patch fixes this
56642 problem and now really uses the SMC ECC byte order.
56643
56644 Thanks to Sean MacLennan for pointing this out.
56645
56646 Signed-off-by: Stefan Roese <sr@denx.de>
56647
56648 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
56649 Author: Stefan Roese <sr@denx.de>
56650 Date: Wed Jan 30 15:35:50 2008 +0100
56651
56652 ppc4xx: Fix GPIO configuration for pcs440ep
56653
56654 The SRD0_PFC0 register was not configured correctly to enable the GPIO's
56655 49-63 for GPIO. They have been configured as trace signals. This patch
56656 fixes this by clearing the corresponding bit.
56657
56658 Signed-off-by: Stefan Roese <sr@denx.de>
56659
56660 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
56661 Author: Stefan Roese <sr@denx.de>
56662 Date: Wed Jan 30 14:48:28 2008 +0100
56663
56664 ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
56665
56666 Signed-off-by: Stefan Roese <sr@denx.de>
56667
56668 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
56669 Author: Ladislav Michl <ladis@linux-mips.org>
56670 Date: Fri Dec 7 00:42:32 2007 +0100
56671
56672 ARM: Board voiceblue update
56673
56674 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
56675
56676 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
56677 Author: Ladislav Michl <ladis@linux-mips.org>
56678 Date: Thu Dec 6 23:24:57 2007 +0100
56679
56680 ARM: AT91RM9200 based boards config cleanup
56681
56682 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
56683
56684 Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
56685 indentation.
56686
56687 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
56688 Author: Ladislav Michl <ladis@linux-mips.org>
56689 Date: Thu Dec 6 22:59:16 2007 +0100
56690
56691 ARM: Fix at91rm9200dk base address
56692
56693 Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
56694 renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
56695 with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
56696 However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
56697 CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
56698 I'm sending this patch 4th (!) time in hope it produces at least some
56699 reaction.
56700
56701 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
56702
56703 Fix at91rm9200dk base and environment address.
56704
56705 commit c95219fae2a7add7daa2f91aedca65b1698465c7
56706 Author: stefano babic <sbabic@denx.de>
56707 Date: Tue Nov 20 10:40:24 2007 +0100
56708
56709 MMC for PXA 27X (resubmit)
56710
56711 MMC support for X_Scale PXA is broken and does not work.
56712 Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
56713 There were already some patches around the world but none of them was
56714 merged into the official u-boot tree.
56715
56716 This patch makes order fixing this issue. Resubmit after code cleanup.
56717
56718 Applied and tested on PXA 270 (TrizepsIV module).
56719
56720 Signed-off-by: Stefano Babic <sbabic@denx.de>
56721
56722 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
56723 Author: stefano babic <sbabic@denx.de>
56724 Date: Tue Nov 20 10:37:04 2007 +0100
56725
56726 Fix gcc issues in pxa-regs.h
56727
56728 Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
56729 issues generates wrong code.
56730 (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
56731 This patch fixes the problem and solves the gcc-4 issues as the linux
56732 kernel does.
56733
56734 Signed-off-by: Stefano Babic <sbabic@denx.de>
56735 Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
56736
56737 commit 7047b388876e7b905b2ec4edb8010543e3641b85
56738 Author: Jens Gehrlein <sew_s@tqs.de>
56739 Date: Tue Jan 29 08:45:03 2008 +0100
56740
56741 TQM834x: enable DHCP
56742
56743 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
56744 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56745
56746 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
56747 Author: Jens Gehrlein <sew_s@tqs.de>
56748 Date: Tue Jan 29 08:45:02 2008 +0100
56749
56750 TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
56751
56752 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
56753 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56754
56755 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
56756 Author: Ben Warren <biggerbadderben@gmail.com>
56757 Date: Sat Jan 26 23:41:19 2008 -0500
56758
56759 Fix conditional compilation of mpx8xxx_spi driver
56760
56761 This driver should only compile if CONFIG_MPC8XXX_SPI is set
56762
56763 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
56764 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56765
56766 commit 63f732d3d3880feb531f48af247c025bf01462b0
56767 Author: Rafal Jaworowski <raj@semihalf.com>
56768 Date: Tue Jan 29 17:00:34 2008 +0100
56769
56770 API: Provide dummy halt() in the glue layer.
56771
56772 This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
56773
56774 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
56775
56776 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
56777 Author: Rafal Jaworowski <raj@semihalf.com>
56778 Date: Tue Jan 29 16:57:38 2008 +0100
56779
56780 API: Convert conditional building to the new scheme.
56781
56782 This fixes a build breakage with CONFIG_API enabled, which appeared after
56783 the recent changes in the U-Boot build system.
56784
56785 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
56786
56787 commit 98b742489c09780be6a832eeaa4e5eff824792bb
56788 Author: Wolfgang Denk <wd@denx.de>
56789 Date: Fri Jan 25 09:56:17 2008 +0100
56790
56791 inka4x0: remove dead code
56792
56793 Signed-off-by: Wolfgang Denk <wd@denx.de>
56794
56795 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
56796 Author: Becky Bruce <becky.bruce@freescale.com>
56797 Date: Wed Jan 23 16:31:06 2008 -0600
56798
56799 86xx: Add reginfo command
56800
56801 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56802
56803 commit ddcebcb638715a6278da93b553d5016f99823816
56804 Author: Becky Bruce <becky.bruce@freescale.com>
56805 Date: Wed Jan 23 16:31:05 2008 -0600
56806
56807 86xx: Add print_laws function to fsl_law.c
56808
56809 This can be used for debug, and will be used by board code
56810 to help implement reginfo.
56811
56812 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56813
56814 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
56815 Author: Becky Bruce <becky.bruce@freescale.com>
56816 Date: Wed Jan 23 16:31:04 2008 -0600
56817
56818 86xx: Remove old-style law setup code
56819
56820 This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
56821
56822 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56823
56824 commit 713d8186649dae874613d495b0cecaa039a98b30
56825 Author: Becky Bruce <becky.bruce@freescale.com>
56826 Date: Wed Jan 23 16:31:03 2008 -0600
56827
56828 86xx: Convert sbc8641d to use new law setup code.
56829
56830 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56831
56832 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
56833 Author: Becky Bruce <becky.bruce@freescale.com>
56834 Date: Wed Jan 23 16:31:02 2008 -0600
56835
56836 86xx: Convert mpc8610hpcd to new law setup method.
56837
56838 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56839
56840 commit 4933b91f8a49e436681f163df3173beb91cac44a
56841 Author: Becky Bruce <becky.bruce@freescale.com>
56842 Date: Wed Jan 23 16:31:01 2008 -0600
56843
56844 86xx: Support new law setup method and convert mpc8641
56845
56846 Adds the support code in cpu/mpc86xx for the new law setup code
56847 recently created fsl_law.c, and changes the MPC8641HPCN config
56848 to use this code.
56849
56850 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56851
56852 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
56853 Author: Becky Bruce <becky.bruce@freescale.com>
56854 Date: Wed Jan 23 16:31:00 2008 -0600
56855
56856 86xx: Rearrange the sequence in start.S
56857
56858 * split the BAT initialization so that only 2 BATs (for the boot page
56859 and stack) are programmed very early on. The rest are initialized later.
56860 * Move other BAT setup, ccsrbar setup, and law setup later in the code
56861 after translation has been enabled.
56862
56863 These changes will facilitate the moving of law and BAT initialization
56864 to C code, and will aid with 36-bit physical addressing support.
56865
56866 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
56867
56868 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
56869 Author: Wolfgang Denk <wd@denx.de>
56870 Date: Wed Jan 23 14:41:37 2008 +0100
56871
56872 Coding Style Cleanup; update CHANGELOG
56873
56874 Signed-off-by: Wolfgang Denk <wd@denx.de>
56875
56876 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
56877 Author: Wolfgang Denk <wd@denx.de>
56878 Date: Wed Jan 23 14:31:17 2008 +0100
56879
56880 Coding Style Cleanup; update CHANGELOG
56881
56882 Signed-off-by: Wolfgang Denk <wd@denx.de>
56883
56884 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
56885 Author: Dave Liu <r63238@freescale.com>
56886 Date: Fri Jan 18 10:07:04 2008 +0800
56887
56888 mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
56889
56890 The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
56891 cause the 83xx immap broken, so the DMA and PCI will
56892 be failed.
56893
56894 The patch fix the struct spi8xxx and rm struct spi83xx.
56895
56896 Signed-off-by: Dave Liu <daveliu@freescale.com>
56897 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
56898
56899 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
56900 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56901 Date: Sat Apr 14 17:11:49 2007 +0200
56902
56903 AVR32: ATNGW100 board support
56904
56905 Add support for the ATNGW100 Network Gateway reference design,
56906 including flash, ethernet and MMC support.
56907
56908 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56909
56910 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
56911 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
56912 Date: Sat Nov 24 18:15:31 2007 +0100
56913
56914 AVR32: Initialize ipaddr, loadaddr and bootfile at startup
56915
56916 I don't know why the relevant layers can't do this by itself, but this
56917 is what ppc does.
56918
56919 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
56920
56921 commit 799891ef7b1b3432032ec23466df6b665a797fa4
56922 Author: Michael Schwingen <michael@schwingen.org>
56923 Date: Fri Jan 18 00:04:28 2008 +0100
56924
56925 Add AcTux board support
56926
56927 Hi,
56928
56929 The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
56930 files that
56931 contain changes for multiple boards, the board-specific files follow as
56932 separate patches.
56933
56934 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56935
56936 commit 66a4344a4d910a11125df7768899ad529719855e
56937 Author: Michael Schwingen <michael@schwingen.org>
56938 Date: Wed Jan 16 19:53:23 2008 +0100
56939
56940 add AcTux-4 board support
56941
56942 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56943
56944 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
56945 Author: Michael Schwingen <michael@schwingen.org>
56946 Date: Wed Jan 16 19:51:55 2008 +0100
56947
56948 add AcTux-3 board support
56949
56950 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56951
56952 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
56953 Author: Michael Schwingen <michael@schwingen.org>
56954 Date: Wed Jan 16 19:51:14 2008 +0100
56955
56956 add AcTux-2 board support
56957
56958 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56959
56960 commit ea99e8f05b7240fd657739e286664664ae160abe
56961 Author: Michael Schwingen <michael@schwingen.org>
56962 Date: Wed Jan 16 19:50:37 2008 +0100
56963
56964 add AcTux-1 board support
56965
56966 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56967
56968 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
56969 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56970 Date: Mon Jan 14 19:20:08 2008 +0100
56971
56972 ARM: remove useless function board_post_init
56973
56974 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56975
56976 commit 96bd462942022e4569b582c072a0ed26de1cd19b
56977 Author: Michael Schwingen <michael@schwingen.org>
56978 Date: Thu Jan 10 14:59:46 2008 +0100
56979
56980 IXP: enable RTS
56981
56982 enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
56983 No handshaking is done, but the active RTS signal allows to
56984 connect to the target using a PC which is using RTS/CTS
56985 handshake, and does no harm if the PC is set to ignore RTS.
56986
56987 Signed-off-by: Michael Schwingen <michael@schwingen.org>
56988
56989 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
56990 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56991 Date: Mon Jan 7 08:41:34 2008 +0100
56992
56993 IXP: add dynamic microcode addr
56994
56995 allow to load the microde from flash or ram by download it through
56996 the serial or other.
56997
56998 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
56999 Acked-by: Stefan Roese <sr@denx.de>
57000
57001 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
57002 Author: Michael Schwingen <michael@schwingen.org>
57003 Date: Sat Nov 10 15:44:12 2007 +0100
57004
57005 load ixp42x NPE firmware from separate flash block, remove dead code
57006
57007 Hi,
57008
57009 the following patch adds support to move the IXP42X NPE firmware to a
57010 separate flash block, whose start address is defined in
57011 CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
57012 NPE-enabled u-boot without copyright problems due to the NPE firmware.
57013
57014 I hope the patch applies, I get whitespace-related differences in the NPE
57015 files due to trailing whitespace in the original versions.
57016
57017 Signed-off-by: Michael Schwingen <michael@schwingen.org>
57018 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57019
57020 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
57021 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57022 Date: Tue Jan 15 14:15:46 2008 -0600
57023
57024 ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
57025
57026 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57027 Signed-off by: John Rigby <jrigby@freescale.com>
57028
57029 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
57030 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57031 Date: Tue Jan 15 14:02:49 2008 -0600
57032
57033 ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
57034
57035 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57036 Signed-off by: John Rigby <jrigby@freescale.com>
57037
57038 commit 777d1abd9796f1c2e148417cc10657e847d318ce
57039 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57040 Date: Tue Jan 15 14:00:25 2008 -0600
57041
57042 ColdFire: Add MCF547x_8x FEC driver
57043
57044 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57045 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57046 Signed-off by: John Rigby <jrigby@freescale.com>
57047
57048 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
57049 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57050 Date: Tue Jan 15 13:54:09 2008 -0600
57051
57052 ColdFire: Add MCF547x_8x dma code and header files
57053
57054 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57055 Signed-off by: John Rigby <jrigby@freescale.com>
57056
57057 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
57058 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57059 Date: Tue Jan 15 13:52:03 2008 -0600
57060
57061 ColdFire: Add MCF547x_8x dma code - 2
57062
57063 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57064 Signed-off by: John Rigby <jrigby@freescale.com>
57065
57066 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
57067 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57068 Date: Tue Jan 15 13:48:52 2008 -0600
57069
57070 ColdFire: Add MCF547x_8x dma code - 1
57071
57072 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57073 Signed-off by: John Rigby <jrigby@freescale.com>
57074
57075 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
57076 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57077 Date: Tue Jan 15 13:39:44 2008 -0600
57078
57079 ColdFire: Add MCF547x_8x related header files
57080
57081 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57082 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57083 Signed-off by: John Rigby <jrigby@freescale.com>
57084
57085 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
57086 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57087 Date: Tue Jan 15 13:37:34 2008 -0600
57088
57089 ColdFire: Add MCF547x_8x cpu arch
57090
57091 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57092 Signed-off by: John Rigby <jrigby@freescale.com>
57093
57094 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
57095 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57096 Date: Mon Jan 14 17:47:23 2008 -0600
57097
57098 ColdFire: Add MCF5227x cpu and M52277EVB support-3
57099
57100 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57101 Signed-off by: John Rigby <jrigby@freescale.com>
57102
57103 commit c87581027994c148131b2f11aa75501f782ec19a
57104 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57105 Date: Mon Jan 14 17:46:19 2008 -0600
57106
57107 ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
57108
57109 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57110 Signed-off by: John Rigby <jrigby@freescale.com>
57111
57112 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
57113 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57114 Date: Mon Jan 14 17:43:33 2008 -0600
57115
57116 ColdFire: Add MCF5227x cpu and M52277EVB support-1
57117
57118 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57119 Signed-off by: John Rigby <jrigby@freescale.com>
57120
57121 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
57122 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57123 Date: Mon Jan 14 17:35:44 2008 -0600
57124
57125 ColdFire: Fix CFI Flash low level Read/Write macro
57126
57127 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57128 Signed-off by: John Rigby <jrigby@freescale.com>
57129
57130 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
57131 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57132 Date: Mon Jan 14 17:23:08 2008 -0600
57133
57134 ColdFire: Add M5373EVB platform support - 2
57135
57136 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57137 Signed-off by: John Rigby <jrigby@freescale.com>
57138
57139 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
57140 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57141 Date: Mon Jan 14 17:19:54 2008 -0600
57142
57143 ColdFire: Add M5373EVB platform support - 1
57144
57145 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57146 Signed-off by: John Rigby <jrigby@freescale.com>
57147
57148 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
57149 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57150 Date: Mon Jan 14 17:17:03 2008 -0600
57151
57152 ColdFire: Update FlexBus CS for MCF532x
57153
57154 Definition update and change from 16bit to 32bit
57155
57156 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57157 Signed-off by: John Rigby <jrigby@freescale.com>
57158
57159 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
57160 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57161 Date: Mon Jan 14 17:11:47 2008 -0600
57162
57163 ColdFire: PCI and misc updates for MCF5445x
57164
57165 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57166 Signed-off by: John Rigby <jrigby@freescale.com>
57167
57168 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
57169 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57170 Date: Mon Jan 14 17:06:55 2008 -0600
57171
57172 ColdFire: MCF5445x header files cleanup
57173
57174 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57175 Signed-off by: John Rigby <jrigby@freescale.com>
57176
57177 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
57178 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57179 Date: Mon Jan 14 16:59:42 2008 -0600
57180
57181 ColdFire: MCF532x header files cleanup
57182
57183 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57184 Signed-off by: John Rigby <jrigby@freescale.com>
57185
57186 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
57187 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
57188 Date: Mon Jan 14 15:30:15 2008 -0600
57189
57190 ColdFire: Add modules header files
57191
57192 Add CF specific modules header files
57193
57194 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
57195 Signed-off-by: John Rigby <jrigby@freescale.com>
57196
57197 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
57198 Author: Kim Phillips <kim.phillips@freescale.com>
57199 Date: Thu Jan 17 12:48:00 2008 -0600
57200
57201 codingstyle cleanup for spi driver
57202
57203 ..and rm unused CONFIG_FSL_SPI define
57204
57205 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57206
57207 commit d59feffb42c9f174116db7a82a311df98983dfce
57208 Author: Haiying Wang <Haiying.Wang@freescale.com>
57209 Date: Wed Jan 16 17:12:12 2008 -0500
57210
57211 FSL: Fix common EEPROM_data structure definition
57212
57213 - Fix EEPROM_data structure definition according to System EEPROM Data Format.
57214 - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
57215 bd->bi_ethaddr.
57216
57217 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
57218
57219 commit 6bee764bd6da510a4aad614880300c968bc7318d
57220 Author: Timur Tabi <timur@freescale.com>
57221 Date: Wed Jan 16 15:48:12 2008 -0600
57222
57223 86xx: enable command-line editing
57224
57225 Enable command-line editing for all MPC86xx boards.
57226
57227 Signed-off-by: Timur Tabi <timur@freescale.com>
57228
57229 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
57230 Author: Ben Warren <biggerbadderben@gmail.com>
57231 Date: Wed Jan 16 22:37:42 2008 -0500
57232
57233 Implement hard SPI driver on MPC8349EMDS
57234
57235 This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
57236 This board has an ST M25P40 4Mbit EEPROM on its SPI bus
57237
57238 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57239 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57240
57241 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
57242 Author: Ben Warren <biggerbadderben@gmail.com>
57243 Date: Wed Jan 16 22:37:35 2008 -0500
57244
57245 Add support for a Freescale non-CPM SPI controller
57246
57247 This patch adds support for the SPI controller found on Freescale PowerPC
57248 processors such as the MCP834x family. Additionally, a new config option,
57249 CONFIG_HARD_SPI, is added for general purpose SPI controller use.
57250
57251 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57252 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57253
57254 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
57255 Author: Dave Liu <r63238@freescale.com>
57256 Date: Thu Jan 17 18:23:19 2008 +0800
57257
57258 mpc83xx: Fix the fatal conflict of merge
57259
57260 The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
57261 will cause the mpc8315erdb board can't boot up.
57262
57263 The patch fix that bug, and remove the duplicated #ifdef
57264 CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
57265 MPC8313E processor.
57266
57267 Signed-off-by: Dave Liu <daveliu@freescale.com>
57268 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57269
57270 commit 3259eeaa4148125a81417477f62c05bd67f60587
57271 Author: Larry Johnson <lrj@acm.org>
57272 Date: Thu Jan 17 08:50:09 2008 -0500
57273
57274 Merge Sequoia beautification into Korat code
57275
57276 Signed-off-by: Larry Johnson <lrj@acm.org>
57277
57278 commit e16925773211291b562e77187061e9dd1d757217
57279 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57280 Date: Thu Jan 17 07:45:05 2008 +0100
57281
57282 net: add 'ethrotate' environment variable
57283
57284 [PATCH] net: add 'ethrotate' environment variable
57285
57286 This patch replaces the buildtime configuration option
57287 CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
57288 configuration veriable. See README.
57289
57290 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57291 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57292
57293 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
57294 Author: Stefan Roese <sr@denx.de>
57295 Date: Thu Jan 17 14:29:04 2008 +0100
57296
57297 ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
57298
57299 Signed-off-by: Stefan Roese <sr@denx.de>
57300
57301 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
57302 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57303 Date: Thu Jan 17 18:07:32 2008 +0900
57304
57305 sh: Remove CONFIG_COMMANDS from MS7720SE config file
57306
57307 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57308
57309 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
57310 Author: Niklaus Giger <niklaus.giger@netstal.com>
57311 Date: Wed Jan 16 18:39:20 2008 +0100
57312
57313 ppc4xx: Netstal HCU4 board: added various fixes and POST
57314
57315 - Moved some common code to netstal/common/nm_bsp.c.
57316 - sdram initialisation goes go netstal/common/fixed_sdram.c.
57317 - Added support for POST.
57318 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
57319
57320 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57321
57322 commit 69b0634a4ee98c9791815600d43b99f626a952f3
57323 Author: Niklaus Giger <niklaus.giger@netstal.com>
57324 Date: Thu Jan 17 12:53:56 2008 +0100
57325
57326 ppc4xx: netstal/common define routines used by all boards
57327
57328 Added some routines used by all Netstal boards:
57329 - nm_bsp.c: - nm_show_print and
57330 - common_misc_init_r
57331 - set_params_for_sw_install. Very specific code to handle our SW
57332 installation procedure
57333 - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
57334 to handle sdram initialization.
57335 - nm.h: Common header
57336
57337 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57338
57339 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
57340 Author: Niklaus Giger <niklaus.giger@netstal.com>
57341 Date: Wed Jan 16 18:39:18 2008 +0100
57342
57343 ppc4xx: Netstal HCU5 board: added various fixes and POST
57344
57345 - Moved some common code to nestal/common/nm_bsp.c.
57346 - Added support for the vxWorks EDR.
57347 - Enable trace for Lauterbach, if present.
57348 - Added support for POST.
57349 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
57350
57351 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57352
57353 commit 4371090e5da77edc7bf9f296364db4801639d9c4
57354 Author: Niklaus Giger <niklaus.giger@netstal.com>
57355 Date: Wed Jan 16 18:39:08 2008 +0100
57356
57357 ppc4xx: Netstal HCU5 board. Added POST. Various fixes
57358
57359 - Various fixes
57360 - Reduced rom_size from 384 to 320 kB
57361 - Environment is now in flash
57362 - Added POST
57363 - Support for OF
57364
57365 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57366
57367 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
57368 Author: Niklaus Giger <niklaus.giger@netstal.com>
57369 Date: Wed Jan 16 18:37:50 2008 +0100
57370
57371 ppc4xx: Netstal HCU4 board. Added POST. Various fixes
57372
57373 - Various fixes
57374 - Reduced rom_size from 384 to 320 kB
57375 - Environment is now in flash
57376 - Added POST
57377 - Support for OF
57378
57379 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
57380
57381 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
57382 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57383 Date: Thu Jan 17 10:53:08 2008 +0100
57384
57385 ppc4xx: Complete DU440 board support
57386
57387 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57388
57389 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
57390 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57391 Date: Thu Jan 17 10:52:30 2008 +0100
57392
57393 ppc4xx: Add DU440 board support
57394
57395 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
57396
57397 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
57398 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57399 Date: Thu Jan 17 15:53:52 2008 +0900
57400
57401 sh: Update SuperH SCIF driver
57402
57403 This patch fixed wrong SH7720 CPU macro and changed macro that
57404 calculated value of SCBRR register.
57405
57406 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57407
57408 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
57409 Author: Grzegorz Bernacki <gjb@semihalf.com>
57410 Date: Wed Jan 16 15:12:47 2008 +0100
57411
57412 Set ips dividor to 1/4 of csb clock.
57413
57414 Previous setting cause ips clock to be out of spec. This bug was found by John
57415 Rigby from Freescale.
57416
57417 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
57418
57419 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
57420 Author: Kumar Gala <galak@kernel.crashing.org>
57421 Date: Thu Jan 17 02:19:18 2008 -0600
57422
57423 85xx: Get ride of old TLB setup code
57424
57425 Now that all boards have been converted, remove old config code and the
57426 config option for the new style.
57427
57428 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57429
57430 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
57431 Author: Kumar Gala <galak@kernel.crashing.org>
57432 Date: Thu Jan 17 02:02:10 2008 -0600
57433
57434 85xx: Convert TQM85xx to new TLB setup
57435
57436 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57437
57438 commit 74121b470c14f7eaf284ee838bffca6f9521069e
57439 Author: Kumar Gala <galak@kernel.crashing.org>
57440 Date: Thu Jan 17 01:56:32 2008 -0600
57441
57442 85xx: Convert STXGP3 & STXSSA to new TLB setup
57443
57444 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57445
57446 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
57447 Author: Kumar Gala <galak@kernel.crashing.org>
57448 Date: Thu Jan 17 01:44:34 2008 -0600
57449
57450 85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
57451
57452 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57453
57454 commit 818218bac6a11591e2542c344d2330e0f4e1968b
57455 Author: Kumar Gala <galak@kernel.crashing.org>
57456 Date: Thu Jan 17 01:31:34 2008 -0600
57457
57458 85xx: Convert PM854/PM856 to new TLB setup
57459
57460 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57461
57462 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
57463 Author: Kumar Gala <galak@kernel.crashing.org>
57464 Date: Thu Jan 17 01:25:33 2008 -0600
57465
57466 85xx: Convert MPC8540EVAL to new TLB setup
57467
57468 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57469
57470 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
57471 Author: Kumar Gala <galak@kernel.crashing.org>
57472 Date: Thu Jan 17 01:12:22 2008 -0600
57473
57474 85xx: Convert MPC8568 MDS to new TLB setup
57475
57476 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57477
57478 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
57479 Author: Kumar Gala <galak@kernel.crashing.org>
57480 Date: Thu Jan 17 01:01:09 2008 -0600
57481
57482 85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
57483
57484 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57485
57486 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
57487 Author: Kumar Gala <galak@kernel.crashing.org>
57488 Date: Thu Jan 17 00:52:29 2008 -0600
57489
57490 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
57491
57492 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57493
57494 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
57495 Author: Kumar Gala <galak@kernel.crashing.org>
57496 Date: Thu Jan 17 00:32:17 2008 -0600
57497
57498 85xx: Convert ATUM8548 to new TLB setup
57499
57500 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57501
57502 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
57503 Author: Kumar Gala <galak@kernel.crashing.org>
57504 Date: Wed Jan 16 23:11:57 2008 -0600
57505
57506 85xx: Convert MPC8544 DS to new TLB setup
57507
57508 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57509
57510 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
57511 Author: Kumar Gala <galak@kernel.crashing.org>
57512 Date: Wed Jan 16 22:38:34 2008 -0600
57513
57514 85xx: Reworked initial processor init
57515
57516 Reworked the initial processor initialzation sequence:
57517 * introduced cpu_early_init_f that is run in address space 1 (AS=1)
57518 * Moved TLB/LAW and CCSR init into cpu_early_init_f()
57519 * Reworked initial asm code to do most of the core init before TLBs
57520
57521 The main reasons for these changes are to allow handling of 36-bit phys
57522 addresses in the future and some of the issues that will exist when we
57523 do that.
57524
57525 There are a few caveats on what can be initialized via the LAW and TLB
57526 static tables:
57527 * TLB entry 14/15 can't be initialized via the TLB table
57528 * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
57529 the code that is currently executing.
57530
57531 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57532
57533 commit 44a23cfd6360a68eaa41f945190618a55519eac3
57534 Author: Kumar Gala <galak@kernel.crashing.org>
57535 Date: Wed Jan 16 22:33:22 2008 -0600
57536
57537 85xx: Introduce new tlb API
57538
57539 Add a set of functions to manipulate TLB entries:
57540 * set_tlb() - write a tlb entry
57541 * invalidate_tlb() - invalidate a tlb array
57542 * disable_tlb() - disable a variable size tlb entry
57543 * init_tlbs() - setup initial tlbs based on static table
57544
57545 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57546
57547 commit be88b1699863c262818f3af7f60173b4d48df8fc
57548 Author: Stefan Roese <sr@denx.de>
57549 Date: Thu Jan 17 07:50:17 2008 +0100
57550
57551 ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
57552
57553 Signed-off-by: Stefan Roese <sr@denx.de>
57554
57555 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
57556 Author: Kumar Gala <galak@kernel.crashing.org>
57557 Date: Wed Jan 16 10:04:42 2008 -0600
57558
57559 85xx: Use proper defines for PCI addresses
57560
57561 We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
57562 While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
57563 be used for configuring the PCI ATMU.
57564
57565 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57566
57567 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
57568 Author: Kumar Gala <galak@kernel.crashing.org>
57569 Date: Wed Jan 16 09:22:29 2008 -0600
57570
57571 85xx: Remove old style of LAW init
57572
57573 All boards are now using the new fsl_law code so we can drop the old version.
57574
57575 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57576
57577 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
57578 Author: Kumar Gala <galak@kernel.crashing.org>
57579 Date: Wed Jan 16 09:15:29 2008 -0600
57580
57581 85xx: convert remaining 85xx boards over to use new LAW init code
57582
57583 Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
57584 to use new LAW init code.
57585
57586 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57587
57588 commit 572b13afc42710f2957c382a710360429c0e099b
57589 Author: Kumar Gala <galak@kernel.crashing.org>
57590 Date: Wed Jan 16 09:11:53 2008 -0600
57591
57592 85xx: convert STXGP3/STXSSA over to use new LAW init code
57593
57594 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57595
57596 commit 45f2166ac0233a9263058378f39612bd11f61196
57597 Author: Kumar Gala <galak@kernel.crashing.org>
57598 Date: Wed Jan 16 09:06:48 2008 -0600
57599
57600 85xx: convert PM854/PM856 over to use new LAW init code
57601
57602 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57603
57604 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
57605 Author: Kumar Gala <galak@kernel.crashing.org>
57606 Date: Wed Jan 16 09:05:27 2008 -0600
57607
57608 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
57609
57610 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57611
57612 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
57613 Author: Kumar Gala <galak@kernel.crashing.org>
57614 Date: Wed Jan 16 01:45:10 2008 -0600
57615
57616 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
57617
57618 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57619
57620 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
57621 Author: Kumar Gala <galak@kernel.crashing.org>
57622 Date: Wed Jan 16 01:32:06 2008 -0600
57623
57624 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
57625
57626 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57627
57628 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
57629 Author: Kumar Gala <galak@kernel.crashing.org>
57630 Date: Wed Jan 16 01:16:16 2008 -0600
57631
57632 85xx: convert MPC8544 DS over to use new LAW init code
57633
57634 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57635
57636 commit 83d40dfd79fe868796275802f60116d84b9e4395
57637 Author: Kumar Gala <galak@kernel.crashing.org>
57638 Date: Wed Jan 16 01:13:58 2008 -0600
57639
57640 85xx: Move LAW init code into C
57641
57642 Move the initialization of the LAWs into C code and provide an API
57643 to allow modification of LAWs after init.
57644
57645 Board code is responsible to provide a law_table and num_law_entries.
57646
57647 We should be able to use the same code on 86xx as well.
57648
57649 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57650
57651 commit bed8ce838a609aaab136d43b25e6df2a520bc854
57652 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57653 Date: Sat Dec 22 15:03:12 2007 +0100
57654
57655 qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
57656
57657 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57658
57659 commit 0764c164fed6277d359cf132d55187ea34290114
57660 Author: Vlad Lungu <vlad@comsys.ro>
57661 Date: Wed Jan 16 19:27:51 2008 +0200
57662
57663 MIPS:Target support for qemu -M mips
57664
57665 With serial, NE2000, IDE support. Tested in big-endian mode.
57666 Memory size hard-coded to 128M for now, so don't play with
57667 the -m option.
57668
57669 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
57670
57671 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
57672 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57673 Date: Fri Jan 11 00:01:37 2008 +0100
57674
57675 Fix nfs command help to reflect that the serverip is optional
57676
57677 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57678 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57679
57680 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
57681 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57682 Date: Mon Dec 10 22:32:14 2007 +0100
57683
57684 bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
57685
57686 and move is_valid_ether_addr board file
57687
57688 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
57689 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57690
57691 commit c2f896b8fc4722e36915903e1942e138e68ce804
57692 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57693 Date: Wed Jan 16 16:13:31 2008 +0900
57694
57695 drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
57696
57697 rx_status on the memory is basically in LE, but needs to be handled in CPU
57698 endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
57699 it'll work fine.
57700
57701 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57702 Cc: Masami Komiya <mkomiya@sonare.it>
57703 Cc: Lucas Jin <lucasjin@gmail.com>
57704 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57705
57706 commit 96a236746fe6a7b84802afb4ed31536696d34812
57707 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57708 Date: Wed Jan 16 16:12:26 2008 +0900
57709
57710 drivers/net/rtl8139.c: Fix cache coherency issues
57711
57712 Current driver is meant for cache coherent systems. This patch adds
57713 flush_cache() routines to support cache non-coherent systems.
57714
57715 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57716 Cc: Masami Komiya <mkomiya@sonare.it>
57717 Cc: Lucas Jin <lucasjin@gmail.com>
57718 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57719
57720 commit d1276c76c1e2b5035296689280ba1acb2c425104
57721 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57722 Date: Wed Jan 16 16:11:14 2008 +0900
57723
57724 drivers/net/rtl8139.c: Fix tx timeout
57725
57726 "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
57727 does, the condition "(currticks() < to)" becomes invalid and immediately
57728 leads to tx timeout error. This patch introduces the fine-graded udely(10)
57729 loops to ease the impact of wrapping around.
57730
57731 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
57732 Cc: Masami Komiya <mkomiya@sonare.it>
57733 Cc: Lucas Jin <lucasjin@gmail.com>
57734 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57735
57736 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
57737 Author: Dave Liu <r63238@freescale.com>
57738 Date: Fri Jan 11 18:45:28 2008 +0800
57739
57740 TSEC: Add the support for RealTek RTL8211B PHY
57741
57742 Add the support of RealTek RTL8211B PHY, the RTL8211B
57743 PHY only supports RGMII and MII mode.
57744
57745 Signed-off-by: Dave Liu <daveliu@freescale.com>
57746 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57747
57748 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
57749 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57750 Date: Wed Jan 16 09:40:41 2008 +0100
57751
57752 Remove annoying debug printout for PHY less boards.
57753
57754 PHY less board prints out lots of "read wrong ...":
57755 read wrong value : mii_id 3,mii_reg 2, base e0102320
57756 read wrong value : mii_id 3,mii_reg 3, base e0102320
57757 UEC: PHY is Generic MII (ffffffff)
57758 read wrong value : mii_id 3,mii_reg 4, base e0102320
57759 read wrong value : mii_id 3,mii_reg 0, base e0102320
57760 read wrong value : mii_id 3,mii_reg 1, base e0102320
57761 read wrong value : mii_id 3,mii_reg 1, base e0102320
57762 read wrong value : mii_id 3,mii_reg 5, base e0102320
57763 read wrong value : mii_id 3,mii_reg 1, base e0102320
57764 read wrong value : mii_id 3,mii_reg 1, base e0102320
57765 read wrong value : mii_id 3,mii_reg 5, base e0102320
57766 FSL UEC0: Full Duplex
57767 FSL UEC0: Speed 100BT
57768 FSL UEC0: Link is up
57769 Using FSL UEC0 device
57770
57771 Make this printout depend on UEC_VERBOSE_DEBUG and
57772 remove its definition in uec_phy.c
57773
57774 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57775 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57776
57777 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
57778 Author: Kim Phillips <kim.phillips@freescale.com>
57779 Date: Tue Jan 15 14:11:00 2008 -0600
57780
57781 net: reduce boot latency on QE UEC based boards
57782
57783 actually polling for PHY autonegotiation to finish enables us to remove the
57784 5 second boot prompt latency present on QE based boards.
57785
57786 call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
57787 uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
57788 code shamelessly stolen from tsec driver.
57789
57790 also rm unused CONFIG_RMII_MODE code.
57791
57792 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57793 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
57794 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57795
57796 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
57797 Author: michael.firth@bt.com <michael.firth@bt.com>
57798 Date: Wed Jan 16 11:40:51 2008 +0000
57799
57800 TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
57801
57802 The current TSEC driver limits MDIO access to the devices that have been configured as attached
57803 to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
57804
57805 Signed-off-by: Michael Firth <michael.firth@bt.com>
57806 Acked-by: Andy Fleming <afleming@freescale.com>
57807 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
57808
57809 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
57810 Author: Kim Phillips <kim.phillips@freescale.com>
57811 Date: Wed Jan 16 00:38:05 2008 -0600
57812
57813 Add support for the MPC837xERDB
57814
57815 MPC837xERDB board support includes:
57816 * DDR2 330MHz hardcoded (soldered on the board)
57817 * Local Bus NOR Flash
57818 * I2C, UART and RTC
57819 * eTSEC RGMII (TSEC0 - RTL8211B with MII;
57820 * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
57821 * load)
57822
57823 Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
57824 Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
57825 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57826
57827 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
57828 Author: Kim Phillips <kim.phillips@freescale.com>
57829 Date: Wed Jan 16 12:06:16 2008 -0600
57830
57831 mpc83xx: add support for more system clock performance controls
57832
57833 System registers that are modified are the Arbiter Configuration
57834 Register (ACR), the System Priority Control Register (SPCR), and the
57835 System Clock Configuration Register (SCCR).
57836
57837 Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
57838 Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
57839 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57840
57841 commit 16c3cde050e2d243e62b37486f1558570787beb8
57842 Author: James Yang <james.yang@freescale.com>
57843 Date: Wed Jan 16 11:58:08 2008 -0600
57844
57845 FSL: Generalize PIXIS reset command parsing.
57846
57847 Before, the order of arguments to the pixis_reset
57848 command needed to be supplied in a hard-coded order.
57849 Generalize the command parsing to allow any order.
57850
57851 Signed-off-by: James Yang <james.yang@freescale.com>
57852 Acked-by: Jon Loeliger <jdl@freescale.com>
57853
57854 commit ad8f8687b78c3e917b173f038926695383c55555
57855 Author: Jon Loeliger <jdl@freescale.com>
57856 Date: Tue Jan 15 13:42:41 2008 -0600
57857
57858 FSL: Convert board/freescale/common/Makefile to use CONFIG_
57859
57860 Convert the board/freescale/common/Makefile to use
57861 CONFIG_* options to select which files to conditionally
57862 compile into the board/freescale/common library rather
57863 than conditionally compiling entire files.
57864
57865 Now handles::
57866 CONFIG_FSL_PIXIS
57867 CONFIG_FSL_DIU_FB
57868 CONFIG_PQ_MDS_PIB
57869
57870 CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
57871
57872 Signed-off-by: Jon Loeliger <jdl@freescale.com>
57873
57874 commit 7c2221eb230372a9e537c4f6636b147b0909325f
57875 Author: Roy Zang <tie-fei.zang@freescale.com>
57876 Date: Tue Jan 15 16:38:38 2008 +0800
57877
57878 Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
57879
57880 Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
57881 Remove unused ethernet CONFIG_ options.
57882
57883 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
57884 Acked-by: Jon Loeliger <jdl@freescale.com>
57885
57886 commit 711a7946277d2e29af481011e8635e9975c54e45
57887 Author: Kim Phillips <kim.phillips@freescale.com>
57888 Date: Tue Jan 15 14:05:14 2008 -0600
57889
57890 mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
57891
57892 continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
57893
57894 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57895
57896 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
57897 Author: Kim Phillips <kim.phillips@freescale.com>
57898 Date: Tue Jan 15 09:51:12 2008 -0600
57899
57900 mpc83xx: clean up mpc8360emds.c warnings
57901
57902 mpc8360emds.c: In function 'ft_board_setup':
57903 mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
57904 mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
57905 mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
57906 mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
57907 mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
57908 mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
57909
57910 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57911
57912 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
57913 Author: Kim Phillips <kim.phillips@freescale.com>
57914 Date: Mon Jan 14 16:14:46 2008 -0600
57915
57916 mpc83xx: fix phy-connection-type fixup code
57917
57918 use tree passed to us in local blob, not global fdt.
57919
57920 Also use fdt_path_offset to convert to relative offset, since absolute
57921 reference is needed to check for rgmii-id mode string value.
57922
57923 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57924
57925 commit 2b4c952be7c4357a13e839d48df80853820c33eb
57926 Author: Kumar Gala <galak@kernel.crashing.org>
57927 Date: Mon Jan 14 09:01:40 2008 -0600
57928
57929 mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
57930
57931 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
57932 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57933
57934 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
57935 Author: Poonam Aggrwal <b10812@freescale.com>
57936 Date: Mon Jan 14 09:41:14 2008 +0530
57937
57938 Changes in uboot DDR configuration for MPC8313eRDB
57939
57940 These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
57941 DDR configuration in u-boot code. Some are related to performance, some
57942 affect stability and some correct few basic errors in the current
57943 configuration.
57944
57945 The changes have been tested and found to give better memory latency
57946 figures on MPC8313eRDB.LMBench figures prove it.
57947
57948 The changes are:
57949
57950 - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
57951 (this may improve performance for application with many read
57952 or write to open pages).
57953 - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
57954 001 (activating all the CS when only one is used may cause
57955 unwanted noise on the system)
57956
57957 - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
57958 Tras=45ns)
57959 - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
57960
57961 - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
57962 comply with the 3 ODT clk requirements)
57963 - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
57964 - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
57965
57966 - DDR_SDRAM_MODE[AL]changed from 0 to 1.
57967 - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
57968
57969 - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
57970 - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
57971
57972 The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
57973 The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
57974
57975 Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
57976 Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
57977 Cc: Razzaz Mazyar <MRazzaz@freescale.com>
57978 Cc: Josep P J <PJ.Joseph@freescale.com>
57979 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57980
57981 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
57982 Author: Jerry Van Baren <gvb.uboot@gmail.com>
57983 Date: Sat Jan 12 13:24:14 2008 -0500
57984
57985 Enable the isdram command on the MPC8360EMDS board
57986
57987 The isdram command prints out decoded information the "serial presence
57988 detect" (SPD) chip on the SDRAM SIMMs. This can be very helpful when
57989 debugging memory configuration problems.
57990
57991 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
57992 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
57993
57994 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
57995 Author: Dave Liu <r63238@freescale.com>
57996 Date: Fri Jan 11 18:48:24 2008 +0800
57997
57998 mpc83xx: Add the support for MPC8315ERDB board
57999
58000 The features list:
58001 - Boot from NOR Flash
58002 - DDR2 266MHz hardcoded configuration
58003 - Local bus NOR Flash R/W operation
58004 - I2C, UART, MII and RTC
58005 - eTSEC0/1 support
58006 - PCI host
58007
58008 Signed-off-by: Dave Liu <daveliu@freescale.com>
58009 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58010
58011 commit b05884efa614e4d8a9413158fc228e0dc02ab704
58012 Author: Dave Liu <r63238@freescale.com>
58013 Date: Fri Jan 11 18:46:50 2008 +0800
58014
58015 mpc83xx: Add config of eTSEC emergency priority in SPCR
58016
58017 The TSEC emergency priority definition of 831x/837x
58018 is different than the definition of 834x in SPCR register.
58019
58020 Add the other config of TSEC emergency priority into
58021 cpu_init.c
58022
58023 Signed-off-by: Dave Liu <daveliu@freescale.com>
58024 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58025
58026 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
58027 Author: Dave Liu <r63238@freescale.com>
58028 Date: Fri Jan 11 18:42:19 2008 +0800
58029
58030 mpc83xx: Remove cache config from MPC8360ERDK.h
58031
58032 The MPC8360ERDK board support patch is added before
58033 the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
58034 so, miss clean up it.
58035
58036 The patch clean up the miss cache config.
58037
58038 Signed-off-by: Dave Liu <daveliu@freescale.com>
58039 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58040
58041 commit cd9d23053d435c08fc8695017b5cb9003fcda786
58042 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58043 Date: Mon Jan 14 23:09:32 2008 +0300
58044
58045 nand: FSL UPM NAND driver
58046
58047 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58048
58049 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
58050 Author: Kyungmin Park <kmpark@infradead.org>
58051 Date: Tue Jan 15 08:59:44 2008 +0900
58052
58053 OneNAND: Separate U-Boot dependent code from OneNAND
58054
58055 OneNAND: Separate U-Boot dependent code from OneNAND
58056
58057 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
58058
58059 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
58060 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58061 Date: Wed Jan 16 10:33:46 2008 +0100
58062
58063 ppc4xx: Sequoia coding style cleanup and beautification
58064
58065 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58066
58067 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
58068 Author: Larry Johnson <lrj@acm.org>
58069 Date: Tue Jan 15 14:35:58 2008 -0500
58070
58071 ppc4xx: Refactor ECC POST for AMCC Denali core
58072
58073 The ECC POST reported intermittent failures running after power-up on
58074 the Korat PPC440EPx board. Even when the test passed, the debugging
58075 output occasionally reported additional unexpected ECC errors.
58076
58077 This refactoring has three main objectives: (1) minimize the code
58078 executed with ECC enabled during the tests, (2) add more checking of the
58079 results so any unexpected ECC errors would cause the test to fail, and
58080 (3) use synchronization (only) where required by the processor.
58081
58082 Signed-off-by: Larry Johnson <lrj@acm.org>
58083
58084 commit 2465665b73ac2f688af945b1ed510752afa816a4
58085 Author: David Saada <David.Saada@ecitele.com>
58086 Date: Tue Jan 15 10:40:24 2008 +0200
58087
58088 QE UEC: Extend number of supported UECs to 4
58089
58090 This patch extends the number of supported UECs to 4. Note that the
58091 problem of QE thread resources exhaustion is resolved by setting the
58092 correct number of QE threads according to Ethernet type (GBE or FE).
58093
58094 Signed-off-by: David Saada <david.saada@ecitele.com>
58095 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
58096
58097 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
58098 Author: Wolfgang Denk <wd@denx.de>
58099 Date: Wed Jan 16 00:01:01 2008 +0100
58100
58101 LWMON5: enable hush shell as command line parser
58102
58103 Signed-off-by: Wolfgang Denk <wd@denx.de>
58104
58105 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
58106 Author: Wolfgang Denk <wd@denx.de>
58107 Date: Tue Jan 15 17:22:28 2008 +0100
58108
58109 ADS5121: disable watchdog; enable image timestamps
58110
58111 Signed-off-by: Wolfgang Denk <wd@denx.de>
58112
58113 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
58114 Author: Wolfgang Denk <wd@denx.de>
58115 Date: Tue Jan 15 17:21:28 2008 +0100
58116
58117 TK885D: fixes for bigger flash sector sizes on new modules;
58118 adjust default environment;
58119 disable SCC ethernet (not used on this board).
58120
58121 Signed-off-by: Wolfgang Denk <wd@denx.de>
58122
58123 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
58124 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58125 Date: Tue Jan 15 17:48:13 2008 +0900
58126
58127 pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
58128
58129 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58130
58131 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
58132 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58133 Date: Tue Jan 15 23:25:25 2008 +0900
58134
58135 sh: Add support SH7710/SH7712
58136
58137 SH7710/SH7712 of SH3 CPU are supported.
58138 SH771X is called SH-Ether, and has the Ether controller in CPU.
58139 The driver of Ether is not included in this patch.
58140
58141 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58142
58143 commit 63a11be68306870e04d3851ed9fa41955cdf4894
58144 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58145 Date: Tue Jan 15 23:06:17 2008 +0900
58146
58147 sh: Add support of map_physmem() and unmap_physmem() to SuperH
58148
58149 This patch add the support of map_physmem() and unmap_physmem()
58150 used with Common Flash Interface(CFI) driver.
58151
58152 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58153
58154 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
58155 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58156 Date: Wed Jan 9 14:42:27 2008 +0900
58157
58158 sh: Add maintainer of MS7720SE to the MAINTAINER file
58159
58160 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58161
58162 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
58163 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58164 Date: Wed Jan 9 14:39:58 2008 +0900
58165
58166 sh: Fix board name in MS7720SE's config.mk
58167
58168 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58169
58170 commit c0a04d93734d768b39dbb72fb501b65614c8615d
58171 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58172 Date: Wed Jan 9 14:37:36 2008 +0900
58173
58174 sh: Add MS7720SE to MAKEALL
58175
58176 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58177
58178 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
58179 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58180 Date: Mon Dec 3 22:58:50 2007 +0900
58181
58182 sh: Add support for MS7720RP02 board
58183
58184 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58185 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58186 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58187
58188 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
58189 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58190 Date: Wed Jan 9 14:30:02 2008 +0900
58191
58192 sh: Add support for SH7720 in serial_sh driver.
58193
58194 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58195 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58196 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58197
58198 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
58199 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58200 Date: Mon Dec 3 22:58:45 2007 +0900
58201
58202 sh: Add support SH3 and SH7720
58203
58204 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
58205 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58206 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
58207
58208 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
58209 Author: Stefan Roese <sr@denx.de>
58210 Date: Tue Jan 15 10:11:02 2008 +0100
58211
58212 ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
58213
58214 Signed-off-by: Stefan Roese <sr@denx.de>
58215
58216 commit 17bef68097ab3692500a36fb31115bff7910aa99
58217 Author: Niklaus Giger <niklausgiger@gmx.ch>
58218 Date: Mon Jan 14 14:04:42 2008 +0100
58219
58220 ppc_4xx: Fix post spr.c for PPC405
58221
58222 post/cpu/ppc4xx/spr.c contained a few checks for registers only present
58223 for PPC440 and derivates processor.
58224
58225 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58226
58227 commit 06c428bcd4413014b43236e77765022071424fa6
58228 Author: Dave Liu <r63238@freescale.com>
58229 Date: Mon Jan 14 11:12:01 2008 +0800
58230
58231 QE: fix compile warning
58232
58233 qe.c: In function 'qe_upload_firmware':
58234 qe.c:390: warning: pointer targets in passing argument 2
58235 uec.c: In function 'uec_initialize':
58236 uec.c:1236: warning: 'uec_info' may be used uninitialized
58237
58238 Signed-off-by: Dave Liu <daveliu@freescale.com>
58239
58240 commit a0dd99d51efa55fe023e19c97ead92683725eb11
58241 Author: Stefan Roese <sr@denx.de>
58242 Date: Mon Jan 14 10:05:05 2008 +0100
58243
58244 ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
58245
58246 Now that bit 29 is the USB PHY reset bit, update the Kilauea port
58247 to remove the USB PHY reset after powerup. The CPLD will keep the
58248 USB PHY in reset (active low) until the bit is set to 1 in
58249 board_early_init_f().
58250
58251 Signed-off-by: Stefan Roese <sr@denx.de>
58252
58253 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
58254 Author: Wolfgang Denk <wd@denx.de>
58255 Date: Sun Jan 13 23:26:45 2008 +0100
58256
58257 ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
58258
58259 Signed-off-by: Wolfgang Denk <wd@denx.de>
58260
58261 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
58262 Author: Wolfgang Denk <wd@denx.de>
58263 Date: Sun Jan 13 23:37:50 2008 +0100
58264
58265 ADS5121: Fix typo in ads5121.c, adjust default environment
58266
58267 Signed-off-by: Wolfgang Denk <wd@denx.de>
58268
58269 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
58270 Author: John Rigby <jrigby@freescale.com>
58271 Date: Fri Aug 24 18:18:43 2007 -0600
58272
58273 ADS5121: MAX slew rate for PATA pins
58274
58275 Signed-off-by: John Rigby <jrigby@freescale.com>
58276
58277 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
58278 Author: Wolfgang Denk <wd@denx.de>
58279 Date: Sun Jan 13 21:05:52 2008 +0100
58280
58281 Fix Makefile dependency problem with parallel builds.
58282
58283 Signed-off-by: Wolfgang Denk <wd@denx.de>
58284
58285 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
58286 Author: Wolfgang Denk <wd@denx.de>
58287 Date: Sun Jan 13 19:51:39 2008 +0100
58288
58289 MPC8544DS: fix board Makefile for silent build (with -s)
58290
58291 Signed-off-by: Wolfgang Denk <wd@denx.de>
58292
58293 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
58294 Author: Wolfgang Denk <wd@denx.de>
58295 Date: Sun Jan 13 16:44:08 2008 +0100
58296
58297 PMC440 board: fix board Makefile for out-of-tree building
58298
58299 Signed-off-by: Wolfgang Denk <wd@denx.de>
58300
58301 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
58302 Author: Wolfgang Denk <wd@denx.de>
58303 Date: Sun Jan 13 16:07:44 2008 +0100
58304
58305 Makalu: fix compile warning
58306
58307 Signed-off-by: Wolfgang Denk <wd@denx.de>
58308
58309 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
58310 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58311 Date: Sun Jan 13 12:36:12 2008 +0100
58312
58313 cmd_nand : fix compiler warning.
58314
58315 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58316
58317 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
58318 Author: Michael Schwingen <rincewind@discworld.dascon.de>
58319 Date: Sat Jan 12 20:29:47 2008 +0100
58320
58321 CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
58322
58323 Signed-off-by: Michael Schwingen <michael@schwingen.org>
58324 Acked-by: Stefan Roese <sr@denx.de>
58325
58326 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
58327 Author: Wolfgang Denk <wd@denx.de>
58328 Date: Sun Jan 13 02:19:44 2008 +0100
58329
58330 MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
58331
58332 Signed-off-by: Wolfgang Denk <wd@denx.de>
58333
58334 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
58335 Author: Wolfgang Denk <wd@denx.de>
58336 Date: Sun Jan 13 02:19:13 2008 +0100
58337
58338 MPC8xx FEC driver: fix compiler warning.
58339
58340 Signed-off-by: Wolfgang Denk <wd@denx.de>
58341
58342 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
58343 Author: Wolfgang Denk <wd@denx.de>
58344 Date: Sun Jan 13 00:59:21 2008 +0100
58345
58346 Fix Makefile dependencies issues; allow silent build
58347
58348 - get rid of "version" target whichdidn't really work
58349 - make autoconf.mk depend on version_autogenerated.h to make sure
58350 to rebuild files as needed
58351 - add XECHO macro to allow for silent build using "make -s"
58352
58353 Signed-off-by: Wolfgang Denk <wd@denx.de>
58354
58355 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
58356 Author: Wolfgang Denk <wd@denx.de>
58357 Date: Sun Jan 13 00:55:47 2008 +0100
58358
58359 ADS5121e: fix compile warning
58360
58361 Signed-off-by: Wolfgang Denk <wd@denx.de>
58362
58363 commit f2b6f4610627fe3d607620e25082916a01538875
58364 Author: Wolfgang Denk <wd@denx.de>
58365 Date: Sun Jan 13 00:55:18 2008 +0100
58366
58367 MUNICes: fix board Makefile for remote build directory
58368
58369 Signed-off-by: Wolfgang Denk <wd@denx.de>
58370
58371 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
58372 Author: Oliver Weber <almoeli@gmx.de>
58373 Date: Wed Jan 9 17:04:38 2008 +0100
58374
58375 MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
58376
58377 Signed-off-by: Oliver Weber <almoeli@gmx.de>
58378
58379 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
58380 Author: Andreas Engel <andreas.engel@ericsson.com>
58381 Date: Wed Jan 9 17:10:56 2008 +0100
58382
58383 Make bootretry work when command line editing is enabled
58384
58385 Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
58386 This patch fixes the problem.
58387
58388 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
58389
58390 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
58391 Author: Larry Johnson <lrj@acm.org>
58392 Date: Fri Jan 11 23:26:18 2008 -0500
58393
58394 Refactor code for "i2c sdram" command
58395
58396 Signed-off-by: Larry Johnson <lrj@acm.org>
58397
58398 commit 0df6b8446c4721b91ce311548114891130371083
58399 Author: Larry Johnson <lrj@acm.org>
58400 Date: Thu Jan 10 22:23:39 2008 -0500
58401
58402 Fix "i2c sdram" command for DDR2 DIMMs
58403
58404 Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
58405 "i2c sdram" command. This patch provides correct alternative
58406 interpretations when DDR2 memory is detected.
58407
58408 Signed-off-by: Larry Johnson <lrj@acm.org>
58409
58410 commit 64134f011254123618798ff77c42ba196b2ec485
58411 Author: Wolfgang Denk <wd@denx.de>
58412 Date: Sat Jan 12 20:31:39 2008 +0100
58413
58414 Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
58415
58416 With recent toolchain versions, some boards would not build because
58417 or errors like this one (here for ocotea board when building with
58418 ELDK 4.2 beta):
58419 ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
58420
58421 For many boards, the .bss section is big enough that it wraps around
58422 at the end of the address space (0xFFFFFFFF), so the problem will not
58423 be visible unless you use a 64 bit tool chain for development. On
58424 some boards however, changes to the code size (due to different
58425 optimizations) we bail out with section overlaps like above.
58426
58427 The fix is to add the NOLOAD attribute to the .bss and .sbss
58428 sections, telling the linker that .bss does not consume any space in
58429 the image.
58430
58431 Signed-off-by: Wolfgang Denk <wd@denx.de>
58432
58433 commit 3afac79ec27b91df185f090b31dad9620779f440
58434 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
58435 Date: Fri Jan 11 20:42:58 2008 -0600
58436
58437 USB: Add Philips 1561 PCI-OHCI ids
58438 (needed for M5475EVB)
58439
58440 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
58441
58442 commit 5e8def6731cd7bec74bff42a16b139de04010353
58443 Author: Wolfgang Denk <wd@denx.de>
58444 Date: Sat Jan 12 15:51:34 2008 +0100
58445
58446 Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
58447 boards.
58448
58449 Signed-off-by: Heiko Schocher <hs@denx.de>
58450 Signed-off-by: Wolfgang Denk <wd@denx.de>
58451
58452 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
58453 Author: Grzegorz Bernacki <gjb@semihalf.com>
58454 Date: Fri Jan 11 12:03:43 2008 +0100
58455
58456 MPC512X: Cleanup bus clock names.
58457
58458 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58459
58460 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
58461 Author: Grzegorz Bernacki <gjb@semihalf.com>
58462 Date: Tue Jan 8 17:16:59 2008 +0100
58463
58464 MPC512X: Fixed typo in macro name.
58465
58466 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58467
58468 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
58469 Author: Grzegorz Bernacki <gjb@semihalf.com>
58470 Date: Tue Jan 8 17:16:15 2008 +0100
58471
58472 ads5121: Added support for FDT.
58473
58474 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
58475
58476 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
58477 Author: Wolfgang Denk <wd@denx.de>
58478 Date: Sat Jan 12 01:05:50 2008 +0100
58479
58480 Coding Style cleanup; update CHANGELOG.
58481
58482 Signed-off-by: Wolfgang Denk <wd@denx.de>
58483
58484 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
58485 Author: Heiko Schocher <hs@denx.de>
58486 Date: Fri Jan 11 15:15:17 2008 +0100
58487
58488 Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
58489
58490 Signed-off-by: Timur Tabi <timur@freescale.com>
58491 Signed-off-by: Heiko Schocher <hs@denx.de>
58492
58493 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
58494 Author: Heiko Schocher <hs@denx.de>
58495 Date: Fri Jan 11 15:15:16 2008 +0100
58496
58497 MUNICes: Set the right CFG_DEFAULT_MBAR value.
58498
58499 Signed-off-by: Heiko Schocher <hs@denx.de>
58500
58501 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
58502 Author: Heiko Schocher <hs@denx.de>
58503 Date: Fri Jan 11 15:15:15 2008 +0100
58504
58505 added the config File for the MUNICes board.
58506
58507 Signed-off-by: Heiko Schocher <hs@denx.de>
58508
58509 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
58510 Author: Heiko Schocher <hs@denx.de>
58511 Date: Fri Jan 11 15:15:14 2008 +0100
58512
58513 added basic support for the MUNICes board.
58514
58515 Signed-off-by: Heiko Schocher <hs@denx.de>
58516
58517 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
58518 Author: Wolfgang Denk <wd@denx.de>
58519 Date: Sat Jan 12 00:39:37 2008 +0100
58520
58521 Update CHANGELOG and MAINTAINERS files.
58522
58523 Signed-off-by: Wolfgang Denk <wd@denx.de>
58524
58525 commit 5ba7390c3cb579172be66888a371707b47b5be4e
58526 Author: Anatolij Gustschin <agust@denx.de>
58527 Date: Fri Jan 11 02:15:02 2008 +0100
58528
58529 Fix compilation problem in common/cmd_bmp.c
58530
58531 common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
58532 isn't defined. This patch fix this.
58533
58534 Signed-off-by: Anatolij Gustschin <agust@denx.de>
58535
58536 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
58537 Author: Heiko Schocher <hs@denx.de>
58538 Date: Fri Jan 11 01:12:09 2008 +0100
58539
58540 Fix defaultconfig for the mgcoge board.
58541
58542 Signed-off-by: Heiko Schocher <hs@denx.de>
58543
58544 commit ac9db066b26935f31bff15c98168b19faeb603f3
58545 Author: Heiko Schocher <hs@denx.de>
58546 Date: Fri Jan 11 01:12:08 2008 +0100
58547
58548 Added support for the mgcoge board from keymile.
58549
58550 Signed-off-by: Heiko Schocher <hs@denx.de>
58551
58552 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
58553 Author: Heiko Schocher <hs@denx.de>
58554 Date: Fri Jan 11 01:12:07 2008 +0100
58555
58556 Enable SMC microcode relocation patch for SMC1.
58557
58558 Signed-off-by: Heiko Schocher <hs@denx.de>
58559
58560 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
58561 Author: Heiko Schocher <hs@denx.de>
58562 Date: Fri Jan 11 01:12:06 2008 +0100
58563
58564 Added support for the mgsuvd board from keymile.
58565
58566 Signed-off-by: Heiko Schocher <hs@denx.de>
58567
58568 commit bf05293973b348f6946c9df92cd3c65ece42d0be
58569 Author: James Yang <james.yang@freescale.com>
58570 Date: Thu Jan 10 16:02:07 2008 -0600
58571
58572 Fix 64-bit vsprintf.
58573
58574 There were some size and unsigned problems.
58575 Also add support for "ll" size modifier in format string like glibc
58576
58577 Signed-off-by: James Yang <James.Yang@freescale.com>
58578 Acked-by: Jon Loeliger <jdl@freescale.com>
58579
58580 commit 92fa37eac530860643afa26ae347af3d23d67309
58581 Author: Larry Johnson <lrj@acm.org>
58582 Date: Wed Jan 9 12:42:35 2008 -0500
58583
58584 Remove superfluous preprocessor conditionals from LM73 driver
58585
58586 (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
58587
58588 (2) Use conditional Makefile.o.
58589
58590 Signed-off-by: Larry Johnson <lrj@acm.org>
58591
58592 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
58593 Author: Guennadi Liakhovetski <lg@denx.de>
58594 Date: Thu Jan 10 17:59:07 2008 +0100
58595
58596 Add support for the TK885D baseboard from TELE-DATA
58597
58598 The TK885D board uses a TQM885D module from TQ, this port adds an
58599 own configuration file and adds a last_stage_init() method to
58600 configure the two PHYs, depending on the phy_auto_nego environment
58601 variable.
58602
58603 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
58604
58605 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
58606 Author: Kumar Gala <galak@kernel.crashing.org>
58607 Date: Thu Jan 10 02:22:05 2008 -0600
58608
58609 Fix compiler warning
58610
58611 main.c: In function 'readline_into_buffer':
58612 main.c:927: warning: unused variable 'p_buf'
58613
58614 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58615
58616 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
58617 Author: Anatolij Gustschin <agust@denx.de>
58618 Date: Fri Jan 11 14:30:01 2008 +0100
58619
58620 Add Fujitsu CoralP/Lime video driver
58621
58622 Signed-off-by: Anatolij Gustschin <agust@denx.de>
58623 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
58624
58625 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
58626 Author: Anatolij Gustschin <agust@denx.de>
58627 Date: Fri Jan 11 02:39:47 2008 +0100
58628
58629 Fix video console newline and carriage return handling
58630
58631 Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
58632 are not displayed correctly. This is an attempt to fix
58633 this issue. Also add carriage return handling.
58634
58635 Signed-off-by: Anatolij Gustschin <agust@denx.de>
58636 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
58637
58638 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
58639 Author: Stefan Roese <sr@denx.de>
58640 Date: Fri Jan 11 15:53:58 2008 +0100
58641
58642 ppc4xx: Fix sdram init on Sequoia boards
58643
58644 Clear possible errors in MCSR resulting from data-eye-search.
58645 If not done, then we could get an interrupt later on when
58646 exceptions are enabled.
58647
58648 Signed-off-by: Stefan Roese <sr@denx.de>
58649
58650 commit d610a60730b7464f6f659db49d264d89a7c71061
58651 Author: Anatolij Gustschin <agust@denx.de>
58652 Date: Fri Jan 11 15:31:09 2008 +0100
58653
58654 ppc4xx: Rework Lime support for lwmon5
58655
58656 Rework Lime support for lwmon5 using new video driver
58657
58658 Signed-off-by: Anatolij Gustschin <agust@denx.de>
58659
58660 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
58661 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58662 Date: Fri Jan 11 14:55:16 2008 +0100
58663
58664 ppc4xx: Update PMC440 config file
58665
58666 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58667
58668 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
58669 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58670 Date: Fri Jan 11 14:55:08 2008 +0100
58671
58672 ppx4xx: Fix sdram init on PMC440 boards
58673
58674 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
58675
58676 commit 061aad4d320dddce26247699dcf2875ee2ea1366
58677 Author: Dave Liu <r63238@freescale.com>
58678 Date: Thu Jan 10 23:09:33 2008 +0800
58679
58680 mpc83xx: Fix the bug of 266MHz data rate DDR
58681
58682 The DDR doesn't work on the 266MHz data rate,
58683 the patch fix the bug.
58684
58685 Signed-off-by: Dave Liu <daveliu@freescale.com>
58686 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58687
58688 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
58689 Author: Dave Liu <r63238@freescale.com>
58690 Date: Thu Jan 10 23:08:26 2008 +0800
58691
58692 mpc83xx: Make the code more readable
58693
58694 Format the code, make it more readable
58695
58696 Signed-off-by: Dave Liu <daveliu@freescale.com>
58697 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58698
58699 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
58700 Author: Dave Liu <r63238@freescale.com>
58701 Date: Thu Jan 10 23:07:23 2008 +0800
58702
58703 mpc83xx: Reduce the latency of DDR
58704
58705 Reduce the AL from 2 to 1 clock to improve the performance.
58706
58707 Signed-off-by: Dave Liu <daveliu@freescale.com>
58708 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58709
58710 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
58711 Author: Dave Liu <r63238@freescale.com>
58712 Date: Thu Jan 10 23:06:05 2008 +0800
58713
58714 mpc83xx: Fix the wrong definition of MPC8315E
58715
58716 According to the latest user manual of MPC8315E,
58717 1) The SVCOD of HRCWL is different than 837x
58718 2) The SCCR has changes
58719
58720 Signed-off-by: Dave Liu <daveliu@freescale.com>
58721 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58722
58723 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
58724 Author: Dave Liu <r63238@freescale.com>
58725 Date: Thu Jan 10 23:05:00 2008 +0800
58726
58727 mpc83xx: Fix the typo in mpc83xx.h
58728
58729 The SPCR about TSEC priority is wrong.
58730
58731 Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
58732 Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
58733 Signed-off-by: Dave Liu <daveliu@freescale.com>
58734 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58735
58736 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
58737 Author: Dave Liu <r63238@freescale.com>
58738 Date: Thu Jan 10 23:04:13 2008 +0800
58739
58740 mpc83xx: Fix the typo in global data struct
58741
58742 Fix the typo in global_data.h
58743
58744 Signed-off-by: Dave Liu <daveliu@freescale.com>
58745 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58746
58747 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
58748 Author: Dave Liu <r63238@freescale.com>
58749 Date: Thu Jan 10 23:03:03 2008 +0800
58750
58751 mpc83xx: Remove cache config from config.h
58752
58753 clean up the cache config from configs.h of board
58754
58755 Signed-off-by: Dave Liu <daveliu@freescale.com>
58756 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58757
58758 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
58759 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58760 Date: Wed Jan 9 20:57:47 2008 +0300
58761
58762 mpc83xx: add support for the MPC8360E-RDK
58763
58764 This is MPC8360E based board with:
58765 - 256MB fixed SDRAM;
58766 - 8MB Intel Strata NOR flash;
58767 - StMICRO 64MiB NAND flash;
58768 - two 10/100/1000 ethernet ports connected via Broadcom
58769 BCM5481 PHYs;
58770 - two 10/100 ethernet ports connected via National
58771 DP83848 PHYs;
58772 - one PCI and one miniPCI slots;
58773 - four serial ports (two NS16550-compatible, two UCCs);
58774 - four USB ports working through MPC8360E "FHCI" USB controller;
58775 - Fujitsu MB86277 graphics controller;
58776 - Analog to Digital Converter/Touchscreen controller, AD7843
58777 connected to SPI.
58778
58779 Features not supported in this patch are:
58780 - StMICRO 64MiB NAND flash (patch sent);
58781 - MINT framebuffer initialization (patch is pending);
58782 - Fetching production information from the EEPROM via I2C;
58783 - FHCI USB;
58784 - Two slow UCCs used as RS-485 UARTs.
58785
58786 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58787 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58788
58789 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
58790 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58791 Date: Wed Jan 9 20:57:40 2008 +0300
58792
58793 mpc83xx: add "fsl, qe" compatible fixups
58794
58795 New device trees will use "fsl,qe" compatible properties.
58796
58797 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58798 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58799
58800 commit 977b57583a7c34010e566a09a679ec3c1836f996
58801 Author: Kim Phillips <kim.phillips@freescale.com>
58802 Date: Wed Jan 9 15:24:06 2008 -0600
58803
58804 mpc83xx: add missing CONFIG_HAS_ETH0 defines
58805
58806 the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
58807 is defined; add the define to the missing board configs.
58808
58809 Thanks to Emilian Medve for finding this.
58810
58811 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58812
58813 commit b830b7f1635984ba607219fcbd78597c28eeb529
58814 Author: Becky Bruce <bgill@freescale.com>
58815 Date: Thu Jan 10 14:00:28 2008 -0600
58816
58817 86xx: Support 2GB DIMMs
58818
58819 Configure the number of bits used to address the banks inside the SDRAM
58820 device. The default register value of 0 means 2 bits to address 4 banks.
58821 Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
58822
58823 Signed-off-by: Becky Bruce <bgill@freescale.com>
58824
58825 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
58826 Author: Niklaus Giger <niklausgiger@gmx.ch>
58827 Date: Thu Jan 10 18:50:33 2008 +0100
58828
58829 ppc4xx: Make Sequoia boot vxWorks
58830
58831 vxWorks expects in
58832 TLB 0 a entry for the Machine Check interrupt
58833 TLB 1 a entry for the RAM
58834 TLB 2 a entry for the EBC
58835 TLB 3 a entry for the boot flash
58836
58837 After changing the baudrate to 9600 I had no problems to boot the
58838 vxWorks image as distributed by WindRiver (Revision 2.0/1 from
58839 June 18, 2007)
58840
58841 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
58842
58843 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
58844 Author: Larry Johnson <lrj@arlinx.com>
58845 Date: Wed Jan 9 23:10:27 2008 -0500
58846
58847 ppc4xx: Fix dflush() to restore DVLIM register
58848
58849 Signed-off-by: Larry Johnson <lrj@acm.org>
58850
58851 commit 252f60b068d1f94190b5bcfda169db582387e15e
58852 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58853 Date: Thu Jan 10 03:52:44 2008 -0500
58854
58855 Nios2: remove common/cmd_bdinfo.c unused variable.
58856
58857 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58858 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
58859
58860 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
58861 Author: Ben Warren <biggerbadderben@gmail.com>
58862 Date: Wed Jan 9 18:15:53 2008 -0500
58863
58864 Fix Ethernet init() return codes
58865
58866 Change return values of init() functions in all Ethernet drivers to conform
58867 to the following:
58868
58869 >=0: Success
58870 <0: Failure
58871
58872 All drivers going forward should return 0 on success. Current drivers that
58873 return 1 on success were left as-is to minimize changes.
58874
58875 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
58876 Acked-by: Stefan Roese <sr@denx.de>
58877 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
58878 Acked-by: Kim Phillips <kim.phillips@freescale.com>
58879 Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
58880 Acked-By: Timur Tabi <timur@freescale.com>
58881
58882 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
58883 Author: Wolfgang Denk <wd@denx.de>
58884 Date: Thu Jan 10 00:55:14 2008 +0100
58885
58886 Coding Style cleanup; update CHANGELOG
58887
58888 Signed-off-by: Wolfgang Denk <wd@denx.de>
58889
58890 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
58891 Author: Kim Phillips <kim.phillips@freescale.com>
58892 Date: Wed Jan 9 16:56:54 2008 -0600
58893
58894 Add QE brg freq and correct qe bus freq fdt update code
58895
58896 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
58897 Signed-off-by: Andy Fleming <afleming@freescale.com>
58898
58899 commit 890dfef06c2d169a3356359596890754dfb8ee1c
58900 Author: Andy Fleming <afleming@freescale.com>
58901 Date: Wed Jan 9 16:34:51 2008 -0600
58902
58903 Remove cache config from ATUM8548 and sbc8548 configs
58904
58905 These boards weren't updated by Kumar's config patch because they
58906 weren't in the tree, yet.
58907
58908 Signed-off-by: Andy Fleming <afleming@freescale.com>
58909
58910 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
58911 Author: Timur Tabi <timur@freescale.com>
58912 Date: Mon Jan 7 13:31:19 2008 -0600
58913
58914 85xx: add ability to upload QE firmware
58915
58916 Define the layout of a binary blob that contains a QE firmware and instructions
58917 on how to upload it. Add function qe_upload_firmware() to parse the blob and
58918 perform the actual upload. Add command-line command "qe fw" to take a firmware
58919 blob in memory and upload it. Update ft_cpu_setup() on 85xx to create the
58920 'firmware' device tree node if U-Boot has uploaded a firmware. Fully define
58921 'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
58922
58923 Signed-off-by: Timur Tabi <timur@freescale.com>
58924
58925 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
58926 Author: Kumar Gala <galak@kernel.crashing.org>
58927 Date: Tue Jan 8 01:22:21 2008 -0600
58928
58929 85xx: Remove cache config from configs.h
58930
58931 Either use the standard defines in asm/cache.h or grab the information
58932 at runtime from the L1CFG SPR.
58933
58934 Also, minor cleanup in cache.h to make the code a bit more readable.
58935
58936 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
58937
58938 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
58939 Author: robert lazarski <robertlazarski@gmail.com>
58940 Date: Fri Dec 21 10:39:27 2007 -0500
58941
58942 mpc85xx: Add support for ATUM8548 (updated)
58943
58944 Add support for Instituto Atlantico's ATUM8548 board
58945
58946 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
58947 Signed-off-by: Andy Fleming <afleming@freescale.com>
58948
58949 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
58950 Author: robert lazarski <robertlazarski@gmail.com>
58951 Date: Fri Dec 21 10:36:37 2007 -0500
58952
58953 mpc85xx: Add support for ATUM8548 (updated)
58954
58955 Add support for Instituto Atlantico's ATUM8548 board
58956
58957 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
58958
58959 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
58960 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
58961 Date: Thu Dec 13 06:45:14 2007 -0600
58962
58963 mpc85xx: Add support for SBC8548 (updated)
58964
58965 Add support for Wind River's SBC8548 reference board.
58966
58967 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
58968
58969 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
58970 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
58971 Date: Thu Dec 13 06:45:08 2007 -0600
58972
58973 mpc85xx: Add support for SBC8548 (updated)
58974
58975 Add support for Wind River's SBC8548 reference board.
58976
58977 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
58978 Signed-off by: Andy Fleming <afleming@freescale.com>
58979
58980 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
58981 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58982 Date: Mon Oct 22 19:58:19 2007 +0400
58983
58984 MPC8568E-MDS: set up QE pario for UART1
58985
58986 To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
58987 be set up appropriately.
58988
58989 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
58990
58991 commit ad162249cb371e9e38971676f09be791e5f3cf4a
58992 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
58993 Date: Mon Oct 22 18:12:46 2007 +0400
58994
58995 MPC8568E-MDS: reset UCCs to use them reliably
58996
58997 In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
58998 UCCs.
58999
59000 p.s Similar code exists in the Linux kernel board file (for capability
59001 reasons with older U-Boots), but should be removed some day.
59002
59003 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
59004
59005 commit 2146cf56821c3364786ca94a7306008c5824b238
59006 Author: Kumar Gala <galak@kernel.crashing.org>
59007 Date: Wed Dec 19 01:18:15 2007 -0600
59008
59009 Reworked FSL Book-E TLB macros to be more readable
59010
59011 The old macros made it difficult to know what WIMGE and perm bits
59012 were set for a TLB entry. Actually use the bit masks for these items
59013 since they are only a single bit.
59014
59015 Also moved the macros into mmu.h out of e500.h since they aren't specific
59016 to e500.
59017
59018 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59019
59020 commit 1d47273d46925929f8f2c1913cd96d7257aade88
59021 Author: Kumar Gala <galak@kernel.crashing.org>
59022 Date: Tue Dec 18 23:21:51 2007 -0600
59023
59024 Use FSL Book-E MMU macros from Linux Kernel
59025
59026 Grab the FSL Book-E MAS register macros from Linux. Also added
59027 defines for page sizes up to 4TB and removed SHAREN since it doesnt
59028 really exist.
59029
59030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59031
59032 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
59033 Author: Andy Fleming <afleming@freescale.com>
59034 Date: Wed Jan 9 13:51:32 2008 -0600
59035
59036 Fix my own merge stupidity
59037
59038 Way back in August I merged Heiko's patch:
59039 566a494f592: [PCS440EP] upgrade the PCS440EP board
59040
59041 with Jon's CONFIG_COMMANDS patches.
59042
59043 This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
59044
59045 However, in the process, I left out some of Heiko's good changes.
59046
59047 Now Heiko's and Jon's patches are properly merged in fat_register_device()
59048
59049 Signed-off-by: Andy Fleming <afleming@freescale.com>
59050
59051 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
59052 Author: James Yang <James.Yang@freescale.com>
59053 Date: Wed Jan 9 11:17:49 2008 -0600
59054
59055 Expose parse_line() globally.
59056
59057 Add new function readline_into_buffer() that allows the
59058 output of readline to be put into a pointer to char buffer.
59059
59060 This refactoring allows other functions besides the
59061 main command loop to also use the same input mechanism.
59062
59063 Signed-off-by: James Yang <James.Yang@freescale.com>
59064 Acked-by: Jon Loeliger <jdl@freescale.com>
59065
59066 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
59067 Author: Guennadi Liakhovetski <lg@denx.de>
59068 Date: Wed Jan 9 01:15:25 2008 +0100
59069
59070 trivial: fix consequences of a bad merge
59071
59072 Fix what looks like a merge artifact.
59073
59074 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
59075
59076 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
59077 Author: Zhang Wei <wei.zhang@freescale.com>
59078 Date: Thu Jan 3 10:51:15 2008 +0800
59079
59080 Add Ctrl combo key support to usb keyboard driver.
59081
59082 Ctrl combo key support is added, which is very useful to input Ctrl-C
59083 for interrupt current job.
59084 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
59085 key input when tstc() is called.
59086
59087 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
59088
59089 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
59090 Author: Marcel Ziswiler <marcel@ziswiler.com>
59091 Date: Sun Dec 30 03:30:56 2007 +0100
59092
59093 fix various comments
59094
59095 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
59096
59097 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
59098 Author: Marcel Ziswiler <marcel@ziswiler.com>
59099 Date: Sun Dec 30 03:30:46 2007 +0100
59100
59101 fix comments with new drivers organization
59102
59103 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
59104
59105 commit a9b410dc7d2a4721c408b13abfc037988150f145
59106 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
59107 Date: Fri Dec 28 12:50:59 2007 +0900
59108
59109 Remove the obsolete terse version of do_mii()
59110
59111 We now have more useful version of do_mii() and everybody use it.
59112 Gerald Van Baren says:
59113
59114 > When I originally wrote the mii command 6(!) years ago, I wrote a
59115 > verbose version that printed human readable decomposition of the flags,
59116 > etc., and a terse one that didn't print as much stuff and thus had a
59117 > smaller memory footprint.
59118 >
59119 > It sounds like the terse version has withered and died, apparently
59120 > people are only using the verbose version (which is very understandable,
59121 > I do myself).
59122
59123 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
59124 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59125
59126 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
59127 Author: Mike Frysinger <vapier@gentoo.org>
59128 Date: Thu Dec 27 13:42:56 2007 -0500
59129
59130 Do not reference sha1.c when building mkimage.
59131
59132 remove sha1.o from mkimage linking since it isn't actually used.
59133
59134 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
59135
59136 commit b9173af73e524d37c812f210173cf83385c5171a
59137 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
59138 Date: Thu Dec 27 15:39:54 2007 +0900
59139
59140 common/cmd_mii.c: Add sanity argc check
59141
59142 If type mii command without arguments, we suffer from uninitialized argv[]
59143 entries; for example we MIPS get stuck by TLB error.
59144
59145 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
59146
59147 commit 500856eb1707ed17d9204baa61dd59948d3b2899
59148 Author: Rafal Jaworowski <raj@semihalf.com>
59149 Date: Wed Jan 9 19:39:36 2008 +0100
59150
59151 API for external applications.
59152
59153 This is an API for external (standalone) applications running on top of
59154 U-Boot, and is meant to be more extensible and robust than the existing
59155 jumptable mechanism. It is similar to UNIX syscall approach. See api/README
59156 for more details.
59157
59158 Included is the demo application using this new framework (api_examples).
59159
59160 Please note this is still an experimental feature, and is turned off by
59161 default.
59162
59163 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
59164
59165 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
59166 Author: Jon Loeliger <jdl@freescale.com>
59167 Date: Wed Jan 9 12:14:55 2008 -0600
59168
59169 86xx: Remove cache config from configs.h
59170
59171 Just use the standard defines in asm/cache.h.
59172
59173 Signed-off-by: Jon Loeliger <jdl@freescale.com>
59174
59175 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
59176 Author: Rafal Jaworowski <raj@semihalf.com>
59177 Date: Wed Jan 9 18:05:27 2008 +0100
59178
59179 Globalize envmatch()
59180
59181 The newly introduced API (routines related to env vars) will need to call
59182 it.
59183
59184 Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
59185
59186 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
59187 Author: Jon Loeliger <jdl@freescale.com>
59188 Date: Fri Jan 4 12:07:27 2008 -0600
59189
59190 Convert MPC8610HPCD to use libfdt.
59191
59192 Assumes the presence of the aliases node in the DTS to
59193 locate the pci and serial nodes for fixups.
59194
59195 Use consistent fdtaddr and fdtfile in environment variables.
59196
59197 Signed-off-by: Jon Loeliger <jdl@freescale.com>
59198
59199 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
59200 Author: Jon Loeliger <jdl@freescale.com>
59201 Date: Fri Jan 4 11:58:23 2008 -0600
59202
59203 8610: Fix lingering compile warnings.
59204
59205 Turn off DEBUG.
59206
59207 Signed-off-by: Jon Loeliger <jdl@freescale.com>
59208
59209 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
59210 Author: Wolfgang Denk <wd@denx.de>
59211 Date: Wed Jan 9 15:14:46 2008 +0100
59212
59213 Coding Style cleanup, update CHANGELOG
59214
59215 Signed-off-by: Wolfgang Denk <wd@denx.de>
59216
59217 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
59218 Author: Mike Frysinger <vapier@gentoo.org>
59219 Date: Tue Dec 18 04:29:55 2007 -0500
59220
59221 fix easylogo on big endian dev systems
59222
59223 didnt realize how out of shape easylogo actually was until i tried using it.
59224 this patch does byte swapping as need be on the input tga header since the tga
59225 is in little endian but the host could just as well be big endian. i didnt
59226 bother using bswap macros or such stuff from system headers as nothing in
59227 POSIX dictates byte swapping functionality.
59228
59229 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
59230
59231 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
59232 Author: Mike Frysinger <vapier@gentoo.org>
59233 Date: Tue Dec 18 03:23:25 2007 -0500
59234
59235 cleanup easylogo
59236
59237 - make the Makefile not suck
59238 - include proper headers for prototypes
59239 - fix obvious broken handling of strchr() when handling '.' in filenames
59240
59241 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
59242
59243 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
59244 Author: raptorbrino@aim.com <raptorbrino@aim.com>
59245 Date: Thu Dec 13 21:23:28 2007 -0500
59246
59247 Fix build problems under Cygwin
59248
59249 This patch allows u-boot to build without error in a cygwin
59250 environment. Cygwin does not define __u64 in it's
59251 include/asm/types.h file. The -idirafter flag in the u-boot
59252 build causes the inclusion of the cygwin types.h file as opposed
59253 to u-bot/include/asm/types.h file which does define __u64.
59254 Subsequently, sha1.c compile fails due to unknown symbol.
59255
59256 Signed-off-by: Brian Miller <raptorbrino@netscape.net>
59257
59258 commit 43ef1c381f9195504a2488f5cb909227eb97d475
59259 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
59260 Date: Fri Nov 30 17:29:59 2007 +0100
59261
59262 cmd_bmp: Add support for displaying gzip compressed bmps
59263
59264 The existing code can show information about a gzip compressed BMP
59265 image, but can't actually display it.
59266
59267 Therefore, move the decompression code out of bmp_info() and use it in
59268 bmp_display() as well in order to display a compressed BMP image.
59269
59270 Also, clean things up a bit and fix a memory leak while we're at it.
59271
59272 [hskinnemoen@atmel.com: a bit of refactoring]
59273 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
59274
59275 commit d197ffd8172c6fdef38733424640a9a47295d6e9
59276 Author: Guennadi Liakhovetski <lg@denx.de>
59277 Date: Thu Nov 29 21:15:56 2007 +0100
59278
59279 Fix and optimize MII operations on FEC (MPC8xx) controllers
59280
59281 This patch fixes several issues at least on a MPC885 based system with two
59282 FEC interfaces used in MII mode.
59283
59284 1. PHY discovery should first read PHY_PHYIDR2 register and only then
59285 PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
59286 otherwise the values read are wrong. Also notice, that PHY discovery
59287 cannot work on MPC88x / MPC87x in setups with both FECs active at all
59288 in its present form, because for both interfaces the registers from FEC
59289 1 are used to communicate over MII.
59290
59291 2. Remove code duplication for resetting the FEC by isolating it into a
59292 separate function.
59293
59294 3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
59295
59296 4. Optimize mii_init() to only reset the FEC 1 controller once.
59297
59298 5. Fix a typo in mii_init() using index i instead of j thus potentially
59299 leading to unpredictable results.
59300
59301 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
59302
59303 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
59304 Author: Guennadi Liakhovetski <lg@denx.de>
59305 Date: Tue Nov 20 13:14:20 2007 +0100
59306
59307 Fix endianness conversions in rtl8169 driver
59308
59309 It is unclear on what platforms this driver has been tested, since
59310 noone up to now defines CONFIG_RTL8169 in the board configuration
59311 header. Now it has been fixed for a big-endian mpc8241 based
59312 linkstation platform. This patch presents the necessary endianness
59313 conversion fixes.
59314
59315 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
59316
59317 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
59318 Author: Zhang Wei <wei.zhang@freescale.com>
59319 Date: Thu Jan 3 10:51:15 2008 +0800
59320
59321 Add Ctrl combo key support to usb keyboard driver.
59322
59323 Ctrl combo key support is added, which is very useful to input Ctrl-C
59324 for interrupt current job.
59325 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
59326 key input when tstc() is called.
59327
59328 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
59329 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
59330
59331 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
59332 Author: Wolfgang Denk <wd@denx.de>
59333 Date: Wed Jan 9 13:43:38 2008 +0100
59334
59335 Coding Style clenaup; update CHANGELOG
59336
59337 Signed-off-by: Wolfgang Denk <wd@denx.de>
59338
59339 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
59340 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59341 Date: Thu Dec 27 17:13:11 2007 +0100
59342
59343 Remove bit swapping in Xilinx Spartan bitfile loading
59344
59345 This patch removes the unnecessary bit swapping when
59346 booting .bit files with the 'fpga loadb' command.
59347
59348 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59349
59350 commit 437fc7327f0611f82937858f2d80e4cd61b40984
59351 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59352 Date: Thu Dec 27 17:13:05 2007 +0100
59353
59354 Fix MSB check in Xilinx Spartan slave serial mode
59355
59356 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59357
59358 commit 3bff4ffa33729a42645e328a21e8d16488872958
59359 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59360 Date: Thu Dec 27 17:12:56 2007 +0100
59361
59362 Add new Xilinx Spartan FPGA types
59363
59364 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59365
59366 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
59367 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59368 Date: Thu Dec 27 17:12:43 2007 +0100
59369
59370 Add pre and post configuration callbacks for Spartan FPGAs
59371
59372 This patch adds a post configuration callback for Spartan2/3 FPGAs.
59373 pre and post configuration callback are now optional and
59374 not called when the function pointer is set to NULL.
59375
59376 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59377
59378 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
59379 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59380 Date: Thu Dec 27 17:12:34 2007 +0100
59381
59382 Improve configuration of FPGA subsystem
59383
59384 This patch removes the FPGA subsystem configuration through
59385 the CONFIG_FPGA bitmask configuration option.
59386
59387 See README for the new options:
59388
59389 CONFIG_FPGA,
59390 CONFIG_FPGA_<vendor>,
59391 CONFIG_FPGA_<family>
59392
59393 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59394
59395 commit 95c6bc7d4a3588b452baca610f8c795a83630477
59396 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59397 Date: Thu Dec 27 16:55:17 2007 +0100
59398
59399 Add Epson RX8025 RTC support
59400
59401 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59402
59403 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
59404 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59405 Date: Thu Dec 27 16:57:23 2007 +0100
59406
59407 serial: Make default_serial_console() a weak function
59408
59409 With this patch it is possible to reimplement default_serial_console()
59410 in board specific code. This will be done in the upcomming PMC440
59411 U-Boot port. This also allows the lwmon board maintainer to
59412 remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
59413
59414 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59415
59416 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
59417 Author: Harald Welte <laforge@openmoko.org>
59418 Date: Wed Dec 19 14:14:47 2007 +0100
59419
59420 add 'terminal program' functionality
59421
59422 This patch adds a 'cu' like serial terminal command to u-boot
59423 using which you can access other serial ports from the system console.
59424
59425 OpenMoko uses this in their Neo1973 phones to get access to the GSM
59426 Modem and GPS chip from the bootloader.
59427
59428 Signed-off-by: Harald Welte <laforge@openmoko.org>
59429
59430 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
59431 Author: Harald Welte <laforge@openmoko.org>
59432 Date: Wed Dec 19 14:12:53 2007 +0100
59433
59434 Re-introduce the 'nand read.oob' and 'nand write.oob' commands
59435 that used to exist with the legacy NAND code
59436
59437 Signed-off-by: Harald Welte <laforge@openmoko.org>
59438
59439 commit f540c42d9564854b19ce9bbb70affe172529fe70
59440 Author: Harald Welte <laforge@openmoko.org>
59441 Date: Wed Dec 19 14:09:58 2007 +0100
59442
59443 Fix building with CRAMFS but not JFFS2 support
59444
59445 Signed-off-by: Harald Welte <laforge@openmoko.org>
59446
59447 commit 23d0baf967fecdaf1804f045f6339337c5607eec
59448 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59449 Date: Sat Dec 22 15:52:58 2007 +0100
59450
59451 Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
59452
59453 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
59454 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59455
59456 commit 23776ff292966a85d811126933830bed48211826
59457 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59458 Date: Tue Dec 11 10:53:12 2007 +0100
59459
59460 ARM: support board-specific ethernet PHY init
59461
59462 Add until the new phylib will be arrived
59463
59464 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59465
59466 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
59467 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59468 Date: Sat Dec 8 16:34:08 2007 +0100
59469
59470 IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
59471
59472 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59473
59474 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
59475 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59476 Date: Sun Dec 9 11:01:10 2007 +0100
59477
59478 Add missing file in gitignore and comments
59479
59480 based on Linux source tree's .gitignore files
59481
59482 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
59483
59484 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
59485 Author: Wolfgang Denk <wd@denx.de>
59486 Date: Wed Jan 9 11:36:21 2008 +0100
59487
59488 Coding Style cleanup, update CHANGELOG
59489
59490 Signed-off-by: Wolfgang Denk <wd@denx.de>
59491
59492 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
59493 Author: Stefan Roese <sr@denx.de>
59494 Date: Wed Jan 9 10:38:58 2008 +0100
59495
59496 POST: Execute SPR test after relocation
59497
59498 On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
59499 self modifying code and this doesn't work with stack in d-cache, since
59500 I can't move the code from d-cache to i-cache. We move the SPR test to
59501 be executed a little later, after relocation. Then stack is located in
59502 SDRAM and this self-modifying code is no problem anymore.
59503
59504 Signed-off-by: Stefan Roese <sr@denx.de>
59505
59506 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
59507 Author: Stefan Roese <sr@denx.de>
59508 Date: Wed Jan 9 10:28:20 2008 +0100
59509
59510 ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
59511
59512 This patch configures the LWMON5 port to use d-cache as init-ram and
59513 the unused GPT0_COMP6 as POST WORD storage.
59514
59515 Signed-off-by: Stefan Roese <sr@denx.de>
59516
59517 commit 1754f50b710194f886b6f2831803d8960171a14d
59518 Author: Stefan Roese <sr@denx.de>
59519 Date: Wed Jan 9 10:25:46 2008 +0100
59520
59521 ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
59522
59523 The privious 4xx POST implementation only supported storing the POST
59524 WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
59525 we need to store the POST WORD in some other non volatile location.
59526 This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
59527 a location.
59528
59529 Signed-off-by: Stefan Roese <sr@denx.de>
59530
59531 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
59532 Author: Stefan Roese <sr@denx.de>
59533 Date: Wed Jan 9 10:23:16 2008 +0100
59534
59535 ppc4xx: Add 44x cache locking to better support init-ram in d-cache
59536
59537 This patch adds support for locking the init-ram/stack in d-cache,
59538 so that other regions may use d-cache as well
59539
59540 Note, that this current implementation locks exactly 4k of d-cache,
59541 so please make sure that you don't define a bigger init-ram area. Take
59542 a look at the lwmon5 440EPx implementation as a reference.
59543
59544 Signed-off-by: Stefan Roese <sr@denx.de>
59545
59546 commit 0ddb89601a8d29e808db450366752ffdc6267c53
59547 Author: Wolfgang Denk <wd@denx.de>
59548 Date: Wed Jan 9 10:16:33 2008 +0100
59549
59550 Fix memset bug in ext2fs_read_file()
59551
59552 ext2fs_read_file() had the function arguments swapped.
59553
59554 Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
59555
59556 Signed-off-by: Wolfgang Denk <wd@denx.de>
59557
59558 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
59559 Author: Markus Klotzbücher <mk@denx.de>
59560 Date: Tue Jan 5 08:17:15 1988 +0100
59561
59562 Fix problems with usb storage devices on MPC5200 /TQM5200
59563
59564 The MPC5200 OHCI controller operates in big endian, so
59565 CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
59566
59567 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
59568
59569 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
59570 Author: Wolfgang Denk <wd@denx.de>
59571 Date: Tue Jan 8 22:58:27 2008 +0100
59572
59573 Fix compile problem with new env code.
59574
59575 Signed-off-by: Wolfgang Denk <wd@denx.de>
59576
59577 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
59578 Author: Markus Klotzbücher <mk@denx.de>
59579 Date: Tue Nov 27 10:23:20 2007 +0100
59580
59581 tools: fix fw_printenv tool to compile again
59582
59583 This patch updates the fw_printenv/fw_setenv userspace tool to include
59584 the correct MTD header in order to compile against current kernel
59585 headers. Backward compatibility is preserved by introducing an option
59586 MTD_VERSION which can be set to "old" for compilation using the old MTD
59587 headers. Along with this a number of warnings are fixed.
59588
59589 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
59590
59591 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
59592 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59593 Date: Tue Jan 8 15:40:09 2008 +0100
59594
59595 ppc4xx: assign PCI interrupts on seuqoia boards
59596
59597 Some operating systems rely on assigned PCI interrupts.
59598
59599 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59600
59601 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
59602 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59603 Date: Tue Jan 8 15:50:49 2008 +0100
59604
59605 ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
59606
59607 This patch allows the use of 4xx interrupt vector number defines
59608 in board specific code outside cpu/ppc4xx.
59609
59610 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59611
59612 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
59613 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59614 Date: Tue Jan 8 15:39:01 2008 +0100
59615
59616 ppc4xx: Fix UIC2 vector number base
59617
59618 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59619
59620 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
59621 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59622 Date: Tue Jan 8 12:49:58 2008 +0100
59623
59624 ppc4xx: Update PLB/PCI divider for PMC440 board
59625
59626 This patch updates the PLB/PCI divider when running at
59627 400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
59628
59629 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59630
59631 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
59632 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59633 Date: Tue Jan 8 11:13:09 2008 +0100
59634
59635 ppc4xx: Disable error message when no NAND chip is installed on PMC440
59636
59637 Add CFG_NAND_QUIET_TEST option to disable error message when
59638 no NAND chip is installed on PMC440 boards.
59639
59640 Disable a couple of config defines that are only used for NAND_U_BOOT.
59641
59642 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59643
59644 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
59645 Author: Wolfgang Denk <wd@denx.de>
59646 Date: Tue Jan 8 22:58:27 2008 +0100
59647
59648 Fix compile problem with new env code.
59649
59650 Signed-off-by: Wolfgang Denk <wd@denx.de>
59651
59652 commit 6de66b35426312a21174a9bf0576a094e2904bea
59653 Author: Markus Klotzbücher <mk@denx.de>
59654 Date: Tue Nov 27 10:23:20 2007 +0100
59655
59656 tools: fix fw_printenv tool to compile again
59657
59658 This patch updates the fw_printenv/fw_setenv userspace tool to include
59659 the correct MTD header in order to compile against current kernel
59660 headers. Backward compatibility is preserved by introducing an option
59661 MTD_VERSION which can be set to "old" for compilation using the old MTD
59662 headers. Along with this a number of warnings are fixed.
59663
59664 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
59665
59666 commit ad3006fe7e84667021753b74247b0bafd97ba35f
59667 Author: Gerald Van Baren <vanbaren@cideas.com>
59668 Date: Mon Jan 7 23:47:32 2008 -0500
59669
59670 LIBFDT: use memmove() instead of memcpy()
59671
59672 This is partial patch from the DTC/libfdt
59673 commit 67b6b33b9b413a450a72135b5dc59c0a1e33e647
59674 Author: David Gibson <david@gibson.dropbear.id.au>
59675 Date: Wed Nov 21 11:56:14 2007 +1100
59676
59677 The patch also fixes one genuine bug caught by valgrind -
59678 _packblocks() in fdt_rw.c was using memcpy() where it should have been
59679 using memmove().
59680
59681 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59682
59683 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
59684 Author: David Gibson <david@gibson.dropbear.id.au>
59685 Date: Mon Dec 17 14:42:07 2007 +1100
59686
59687 libfdt: Add more documentation (patch the seventh)
59688
59689 This patch adds more documenting comments to libfdt.h. Specifically,
59690 these document the read/write functions (not including fdt_open_into()
59691 and fdt_pack(), for now).
59692
59693 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59694
59695 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
59696 Author: David Gibson <david@gibson.dropbear.id.au>
59697 Date: Mon Dec 17 14:41:52 2007 +1100
59698
59699 libfdt: Add more documentation (patch the sixth)
59700
59701 This patch adds some more documenting comments to libfdt.h.
59702 Specifically this documents all the write-in-place functions.
59703
59704 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
59705
59706 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
59707 Author: Gerald Van Baren <vanbaren@cideas.com>
59708 Date: Sat Dec 29 22:45:27 2007 -0500
59709
59710 Fine grained per property /chosen updating.
59711
59712 Implement a suggestion by Scott Wood to make the /chosen handling fine
59713 grained. Don't overwrite pre-existing properties on a per-property basis,
59714 so if /chosen exists but a necessary /chosen/property doesn't, it gets
59715 created. If a /chosen property exists, it is NOT overwritten unless the
59716 "force" flag is true.
59717
59718 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59719
59720 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
59721 Author: Gerald Van Baren <vanbaren@cideas.com>
59722 Date: Sat Jan 5 15:33:29 2008 -0500
59723
59724 Improve the FDT help message.
59725
59726 Add a note that "fdt copy" makes the new address active.
59727 Remove most of the extra hints at the end of the fdt help.
59728
59729 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59730
59731 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
59732 Author: Gerald Van Baren <vanbaren@cideas.com>
59733 Date: Sat Jan 5 14:52:04 2008 -0500
59734
59735 Support setting FDT properties with optional values.
59736
59737 Fix a bug found and documented by Bartlomiej Sieka where the optional
59738 value on "fdt set <path> <prop> [<val>]" wasn't optional.
59739
59740 => fdt mknode / testnode
59741 => fdt print /testnode
59742 testnode {
59743 };
59744 => fdt set /testnode testprop
59745 => fdt print /testnode
59746 testnode {
59747 testprop;
59748 };
59749
59750 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
59751
59752 commit 22fb2246df91bfc840d87f0c5910818bad55577a
59753 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59754 Date: Fri Dec 28 11:56:30 2007 +0100
59755
59756 Add fdt_find_and_setprop() to fdt_support.h
59757
59758 fdt_find_and_setprop() is used by several 4xx boards and it's
59759 missing in the appropriate header. This patch eliminates a
59760 warning when building U-Boot for such boards.
59761
59762 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
59763 Acked-by: Stefan Roese <sr@denx.de>
59764
59765 commit 802b769bac17b0560d3535a42c502469ee190cd1
59766 Author: Stefan Roese <sr@denx.de>
59767 Date: Tue Jan 8 18:39:30 2008 +0100
59768
59769 ppc4xx: Return 0 on success in 4xx ethernet driver
59770
59771 Signed-off-by: Stefan Roese <sr@denx.de>
59772
59773 commit 6775c68683a53c7abc778774641aac6f833a2cbf
59774 Author: Kim Phillips <kim.phillips@freescale.com>
59775 Date: Tue Jan 8 09:59:49 2008 -0600
59776
59777 mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
59778
59779 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59780
59781 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
59782 Author: Kim Phillips <kim.phillips@freescale.com>
59783 Date: Thu Dec 20 16:28:34 2007 -0600
59784
59785 mpc83xx: rm remaining FLAT_TREE code
59786
59787 ..in board pci.c files
59788
59789 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59790
59791 commit b3458d2cd55d01732e30a76d898afd99e871cd67
59792 Author: Kim Phillips <kim.phillips@freescale.com>
59793 Date: Thu Dec 20 15:57:28 2007 -0600
59794
59795 mpc83xx: remove FLAT_TREE code
59796
59797 need to rm it from pci code, too!
59798
59799 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59800
59801 commit 5b8bc606c61456566af6912f818a153b6b06f242
59802 Author: Kim Phillips <kim.phillips@freescale.com>
59803 Date: Thu Dec 20 14:09:22 2007 -0600
59804
59805 mpc83xx: convert to using do_fixup_*()
59806
59807 convert to using simpler mpc85xx style fdt update code; streamline by
59808 eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
59809 the old school FLAT_TREE code from 83xx (since the sbc8349 was just
59810 converted over to using libfdt).
59811
59812 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59813
59814 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
59815 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
59816 Date: Thu Dec 20 12:58:51 2007 -0500
59817
59818 sbc8349: enable libfdt by default on WRS SBC8349 board.
59819
59820 Make libfdt the default for the WRS SBC8349 board.
59821 Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
59822 done for the other 83xx based boards. Also fix a typo in CONFIG_PCI.
59823
59824 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
59825
59826 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
59827 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
59828 Date: Thu Dec 20 12:58:16 2007 -0500
59829
59830 sbc8349: migrate board to libfdt
59831
59832 This adds libfdt support code for the Wind River sbc8349 board.
59833
59834 Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
59835 the other Freescale 83xx boards.
59836
59837 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
59838
59839 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
59840 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
59841 Date: Thu Dec 20 12:56:19 2007 -0500
59842
59843 sbc8349: Remove board specific ECC code
59844
59845 ECC code is now shared for all 83xx boards, so remove board specific one.
59846 See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
59847
59848 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
59849
59850 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
59851 Author: Kim Phillips <kim.phillips@freescale.com>
59852 Date: Thu Dec 20 01:30:48 2007 -0600
59853
59854 mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
59855
59856 continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
59857
59858 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59859
59860 commit ccf21c311e68d48399eff1e72936052885f6e3f7
59861 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
59862 Date: Thu Dec 6 16:43:40 2007 +0100
59863
59864 Add support CONFIG_UEC_ETH3 in MPC83xx
59865
59866 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
59867
59868 commit e6af9932d31171e35db880e7b2f29f903b1b7660
59869 Author: Kumar Gala <galak@kernel.crashing.org>
59870 Date: Mon Nov 26 11:00:54 2007 -0600
59871
59872 Remove CONFIG options related to OF that we dont use
59873
59874 The MPC8360E MDS config defined:
59875 CONFIG_OF_HAS_BD_T
59876 CONFIG_OF_HAS_UBOOT_ENV
59877
59878 Which we don't use or ever needed. This seems like copy-paste feature creep.
59879
59880 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
59881
59882 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
59883 Author: Kim Phillips <kim.phillips@freescale.com>
59884 Date: Mon Dec 10 14:16:22 2007 -0600
59885
59886 mpc83xx: supress compiler warning
59887
59888 mpc8360emds.c: In function ‘ft_board_setup’:
59889 mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
59890 mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
59891
59892 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59893
59894 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
59895 Author: Kim Phillips <kim.phillips@freescale.com>
59896 Date: Tue Nov 27 14:17:29 2007 -0600
59897
59898 mpc83xx: fix remaining fdt_find_node_by_path references
59899
59900 rename to fdt_path_offset
59901
59902 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59903
59904 commit 921d4b19ad1be704df58725485d9292dc0414adf
59905 Author: Kim Phillips <kim.phillips@freescale.com>
59906 Date: Mon Nov 19 12:30:09 2007 -0600
59907
59908 mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
59909
59910 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
59911 This change guarantees that the environment will be located on the
59912 first flash sector after the U-Boot image.
59913
59914 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59915
59916 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
59917 Author: Kim Phillips <kim.phillips@freescale.com>
59918 Date: Fri Nov 9 14:28:08 2007 -0600
59919
59920 mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
59921
59922 u-boot itself uses GMII mode on the 8360. Fix up UCC phy-connection-type
59923 properties in the device tree so the PHY gets configured for internal delay on
59924 RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
59925
59926 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
59927
59928 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
59929 Author: Dave Liu <r63238@freescale.com>
59930 Date: Tue Sep 18 12:41:15 2007 +0800
59931
59932 mpc83xx: update the CREDITS and MAINTAINERS
59933
59934 update the CREDITS and MAINTAINERS.
59935
59936 Signed-off-by: Dave Liu <daveliu@freescale.com>
59937
59938 commit b21add4b42af7b767448251b599b91066a160e0d
59939 Author: Dave Liu <r63238@freescale.com>
59940 Date: Tue Sep 18 12:40:21 2007 +0800
59941
59942 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
59943
59944 Add the MAINTAINER and MAKEALL entries for mpc837xemds
59945
59946 Signed-off-by: Dave Liu <daveliu@freescale.com>
59947
59948 commit f8900ce9094c462355eb792eea264ff16ac8fd16
59949 Author: Dave Liu <r63238@freescale.com>
59950 Date: Tue Sep 18 12:38:53 2007 +0800
59951
59952 mpc83xx: Add the MPC837xEMDS board readme
59953
59954 Add the README.mpc837xemds to /doc
59955
59956 Signed-off-by: Dave Liu <daveliu@freescale.com>
59957
59958 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
59959 Author: Dave Liu <r63238@freescale.com>
59960 Date: Tue Sep 18 12:37:57 2007 +0800
59961
59962 mpc83xx: Add the support of MPC837xEMDS board
59963
59964 The MPC837xEMDS board support:
59965 * DDR2 400MHz hardcoded and SPD init
59966 * Local bus NOR Flash
59967 * I2C, UART, MII and RTC
59968 * eTSEC RGMII
59969 * PCI host
59970
59971 Signed-off-by: Dave Liu <daveliu@freescale.com>
59972
59973 commit 555da61702771fe0f76f3de23b4e7590f3704161
59974 Author: Dave Liu <r63238@freescale.com>
59975 Date: Tue Sep 18 12:36:58 2007 +0800
59976
59977 mpc83xx: Add the support of MPC8315E SoC
59978
59979 The MPC8315E SoC including e300c3 core and new IP blocks,
59980 such as TDM, PCI Express and SATA controller.
59981
59982 Signed-off-by: Dave Liu <daveliu@freescale.com>
59983
59984 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
59985 Author: Dave Liu <r63238@freescale.com>
59986 Date: Tue Sep 18 12:36:11 2007 +0800
59987
59988 mpc83xx: Add the support of MPC837x SoC
59989
59990 The MPC837x SoC including e300c4 core and new IP blocks,
59991 such as SDHC, PCI Express and SATA controller.
59992
59993 Signed-off-by: Dave Liu <daveliu@freescale.com>
59994
59995 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
59996 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
59997 Date: Wed Nov 14 18:54:53 2007 +0300
59998
59999 MPC8360E-MDS: configure and enable second UART
60000
60001 Despite user manual, BCSR9.7 is negated (high) on HRST, so
60002 UART2 is disabled. Fix that and configure QE pins properly.
60003
60004 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
60005
60006 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
60007 Author: Timur Tabi <timur@freescale.com>
60008 Date: Mon Nov 5 09:34:06 2007 -0600
60009
60010 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
60011
60012 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
60013 currently-defined 83xx boards. This change guarantees that the environment
60014 will be located on the first flash sector after the U-Boot image.
60015
60016 Signed-off-by: Timur Tabi <timur@freescale.com>
60017 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
60018
60019 commit e05329516a13616b53240cd85b739217c2bf87f1
60020 Author: Larry Johnson <lrj@acm.org>
60021 Date: Fri Jan 4 13:27:02 2008 -0500
60022
60023 ppc4xx: Remove weak binding from common Denali data-eye search code
60024
60025 Now that there are no board-specific versions of
60026 "denali_core_search_data_eye()", the weak binding on the common version
60027 can be removed.
60028
60029 Signed-off-by: Larry Johnson <lrj@acm.org>
60030
60031 commit 5ba576c01602fd328800a427964c36a0a05c5dce
60032 Author: Stefan Roese <sr@denx.de>
60033 Date: Sat Jan 5 09:13:46 2008 +0100
60034
60035 ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
60036
60037 Signed-off-by: Stefan Roese <sr@denx.de>
60038
60039 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
60040 Author: Stefan Roese <sr@denx.de>
60041 Date: Sat Jan 5 09:12:41 2008 +0100
60042
60043 ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
60044
60045 On Katmai the complete auto-calibration somehow doesn't seem to
60046 produce the best results, meaning optimal values for RQFD/RFFD.
60047 This was discovered by GDA using a high bandwidth scope,
60048 analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
60049 so now on Katmai "only" RFFD is auto-calibrated.
60050
60051 This patch also adds RDCC calibration as mentioned on page 7 of
60052 the AMCC PowerPC440SP/SPe DDR2 application note:
60053 "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
60054
60055 Signed-off-by: Stefan Roese <sr@denx.de>
60056
60057 commit 49db47b8ae6afff2b898be312948ff501357dc80
60058 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60059 Date: Wed Jan 2 16:48:42 2008 +0100
60060
60061 ppc4xx: Remove sdram.h from PMC440 board
60062
60063 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60064
60065 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
60066 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60067 Date: Wed Jan 2 16:48:34 2008 +0100
60068
60069 ppc4xx: use common denali core defines and data eye search code for PMC440
60070
60071 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60072
60073 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
60074 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60075 Date: Wed Jan 2 12:05:14 2008 +0100
60076
60077 ppc4xx: More cleanup for esd's LCD code
60078
60079 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60080
60081 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
60082 Author: Stefan Roese <sr@denx.de>
60083 Date: Fri Jan 4 12:00:01 2008 +0100
60084
60085 ppc4xx: Fix Sequoia NAND booting target
60086
60087 The Sequoia NAND booting target now uses the recently extracted
60088 cpu/ppc4xx/denali_data_eye.c file too.
60089
60090 Signed-off-by: Stefan Roese <sr@denx.de>
60091
60092 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
60093 Author: Lawrence R. Johnson <lrj@acm.org>
60094 Date: Thu Jan 3 15:02:02 2008 -0500
60095
60096 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
60097
60098 Signed-off-by: Larry Johnson <lrj@acm.org>
60099
60100 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
60101 Author: Lawrence R. Johnson <lrj@acm.org>
60102 Date: Fri Jan 4 02:11:56 2008 -0500
60103
60104 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
60105
60106 Note: this patch changes the configuration of some GPIO registers:
60107
60108 Register Old Value New Value
60109 --------------- ---------- ----------
60110 DCR GPIO0_TCR 0x0000000F 0x0000F0CF
60111 DCR GPIO0_TSRH 0x55005000 0x00000000
60112 DCR GPIO1_TCR 0xC2000000 0xE2000000
60113 DCR GPIO1_TSRL 0x0C000000 0x00200000
60114 DCR GPIO1_ISR2L 0x00050000 0x00110000
60115
60116 Signed-off-by: Larry Johnson <lrj@acm.org>
60117
60118 commit 5ab884b254ca2e707ab50545cd705f30108cf491
60119 Author: Lawrence R. Johnson <lrj@acm.org>
60120 Date: Thu Jan 3 18:54:00 2008 -0500
60121
60122 ppc4xx: Add functionality to GPIO support
60123
60124 This patch makes two additions to GPIO support:
60125
60126 First, it adds function gpio_read_in_bit() to read the a bit from the
60127 GPIO Input Register (GPIOx_IR) in the same way that function
60128 gpio_read_out_bit() reads a bit from the GPIO Output Register
60129 (GPIOx_OR).
60130
60131 Second, it modifies function gpio_set_chip_configuration() to provide
60132 an additional option for configuring the GPIO from the
60133 "CFG_4xx_GPIO_TABLE".
60134
60135 According to the 440EPx User's Manual, when an alternate output is used,
60136 the three-state control is configured in one of two ways, depending on
60137 the particular output. The first option is to select the corresponding
60138 alternate three-state control in the GPIOx_TRSH/L registers. The second
60139 option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
60140 the GPIOx_TRSH/L registers, and set the corresponding bit in the
60141 GPIOx_TCR register to enable the output. For example, the Manual
60142 specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
60143 the alternate three-state control (first option), and specifies
60144 configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
60145 enabled in the GPIOx_TCR register (second option).
60146
60147 Currently, gpio_set_chip_configuration() configures all alternate signal
60148 outputs to use the first option. This patch allow the second option to
60149 be selected by setting the "out_val" element in the table entry to
60150 "GPIO_OUT_1". The first option is used when the "out_val" element is
60151 set to "GPIO_OUT_0". Because "out_val" is not currently used when an
60152 alternate signal is selected, and because all current GPIO tables set
60153 "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
60154 not change any existing configurations.
60155
60156 Signed-off-by: Larry Johnson <lrj@acm.org>
60157
60158 commit 196404cdc1de495d6182e84731c200fc5748df15
60159 Author: Larry Johnson <lrj@arlinx.com>
60160 Date: Sun Dec 30 01:01:54 2007 -0500
60161
60162 PPC4xx: Remove sdram.h from board/lwmon5
60163
60164 These definitions are now in "include/ppc440.h".
60165
60166 Signed-off-by: Larry Johnson <lrj@acm.org>
60167
60168 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
60169 Author: Larry Johnson <lrj@arlinx.com>
60170 Date: Sun Dec 30 01:01:32 2007 -0500
60171
60172 PPC4xx: Use common code for LWMON5 board SDRAM support
60173
60174 This patch also modifies the functionality of the code so that the data-eye
60175 search is now done with with the cache disabled.
60176
60177 Signed-off-by: Larry Johnson <lrj@acm.org>
60178
60179 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
60180 Author: Larry Johnson <lrj@arlinx.com>
60181 Date: Sun Dec 30 01:01:14 2007 -0500
60182
60183 PPC4xx: Remove sdram.h from board/amcc/sequoia
60184
60185 These definitions are now in "include/ppc440.h".
60186
60187 Signed-off-by: Larry Johnson <lrj@acm.org>
60188
60189 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
60190 Author: Larry Johnson <lrj@arlinx.com>
60191 Date: Sun Dec 30 01:00:50 2007 -0500
60192
60193 PPC4xx: Use common code for Sequoia board SDRAM support
60194
60195 Signed-off-by: Larry Johnson <lrj@acm.org>
60196
60197 commit 8b0c5c127690335758100c25eaec2b84db97c101
60198 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60199 Date: Thu Dec 27 16:58:41 2007 +0100
60200
60201 net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
60202
60203 When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
60204 networking stack does not automatically switch to
60205 another interface. This patch does not touch the default
60206 behavior.
60207
60208 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60209 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
60210
60211 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
60212 Author: Upakul Barkakaty <upakul@gmail.com>
60213 Date: Thu Nov 29 12:16:13 2007 +0530
60214
60215 NET: Proper return code handling in eth_init() function in file eth.c
60216
60217 This patch modifies the return code handling in the eth_init()
60218 function, to be compatible with the handling of the return codes in
60219 the other network stack files. It now returns a 0 on Success and -1 on
60220 error.
60221
60222 Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
60223 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
60224
60225 commit 5ca2d0953e4579a80810966cca2077e20d912c97
60226 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
60227 Date: Mon Nov 19 20:27:04 2007 +0900
60228
60229 net/eth.c: Fix env_enetaddr signed overflow
60230
60231 Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
60232 warned as below:
60233
60234 U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
60235
60236 DRAM: 256 MB
60237 Flash: 32 MB
60238 In: serial
60239 Out: serial
60240 Err: serial
60241 Net: NEC-Candy
60242 Warning: NEC-Candy MAC addresses don't match:
60243 Address in SROM is 00:00:4C:80:92:A2
60244 Address in environment is FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
60245
60246 This patch changes env_enetaddr type from `char' to `unsigned char'.
60247
60248 Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
60249 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
60250 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
60251
60252 commit f85b60710571b37293d2233933b76e2aa3db5635
60253 Author: Rafal Jaworowski <raj@semihalf.com>
60254 Date: Thu Dec 27 18:19:02 2007 +0100
60255
60256 Introduce new eth_receive routine
60257
60258 The purpose of this routine is receiving a single network frame, outside of
60259 U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
60260 U-Boot will let them utilise networking facilities. For sending a raw frame
60261 the already existing eth_send() can be used.
60262
60263 The direct consumer of this routine is the newly introduced API layer for
60264 external applications (enabled with CONFIG_API).
60265
60266 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
60267 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
60268 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
60269
60270 commit 5c740711f0ea5b51414b341b71597c4a0751be74
60271 Author: Jon Loeliger <jdl@freescale.com>
60272 Date: Thu Jan 3 10:41:04 2008 -0600
60273
60274 8610: Move include of config.h earlier.
60275
60276 Include config.h earlier in the set of #includes
60277 so as to avoid a incidental and duplicate definition
60278 of CFG_CACHELINE_SIZE.
60279
60280 Signed-off-by: Jon Loeliger
60281
60282 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
60283 Author: Jon Loeliger <jdl@freescale.com>
60284 Date: Tue Dec 4 10:53:34 2007 -0600
60285
60286 Don't slam #undef DEBUG in the 8641HPCN config file.
60287
60288 Doing so prevents it from being individually set
60289 and useful in other files.
60290
60291 Signed-off-by: Jon Loeliger <jdl@freescale.com>
60292
60293 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
60294 Author: Jon Loeliger <jdl@freescale.com>
60295 Date: Wed Nov 28 14:47:18 2007 -0600
60296
60297 Convert MPC8641HPCN to use libfdt.
60298
60299 Assumes the presence of the aliases node in the DTS to
60300 locate the ethernet, pci and serial nodes for fixups.
60301
60302 Use consistent fdtaddr and fdtfile in environment variables.
60303
60304 Signed-off-by: Jon Loeliger <jdl@freescale.com>
60305
60306 commit ce37422d0002e10490e268392e0c4e3028e52cec
60307 Author: Stefan Roese <sr@denx.de>
60308 Date: Wed Jan 2 14:06:26 2008 +0100
60309
60310 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
60311
60312 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
60313 flash chips connected to a 32bit wide port.
60314
60315 Signed-off-by: Stefan Roese <sr@denx.de>
60316
60317 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
60318 Author: Wolfgang Denk <wd@denx.de>
60319 Date: Wed Jan 2 15:58:44 2008 +0100
60320
60321 Fix compile problem introduced by "cleanup" commit 3dfd708c
60322
60323 Signed-off-by: Wolfgang Denk <wd@denx.de>
60324
60325 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
60326 Author: Wolfgang Denk <wd@denx.de>
60327 Date: Wed Jan 2 15:54:45 2008 +0100
60328
60329 Make scripts and Makefiles POSIX compliant
60330
60331 The bash builtin versions of the "test" (resp. "[") command allow
60332 using "==" for string comparisons, but POSIX compatible implemen-
60333 tations (like /usr/bin/test) insist on using "=" only. On such systems
60334 you will see:
60335
60336 $ /usr/bin/test a == a && echo OK
60337 /usr/bin/test: ==: binary operator expected
60338
60339 This patch fixes Makefiles and scripts to use POSIX style.
60340
60341 Signed-off-by: Wolfgang Denk <wd@denx.de>
60342
60343 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
60344 Author: Stefan Roese <sr@denx.de>
60345 Date: Wed Jan 2 14:05:37 2008 +0100
60346
60347 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
60348
60349 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
60350 flash chips connected to a 32bit wide port.
60351
60352 Signed-off-by: Stefan Roese <sr@denx.de>
60353
60354 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
60355 Author: Wolfgang Denk <wd@denx.de>
60356 Date: Wed Jan 2 12:38:43 2008 +0100
60357
60358 Minor coding style cleanup.
60359
60360 Signed-off-by: Wolfgang Denk <wd@denx.de>
60361
60362 commit e174ac34adf5d5653df12bc3cf19c52063a71269
60363 Author: Stefan Roese <sr@denx.de>
60364 Date: Fri Dec 28 17:29:56 2007 +0100
60365
60366 ppc4xx: Coding style cleanup
60367
60368 Signed-off-by: Stefan Roese <sr@denx.de>
60369
60370 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
60371 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60372 Date: Fri Dec 28 17:07:24 2007 +0100
60373
60374 ppc4xx: Complete PMC440 board support
60375
60376 This patch brings the PMC440 board configuration file.
60377 Finally it enables the PMC440 board support.
60378
60379 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60380
60381 commit 407843a582560fc5231299561ab3c2b6b6cd3397
60382 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60383 Date: Fri Dec 28 17:07:18 2007 +0100
60384
60385 ppc4xx: Add FPGA support and BSP commands for PMC440 boards
60386
60387 This patch adds some BSP commands and FPGA booting support
60388 for esd's PMC440 boards.
60389
60390 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60391
60392 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
60393 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60394 Date: Fri Dec 28 17:07:14 2007 +0100
60395
60396 ppc4xx: Add initial esd PMC440 board files
60397
60398 This patch adds the first files for the new esd PMC440 boards.
60399 The next two patches will complete the PMC440 board support.
60400
60401 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60402
60403 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
60404 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60405 Date: Fri Dec 28 17:10:36 2007 +0100
60406
60407 ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
60408
60409 - add EEPROM write protection for esd PLU405 boards.
60410 - initialize NAND GPIOs
60411 - use correct io accessors
60412 - cleanup
60413
60414 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60415
60416 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
60417 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60418 Date: Fri Dec 28 17:10:44 2007 +0100
60419
60420 ppc4xx: use correct io accessors for esd's LCD code
60421
60422 This patch fixes esd's LCD dectection code to work correctly with
60423 newer gcc versions.
60424
60425 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60426
60427 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
60428 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60429 Date: Fri Dec 28 17:10:42 2007 +0100
60430
60431 ppc4xx: Maintenance patch for VOH405 boards
60432
60433 - add EEPROM write protection
60434 - initialize NAND GPIOs
60435 - use correct io accessors
60436 - slow down I2C clock to 100kHz
60437 - enable ext. I2C bus
60438 - cleanup
60439
60440 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60441
60442 commit c05569066dbcba3fdf36d4d1943df265dc316a86
60443 Author: Stefan Roese <sr@denx.de>
60444 Date: Fri Dec 28 16:08:08 2007 +0100
60445
60446 ppc4xx: Enable 405EP PCI arbiter per default on all boards
60447
60448 In an attmemt to clean up the 4xx start.S file, I removed the enabling
60449 of the internal 405EP PCI arbiter. This is needed for multiple other
60450 405EP platforms, like most of the esd 405EP. Now the internal PCI
60451 arbiter is enabled again per default as it has been before.
60452
60453 Signed-off-by: Stefan Roese <sr@denx.de>
60454 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60455
60456 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
60457 Author: Stefan Roese <sr@denx.de>
60458 Date: Fri Dec 28 15:53:46 2007 +0100
60459
60460 ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
60461
60462 Signed-off-by: Stefan Roese <sr@denx.de>
60463 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60464
60465 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
60466 Author: Stefan Roese <sr@denx.de>
60467 Date: Fri Dec 28 06:06:04 2007 +0100
60468
60469 ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
60470
60471 Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
60472 platforms mentioned above.
60473
60474 Signed-off-by: Stefan Roese <sr@denx.de>
60475
60476 commit b568fd25574181a3b12ae3d66b2913903442cb83
60477 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60478 Date: Thu Dec 27 17:03:46 2007 +0100
60479
60480 Remove CPCI440 board
60481
60482 This board never left prototyping state and it
60483 became a millstone round my neck. So remove it.
60484
60485 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60486
60487 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
60488 Author: Larry Johnson <lrj@arlinx.com>
60489 Date: Thu Dec 27 11:28:51 2007 -0500
60490
60491 Add support for Korat PPC440EPx board
60492
60493 These patches add support for the PPC440EPx-based "Korat" board to
60494 U-Boot. They are based primarily on support for the Sequoia board.
60495
60496 Signed-off-by: Larry Johnson <lrj@acm.org>
60497
60498 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
60499 Author: Larry Johnson <lrj@arlinx.com>
60500 Date: Sat Dec 22 15:16:25 2007 -0500
60501
60502 Add configuration file for Korat board
60503
60504 This patch supplies the configuration file for the Korat PPC440EPx-
60505 processor board.
60506
60507 Signed-off-by: Larry Johnson <lrj@acm.org>
60508
60509 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
60510 Author: Larry Johnson <lrj@arlinx.com>
60511 Date: Sat Dec 22 15:16:11 2007 -0500
60512
60513 Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
60514
60515 Signed-off-by: Larry Johnson <lrj@acm.org>
60516
60517 commit aba19604d848b2838cfb9ebe818909e6a216058e
60518 Author: Larry Johnson <lrj@arlinx.com>
60519 Date: Thu Dec 27 10:54:48 2007 -0500
60520
60521 Add 440EPx DDR2 SPD DIMM support
60522
60523 This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
60524 controller. It should also work on the 440GRx. It is based on the DDR2
60525 SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
60526
60527 This code has been tested on prototype Korat boards with three Kingston
60528 DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
60529 (two ranks). The Korat board has a single DIMM socket, but support has
60530 been provided (though not tested) for boards with two DIMM sockets.
60531
60532 Signed-off-by: Larry Johnson <lrj@acm.org>
60533
60534 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
60535 Author: Larry Johnson <lrj@arlinx.com>
60536 Date: Sat Dec 22 15:15:30 2007 -0500
60537
60538 Copy 440EPx/GRx SDRAM data-eye search to common directory
60539
60540 This patch creates a non-board-specific file for performing the SDRAM
60541 data-eye search. It also adds ECC error checking to the test of valid
60542 data on readback when ECC is enabled.
60543
60544 Signed-off-by: Larry Johnson <lrj@acm.org>
60545
60546 commit c46f53333b22b1f9098676bea8884fc7db820cf3
60547 Author: Larry Johnson <lrj@arlinx.com>
60548 Date: Sat Dec 22 15:15:13 2007 -0500
60549
60550 Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
60551
60552 This patch adds the Denali SDRAM controller definitions to "ppc440.h".
60553 It also fixes two typos in the definitions, so the board-specific
60554 "sdram.h" files containing these definitions are also fixed to avoid
60555 compiler warnings.
60556
60557 Signed-off-by: Larry Johnson <lrj@acm.org>
60558
60559 commit c348578bf612d0c56d8d376d23cae16defbd86af
60560 Author: Larry Johnson <lrj@arlinx.com>
60561 Date: Thu Dec 27 10:50:55 2007 -0500
60562
60563 Add Ethernet 1000BASE-X support for PPC4xx
60564
60565 This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG". When this symbol
60566 is defined, the PHY will advertise it's capabilities for autonegotiation
60567 based on the capabilities shown in the PHY's status registers, including
60568 1000BASE-X. When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
60569 advertise hard-coded capabilities, as before.
60570
60571 Signed-off-by: Larry Johnson <lrj@acm.org>
60572
60573 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
60574 Author: Larry Johnson <lrj@arlinx.com>
60575 Date: Thu Dec 27 09:52:17 2007 -0500
60576
60577 Add driver for National Semiconductor LM73 temperature sensor
60578
60579 This driver is based on the driver for the LM75.
60580
60581 Signed-off-by: Larry Johnson <lrj@acm.org>
60582
60583 commit 12618278688ea9b3d76536960a5ad2e3790fac40
60584 Author: Larry Johnson <lrj@arlinx.com>
60585 Date: Sat Dec 22 15:14:00 2007 -0500
60586
60587 Add driver for STMicroelectronics M41T60 RTC
60588
60589 This driver is based on the driver for the M41T11. In the intended
60590 application, the RTC will be powered by a large capacitor, rather than a
60591 battery. The driver therefore checks to see whether the RTC has lost
60592 power. The chip's OUT bit is normally reset from its power-up state. If
60593 the OUT bit is read as set, or if the date and time are not valid, then the
60594 RTC is assumed to have lost power, and its date and time are reset to
60595 1900-01-01 00:00:00.
60596
60597 Support for adjusting the speed of the clock to improve accuracy is
60598 provided through an environment variable.
60599
60600 Signed-off-by: Larry Johnson <lrj@acm.org>
60601
60602 commit d3471173e14b7544bb60339eda8d3d3906694b0a
60603 Author: Larry Johnson <lrj@arlinx.com>
60604 Date: Sat Dec 22 15:34:39 2007 -0500
60605
60606 Use out_be32() and friends to access memory-mapped registers in sequoia.c
60607
60608 Signed-off-by: Larry Johnson <lrj@acm.org>
60609
60610 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
60611 Author: Larry Johnson <lrj@arlinx.com>
60612 Date: Sat Dec 22 15:34:20 2007 -0500
60613
60614 Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
60615
60616 Signed-off-by: Larry Johnson <lrj@acm.org>
60617
60618 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
60619 Author: Larry Johnson <lrj@arlinx.com>
60620 Date: Sat Dec 22 15:23:50 2007 -0500
60621
60622 Cosmetic changes to ECC POST for AMCC Denali core
60623
60624 Signed-off-by: Larry Johnson <lrj@acm.org>
60625
60626 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
60627 Author: Stefan Roese <sr@denx.de>
60628 Date: Wed Dec 26 20:20:19 2007 +0100
60629
60630 ppc4xx: Fix compilation problem in 405 cache POST test
60631
60632 Signed-off-by: Stefan Roese <sr@denx.de>
60633
60634 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
60635 Author: Stefan Roese <sr@denx.de>
60636 Date: Sat Dec 22 12:20:09 2007 +0100
60637
60638 ppc4xx: Move virtual address of POST cache test to bigger address
60639
60640 On Sequoia & LWMON5 the virtual address of the POST cache test is now
60641 moved to a bigger address. This enables usage of more memory on those
60642 boards.
60643
60644 Signed-off-by: Stefan Roese <sr@denx.de>
60645
60646 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
60647 Author: Stefan Roese <sr@denx.de>
60648 Date: Sat Dec 22 12:18:26 2007 +0100
60649
60650 ppc4xx: Fix problem in 44x cache POST routine
60651
60652 As repoted by Larry Johnson, running "diag run cache" caused a crash
60653 in U-Boot. This problem was introduced by a patch that removed the
60654 TLB entry for the cache test after the test has completed. Since this
60655 TLB was only setup once, a 2nd attempt to run this cache test
60656 failed with a crash. Now this TLB entry is created every time the
60657 routine is called.
60658
60659 Signed-off-by: Stefan Roese <sr@denx.de>
60660
60661 commit b0265b576bb8fa9465f99e99c323768b562fadc2
60662 Author: Stefan Roese <sr@denx.de>
60663 Date: Fri Dec 21 07:51:29 2007 +0100
60664
60665 ppc4xx: Update Makalu fdt support
60666
60667 Signed-off-by: Stefan Roese <sr@denx.de>
60668
60669 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
60670 Author: Stefan Roese <sr@denx.de>
60671 Date: Wed Dec 19 09:05:40 2007 +0100
60672
60673 ppc4xx: Add fdt support to AMCC Katmai eval board
60674
60675 Signed-off-by: Stefan Roese <sr@denx.de>
60676
60677 commit 328a340392a5df9aaf00792be989df73e750859e
60678 Author: Stefan Roese <sr@denx.de>
60679 Date: Tue Dec 18 08:44:51 2007 +0100
60680
60681 ppc4xx: fdt: Cleanup setup of cpu node setup
60682
60683 Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
60684 without using the absolute path to the cpu node. This makes it possible
60685 to use this U-Boot version with both versions of cpu-node naming
60686 "cpu@0" and the former "PowerPC,440EPx@0".
60687
60688 Signed-off-by: Stefan Roese <sr@denx.de>
60689
60690 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
60691 Author: Stefan Roese <sr@denx.de>
60692 Date: Mon Dec 17 17:26:21 2007 +0100
60693
60694 ppc4xx: Fix lwmon5 compilation problem
60695
60696 Now that the 440EPx ECC test is not board specific anymore
60697 remove this Makefile.
60698
60699 Signed-off-by: Stefan Roese <sr@denx.de>
60700
60701 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
60702 Author: Anatolij Gustschin <agustschin@t-online.de>
60703 Date: Wed Dec 5 17:43:20 2007 +0100
60704
60705 Fix ppc4xx clear_bss() code
60706
60707 ppc4xx clear_bss() fails if BSS segment size is not
60708 divisible by 4 without remainder. This patch provides
60709 fix for this problem.
60710
60711 Signed-off-by: Anatolij Gustschin <agust@denx.de>
60712
60713 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
60714 Author: Niklaus Giger <niklausgiger@gmx.ch>
60715 Date: Fri Nov 30 18:35:11 2007 +0100
60716
60717 PPC4xx: Minimal changes to add vxWorks support
60718
60719 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
60720
60721 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
60722 Author: Markus Klotzbücher <mk@denx.de>
60723 Date: Fri Nov 23 13:09:18 2007 +0100
60724
60725 ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
60726
60727 When using dhcp/bootp the "netmask" environment variable is not
60728 set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
60729 desireable, so the following patch adds this this option to the board
60730 config.
60731
60732 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
60733 Signed-off-by: Stefan Roese <sr@denx.de>
60734
60735 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
60736 Author: Larry Johnson <lrj@arlinx.com>
60737 Date: Sat Oct 27 12:48:15 2007 -0400
60738
60739 Fix/enhance ECC POST for 440EPx/GRx
60740
60741 This patch allows the ECC POST to be used for different boards with the
60742 PPC440 Denali SDRAM controller. Modifications include skipping the test
60743 if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
60744 to prevent timing errors.
60745
60746 Signed-off-by: Larry Johnson <lrj@acm.org>
60747
60748 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
60749 Author: Larry Johnson <lrj@arlinx.com>
60750 Date: Sat Oct 27 12:48:05 2007 -0400
60751
60752 PPC4xx: Move/rename ECC POST for 440EPx/GRx
60753
60754 Signed-off-by: Larry Johnson <lrj@acm.org>
60755
60756 commit c29d2d3680046d430022c55e50fcb27f5866517e
60757 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60758 Date: Fri Dec 14 11:20:33 2007 +0100
60759
60760 ppc4xx: use correct io accessors for 4xx ethernet POST
60761
60762 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60763
60764 commit ba79fde58a48c0a6ff8e2a96caba951594142203
60765 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60766 Date: Fri Dec 14 11:19:56 2007 +0100
60767
60768 ppc4xx: fix flush + invalidate_dcache_range arguments
60769
60770 flush + invalidate_dcache_range() expect the start and stop+1 address.
60771 So the stop address is the first address behind (!) the range.
60772
60773 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
60774
60775 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
60776 Author: Stefan Roese <sr@denx.de>
60777 Date: Fri Dec 14 08:41:29 2007 +0100
60778
60779 ppc4xx: fdt: use fdt_fixup_ethernet()
60780
60781 By using aliases in the dts file, the ethernet node fixup is
60782 much easier with the recently added functions.
60783
60784 Please note that the dts file needs the aliases for this to work.
60785
60786 Signed-off-by: Stefan Roese <sr@denx.de>
60787
60788 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
60789 Author: Stefan Roese <sr@denx.de>
60790 Date: Thu Dec 13 14:52:53 2007 +0100
60791
60792 ppc4xx: Bring 4xx fdt support up-to-date
60793
60794 This patch update the 4xx fdt support. It enabled fdt booting
60795 on the AMCC Kilauea and Sequoia for now. More can follow later
60796 quite easily.
60797
60798 Signed-off-by: Stefan Roese <sr@denx.de>
60799
60800 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
60801 Author: Stefan Roese <sr@denx.de>
60802 Date: Thu Dec 27 07:50:54 2007 +0100
60803
60804 cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
60805
60806 The check for an sufficiently erased destination was missing in the
60807 buffered write function of the cfi flash driver (when
60808 CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
60809 writing to such a region will fail with the currect error message.
60810
60811 Signed-off-by: Stefan Roese <sr@denx.de>
60812
60813 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
60814 Author: Martin Krause <martin.krause@tqs.de>
60815 Date: Mon Nov 12 10:56:17 2007 +0100
60816
60817 Some configuration updates for the TQM5200 based TB5200 board:
60818
60819 - enable command line history
60820 - increase malloc space (because of bigger flash sectors)
60821
60822 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60823
60824 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
60825 Author: Martin Krause <martin.krause@tqs.de>
60826 Date: Thu Sep 27 11:10:08 2007 +0200
60827
60828 TQM8xx: use the CFI flash driver on all TQM8xx boards
60829
60830 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60831
60832 commit 11d9eec479b470eab9242ab937fca70a876d9376
60833 Author: Martin Krause <martin.krause@tqs.de>
60834 Date: Wed Sep 26 17:55:56 2007 +0200
60835
60836 TQM885D: adjust for doubled flash sector size + some minor fixes
60837
60838 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60839
60840 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
60841 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
60842 Date: Wed Sep 26 17:55:54 2007 +0200
60843
60844 TQM885D: Exchanged SDRAM timing by a more relaxed timing.
60845
60846 CAS-Latency=2, Write Recovery Time tWR=2
60847 The max. supported bus frequency is 66 MHz. Therefore, changed
60848 threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
60849
60850 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60851
60852 commit b988b8cd443989be65161888eea0127ad03f846f
60853 Author: Martin Krause <martin.krause@tqs.de>
60854 Date: Wed Sep 26 17:55:56 2007 +0200
60855
60856 TQM885D: use calculated cpuclk instead of measuring it
60857
60858 On the TQM885D the measurement of cpuclk with the PIT reference
60859 timer ist not necessary. Since all module variants use the same
60860 external 10 MHz oscillator, the cpuclk only depends on the PLL
60861 configuration - which is readable by software.
60862
60863 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60864
60865 commit 492c7049869348d31168de8dad89651315e468e0
60866 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
60867 Date: Thu Sep 27 14:54:46 2007 +0200
60868
60869 TQM885D: fix SDRAM refresh
60870
60871 At 133 MHz the current SDRAM refresh rate is too fast
60872 (measured 4 * 1.17 us).
60873 CFG_MAMR_PTA changes from 39 to 128. This result
60874 in a refresh rate of 4 * 7.8 us at the default clock
60875 66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
60876 This is a compromise until a new method is found to
60877 adjust the refresh rate.
60878
60879 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60880
60881 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
60882 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
60883 Date: Thu Sep 27 14:54:46 2007 +0200
60884
60885 TQM860M: Support for 10col SDRAMs, max. 128 MiB
60886
60887 Signed-off-by: Martin Krause <martin.krause@tqs.de>
60888
60889 commit 61fb15c516fef5631e305f1976d7b3a679725856
60890 Author: Wolfgang Denk <wd@denx.de>
60891 Date: Thu Dec 27 01:52:50 2007 +0100
60892
60893 Fix coding style issues; update CHANGELOG.
60894
60895 Signed-off-by: Wolfgang Denk <wd@denx.de>
60896
60897 commit 467bcee11fe26ad422f2de971aa70866079870f2
60898 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60899 Date: Fri Dec 14 15:36:18 2007 +0100
60900
60901 cfi_flash: Add manufacturer-specific fixups
60902
60903 Run fixups based on the JEDEC manufacturer ID independent of the
60904 command set ID.
60905
60906 This changes current behaviour: Previously, geometry reversal for AMD
60907 chips were done based on the command set ID, while they are now done
60908 based on the JEDEC manufacturer and device ID.
60909
60910 Also add fixup for top-boot Atmel chips. A fixup is needed for
60911 AT49BV6416(T) too, but since u-boot currently only reads the low byte
60912 of the device ID, there's no way to tell it apart from AT49BV642D,
60913 which should not have this fixup. Since AT49BV642D support is
60914 necessary to get ATNGW100 board support into mainline, I've commented
60915 out the fixup for now.
60916
60917 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60918
60919 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
60920 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60921 Date: Fri Dec 14 15:36:17 2007 +0100
60922
60923 cfi_flash: Add cmdset-specific init functions
60924
60925 Move things like reading JEDEC IDs and fixing up geometry reversal
60926 into separate functions. The geometry reversal fixup is now performed
60927 by altering the qry structure directly, which makes the sector init
60928 code slightly cleaner.
60929
60930 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60931
60932 commit e23741f4a6d8047520ef0d4971762749b3587d32
60933 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60934 Date: Fri Dec 14 15:36:16 2007 +0100
60935
60936 cfi_flash: Read whole QRY structure in one go
60937
60938 Read out the whole CFI Standard Query structure after successful cfi
60939 identification. This allows subsequent code to access this information
60940 directly without having to go through flash_read_uchar() and friends.
60941
60942 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60943
60944 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
60945 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60946 Date: Mon Dec 17 11:02:44 2007 +0100
60947
60948 AVR32: Fix logic inversion in disable_interrupts()
60949
60950 disable_interrupts() should return nonzero if interrupts were
60951 _enabled_ before, not disabled.
60952
60953 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60954
60955 commit acac475212cbedb17b321a363a1c878e2b47b37f
60956 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60957 Date: Fri Dec 14 16:51:22 2007 +0100
60958
60959 AVR32: Enable interrupts at bootup
60960
60961 The timer code depends on the timer interrupt to keep track of the
60962 upper 32 bits of the cycle counter. This obviously doesn't work when
60963 interrupts are disabled the whole time.
60964
60965 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60966
60967 commit 9570bcd87f4db255514f43b6701746c412f8fef0
60968 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60969 Date: Thu Nov 15 10:03:45 2007 +0100
60970
60971 AVR32: Fix wrong pin setup for USART3
60972
60973 As reported by Gerhard Berghofer:
60974
60975 in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
60976 instead of PB18 and PB19.
60977
60978 which is obviously correct. There's currently no code that uses
60979 USART3, but custom boards may run into problems.
60980
60981 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60982
60983 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
60984 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60985 Date: Thu Nov 1 12:44:20 2007 +0100
60986
60987 README: Remove ATSTK1000 daughterboard list
60988
60989 As noted by Kim Phillips, these lists tend to become out of date.
60990
60991 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
60992
60993 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
60994 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
60995 Date: Tue Oct 30 14:56:36 2007 +0100
60996
60997 Add ATSTK100[234] to MAINTAINERS
60998
60999 Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
61000 "mother". Also update the entry for ATSTK1000 to be not only about the
61001 AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
61002
61003 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61004
61005 commit 64ff2357b1727213803591813dbc779c924bf772
61006 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61007 Date: Mon Oct 29 13:02:54 2007 +0100
61008
61009 AVR32: Add support for the ATSTK1004 board
61010
61011 ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
61012 which is a derivative of AT32AP7000.
61013
61014 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61015
61016 commit 667568db157f374b85abd7e03596ddd1f0b25681
61017 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61018 Date: Mon Oct 29 13:02:54 2007 +0100
61019
61020 AVR32: Add support for the ATSTK1003 board
61021
61022 ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
61023 which is a derivative of AT32AP7000.
61024
61025 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61026
61027 commit 5fee84a794a51ec830548cda485a770efb018b92
61028 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61029 Date: Mon Oct 29 13:23:33 2007 +0100
61030
61031 AVR32: Make some AT32AP700x peripherals optional
61032
61033 Add a chip-features file providing definitions of the form
61034
61035 AT32AP700x_CHIP_HAS_<peripheral>
61036
61037 to indicate the availability of the given peripheral on the currently
61038 selected chip.
61039
61040 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61041
61042 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
61043 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61044 Date: Mon Oct 29 13:09:56 2007 +0100
61045
61046 AVR32: Rename at32ap7000 -> at32ap700x
61047
61048 The SoC-specific code for all the AT32AP700x CPUs is practically
61049 identical; the only difference is that some chips have less features
61050 than others. By doing this rename, we can add support for the AP7000
61051 derivatives simply by making some features conditional.
61052
61053 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61054
61055 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
61056 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61057 Date: Fri Jun 29 18:22:34 2007 +0200
61058
61059 atmel_mci: Show SR when block read fails
61060
61061 Show controller status as well as card status when an error occurs
61062 during block read.
61063
61064 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61065
61066 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
61067 Author: Stefan Roese <sr@denx.de>
61068 Date: Thu Dec 13 14:52:53 2007 +0100
61069
61070 ppc4xx: Bring 4xx fdt support up-to-date
61071
61072 This patch update the 4xx fdt support. It enabled fdt booting
61073 on the AMCC Kilauea and Sequoia for now. More can follow later
61074 quite easily.
61075
61076 Signed-off-by: Stefan Roese <sr@denx.de>
61077
61078 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
61079 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61080 Date: Thu Dec 13 12:56:34 2007 +0100
61081
61082 cfi_flash: Use map_physmem() and unmap_physmem()
61083
61084 Use map_physmem() and unmap_physmem() to convert from physical to
61085 virtual addresses. This gives the arch a chance to provide an uncached
61086 mapping for flash accesses.
61087
61088 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61089
61090 commit 4d7d6936eb29af7cca330937808312aa5f61454d
61091 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61092 Date: Thu Dec 13 12:56:33 2007 +0100
61093
61094 Introduce map_physmem() and unmap_physmem()
61095
61096 map_physmem() returns a virtual address which can be used to access a
61097 given physical address without involving the cache. unmap_physmem()
61098 should be called when the virtual address returned by map_physmem() is
61099 no longer needed.
61100
61101 This patch adds a stub implementation which simply returns the
61102 physical address cast to a uchar * for all architectures except AVR32,
61103 which converts the physical address to an uncached virtual mapping.
61104 unmap_physmem() is a no-op on all architectures, but if any
61105 architecture needs to do such mappings through the TLB, this is the
61106 hook where those TLB entries can be invalidated.
61107
61108 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61109
61110 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
61111 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61112 Date: Thu Dec 13 12:56:32 2007 +0100
61113
61114 cfi_flash: Introduce read and write accessors
61115
61116 Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
61117 them to access the flash memory. This makes it clearer when the flash
61118 is actually being accessed; merely dereferencing a volatile pointer
61119 looks just like any other kind of access.
61120
61121 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61122
61123 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
61124 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61125 Date: Thu Dec 13 12:56:31 2007 +0100
61126
61127 Implement __raw_{read,write}[bwl] on all architectures
61128
61129 This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
61130 m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
61131 from Linux.
61132
61133 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61134
61135 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
61136 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61137 Date: Sat Oct 6 18:55:36 2007 +0200
61138
61139 cfi_flash: Reorder functions and eliminate extra prototypes
61140
61141 Reorder the functions in cfi_flash.c so that each function only uses
61142 functions that have been defined before it. This allows the static
61143 prototype declarations near the top to be eliminated and might allow
61144 gcc to do a better job inlining functions.
61145
61146 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61147
61148 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
61149 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61150 Date: Thu Dec 13 12:56:29 2007 +0100
61151
61152 cfi_flash: Make some needlessly global functions static
61153
61154 Make functions not declared in any header file static.
61155
61156 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61157
61158 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
61159 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
61160 Date: Thu Dec 13 12:56:28 2007 +0100
61161
61162 cfi_flash: Break long lines
61163
61164 This patch tries to keep all lines in the cfi_flash driver below 80
61165 columns. There are a few lines left which don't fit this requirement
61166 because I couldn't find any trivial way to break them (i.e. it would
61167 take some restructuring, which I intend to do in a later patch.)
61168
61169 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
61170
61171 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
61172 Author: Bartlomiej Sieka <tur@semihalf.com>
61173 Date: Tue Dec 11 13:59:57 2007 +0100
61174
61175 CFI: synchronize command offsets with Linux CFI driver
61176
61177 Fixes non-working CFI Flash on the Inka4x0 board.
61178
61179 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
61180
61181 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
61182 Author: Kumar Gala <galak@kernel.crashing.org>
61183 Date: Fri Dec 7 12:17:34 2007 -0600
61184
61185 Handle MPC85xx PCIe reset errata (PCI-Ex 38)
61186
61187 On the MPC85xx boards that have PCIe enable the PCIe errata fix.
61188 (MPC8544DS, MPC8548CDS, MPC8568MDS).
61189
61190 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61191
61192 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
61193 Author: Kumar Gala <galak@kernel.crashing.org>
61194 Date: Fri Dec 7 12:04:30 2007 -0600
61195
61196 Update Freescale MPC85xx ADS/CDS/MDS board config
61197
61198 * Enabled CONFIG_CMD_ELF
61199
61200 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61201
61202 commit d435793229ce29a42797c1edc39f5b34f987f91a
61203 Author: Kumar Gala <galak@kernel.crashing.org>
61204 Date: Fri Dec 7 04:59:26 2007 -0600
61205
61206 Handle Asynchronous DDR clock on 85xx
61207
61208 The MPC8572 introduces the concept of an asynchronous DDR clock with
61209 regards to the platform clock.
61210
61211 Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
61212 mode.
61213
61214 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61215
61216 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
61217 Author: Kumar Gala <galak@kernel.crashing.org>
61218 Date: Thu Nov 29 10:34:28 2007 -0600
61219
61220 Update Freescale MPC85xx ADS/CDS/MDS board config
61221
61222 * Removed some misc environment setup
61223 * Enabled CONFIG_CMDLINE_EDITING
61224
61225 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61226
61227 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
61228 Author: Kumar Gala <galak@kernel.crashing.org>
61229 Date: Thu Nov 29 10:47:44 2007 -0600
61230
61231 Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
61232
61233 Minor path corrections needed to ensure buildability.
61234
61235 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61236
61237 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
61238 Author: Kumar Gala <galak@kernel.crashing.org>
61239 Date: Thu Nov 29 10:16:18 2007 -0600
61240
61241 Move the MPC8540 ADS board under board/freescale.
61242
61243 Minor path corrections needed to ensure buildability.
61244
61245 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61246
61247 commit 870ceac5b3a3486c109396e005af81ae762b5710
61248 Author: Kumar Gala <galak@kernel.crashing.org>
61249 Date: Thu Nov 29 10:14:50 2007 -0600
61250
61251 Move the MPC8560 ADS board under board/freescale.
61252
61253 Minor path corrections needed to ensure buildability.
61254
61255 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61256
61257 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
61258 Author: Kumar Gala <galak@kernel.crashing.org>
61259 Date: Thu Nov 29 10:13:47 2007 -0600
61260
61261 Move the MPC8568 MDS board under board/freescale.
61262
61263 Minor path corrections needed to ensure buildability.
61264
61265 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61266
61267 commit a853d56c59b33415304531443633808736acfc6e
61268 Author: Kumar Gala <galak@kernel.crashing.org>
61269 Date: Thu Nov 29 02:18:59 2007 -0600
61270
61271 Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
61272
61273 We already had defines for LAWAR_TRGT_IF_* that we should use
61274 rather than creating new ones. Also, added some missing defines for
61275 PCIE targets.
61276
61277 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61278
61279 commit 04db400892da37b76a585e332a0c137954ad2015
61280 Author: Kumar Gala <galak@kernel.crashing.org>
61281 Date: Thu Nov 29 02:10:09 2007 -0600
61282
61283 Stop using immap_t on 85xx
61284
61285 In the future the offsets to various blocks may not be in same location.
61286 Move to using CFG_MPC85xx_*_ADDR as the base of the registers
61287 instead of getting it via &immap.
61288
61289 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61290
61291 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
61292 Author: Kumar Gala <galak@kernel.crashing.org>
61293 Date: Thu Nov 29 01:23:09 2007 -0600
61294
61295 Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
61296
61297 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61298
61299 commit c480861bf000156e6a3e932c258db59ff2212dd3
61300 Author: Kumar Gala <galak@kernel.crashing.org>
61301 Date: Thu Nov 29 01:06:19 2007 -0600
61302
61303 Update MPC8568 MDS to use libfdt
61304
61305 Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
61306 ethernet, pci, and serial for the various fixups that are done.
61307
61308 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61309
61310 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
61311 Author: Haiying Wang <Haiying.Wang@freescale.com>
61312 Date: Wed Nov 14 15:52:06 2007 -0500
61313
61314 Add PCI Express support on MPC8568MDS
61315
61316 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
61317 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61318
61319 commit b90d25497625b90ffa3f2911a0895ca237556ff5
61320 Author: Kumar Gala <galak@kernel.crashing.org>
61321 Date: Thu Nov 29 00:11:44 2007 -0600
61322
61323 Update MPC85xx CDS to use libfdt
61324
61325 Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
61326 ethernet, pci, and serial for the various fixups that are done.
61327
61328 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61329
61330 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
61331 Author: Kumar Gala <galak@kernel.crashing.org>
61332 Date: Wed Nov 28 22:54:27 2007 -0600
61333
61334 Update MPC8540 ADS to use libfdt
61335
61336 Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
61337 ethernet, pci, and serial for the various fixups that are done.
61338
61339 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61340
61341 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
61342 Author: Kumar Gala <galak@kernel.crashing.org>
61343 Date: Wed Nov 28 22:40:31 2007 -0600
61344
61345 Update MPC8560 ADS to use libfdt
61346
61347 Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
61348 ethernet, pci, and serial for the various fixups that are done.
61349
61350 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61351
61352 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
61353 Author: Kumar Gala <galak@kernel.crashing.org>
61354 Date: Wed Nov 28 00:36:33 2007 -0600
61355
61356 Stop using immap_t for cpm offset on 85xx
61357
61358 In the future the offsets to various blocks may not be in same location.
61359 Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
61360 instead of getting it via &immap->im_cpm.
61361
61362 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61363
61364 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
61365 Author: Kumar Gala <galak@kernel.crashing.org>
61366 Date: Tue Nov 27 23:25:02 2007 -0600
61367
61368 Stop using immap_t for guts offset on 85xx
61369
61370 In the future the offsets to various blocks may not be in same location.
61371 Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
61372 instead of getting it via &immap->im_gur.
61373
61374 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61375
61376 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
61377 Author: Kumar Gala <galak@kernel.crashing.org>
61378 Date: Tue Nov 27 22:42:34 2007 -0600
61379
61380 Update MPC8544 DS config
61381
61382 * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
61383 * Removed some misc environment setup
61384 * Moved to using fdtfile & fdtaddr as fdt env var names
61385 * Enabled CONFIG_CMDLINE_EDITING
61386
61387 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61388
61389 commit addce57e2e4c49e77ffb2020a84690713bb18b47
61390 Author: Kumar Gala <galak@kernel.crashing.org>
61391 Date: Mon Nov 26 17:12:24 2007 -0600
61392
61393 Update MPC8544DS to use libfdt
61394
61395 Updated the MPC8544DS config to use libfdt and assume use of aliases for
61396 ethernet, pci, and serial for the various fixups that are done.
61397
61398 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61399
61400 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
61401 Author: Kumar Gala <galak@kernel.crashing.org>
61402 Date: Thu Nov 29 00:15:30 2007 -0600
61403
61404 Add libfdt based ft_cpu_setup for mpc85xx
61405
61406 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61407
61408 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
61409 Author: Stefan Roese <sr@denx.de>
61410 Date: Tue Dec 11 13:38:19 2007 +0100
61411
61412 ppc4xx: Correct GPIO offset in gpio_config()
61413
61414 Thanks to Gary Jennejohn for pointing this out.
61415
61416 Signed-off-by: Stefan Roese <sr@denx.de>
61417
61418 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
61419 Author: Stefan Roese <sr@denx.de>
61420 Date: Tue Dec 11 11:46:01 2007 +0100
61421
61422 rtc: Fix merging problem
61423
61424 Signed-off-by: Stefan Roese <sr@denx.de>
61425
61426 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
61427 Author: Stefan Roese <sr@denx.de>
61428 Date: Sat Dec 8 14:47:34 2007 +0100
61429
61430 ppc4xx: 405EX: Correctly enable USB pins
61431
61432 This patch selects the USB data pins in the 405EX GPIO and MFC (multi
61433 function control) registers. This is done for the AMCC Kilauea and
61434 Makalu eval boards.
61435
61436 Signed-off-by: Stefan Roese <sr@denx.de>
61437
61438 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
61439 Author: Stefan Roese <sr@denx.de>
61440 Date: Sat Dec 8 08:25:09 2007 +0100
61441
61442 CFI: Coding style cleanup
61443
61444 Signed-off-by: Stefan Roese <sr@denx.de>
61445
61446 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
61447 Author: Michael Schwingen <michael@schwingen.org>
61448 Date: Fri Dec 7 23:35:02 2007 +0100
61449
61450 CFI: support JEDEC flash roms in CFI-flash framework
61451
61452 The following patch adds support for non-CFI flash ROMS, by hooking into the
61453 CFI flash code and using most of its code, as recently discussed here in the
61454 thread "Mixing CFI and non-CFI flashs".
61455
61456 Signed-off-by: Michael Schwingen <michael@schwingen.org>
61457 Signed-off-by: Stefan Roese <sr@denx.de>
61458
61459 commit c01b17dd856fa120b2970f50d9598546a4927ec3
61460 Author: Gerald Van Baren <vanbaren@cideas.com>
61461 Date: Wed Nov 28 21:24:50 2007 -0500
61462
61463 Conditionally compile fdt_fixup_ethernet()
61464
61465 Fix compiler warnings: On boards that don't have ethernets defined,
61466 don't compile fdt_fixup_ethernet().
61467
61468 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
61469 Author: Kumar Gala <galak@kernel.crashing.org>
61470 Date: Tue Nov 27 21:59:46 2007 -0600
61471
61472 Convert boards that set memory node to use fdt_fixup_memory()
61473
61474 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61475
61476 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
61477 Author: Kumar Gala <galak@kernel.crashing.org>
61478 Date: Mon Nov 26 17:06:15 2007 -0600
61479
61480 Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
61481
61482 We use a combination of the serialN alias and CONFIG_CONS_INDEX to
61483 determine which serial alias we should set linux,stdout-path to.
61484
61485 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61486
61487 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
61488 Author: Kumar Gala <galak@kernel.crashing.org>
61489 Date: Mon Nov 26 14:57:45 2007 -0600
61490
61491 Add common memory fixup function
61492
61493 Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
61494
61495 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61496
61497 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
61498 Author: Kumar Gala <galak@kernel.crashing.org>
61499 Date: Mon Nov 26 11:19:12 2007 -0600
61500
61501 Conditionally compile fdt_support.c
61502
61503 Modify common/Makefile to conditionally compile fdt_support.c based
61504 on CONFIG_OF_LIBFDT.
61505
61506 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61507
61508 commit d88e7ba0980773479e1a64badb293116071b7ef0
61509 Author: Kumar Gala <galak@kernel.crashing.org>
61510 Date: Mon Nov 26 10:41:40 2007 -0600
61511
61512 Fix build breakage due to libfdt import
61513
61514 The IDS8247 got lost in the update and need an API update
61515 do to rename of functions in libfdt.
61516
61517 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61518
61519 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
61520 Author: Gerald Van Baren <vanbaren@cideas.com>
61521 Date: Fri Nov 23 19:43:20 2007 -0500
61522
61523 Add spaces around the = in the fdt print format.
61524
61525 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
61526
61527 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
61528 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61529 Date: Fri Dec 7 01:25:38 2007 +0900
61530
61531 sh: Moved driver of the SuperH dependence
61532
61533 The composition of the directory in the drivers/ changed.
61534 I moved SuperH serial driver and marubun PCMCIA driver.
61535
61536 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61537
61538 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
61539 Author: Wolfgang Denk <wd@denx.de>
61540 Date: Thu Dec 6 10:21:19 2007 +0100
61541
61542 Release v1.3.1
61543
61544 Signed-off-by: Wolfgang Denk <wd@denx.de>
61545
61546 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
61547 Author: Wolfgang Denk <wd@denx.de>
61548 Date: Thu Dec 6 10:21:03 2007 +0100
61549
61550 ADS5121 Board: fix compile problem.
61551
61552 Signed-off-by: Wolfgang Denk <wd@denx.de>
61553
61554 commit a27044b14a9e93678a82d7b35f202b93e7687abc
61555 Author: Stefan Roese <sr@denx.de>
61556 Date: Thu Dec 6 05:58:43 2007 +0100
61557
61558 ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
61559
61560 This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
61561 setting the FIXD bit in the SDR0_MFR register. Here a description of the
61562 symptoms:
61563
61564 Problem Description
61565 ------------------------------
61566 If a DMA is performed between memory and PCI with the DMA 1 Controller
61567 using prefetch, and as a result uses a special purpose buffer selected by
61568 the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
61569 the first part of the transfer sequence is performed twice. The
61570 PPC440SPe PCI Controller requests more data than was needed such that in
61571 the case of enforce memory protection, a host CPU exception can occur.
61572 No data is corrupted, because data transfer is stopped in the PCI
61573 Controller. Prefetch enable is specified by setting DMA Configuration
61574 Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
61575
61576 Behavior that may be observed in a running system
61577 ---------------------------------------------------------------------------
61578
61579 1. DMA performance is decreased because of the double access on the PCI bus
61580 interface.
61581 2. If an illegal access to some address on the PCI bus is detected at the
61582 system level, a machine check or similar system error may occur.
61583
61584 Workarounds Available
61585 ----------------------------------
61586
61587 1. Do not program prefetch. Note that a prefetch command cannot be programmed
61588 without selecting a special purpose buffer.
61589 2. To avoid crossing a physical boundary of the PCI slave device, add 512
61590 bytes of address to the PCI address range.
61591
61592 This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
61593 from AMCC and slighly changed.
61594
61595 Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
61596 Signed-off-by: Stefan Roese <sr@denx.de>
61597
61598 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
61599 Author: Stefan Roese <sr@denx.de>
61600 Date: Tue Dec 4 16:29:48 2007 +0100
61601
61602 ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
61603
61604 Signed-off-by: Stefan Roese <sr@denx.de>
61605
61606 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
61607 Author: Wolfgang Denk <wd@denx.de>
61608 Date: Mon Dec 3 00:15:28 2007 +0100
61609
61610 Prepare for 1.3.1-rc1
61611
61612 Signed-off-by: Wolfgang Denk <wd@denx.de>
61613
61614 commit e15e33433e7c05111968dc9b434a52fd42cbd221
61615 Author: Stefan Roese <sr@denx.de>
61616 Date: Fri Nov 30 07:15:41 2007 +0100
61617
61618 ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
61619
61620 This manual PCIe reset triggering solves the problem seen with the
61621 Intel EPRO/1000 card, which was not detected (link not established)
61622 upon power-up reset.
61623
61624 Signed-off-by: Stefan Roese <sr@denx.de>
61625
61626 commit 260eea5676ca46903a335686cc020b29c4ca46fe
61627 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61628 Date: Thu Nov 29 01:21:54 2007 +0900
61629
61630 sh: Add SuperH boards maintainer to MAINTAINERS file
61631
61632 Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
61633
61634 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61635
61636 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
61637 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61638 Date: Thu Nov 29 00:13:04 2007 +0900
61639
61640 sh: Add ms7750se support in MAKEALL
61641
61642 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61643
61644 commit c7144373427a178332bf9754131c8c34c52c200a
61645 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61646 Date: Tue Nov 27 09:44:53 2007 +0100
61647
61648 sh: Add sh3 and sh4 support in MAKEALL
61649
61650 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61651 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61652
61653 commit 130080874a3d28450098481a262c5f7c855e908d
61654 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61655 Date: Sun Nov 25 02:51:17 2007 +0900
61656
61657 sh: Add document for SuperH.
61658
61659 This document is a summary of information concerning SuperH of U-Boot.
61660
61661 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61662
61663 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
61664 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61665 Date: Sun Nov 25 02:39:31 2007 +0900
61666
61667 sh: Add marubun's pcmcia driver
61668
61669 Marubun pcmcia is a chip for PCMCIA used with SuperH.
61670 Of course, this can be used even by other architectures.
61671 When use this driver, came to be able to use CompactFlash
61672 and Ethernet.
61673
61674 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61675
61676 commit febd86b969b975289ed948f1ac0eb9722da41ced
61677 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61678 Date: Sun Nov 25 02:32:13 2007 +0900
61679
61680 sh: Update SuperH SCIF driver
61681
61682 - Changed volatile unsigned to vu_.
61683 - Changed Makefile for kconfig.
61684
61685 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
61686
61687 commit 8be760903645af09871be50ad0a6f9ebb62b311d
61688 Author: Stefan Roese <sr@denx.de>
61689 Date: Tue Nov 27 11:57:35 2007 +0100
61690
61691 ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
61692
61693 After an error in the AMCC 405EX users manual now correctly configure
61694 IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
61695 usage.
61696
61697 Signed-off-by: Stefan Roese <sr@denx.de>
61698
61699 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
61700 Author: Wolfgang Denk <wd@denx.de>
61701 Date: Mon Nov 26 19:18:21 2007 +0100
61702
61703 Cleanup coding style; update CHANGELOG
61704
61705 Signed-off-by: Wolfgang Denk <wd@denx.de>
61706
61707 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
61708 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61709 Date: Sun Nov 25 22:39:25 2007 +0100
61710
61711 MAKEALL: add missing 512x boards in ppc
61712
61713 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61714
61715 commit a340c325e668ca7386c2276387681720be9c3757
61716 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61717 Date: Sun Nov 25 18:45:47 2007 +0100
61718
61719 Makefile : fix tags ctags etags with new drivers organization
61720
61721 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61722
61723 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
61724 Author: Stefan Roese <sr@denx.de>
61725 Date: Mon Nov 26 15:06:14 2007 +0100
61726
61727 ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
61728
61729 As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
61730 operation.
61731
61732 Signed-off-by: Stefan Roese <sr@denx.de>
61733
61734 commit ca1ce226287270bb01e25b8e3674c701f12edf19
61735 Author: Stefan Roese <sr@denx.de>
61736 Date: Mon Nov 26 15:01:45 2007 +0100
61737
61738 ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
61739
61740 Signed-off-by: Stefan Roese <sr@denx.de>
61741
61742 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
61743 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61744 Date: Sun Nov 25 18:45:47 2007 +0100
61745
61746 Makefile : fix tags ctags etags with new drivers organization
61747
61748 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61749
61750 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
61751 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61752 Date: Sat Nov 24 21:26:56 2007 +0100
61753
61754 drivers/mtd : move mtd drivers to drivers/mtd
61755
61756 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61757
61758 commit 318c0b90431f2648552e5ade78833f42652ce859
61759 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61760 Date: Sat Nov 24 21:17:55 2007 +0100
61761
61762 drivers/misc : move misc drivers to drivers/misc
61763
61764 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61765
61766 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
61767 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61768 Date: Sat Nov 24 21:13:59 2007 +0100
61769
61770 drivers/block : move block drivers to drivers/block
61771
61772 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61773
61774 commit 0c698dcaa70275eb8814f665b545547cee013892
61775 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61776 Date: Sat Nov 24 20:59:50 2007 +0100
61777
61778 drivers/rtc : move rtc drivers to drivers/rtc
61779
61780 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61781
61782 commit f868cc5a50757d94f36c312395481cb0f187d9e6
61783 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61784 Date: Sat Nov 24 20:14:44 2007 +0100
61785
61786 drivers/hwmon : move hardware monitor drviers to drivers/hwmon
61787
61788 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61789
61790 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
61791 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61792 Date: Sat Nov 24 19:46:45 2007 +0100
61793
61794 drivers/input : move input drivers to drivers/input
61795
61796 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61797
61798 commit e4558666293364fc3af1c1d9381ca933fa0f1275
61799 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61800 Date: Sat Nov 24 19:40:11 2007 +0100
61801
61802 drivers/usb : move usb drivers to drivers/usb
61803
61804 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61805
61806 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
61807 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61808 Date: Sat Nov 24 19:33:38 2007 +0100
61809
61810 drivers/serial : move serial drivers to drivers/serial
61811
61812 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61813
61814 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
61815 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61816 Date: Wed Nov 21 21:19:24 2007 +0100
61817
61818 drivers/net : move net drivers to drivers/net
61819
61820 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61821
61822 commit 352d259130b349fe9593b8dada641bd78a9659e5
61823 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61824 Date: Tue Nov 20 20:41:48 2007 +0100
61825
61826 drivers/video : move video drivers to drivers/video
61827
61828 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61829
61830 commit 73646217186aa17afc8e305c5f06f06dd335eaad
61831 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61832 Date: Tue Nov 20 20:33:09 2007 +0100
61833
61834 drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
61835
61836 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61837
61838 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
61839 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61840 Date: Tue Nov 20 20:28:09 2007 +0100
61841
61842 drivers/pci : move pci drivers to drivers/pci
61843
61844 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
61845
61846 commit 9162352817579840d7802da6d85872b3ca003c97
61847 Author: Gerald Van Baren <vanbaren@cideas.com>
61848 Date: Thu Nov 22 17:23:23 2007 -0500
61849
61850 Fix fdt printing for updated libfdt
61851
61852 Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
61853
61854 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
61855
61856 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
61857 Author: Kumar Gala <galak@kernel.crashing.org>
61858 Date: Wed Nov 21 13:30:15 2007 -0600
61859
61860 Add additional fdt fixup helper functions
61861
61862 Added the following fdt fixup helpers:
61863 * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
61864 * do_fixup_by_compat{_u32} - Find matching nodes by compat
61865
61866 The _u32 variants work the same only the property they are setting
61867 is know to be a 32-bit integer instead of a byte buffer.
61868
61869 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61870
61871 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
61872 Author: Kumar Gala <galak@kernel.crashing.org>
61873 Date: Wed Nov 21 11:11:03 2007 -0600
61874
61875 Add fdt_fixup_ethernet helper to set mac addresses
61876
61877 Added a fixup helper that uses aliases to set mac addresses
61878 in the device tree based on the bd_t
61879
61880 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61881
61882 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
61883 Author: Kumar Gala <galak@kernel.crashing.org>
61884 Date: Wed Nov 21 14:07:46 2007 -0600
61885
61886 Fix warnings from import of libfdt
61887
61888 cmd_fdt.c: In function fdt_print:
61889 cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
61890 cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
61891 cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
61892 cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
61893
61894 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61895
61896 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
61897 Author: Kumar Gala <galak@kernel.crashing.org>
61898 Date: Wed Oct 24 11:04:22 2007 -0500
61899
61900 Update libfdt from device tree compiler (dtc)
61901
61902 Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
61903 the device tree compiler (dtc) project.
61904
61905 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61906
61907 commit e93becf80d732b64aef81b23e8b6ece02c40533d
61908 Author: Kumar Gala <galak@kernel.crashing.org>
61909 Date: Sat Nov 3 19:46:28 2007 -0500
61910
61911 Move do_fixup* for libfdt into common code
61912
61913 Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
61914 into common/fdt_support.c and renamed:
61915
61916 do_fixup() -> do_fixup_by_path()
61917 do_fixup_u32() -> do_fixup_by_path_u32()
61918
61919 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61920
61921 commit f738b4a75998f42a7408defadc9baac7a31c92db
61922 Author: Kumar Gala <galak@kernel.crashing.org>
61923 Date: Thu Oct 25 16:15:07 2007 -0500
61924
61925 Make no options to fdt print default to '/'
61926
61927 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61928
61929 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
61930 Author: Kumar Gala <galak@kernel.crashing.org>
61931 Date: Wed Oct 24 10:21:57 2007 -0500
61932
61933 Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
61934
61935 Removed:
61936 fdt_node_is_compatible
61937 fdt_find_node_by_type
61938 fdt_find_compatible_node
61939
61940 To ease merge of newer libfdt as we aren't using them anywhere at this time.
61941
61942 Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
61943 reason.
61944
61945 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61946
61947 commit 98e2867cc85409b919f862e6c16026461ec955df
61948 Author: Grant Likely <grant.likely@secretlab.ca>
61949 Date: Wed Nov 21 09:19:37 2007 -0700
61950
61951 [BUILD] Remove libraries when updating autoconf.mk
61952
61953 Fix library problems caused by conditional compilation. Using
61954 autoconf.mk to decide which files to compile has caused a problem when
61955 changing configuration from one board to another without clearing out
61956 the library (*.a) files.
61957
61958 It used to be that the linker was always passed the same list of .o
61959 files when building the .a files. However, that is not longer true
61960 with conditional compilation. Now, a different board config will have
61961 a different file list passed to the linker. The problem occurs when
61962 a library has already been built and the board config is changed.
61963
61964 Since the linker will update instead of replace a preexisting library,
61965 then if the file list changes to remove some object files the old
61966 objects will still exist in the library.
61967
61968 The solution is to remove all old library files when autoconf.mk is
61969 made.
61970
61971 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
61972
61973 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
61974 Author: Kumar Gala <galak@kernel.crashing.org>
61975 Date: Wed Nov 21 08:49:50 2007 -0600
61976
61977 [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
61978
61979 Modify libfdt/Makefile to conditionally compile the *.c files based
61980 on the board config.
61981
61982 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
61983
61984 commit 4a43719a7738712811d822ca8125427b27a55cdc
61985 Author: Grant Likely <grant.likely@secretlab.ca>
61986 Date: Mon Sep 24 09:05:31 2007 -0600
61987
61988 [BUILD] conditionally compile common/cmd_*.c in common/Makefile
61989
61990 Modify common/Makefile to conditionally compile the cmd_*.c files based
61991 on the board config.
61992
61993 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
61994
61995 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
61996 Author: Grant Likely <grant.likely@secretlab.ca>
61997 Date: Mon Sep 24 09:05:31 2007 -0600
61998
61999 [BUILD] Generate include/autoconf.mk from board config files
62000
62001 Use cpp and sed to postprocess config.h and import the defined values
62002 into include/autoconf.mk. autoconf.mk is then included by config.mk to
62003 give 'make' access to the board configuration.
62004
62005 Doing this enables conditional compilation at the Makefile level instead
62006 of by wrapping every .c file with #ifdef/#endif wrappers.
62007
62008 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62009
62010 commit 68b88999da87ab88e71e1306192905be3450198e
62011 Author: Jon Loeliger <jdl@freescale.com>
62012 Date: Tue Nov 20 15:02:26 2007 -0600
62013
62014 8610HPCD: Enable the 8610 Display Interface Unit
62015
62016 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62017
62018 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
62019 Author: Jon Loeliger <jdl@freescale.com>
62020 Date: Tue Nov 20 15:00:53 2007 -0600
62021
62022 Move 8610 DIU interface structure definitions to header file.
62023
62024 These two structures are still needed during the
62025 initialization and setup of the DIU hardware.
62026 So move them to the fsl_diu_fb.h file for now.
62027 Official "blah".
62028
62029 Noticed-by: York Sun <yorksun@freescale.com>
62030 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62031
62032 commit 080c646dbf474a109c3f85718fb01ce042a38c45
62033 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62034 Date: Tue Nov 20 20:14:18 2007 +0100
62035
62036 drivers/i2c : move i2c drivers to drivers/i2c
62037
62038 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62039
62040 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
62041 Author: Wolfgang Denk <wd@denx.de>
62042 Date: Mon Nov 19 22:20:24 2007 +0100
62043
62044 Prepare for 1.3.0 release.
62045
62046 Signed-off-by: Wolfgang Denk <wd@denx.de>
62047
62048 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
62049 Author: Haiying Wang <Haiying.Wang@freescale.com>
62050 Date: Mon Nov 19 10:02:13 2007 -0500
62051
62052 Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
62053
62054 CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
62055
62056 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
62057
62058 commit f8c320609366176b31104d9bf5e295232e1c7f1d
62059 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
62060 Date: Mon Nov 19 11:14:16 2007 +0900
62061
62062 [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
62063
62064 lowlevel_init.S: Assembler messages:
62065 lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
62066
62067 Looking at codes, the `memtest' and `clearmem' are intentional mixed
62068 use of `global symbols' and `label' for debugging purpose. To make it
62069 build, just disable global-symbols-use for now. As a result `memtest'
62070 still remains as unused, but leave it be...
62071
62072 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
62073
62074 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
62075 Author: Wolfgang Denk <wd@denx.de>
62076 Date: Mon Nov 19 12:59:14 2007 +0100
62077
62078 Fix build problems with mp2usb board
62079
62080 Signed-off-by: Wolfgang Denk <wd@denx.de>
62081
62082 commit 6bf4c686afca1e86e1c384d59218f914605713bf
62083 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62084 Date: Sun Nov 18 18:36:11 2007 +0100
62085
62086 s3c24x0: Fix usb_ohci.c missing in Makefile
62087 and usb_ohci.c warning differ in signedness
62088
62089 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62090
62091 commit 6073f61e078da5ddb521b56256bcc36508589883
62092 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62093 Date: Sun Nov 18 12:55:02 2007 +0100
62094
62095 pb1x00 board: Fix u16 status declaration when PCMCIA is defined
62096
62097 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62098
62099 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
62100 Author: Wolfgang Denk <wd@denx.de>
62101 Date: Sun Nov 18 17:11:09 2007 +0100
62102
62103 Fix compiler warnings for ARM systems.
62104
62105 Signed-off-by: Wolfgang Denk <wd@denx.de>
62106
62107 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
62108 Author: Wolfgang Denk <wd@denx.de>
62109 Date: Sun Nov 18 16:36:27 2007 +0100
62110
62111 Fix compiler warnings for PPC systems. Update CHANGELOG.
62112
62113 Signed-off-by: Wolfgang Denk <wd@denx.de>
62114
62115 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
62116 Author: Stefan Roese <sr@denx.de>
62117 Date: Sun Nov 18 14:44:44 2007 +0100
62118
62119 ppc4xx: Correct 405EX PCIe UTL register mapping
62120
62121 Map 4k mem space for UTL registers for each port.
62122
62123 Signed-off-by: Stefan Roese <sr@denx.de>
62124
62125 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
62126 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62127 Date: Sat Nov 17 11:31:10 2007 +0100
62128
62129 Fix warning differ in signedness in net/net.c and net/nfs.c
62130
62131 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
62132 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62133 Date: Sat Nov 17 20:42:45 2007 +0900
62134
62135 gth2.c: Fix a warning on gth2 build.
62136
62137 gth2.c: In function 'misc_init_r':
62138 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
62139
62140 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62141
62142 commit 2309c130aa4c84b91bd874a41269c923eb61b555
62143 Author: Stefan Roese <sr@denx.de>
62144 Date: Sat Nov 17 07:58:25 2007 +0100
62145
62146 Fix warning differ in signedness in common/cmd_scsi.c
62147
62148 Signed-off-by: Stefan Roese <sr@denx.de>
62149
62150 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
62151 Author: Stefan Roese <sr@denx.de>
62152 Date: Sat Nov 17 14:52:29 2007 +0100
62153
62154 ppc4xx: Update AMCC Kilauea config file
62155
62156 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
62157
62158 Signed-off-by: Stefan Roese <sr@denx.de>
62159
62160 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
62161 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62162 Date: Sat Nov 17 20:05:26 2007 +0900
62163
62164 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
62165
62166 Current trick to pick up GNU assembler minor version does not work with the
62167 latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
62168 "(GNU Binutils) ".
62169
62170 $ sde-as --version |grep "GNU assembler"
62171 GNU assembler 2.15.94 mipssde-6.02.02-20050602
62172 $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
62173 2.15.94
62174 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
62175 15
62176 $
62177
62178 $ mips-linux-as --version |grep "GNU assembler"
62179 GNU assembler (GNU Binutils) 2.18
62180 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
62181 (GNU
62182 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
62183 (no output)
62184 $
62185
62186 As a result of above, you'll see many noises with such binutils:
62187
62188 make -C cpu/mips/
62189 /bin/sh: line 0: [: : integer expression expected
62190 /bin/sh: line 0: [: : integer expression expected
62191 make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
62192 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
62193 /bin/sh: line 0: [: : integer expression expected
62194 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
62195 /bin/sh: line 0: [: : integer expression expected
62196 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
62197 /bin/sh: line 0: [: : integer expression expected
62198
62199 This patch simplifies the trick and makes it work with both versions of gas.
62200 I also replace an expensive `awk (or gawk)' with `cut'.
62201
62202 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62203
62204 commit 16664f72850846e645616da1c0fa5afcd6d15f15
62205 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62206 Date: Sat Nov 17 20:05:26 2007 +0900
62207
62208 [MIPS] Remove useless instructions for initializing $gp.
62209
62210 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62211
62212 commit 03c031d5660ea946c39af6e2e16267da857c609f
62213 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62214 Date: Sat Oct 27 15:27:06 2007 +0900
62215
62216 [MIPS] MIPS 4K core: Coding style cleanups
62217
62218 No logical changes.
62219
62220 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62221
62222 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
62223 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62224 Date: Sat Nov 17 20:05:20 2007 +0900
62225
62226 [MIPS] gth2.c: Fix a warning on gth2 build.
62227
62228 gth2.c: In function 'misc_init_r':
62229 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
62230
62231 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62232
62233 commit 4fbd0741b2b6441da10be93e10267122581b7079
62234 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62235 Date: Sat Oct 27 15:22:33 2007 +0900
62236
62237 [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
62238
62239 au1x00_eth.c: In function 'au1x00_miiphy_write':
62240 au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
62241
62242 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62243
62244 commit f01320459736f156707425cf8112f98606301aa4
62245 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62246 Date: Sat Oct 27 15:00:25 2007 +0900
62247
62248 [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
62249
62250 au1x00_eth.c: In function 'au1x00_enet_initialize':
62251 au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
62252 au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
62253 au1x00_eth.c:246: error: for each function it appears in.)
62254 au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
62255 au1x00_eth.c: In function 'au1x00_miiphy_write':
62256 au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
62257 make[1]: *** [au1x00_eth.o] Error 1
62258
62259 Fixed by moving these two functions forward.
62260
62261 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62262
62263 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
62264 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62265 Date: Sat Oct 27 15:00:25 2007 +0900
62266
62267 MAKEALL: Added missing pb1000 board
62268
62269 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62270
62271 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
62272 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62273 Date: Sat Oct 27 15:00:24 2007 +0900
62274
62275 [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
62276
62277 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62278
62279 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
62280 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62281 Date: Sat Oct 27 15:00:24 2007 +0900
62282
62283 [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
62284
62285 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62286
62287 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
62288 Author: Wolfgang Denk <wd@denx.de>
62289 Date: Sat Nov 17 02:34:38 2007 +0100
62290
62291 Update CHANGELOIG, prepare for -rc4
62292
62293 Signed-off-by: Wolfgang Denk <wd@denx.de>
62294
62295 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
62296 Author: Luotao Fu <l.fu@pengutronix.de>
62297 Date: Wed Nov 14 18:58:33 2007 +0100
62298
62299 Fix the i2c frequency and default address in rsdproto board
62300
62301 rsdproto board support has wrong I2C frequency and wrong return value
62302 handling.
62303
62304 Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
62305
62306 commit 429c180edad038f91c989cb14b478228092e7054
62307 Author: Wolfgang Denk <wd@denx.de>
62308 Date: Sat Nov 17 01:45:38 2007 +0100
62309
62310 powerpc: Backout relocation changes for MPC5121, too.
62311
62312 Apply Grant Likely's backout to MPC5121 code, too.
62313
62314 Pointed out by Rafal Jaworowski <raj@semihalf.com>
62315
62316 Signed-off-by: Wolfgang Denk <wd@denx.de>
62317
62318 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
62319 Author: Grant Likely <grant.likely@secretlab.ca>
62320 Date: Tue Nov 13 22:18:33 2007 -0700
62321
62322 powerpc: Backout relocation changes.
62323
62324 Ugh. I *hate* to back this change out, but these compiler flags don't
62325 work for relocation on all versions of GCC. I've not been able to
62326 reproduce the environment in my setup (and hence, not been able to
62327 find a combination that *does* work), so I've got no choice but to go
62328 back to the old gcc flags and linker script.
62329
62330 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62331
62332 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
62333 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62334 Date: Tue Nov 13 09:11:05 2007 +0100
62335
62336 Fixed mips_io_port_base build errors.
62337
62338 This patch has been sent on:
62339 - 29 Sep 2007
62340
62341 Although mips_io_port_base is currently a part of IDE command, it is quite
62342 fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
62343 it to MIPS general part, and introduce `set_io_port_base()' from Linux.
62344
62345 This patch is triggered by multiple definition of `mips_io_port_base' build
62346 error on gth2 (and tb0229 also needs this fix.)
62347
62348 board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
62349 /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
62350 common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
62351 make: *** [u-boot] Error 1
62352
62353 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
62354 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62355
62356 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
62357 Author: Wolfgang Denk <wd@denx.de>
62358 Date: Sat Nov 17 01:30:40 2007 +0100
62359
62360 Fix a bug in the slave serial programming mode for the Xilinx
62361 Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
62362 the most significant bit was set, which did not work on any
62363 architecture where "char" defaulted to be an unsigned type.
62364
62365 Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
62366
62367 Signed-off-by: Wolfgang Denk <wd@denx.de>
62368
62369 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
62370 Author: Jon Loeliger <jdl@freescale.com>
62371 Date: Thu Nov 1 12:23:29 2007 -0500
62372
62373 86xx: Fix broken variable reference when #def DEBUGing.
62374
62375 Sometimes you can't reference the DDR2 controller variables.
62376
62377 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62378
62379 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
62380 Author: Jason Jin <Jason.jin@freescale.com>
62381 Date: Fri Oct 26 18:32:00 2007 +0800
62382
62383 make 8610 board use pixis reset
62384
62385 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62386
62387 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
62388 Author: Jason Jin <Jason.jin@freescale.com>
62389 Date: Mon Oct 29 19:26:21 2007 +0800
62390
62391 Unify pixis_reset altbank across board families
62392
62393 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
62394 into the separate board config files.
62395
62396 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62397 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62398
62399 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
62400 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62401 Date: Wed Nov 7 08:19:21 2007 +0100
62402
62403 Fix warning: pointer targets in assignment differ in signedness
62404
62405 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62406
62407 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
62408 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62409 Date: Wed Nov 7 08:19:19 2007 +0100
62410
62411 Fix warning differ in signedness in common/cmd_ide.c
62412
62413 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
62414
62415 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
62416 Author: Stefan Roese <sr@denx.de>
62417 Date: Fri Nov 16 14:16:54 2007 +0100
62418
62419 ppc4xx: Enable 405EX PCIe UTL register configuration
62420
62421 Till now the UTL registers on 405EX were not initialized but left with
62422 their default values. This patch new initializes some of the UTL
62423 registers on 405EX.
62424
62425 Signed-off-by: Stefan Roese <sr@denx.de>
62426
62427 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
62428 Author: Stefan Roese <sr@denx.de>
62429 Date: Fri Nov 16 14:00:59 2007 +0100
62430
62431 ppc4xx: Update AMCC Makalu for board rev 1.1
62432
62433 This patch adds changes needed for Makalu rev 1.1:
62434
62435 - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
62436 - Enable 2nd ethernet port EMAC1
62437 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
62438 - Reset PCIe ports via GPIO upon bootup
62439
62440 Signed-off-by: Stefan Roese <sr@denx.de>
62441
62442 commit 4d4faae65e115e327425cd514c1a35146a85166b
62443 Author: Grant Likely <grant.likely@secretlab.ca>
62444 Date: Mon Sep 24 09:05:31 2007 -0600
62445
62446 Group PCI and PCMCIA drivers in drivers/Makefile
62447
62448 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62449
62450 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
62451 Author: Grant Likely <grant.likely@secretlab.ca>
62452 Date: Mon Sep 24 09:05:31 2007 -0600
62453
62454 Group block/flash drivers in drivers/Makefile
62455
62456 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62457
62458 commit df58c81551700f058b44cacf55a7997fa63bfe0a
62459 Author: Grant Likely <grant.likely@secretlab.ca>
62460 Date: Mon Sep 24 09:05:31 2007 -0600
62461
62462 Group USB drivers in drivers/Makefile
62463
62464 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62465
62466 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
62467 Author: Grant Likely <grant.likely@secretlab.ca>
62468 Date: Mon Sep 24 09:05:30 2007 -0600
62469
62470 Group i2c drivers in drivers/Makefile
62471
62472 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62473
62474 commit ec00c76de0e5971273905998d62d6bb119324218
62475 Author: Grant Likely <grant.likely@secretlab.ca>
62476 Date: Mon Sep 24 09:05:30 2007 -0600
62477
62478 Group console drivers in drivers/Makefile
62479
62480 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62481
62482 commit 754f230aa01b8c789fc31f8013c2487954073300
62483 Author: Grant Likely <grant.likely@secretlab.ca>
62484 Date: Mon Sep 24 09:05:30 2007 -0600
62485
62486 Group network drivers in drivers/Makefile
62487
62488 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62489
62490 commit f0037c56b0d12cd46215124667b9f83d60ef9391
62491 Author: Grant Likely <grant.likely@secretlab.ca>
62492 Date: Mon Sep 24 09:05:30 2007 -0600
62493
62494 Build: split COBJS value into multiple lines
62495
62496 This change is in preparation for condtitionial compile support in the
62497 build system. By spliting them all into seperate lines now, subsequent
62498 patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
62499 be less invasive and easier to review
62500
62501 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62502
62503 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
62504 Author: Grant Likely <grant.likely@secretlab.ca>
62505 Date: Mon Sep 24 09:05:30 2007 -0600
62506
62507 Add .gitignore files
62508
62509 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62510 Acked-by: Kim Phillips <kim.phillips@freescale.com>
62511
62512 commit 955413f35f054a82e40042f1dbcf501c6a05719b
62513 Author: Grant Likely <grant.likely@secretlab.ca>
62514 Date: Thu Nov 15 08:27:52 2007 -0700
62515
62516 Revert "Correct relocation fixup for mpc5xx"
62517
62518 This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
62519 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62520
62521 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
62522 Author: Grant Likely <grant.likely@secretlab.ca>
62523 Date: Thu Nov 15 08:24:32 2007 -0700
62524
62525 Revert "Correct fixup relocation for MPC5xxx"
62526
62527 This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
62528 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62529
62530 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
62531 Author: Grant Likely <grant.likely@secretlab.ca>
62532 Date: Thu Nov 15 08:21:04 2007 -0700
62533
62534 Revert "Correct fixup relocation for mpc8220"
62535
62536 This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
62537 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62538
62539 commit 70922342369e5e39b286fe21e768a239ca07a514
62540 Author: Grant Likely <grant.likely@secretlab.ca>
62541 Date: Thu Nov 15 08:20:57 2007 -0700
62542
62543 Revert "Correct fixup relocation for mpc824x"
62544
62545 This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
62546 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62547
62548 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
62549 Author: Grant Likely <grant.likely@secretlab.ca>
62550 Date: Thu Nov 15 08:20:50 2007 -0700
62551
62552 Revert "Correct fixup relocation for mpc8260"
62553
62554 This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
62555 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62556
62557 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
62558 Author: Grant Likely <grant.likely@secretlab.ca>
62559 Date: Thu Nov 15 08:20:43 2007 -0700
62560
62561 Revert "Correct fixup relocation for mpc83xx"
62562
62563 This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
62564 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62565
62566 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
62567 Author: Grant Likely <grant.likely@secretlab.ca>
62568 Date: Thu Nov 15 08:20:25 2007 -0700
62569
62570 Revert "[MPC512x] Correct fixup relocation"
62571
62572 This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
62573 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
62574
62575 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
62576 Author: Stefan Roese <sr@denx.de>
62577 Date: Thu Nov 15 14:25:09 2007 +0100
62578
62579 ppc4xx: Small AMCC Kilauea cleanup
62580
62581 Remove not needed pci_target_init() function.
62582
62583 Signed-off-by: Stefan Roese <sr@denx.de>
62584
62585 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
62586 Author: Stefan Roese <sr@denx.de>
62587 Date: Thu Nov 15 14:23:55 2007 +0100
62588
62589 ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
62590
62591 - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
62592 - Cleanup of the 4xx GPIO functions
62593 - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
62594
62595 Signed-off-by: Stefan Roese <sr@denx.de>
62596
62597 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
62598 Author: Stefan Roese <sr@denx.de>
62599 Date: Thu Nov 15 14:20:08 2007 +0100
62600
62601 ppc4xx: AMCC Taihu board config file cleanup
62602
62603 This patch makes the AMCC Taihu a little more compatible to the other
62604 AMCC eval boards.
62605
62606 Signed-off-by: Stefan Roese <sr@denx.de>
62607
62608 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
62609 Author: Marian Balakowicz <m8@semihalf.com>
62610 Date: Thu Nov 15 13:37:28 2007 +0100
62611
62612 [INKA4x0] NG hardware: flash support
62613
62614 Disabled and remove inka4x0 custom flash driver, use CFI flash
62615 driver instead.
62616
62617 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62618
62619 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
62620 Author: Marian Balakowicz <m8@semihalf.com>
62621 Date: Thu Nov 15 13:29:55 2007 +0100
62622
62623 [INKA4x0] NG hardware: SDRAM support
62624
62625 Add support for three new DDR chips that may be present on a NG
62626 INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
62627
62628 Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
62629
62630 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62631
62632 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
62633 Author: Marian Balakowicz <m8@semihalf.com>
62634 Date: Thu Nov 15 13:24:43 2007 +0100
62635
62636 [INKA4x0] NG hardware: platform code update
62637
62638 - Cleanup compile warnings.
62639 - Add missing '\0' in default environment.
62640 - Increase CFG_MONITOR_LEN to 256 KiB.
62641 - Add required CFG_USE_PPCENV.
62642
62643 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
62644
62645 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
62646 Author: Peter Pearse <peter.pearse@arm.com>
62647 Date: Thu Nov 15 08:58:00 2007 +0000
62648
62649 Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
62650 Remove warnings re onenand_read() & write()
62651
62652 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
62653 Author: Peter Pearse <peter.pearse@arm.com>
62654 Date: Thu Nov 15 08:45:13 2007 +0000
62655
62656 Correction patch
62657
62658 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
62659 Author: Roy Zang <tie-fei.zang@freescale.com>
62660 Date: Thu Sep 13 18:52:28 2007 +0800
62661
62662 Enable ULi1575 Ethernet support in 8610HPCD config
62663
62664 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62665 Acked-by: Jon Loeliger <jdl@freescale.com>
62666
62667 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
62668 Author: Stefan Roese <sr@denx.de>
62669 Date: Tue Nov 13 08:18:20 2007 +0100
62670
62671 ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
62672
62673 Signed-off-by: Stefan Roese <sr@denx.de>
62674
62675 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
62676 Author: Stefan Roese <sr@denx.de>
62677 Date: Tue Nov 13 08:06:11 2007 +0100
62678
62679 ppc4xx: Fix 405EX PCIe UTLSET register setup
62680
62681 Signed-off-by: Stefan Roese <sr@denx.de>
62682
62683 commit 1ce55151c85d068f70317a8d65c61058b891afb4
62684 Author: Heiko Schocher <hs@denx.de>
62685 Date: Tue Nov 13 07:50:29 2007 +0100
62686
62687 [UC101] SRAM now with 2 MB working.
62688
62689 Signed-off-by: Heiko Schocher <hs@denx.de>
62690
62691 commit 2d14684341109a69616e4d6016cd61402d55086f
62692 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62693 Date: Fri Nov 9 15:37:53 2007 +0100
62694
62695 ppc4xx: Use generic usb-ohci driver for sequoia board
62696
62697 This patch makes the sequoia board use the generic usb-ohci driver
62698 instead of cpu/ppc4xx/usb_ohci.c.
62699
62700 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62701 Signed-off-by: Stefan Roese <sr@denx.de>
62702
62703 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
62704 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62705 Date: Fri Nov 9 15:37:23 2007 +0100
62706
62707 ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
62708
62709 This patch disables the 44x d-cache on 'usb start' and
62710 reenables it on 'usb stop'. This should be seen as a
62711 temporary fix until the generic usb-ohci driver can
62712 life with d-cache enabled.
62713
62714 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62715 Signed-off-by: Stefan Roese <sr@denx.de>
62716
62717 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
62718 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62719 Date: Fri Nov 9 15:36:44 2007 +0100
62720
62721 ppc4xx: Remove redundant code from 4xx network driver
62722
62723 This patch removes some redundant code and decrements the end
62724 address of cache flush and invalidate by 1.
62725
62726 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
62727 Signed-off-by: Stefan Roese <sr@denx.de>
62728
62729 commit 5ca9881aad8c413ac2a82868a5e3719178254502
62730 Author: Peter Pearse <peter.pearse@arm.com>
62731 Date: Fri Nov 9 15:24:26 2007 +0000
62732
62733 Add apollon board support
62734 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
62735
62736 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
62737 Author: Stefan Roese <sr@denx.de>
62738 Date: Fri Nov 9 12:19:58 2007 +0100
62739
62740 ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
62741
62742 Signed-off-by: Stefan Roese <sr@denx.de>
62743
62744 commit c7f69c340277935a6c19a956421852da944a365f
62745 Author: Stefan Roese <sr@denx.de>
62746 Date: Fri Nov 9 12:18:54 2007 +0100
62747
62748 ppc4xx: Make output a little shorter on I2C bootrom detection
62749
62750 Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
62751 already print a line with the information which I2C bootrom is
62752 used for bootstrap configuration. So we don't need this extra line
62753 with "I2C boot EEPROM en-/dis-abled".
62754
62755 This patch also has a little code cleanup integrated.
62756
62757 Signed-off-by: Stefan Roese <sr@denx.de>
62758
62759 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
62760 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62761 Date: Thu Nov 8 12:50:18 2007 -0600
62762
62763 ColdFire: MCF5329 - Remove reset registers from CCM
62764
62765 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62766
62767 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
62768 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62769 Date: Thu Nov 8 12:31:11 2007 -0600
62770
62771 ColdFire: MCF5329 - Add Reset structure to immap_5329.h
62772
62773 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62774
62775 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
62776 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62777 Date: Thu Nov 8 12:19:01 2007 -0600
62778
62779 ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
62780
62781 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62782
62783 commit 225a24b5e062ad94627424508ae814f51dbe1a34
62784 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62785 Date: Wed Nov 7 18:00:54 2007 -0600
62786
62787 ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
62788
62789 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62790
62791 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
62792 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62793 Date: Wed Nov 7 17:56:15 2007 -0600
62794
62795 ColdFire: MCF532x - Update do_reset() using core reset
62796
62797 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62798
62799 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
62800 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62801 Date: Wed Nov 7 17:51:00 2007 -0600
62802
62803 ColdFire: Update cpu flag for 4.2-xx compiler
62804
62805 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
62806
62807 commit 070ba56115b4da63b46e974287fa4550d4023386
62808 Author: York Sun <yorksun@freescale.com>
62809 Date: Wed Oct 31 14:59:04 2007 -0500
62810
62811 8610: Add console frame buffer support to FSL 8610 DIU driver.
62812
62813 Add cfb console support to FSL 8610 DIU driver.
62814 Inspect board version from PIXIS to obtain correct pixel format.
62815
62816 Use #define CONFIG_VIDEO in config file to enable fb console.
62817
62818 To switch monitor, set monitor variable to
62819 0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
62820 followed by "diufb init".
62821
62822 Preserve logo bitmap at the top of the fb console.
62823
62824 Signed-off-by: York Sun <yorksun@freescale.com>
62825 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62826
62827 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
62828 Author: York Sun <yorksun@freescale.com>
62829 Date: Mon Oct 29 13:58:39 2007 -0500
62830
62831 8610: Add 8610 DIU display driver
62832
62833 1280x1024 and 1024x768 @ 32 bpp are supported now.
62834 DVI, Single-link LVDS, Double-link LVDS are all supported.
62835
62836 Environmental variable "monitor" is used to specify monitor port.
62837
62838 A new command "diufb" is introduced to reinitialize monitor
62839 and display a BMP file in the memory. So far, 1-bit, 4-bit,
62840 8-bit and 24-bit BMP formats are supported.
62841
62842 diufb init
62843 - initialize the diu driver
62844 Enable the port specified in the environmental variable "monitor"
62845
62846 diufb addr
62847 - display bmp file in memory.
62848 The bmp image should be no bigger than the resolution, 1280x1024
62849 for DVI and double-link LVDS, 1024x768 for single-link LVDS.
62850
62851 Note, this driver allocate memory but doesn't free it after use
62852 It is written on purpose -- to avoid a failure of reallocation
62853 due to memory fragement.
62854
62855 ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
62856
62857 Signed-off-by: York Sun <yorksun@freescale.com>
62858 Signed-off-by: Jon loeliger <jdl@freescale.com>
62859
62860 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
62861 Author: York Sun <yorksun@freescale.com>
62862 Date: Wed Oct 31 10:43:59 2007 -0500
62863
62864 FSL: Add a freescale bitmap logo.
62865
62866 This Freescale logo is a 340 x 128 x 4bpp BMP file
62867 that can be displayed by the DIU Framebuffer driver.
62868
62869 Signed-off-by: York Sun <yorksun@freescale.com>
62870 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62871
62872 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
62873 Author: York Sun <yorksun@freescale.com>
62874 Date: Mon Oct 29 13:57:53 2007 -0500
62875
62876 8610: Make some extra debug environment variables conditional.
62877
62878 One may #define ENV_DEBUG to get them back again.
62879
62880 Signed-off-by: York Sun <yorksun@freescale.com>
62881
62882 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
62883 Author: Jason Jin <Jason.jin@freescale.com>
62884 Date: Mon Oct 29 19:26:21 2007 +0800
62885
62886 8610: Actually enable pixis_reset CONFIGs
62887
62888 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62889
62890 commit f3bceaab230b4748d0afc4109b6837308f018b40
62891 Author: Jason Jin <Jason.jin@freescale.com>
62892 Date: Fri Oct 26 18:31:59 2007 +0800
62893
62894 Fix the BAT definition of PCI IO on 8610 board
62895
62896 The address in the BAT register is aligned with the BAT size.
62897 The original definition actually did not define BAT for PCIE2 IO.
62898 This patch fix this.
62899
62900 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62901
62902 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
62903 Author: Jason Jin <Jason.jin@freescale.com>
62904 Date: Mon Oct 29 19:26:21 2007 +0800
62905
62906 Unify pixis_reset altbank across board families
62907
62908 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
62909 into the separate board config files.
62910
62911 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62912 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62913
62914 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
62915 Author: Jason Jin <Jason.jin@freescale.com>
62916 Date: Fri Oct 26 18:32:00 2007 +0800
62917
62918 make 8610 board use pixis reset
62919
62920 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
62921
62922 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
62923 Author: Jon Loeliger <jdl@freescale.com>
62924 Date: Thu Nov 1 12:23:29 2007 -0500
62925
62926 86xx: Fix broken variable reference when #def DEBUGing.
62927
62928 Sometimes you can't reference the DDR2 controller variables.
62929
62930 Signed-off-by: Jon Loeliger <jdl@freescale.com>
62931
62932 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
62933 Author: Roy Zang <tie-fei.zang@freescale.com>
62934 Date: Mon Nov 5 17:39:24 2007 +0800
62935
62936 Implement general ULi 526x Ethernet driver support in U-boot
62937
62938 This patch implements general ULi 526x Ethernet driver.
62939 Until now, it is the only native Ethernet port on
62940 MPC8610HPCD board, but it could be used on other boards
62941 with ULi 526x Ethernet port as well.
62942
62943 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
62944 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
62945 Acked-by: Jon Loeliger <jdl@freescale.com>
62946 Signed-off-by: Ben Warren <bwarren@qstreams.com>
62947
62948 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
62949 Author: Larry Johnson <lrj@arlinx.com>
62950 Date: Thu Nov 1 08:46:50 2007 -0500
62951
62952 NET: Add Ethernet 1000BASE-X support for PPC4xx
62953
62954 This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
62955 "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which
62956 returns non-zero iff the PHY registers are configured for 1000BASE-X. The
62957 "mii info" command is modified to distinguish between 1000BASE-T and -X.
62958
62959 Signed-off-by: Larry Johnson <lrj@acm.org>
62960 Signed-off-by: Ben Warren <bwarren@qstreams.com>
62961
62962 commit 298035df4948b113d29ac0e694717d34b95bc5dc
62963 Author: Larry Johnson <lrj@arlinx.com>
62964 Date: Wed Oct 31 11:21:29 2007 -0500
62965
62966 NET: Cosmetic changes
62967
62968 Signed-off-by: Larry Johnson <lrj@acm.org>
62969 Signed-off-by: Ben Warren <bwarren@qstreams.com>
62970
62971 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
62972 Author: Stefan Roese <sr@denx.de>
62973 Date: Mon Nov 5 07:43:05 2007 +0100
62974
62975 ppc4xx: Make output a little shorter on PCIe detection
62976
62977 Now not max 3 lines but 2 lines are printed per PCIe port.
62978
62979 Signed-off-by: Stefan Roese <sr@denx.de>
62980
62981 commit 992742a5b09d9040adbd156fb90756af66ade310
62982 Author: Wolfgang Denk <wd@denx.de>
62983 Date: Sat Nov 3 23:09:27 2007 +0100
62984
62985 Cleanup coding style; update CHANGELOG
62986
62987 Signed-off-by: Wolfgang Denk <wd@denx.de>
62988
62989 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
62990 Author: Bruce Adler <bruce.adler@ccpu.com>
62991 Date: Fri Nov 2 13:15:42 2007 -0700
62992
62993 fix wording in README
62994
62995 Changed the wording to properly describe the shadowing
62996 of the environment from ROM to RAM
62997
62998 Signed-off-by: Bruce Adler <bruce.adler@acm.org>
62999
63000 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
63001 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
63002 Date: Wed Oct 31 02:18:15 2007 +0900
63003
63004 blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
63005
63006 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
63007
63008 commit ec22755799466c8a103664bb3a5e647bf9c238f4
63009 Author: Vlad Lungu <vlad@comsys.ro>
63010 Date: Thu Oct 25 16:08:14 2007 +0300
63011
63012 Trimmed some variables in ne2000.c
63013
63014 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
63015
63016 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
63017 Author: Zhang Wei <wei.zhang@freescale.com>
63018 Date: Thu Oct 25 17:51:27 2007 +0800
63019
63020 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
63021
63022 The scan code of the key 'z' is 0x1d, which should be handled.
63023
63024 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
63025 controller.
63026
63027 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
63028
63029 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
63030 Author: Zhang Wei <wei.zhang@freescale.com>
63031 Date: Thu Oct 25 17:30:04 2007 +0800
63032
63033 Fix USB support issue for MPC8641HPCN board.
63034
63035 The configuration file has already enabled USB, but it
63036 missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
63037 on MPC8641HPCN can not work because of the wrong USB
63038 register endian.
63039
63040 And add the USB command to U-Boot commands list.
63041
63042 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
63043
63044 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
63045 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63046 Date: Wed Oct 24 18:16:01 2007 +0200
63047
63048 Use config_cmd_default.h instead of config_cmd_all.h
63049
63050 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63051
63052 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
63053 Author: Marian Balakowicz <m8@semihalf.com>
63054 Date: Wed Oct 24 01:37:36 2007 +0200
63055
63056 TQM5200: Call usb_cpu_init() during board init
63057
63058 usb_cpu_init() configures GPS USB pins, clocks, etc. and
63059 is required for proper operation of kernel USB subsystem.
63060 This setup was previously done in the kernel by the fixup
63061 code which is being removed, thus low level init must be
63062 done by U-boot now.
63063
63064 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
63065
63066 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
63067 Author: Guennadi Liakhovetski <lg@denx.de>
63068 Date: Tue Oct 23 16:25:50 2007 +0200
63069
63070 Fix typo in nfs.c
63071
63072 An obvious typo. Originally fixed in linkstation u-boot port.
63073
63074 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
63075
63076 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
63077 Author: Guennadi Liakhovetski <lg@denx.de>
63078 Date: Tue Oct 23 14:35:05 2007 +0200
63079
63080 Fix a typo in cpu/mpc824x/interrupts.c
63081
63082 Since December 2003 the timer_interrupt_cpu() function in
63083 cpu/mpc824x/interrupts.c contains what seems to be a superfluous
63084 parameter. Remove it.
63085
63086 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
63087
63088 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
63089 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
63090 Date: Wed Oct 17 11:13:51 2007 +0200
63091
63092 add ft_cpu_setup(..) on mpc8260
63093
63094 Add ft_cpu_setup(..)-function to adapt it for use with libfdt
63095 based on code from mpc5xxx
63096
63097 Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
63098 --
63099
63100 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
63101 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
63102 Date: Wed Oct 17 11:18:42 2007 +0200
63103
63104 changes for IDS8247 board support
63105
63106 To get the IDS8247 board working following are done:
63107 - FCC2 is deactivated
63108 - FCC1 is activated
63109 - I2C is activated
63110 - CFI driver is activated
63111 - Adapted for use with LIBFDT
63112
63113 Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
63114 --
63115
63116 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
63117 Author: Stefan Roese <sr@denx.de>
63118 Date: Sat Nov 3 12:08:28 2007 +0100
63119
63120 ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
63121
63122 This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
63123 Again, only one image supports both targets.
63124
63125 Signed-off-by: Stefan Roese <sr@denx.de>
63126
63127 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
63128 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
63129 Date: Wed Oct 24 15:48:37 2007 +0200
63130
63131 ATSTK1002: Remove default ethernet addresses
63132
63133 Wolfgang is right: It's not a good idea to set up default initial
63134 ethernet addresses for a board, even though they belong to the local
63135 range.
63136
63137 This will change the failure mode from "IT manager screams at you for
63138 using duplicate ethernet addresses" to a nice error message explaining
63139 that the ethernet address hasn't been set properly.
63140
63141 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
63142
63143 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
63144 Author: Justin Flammia <jflammia@savantav.com>
63145 Date: Mon Oct 29 17:40:35 2007 -0400
63146
63147 DHCP Client Fix
63148
63149 This is a multi-part message in MIME format.
63150
63151 commit e6e505eae94ed721e123e177489291fc4544b7b8
63152 Author: Justin Flammia <jflammia@savantav.com>
63153 Date: Mon Oct 29 17:19:03 2007 -0400
63154
63155 Found a bug in the way the DHCP Request packet is built, where the IP address
63156 that is offered by the server is bound to prematurely. This patch is a fix of
63157 that bug where the IP address offered by the DHCP server is not used until
63158 after the DHCP ACK from the server is received.
63159
63160 Signed-off-by: Justin Flammia <jflammia@savantav.com>
63161 Signed-off-by: Ben Warren <bwarren@qstreams.com>
63162
63163 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
63164 Author: Stefan Roese <sr@denx.de>
63165 Date: Wed Oct 31 20:58:34 2007 +0100
63166
63167 ppc4xx: Fix acadia_nand build problem
63168
63169 Since the cache handling functions were moved from start.S into cache.S
63170 the acadia NAND booting Makfile needs to be adapted accordingly.
63171
63172 Signed-off-by: Stefan Roese <sr@denx.de>
63173
63174 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
63175 Author: Stefan Roese <sr@denx.de>
63176 Date: Wed Oct 31 20:57:11 2007 +0100
63177
63178 ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
63179
63180 This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
63181 and to the Sequoia TLB init code. Now the cache can be enabled on 44x
63182 boards by defining CONFIG_4xx_DCACHE in the board config file. This
63183 option will disappear, when more boards use is successfully and no
63184 more known problems exist.
63185
63186 This is tested successfully on Sequoia and Katmai. The only problem that
63187 needs to be fixed is, that USB is not working on Sequoia right now, since
63188 it will need some cache handling code too, similar to the 4xx EMAC driver.
63189
63190 Signed-off-by: Stefan Roese <sr@denx.de>
63191
63192 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
63193 Author: Stefan Roese <sr@denx.de>
63194 Date: Wed Oct 31 20:51:10 2007 +0100
63195
63196 ppc4xx: Enable CPU POST test for 4xx with dcache enabled
63197
63198 Now with caches enabled (i- and d-cache) on 44x, we need a chance to
63199 disable the cache for the CPU POST tests, since these tests consist
63200 of self modifying code. This is done via the new change_tlb() function.
63201
63202 Signed-off-by: Stefan Roese <sr@denx.de>
63203
63204 commit f71b2888b4b3c870909a0341427b2a914246f81f
63205 Author: Stefan Roese <sr@denx.de>
63206 Date: Wed Oct 31 20:47:26 2007 +0100
63207
63208 ppc4xx: Change 4xx POST ethernet test to handle cached memory too
63209
63210 This patch enables the 4xx EMAC POST driver to work too, when dcache is
63211 enabled.
63212
63213 Signed-off-by: Stefan Roese <sr@denx.de>
63214
63215 commit a2685904061b35a17583d65fe47cdc2686a69eaa
63216 Author: Stefan Roese <sr@denx.de>
63217 Date: Wed Oct 31 20:45:53 2007 +0100
63218
63219 ppc4xx: Remove temporary TLB entry in POST cache test only for 440
63220
63221 Signed-off-by: Stefan Roese <sr@denx.de>
63222
63223 commit ff768cb168d8157c24a25016dbfbeb465e47f420
63224 Author: Stefan Roese <sr@denx.de>
63225 Date: Wed Oct 31 18:01:24 2007 +0100
63226
63227 ppc4xx: Change 4xx ethernet driver to handle cached memory too
63228
63229 This patch enables the 4xx EMAC driver to work too, when dcache is
63230 enabled.
63231
63232 Signed-off-by: Stefan Roese <sr@denx.de>
63233
63234 commit 483e09a223c666269ef81d3573a6591b1046b0ef
63235 Author: Stefan Roese <sr@denx.de>
63236 Date: Wed Oct 31 17:59:22 2007 +0100
63237
63238 ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
63239
63240 This function is used to either turn cache on or off in a specific
63241 memory area.
63242
63243 Signed-off-by: Stefan Roese <sr@denx.de>
63244
63245 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
63246 Author: Stefan Roese <sr@denx.de>
63247 Date: Wed Oct 31 17:57:52 2007 +0100
63248
63249 ppc4xx: Remove cache definition from 4xx board config files
63250
63251 All 4xx board config files don't need the cache definitions anymore.
63252 These are now defined in common headers.
63253
63254 Signed-off-by: Stefan Roese <sr@denx.de>
63255
63256 commit 9b94ac61d2176185c30adf0793e079ec30e68687
63257 Author: Stefan Roese <sr@denx.de>
63258 Date: Wed Oct 31 17:55:58 2007 +0100
63259
63260 ppc4xx: Rework 4xx cache support
63261
63262 New cache handling functions added and all existing functions
63263 moved from start.S into seperate cache.S.
63264
63265 Signed-off-by: Stefan Roese <sr@denx.de>
63266
63267 commit 06713773da4ac3d390c63d82641eb553224b27c2
63268 Author: Stefan Roese <sr@denx.de>
63269 Date: Tue Oct 23 18:03:12 2007 +0200
63270
63271 ppc4xx: Remove compiler warning from previous commit
63272
63273 Signed-off-by: Stefan Roese <sr@denx.de>
63274
63275 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
63276 Author: Stefan Roese <sr@denx.de>
63277 Date: Tue Oct 23 14:40:30 2007 +0200
63278
63279 ppc4xx: Remove temporary TLB entry in POST cache test
63280
63281 Signed-off-by: Stefan Roese <sr@denx.de>
63282
63283 commit 1338e6a81834099ba19733b69aafd8ef5f098094
63284 Author: Stefan Roese <sr@denx.de>
63285 Date: Tue Oct 23 14:05:08 2007 +0200
63286
63287 ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
63288
63289 I lately noticed, that newer 4xx board with GBit support sometimes don't
63290 finish link autonegotiation in 4 seconds. Changing this timeout to 5
63291 seconds seems fine here.
63292
63293 Signed-off-by: Stefan Roese <sr@denx.de>
63294
63295 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
63296 Author: Stefan Roese <sr@denx.de>
63297 Date: Tue Oct 23 14:03:17 2007 +0200
63298
63299 ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
63300
63301 This patch changes all in32/out32 calls to use the recommended in_be32/
63302 out_be32 macros instead.
63303
63304 Signed-off-by: Stefan Roese <sr@denx.de>
63305
63306 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
63307 Author: Stefan Roese <sr@denx.de>
63308 Date: Thu Oct 25 12:24:59 2007 +0200
63309
63310 ppc4xx: Fix POST ethernet test for Haleakala
63311
63312 The POST ethernet test needed to be changed to dynamically determine
63313 the count of ethernet devices. This code is cloned from the 4xx
63314 ethernet driver.
63315
63316 Signed-off-by: Stefan Roese <sr@denx.de>
63317
63318 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
63319 Author: Stefan Roese <sr@denx.de>
63320 Date: Tue Oct 23 11:31:05 2007 +0200
63321
63322 ppc4xx: Correct UART input clock calculation and passing to fdt
63323
63324 We now use a value in the gd (global data) structure for the UART input
63325 frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
63326 in get_sys_info().
63327
63328 Signed-off-by: Stefan Roese <sr@denx.de>
63329
63330 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
63331 Author: Stefan Roese <sr@denx.de>
63332 Date: Tue Oct 23 10:10:08 2007 +0200
63333
63334 ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
63335
63336 The Haleakala is nearly identical with the Kilauea eval board. The only
63337 difference is that the 405EXr only supports one EMAC and one PCIe
63338 interface. This patch adds support for the Haleakala board by using
63339 the identical image for Kilauea and Haleakala. The distinction is done
63340 by comparing the PVR.
63341
63342 Signed-off-by: Stefan Roese <sr@denx.de>
63343
63344 commit 9f798766aa85e62eb8fa8c721e148df609b78137
63345 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
63346 Date: Tue Oct 23 08:29:10 2007 +0200
63347
63348 ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
63349
63350 This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
63351
63352 Note:
63353 As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
63354 DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
63355 modules are still plugged in. So it is recommended to remove the DIMM
63356 modules while using the NAND booting code with the fixed SDRAM setup!
63357
63358 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
63359 Signed-off-by: Stefan Roese <sr@denx.de>
63360
63361 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
63362 Author: Stefan Roese <sr@denx.de>
63363 Date: Mon Oct 22 16:24:44 2007 +0200
63364
63365 ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
63366
63367 Signed-off-by: Stefan Roese <sr@denx.de>
63368
63369 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
63370 Author: Stefan Roese <sr@denx.de>
63371 Date: Mon Oct 22 16:22:40 2007 +0200
63372
63373 ppc4xx: Rework of 4xx serial driver (4)
63374
63375 Change 4xx_uart.c:
63376
63377 - Use in_8/out_8 macros instead of in8/out8
63378 - No need for UART_BASE marco anymore, now really handled via function
63379 parameter
63380 - serial_init_common() introduced
63381 - Further coding style cleanup
63382
63383 Signed-off-by: Stefan Roese <sr@denx.de>
63384
63385 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
63386 Author: Stefan Roese <sr@denx.de>
63387 Date: Mon Oct 22 15:45:49 2007 +0200
63388
63389 ppc4xx: Rework of 4xx serial driver (3)
63390
63391 Change all linker scripts to reference the changed driver name iop480_uart.o.
63392
63393 Signed-off-by: Stefan Roese <sr@denx.de>
63394
63395 commit 882ae41274921f9016131806bdeb27e19606f47a
63396 Author: Stefan Roese <sr@denx.de>
63397 Date: Mon Oct 22 15:44:39 2007 +0200
63398
63399 ppc4xx: Rework of 4xx serial driver (2)
63400
63401 Change all linker scripts to reference the changed driver name 4xx_uart.o.
63402
63403 Note: In most cased all these explicit referencing of these object files
63404 in the linker scripts is not neccessary. Only for manually embedded
63405 environment into the U-Boot image, which is not done is most cases.
63406
63407 Signed-off-by: Stefan Roese <sr@denx.de>
63408
63409 commit ad31e40bed042cb670d0036fea96435007afb838
63410 Author: Stefan Roese <sr@denx.de>
63411 Date: Mon Oct 22 15:09:59 2007 +0200
63412
63413 ppc4xx: Rework of 4xx serial driver (1)
63414
63415 This patch starts the rework of the PPC4xx serial driver. First we split
63416 the file into two seperate files, one 4xx_uart.c with the 405/440 UART
63417 handling code and the other one iop480_uart.c with the UART code for the
63418 PLX-Tech IOP480 PPC (PPC403 based).
63419
63420 Signed-off-by: Stefan Roese <sr@denx.de>
63421
63422 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
63423 Author: Stefan Roese <sr@denx.de>
63424 Date: Mon Oct 22 10:30:38 2007 +0200
63425
63426 ppc4xx: Correct UART input clock calculation and passing to fdt
63427
63428 Signed-off-by: Stefan Roese <sr@denx.de>
63429
63430 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
63431 Author: Stefan Roese <sr@denx.de>
63432 Date: Mon Oct 22 07:34:34 2007 +0200
63433
63434 ppc4xx: Add initial AMCC Makalu 405EX support
63435
63436 Signed-off-by: Stefan Roese <sr@denx.de>
63437
63438 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
63439 Author: Stefan Roese <sr@denx.de>
63440 Date: Mon Oct 22 07:33:52 2007 +0200
63441
63442 ppc4xx: Add freqUART to CPU speed detection
63443
63444 This value is needed later for the device tree configuration of
63445 the uart clock.
63446
63447 Signed-off-by: Stefan Roese <sr@denx.de>
63448
63449 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
63450 Author: Stefan Roese <sr@denx.de>
63451 Date: Sun Oct 21 14:26:29 2007 +0200
63452
63453 ppc: Small Kilauea cleanup of config file
63454
63455 Signed-off-by: Stefan Roese <sr@denx.de>
63456
63457 commit 758c037aeead34b49631b8da3a90b1bba14c0410
63458 Author: Stefan Roese <sr@denx.de>
63459 Date: Sun Oct 21 08:16:12 2007 +0200
63460
63461 rtc: Add Xicor/Intersil X1205 RTC support
63462
63463 This patch adds support for the Xicor/Intersil X1205 RTC used on the
63464 AMCC Makalu eval board. This driver is basically cloned from the Linux
63465 driver version (2.6.23).
63466
63467 This patch also introduces the Linux bcd.h header for the BCD2BIN/
63468 BIN2BCD conversions. In the future some of the other U-Boot RTC driver
63469 should be converted to also use this header instead of implementing
63470 their own local copy of these functions/macros.
63471
63472 Signed-off-by: Stefan Roese <sr@denx.de>
63473
63474 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
63475 Author: Stefan Roese <sr@denx.de>
63476 Date: Sun Oct 21 08:12:41 2007 +0200
63477
63478 ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
63479
63480 This patch moves some common 4xx macros and the PPC405_SYS_INFO/
63481 PPC440_SYS_INFO structure into the common ppc4xx.h header.
63482
63483 Lot's of other macros are good candidates to be consolidated this way
63484 in the future.
63485
63486 Signed-off-by: Stefan Roese <sr@denx.de>
63487
63488 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
63489 Author: Stefan Roese <sr@denx.de>
63490 Date: Sun Oct 21 08:05:18 2007 +0200
63491
63492 ppc4xx: Fix size setup in Kilauea DDR2 init routine
63493
63494 The size was initilized wrong. Instead of 256MB, the DDR2 controller
63495 was setup to 512MB. Now the correct values is used.
63496
63497 This patch also does a little cleanup and adds a comment here.
63498
63499 Signed-off-by: Stefan Roese <sr@denx.de>
63500
63501 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
63502 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
63503 Date: Thu Oct 18 17:29:04 2007 +0200
63504
63505 ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
63506
63507 CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
63508 number is used to access system registers.
63509
63510 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
63511 Signed-off-by: Stefan Roese <sr@denx.de>
63512
63513 commit c36c68160333ac5fe41ec3db12a728b7075b3912
63514 Author: Stefan Roese <sr@denx.de>
63515 Date: Thu Oct 18 07:42:27 2007 +0200
63516
63517 ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
63518
63519 On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
63520 is the internal SRAM. Since I now ported and tested this endpoint mode
63521 on Kilauea successfully to map to 0 (SDRAM), I also changed this for
63522 Katmai.
63523
63524 Yucca will stay at internal SRAM for now. Not sure if somebody relies on
63525 this setup.
63526
63527 Signed-off-by: Stefan Roese <sr@denx.de>
63528
63529 commit 5cb4af4791f61843432155142b6cfac901f66c10
63530 Author: Stefan Roese <sr@denx.de>
63531 Date: Thu Oct 18 07:39:38 2007 +0200
63532
63533 ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
63534
63535 This patch adds endpoint support for the AMCC Kilauea eval board. It can
63536 be tested by connecting a reworked PCIe cable (only 1x lane singles
63537 connected) to another root-complex.
63538
63539 In this test setup, a 64MB inbound window is configured at BAR0 which maps
63540 to 0 on the PLB side. So accessing this BAR0 from the root-complex will
63541 access the first 64MB of the SDRAM on the PPC side.
63542
63543 Signed-off-by: Stefan Roese <sr@denx.de>
63544
63545 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
63546 Author: Stefan Roese <sr@denx.de>
63547 Date: Sat Oct 13 16:43:23 2007 +0200
63548
63549 ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
63550
63551 This patch adds support for dynamic configuration of PCIe ports for the
63552 AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
63553 boards Yucca & Katmai and the 405EX board Kilauea.
63554
63555 This dynamic configuration is done via the "pcie_mode" environement
63556 variable. This variable can be set to "EP" or "RP" for endpoint or
63557 rootpoint mode. Multiple values can be joined via the ":" delimiter.
63558 Here an example:
63559
63560 pcie_mode=RP:EP:EP
63561
63562 This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
63563 as endpoint.
63564
63565 Per default Yucca will be configured as:
63566 pcie_mode=RP:EP:EP
63567
63568 Per default Katmai will be configured as:
63569 pcie_mode=RP:RP:REP
63570
63571 Per default Kilauea will be configured as:
63572 pcie_mode=RP:RP
63573
63574 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
63575 Signed-off-by: Stefan Roese <sr@denx.de>
63576
63577 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
63578 Author: Stefan Roese <sr@denx.de>
63579 Date: Thu Oct 11 11:15:59 2007 +0200
63580
63581 ppc4xx: Enable device tree support (fdt) on Kilauea per default
63582
63583 This patch enables the fdt support on the AMCC Kilauea eval board.
63584 Additionally now EBC ranges fdt fixup is included to support NOR
63585 FLASH mapping via the Linux physmap_of driver.
63586
63587 This Kilauea port now support booting arch/ppc and arch/powerpc
63588 Linux kernels. The default environment "net_nfs" is for arch/ppc
63589 and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
63590 support will be removed.
63591
63592 Signed-off-by: Stefan Roese <sr@denx.de>
63593
63594 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
63595 Author: Stefan Roese <sr@denx.de>
63596 Date: Thu Oct 11 11:11:45 2007 +0200
63597
63598 ppc4xx: Add additional debug info to 4xx fdt support
63599
63600 Signed-off-by: Stefan Roese <sr@denx.de>
63601
63602 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
63603 Author: Stefan Roese <sr@denx.de>
63604 Date: Fri Oct 5 21:28:58 2007 +0200
63605
63606 ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
63607
63608 Signed-off-by: Stefan Roese <sr@denx.de>
63609
63610 commit 1941cce71b1ae975602854045061e82f94ecd012
63611 Author: Stefan Roese <sr@denx.de>
63612 Date: Fri Oct 5 17:35:10 2007 +0200
63613
63614 ppc4xx: Fix small merge problem in 4xx_enet.c
63615
63616 Signed-off-by: Stefan Roese <sr@denx.de>
63617
63618 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
63619 Author: Stefan Roese <sr@denx.de>
63620 Date: Fri Oct 5 17:11:30 2007 +0200
63621
63622 ppc4xx: Add initial AMCC Kilauea 405EX support
63623
63624 Signed-off-by: Stefan Roese <sr@denx.de>
63625
63626 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
63627 Author: Stefan Roese <sr@denx.de>
63628 Date: Fri Oct 5 17:10:59 2007 +0200
63629
63630 ppc4xx: Add PPC405EX support
63631
63632 Signed-off-by: Stefan Roese <sr@denx.de>
63633
63634 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
63635 Author: Stefan Roese <sr@denx.de>
63636 Date: Fri Oct 5 17:09:36 2007 +0200
63637
63638 ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
63639
63640 Signed-off-by: Stefan Roese <sr@denx.de>
63641
63642 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
63643 Author: Stefan Roese <sr@denx.de>
63644 Date: Fri Oct 5 17:07:50 2007 +0200
63645
63646 ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
63647
63648 Signed-off-by: Stefan Roese <sr@denx.de>
63649
63650 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
63651 Author: Stefan Roese <sr@denx.de>
63652 Date: Fri Oct 5 17:04:57 2007 +0200
63653
63654 POST: Add 405EX support to 4xx UART POST test
63655
63656 Signed-off-by: Stefan Roese <sr@denx.de>
63657
63658 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
63659 Author: Stefan Roese <sr@denx.de>
63660 Date: Fri Oct 5 15:10:02 2007 +0200
63661
63662 DTT: Prepare DS1775 driver for use of different I2C addresses
63663
63664 Signed-off-by: Stefan Roese <sr@denx.de>
63665
63666 commit 19e93b1e16d267220440d827b920fbad8abfa70f
63667 Author: Stefan Roese <sr@denx.de>
63668 Date: Fri Oct 5 14:23:43 2007 +0200
63669
63670 ppc4xx: 4xx_pcie: Change PCIe status output to match common style
63671
63672 Signed-off-by: Stefan Roese <sr@denx.de>
63673
63674 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
63675 Author: Stefan Roese <sr@denx.de>
63676 Date: Fri Oct 5 09:22:33 2007 +0200
63677
63678 ppc4xx: 4xx_pcie: Disable debug output as default
63679
63680 Signed-off-by: Stefan Roese <sr@denx.de>
63681
63682 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
63683 Author: Stefan Roese <sr@denx.de>
63684 Date: Fri Oct 5 09:18:23 2007 +0200
63685
63686 ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
63687
63688 Signed-off-by: Stefan Roese <sr@denx.de>
63689
63690 commit 4dbee8a90df613eb517aadbecebd70f168913d30
63691 Author: Stefan Roese <sr@denx.de>
63692 Date: Fri Oct 5 07:57:20 2007 +0200
63693
63694 ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
63695
63696 128MB seems to be the smallest possible value for the memory size
63697 for on PCIe port. With this change now the BAR's of the PCIe cards
63698 are accessible under U-Boot.
63699
63700 One big note: This only works for PCIe port 0 & 1. For port 2 this
63701 currently doesn't work, since the base address is now 0xc0000000
63702 (0xb0000000 + 2 * 0x08000000), and this is already occupied by
63703 CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
63704 to change the base addresses completely and this change would have
63705 too much impact right now.
63706
63707 This patch adds debug output to the 4xx pcie driver too.
63708
63709 Signed-off-by: Stefan Roese <sr@denx.de>
63710
63711 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
63712 Author: Stefan Roese <sr@denx.de>
63713 Date: Wed Oct 3 21:16:32 2007 +0200
63714
63715 ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
63716
63717 Signed-off-by: Stefan Roese <sr@denx.de>
63718
63719 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
63720 Author: Stefan Roese <sr@denx.de>
63721 Date: Wed Oct 3 15:01:02 2007 +0200
63722
63723 ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
63724
63725 These files were introduced with the IBM 405GP but are currently used on all
63726 4xx PPC platforms. So the name doesn't match the content anymore. This patch
63727 renames the files to 4xx_pci.c/h.
63728
63729 Signed-off-by: Stefan Roese <sr@denx.de>
63730
63731 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
63732 Author: Stefan Roese <sr@denx.de>
63733 Date: Wed Oct 3 14:14:58 2007 +0200
63734
63735 ppc4xx: Add a comment for 405EX PCIe endpoint configuration
63736
63737 Signed-off-by: Stefan Roese <sr@denx.de>
63738
63739 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
63740 Author: Stefan Roese <sr@denx.de>
63741 Date: Wed Oct 3 10:38:09 2007 +0200
63742
63743 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
63744
63745 (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
63746 the SDR registers of the PCIe ports. This makes the overall design
63747 clearer, since it removed a lot of switch statements which are not
63748 needed anymore.
63749
63750 Also, the functions ppc4xx_init_pcie_rootport() and
63751 ppc4xx_init_pcie_entport() are merged into a single function
63752 ppc4xx_init_pcie_port(), since most of the code was duplicated.
63753 This makes maintainance and porting to other 4xx platforms
63754 easier.
63755
63756 Signed-off-by: Stefan Roese <sr@denx.de>
63757
63758 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
63759 Author: Stefan Roese <sr@denx.de>
63760 Date: Wed Oct 3 07:48:09 2007 +0200
63761
63762 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
63763
63764 This patch is the first patch of a series to make the 440SPe PCIe code
63765 usable on different 4xx PPC platforms. In preperation for the new 405EX
63766 which is also equipped with PCIe interfaces.
63767
63768 (2) This patch renames the functions from 440spe_ to 4xx_ with a
63769 little additional cleanup
63770
63771 Signed-off-by: Stefan Roese <sr@denx.de>
63772
63773 commit c7c6da23028f146d912514b95aefa3da7cf37699
63774 Author: Stefan Roese <sr@denx.de>
63775 Date: Wed Oct 3 07:34:10 2007 +0200
63776
63777 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
63778
63779 This patch is the first patch of a series to make the 440SPe PCIe code
63780 usable on different 4xx PPC platforms. In preperation for the new 405EX
63781 which is also equipped with PCIe interfaces.
63782
63783 (1) This patch renames the files from 440spe_pcie to 4xx_pcie
63784
63785 Signed-off-by: Stefan Roese <sr@denx.de>
63786
63787 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
63788 Author: Marian Balakowicz <m8@semihalf.com>
63789 Date: Wed Oct 24 01:37:36 2007 +0200
63790
63791 TQM5200: Call usb_cpu_init() during board init
63792
63793 usb_cpu_init() configures GPS USB pins, clocks, etc. and
63794 is required for proper operation of kernel USB subsystem.
63795 This setup was previously done in the kernel by the fixup
63796 code which is being removed, thus low level init must be
63797 done by U-boot now.
63798
63799 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
63800 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63801
63802 commit b5af773f8d92677e06f3295b45557c9d0a487c24
63803 Author: Zhang Wei <wei.zhang@freescale.com>
63804 Date: Thu Oct 25 17:51:27 2007 +0800
63805
63806 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
63807
63808 The scan code of the key 'z' is 0x1d, which should be handled.
63809
63810 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
63811 controller.
63812
63813 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
63814 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63815
63816 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
63817 Author: Rodolfo Giometti <giometti@enneenne.com>
63818 Date: Mon Oct 15 11:59:17 2007 +0200
63819
63820 PXA USB OHCI: "usb stop" implementation.
63821
63822 Some USB keys need to be switched off before loading the kernel
63823 otherwise they can remain in an undefined status which prevents them
63824 to be correctly recognized by the kernel.
63825
63826 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
63827 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
63828
63829 commit 31548249decf18a6b877a18436b6139dd483fe4a
63830 Author: Justin Flammia <jflammia@savantav.com>
63831 Date: Mon Oct 29 17:40:35 2007 -0400
63832
63833 DHCP Client Fix
63834
63835 This is a multi-part message in MIME format.
63836
63837 commit e6e505eae94ed721e123e177489291fc4544b7b8
63838 Author: Justin Flammia <jflammia@savantav.com>
63839 Date: Mon Oct 29 17:19:03 2007 -0400
63840
63841 Found a bug in the way the DHCP Request packet is built, where the IP address
63842 that is offered by the server is bound to prematurely. This patch is a fix of
63843 that bug where the IP address offered by the DHCP server is not used until
63844 after the DHCP ACK from the server is received.
63845
63846 Signed-off-by: Justin Flammia <jflammia@savantav.com>
63847 Signed-off-by: Ben Warren <bwarren@qstreams.com>
63848
63849 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
63850 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63851 Date: Thu Oct 25 17:16:22 2007 -0500
63852
63853 ColdFire 54455: Fix correct boot location for atmel and intel
63854
63855 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63856
63857 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
63858 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63859 Date: Thu Oct 25 17:14:00 2007 -0500
63860
63861 ColdFire: Fix build error when CONFIG_WATCHDOG is defined
63862
63863 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63864
63865 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
63866 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63867 Date: Thu Oct 25 17:12:36 2007 -0500
63868
63869 ColdFire 5329: Assign correct SDRAM size and fix cache
63870
63871 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63872
63873 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
63874 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63875 Date: Thu Oct 25 17:10:23 2007 -0500
63876
63877 ColdFire 5253: Assign correct SDRAM size
63878
63879 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63880
63881 commit 2acefa72ee0026f862ab65597ca687428f63a973
63882 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63883 Date: Thu Oct 25 17:09:17 2007 -0500
63884
63885 ColdFire 5282: Fix external flash boot and return dramsize
63886
63887 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
63888
63889 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
63890 Author: Bartlomiej Sieka <tur@semihalf.com>
63891 Date: Thu Oct 25 17:20:01 2007 +0200
63892
63893 TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
63894
63895 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
63896
63897 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
63898 Author: Martin Krause <martin.krause@tqs.de>
63899 Date: Wed Oct 24 08:42:25 2007 +0200
63900
63901 TQM5200: fix spurious characters on second serial interface
63902
63903 With this patch PSC3 is configured as UART. This is done, because if
63904 the pins of PSC3 are not configured at all (-> all pins are GPI),
63905 due to crosstalk, spurious characters may be send over the RX232_2_TXD
63906 signal line.
63907
63908 Signed-off-by: Martin Krause <martin.krause@tqs.de>
63909 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
63910
63911 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
63912 Author: Martin Krause <martin.krause@tqs.de>
63913 Date: Wed Oct 24 08:41:27 2007 +0200
63914
63915 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
63916
63917 Some commands for the STK52xx base board try to access the SM501 grafic
63918 controller. But the TQM5200S has no grafic controller (only the TQM5200
63919 and the TQM5200B have). This patch deactivates the commands accessing
63920 the SM501 for the TQM5200S.
63921
63922 Signed-off-by: Martin Krause <martin.krause@tqs.de>
63923 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
63924
63925 commit b31f64343ead9482cd439b1adbe4c34026a641b1
63926 Author: Martin Krause <martin.krause@tqs.de>
63927 Date: Mon Oct 22 16:45:53 2007 +0200
63928
63929 TQM5200: fix spurious characters on second serial interface
63930
63931 With this patch PSC3 is configured as UART. This is done, because if
63932 the pins of PSC3 are not configured at all (-> all pins are GPI),
63933 due to crosstalk, spurious characters may be send over the RX232_2_TXD
63934 signal line.
63935
63936 Signed-off-by: Martin Krause <martin.krause@tqs.de>
63937
63938 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
63939 Author: Martin Krause <martin.krause@tqs.de>
63940 Date: Mon Oct 22 16:40:06 2007 +0200
63941
63942 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
63943
63944 Some commands for the STK52xx base board try to access the SM501 grafic
63945 controller. But the TQM5200S has no grafic controller (only the TQM5200
63946 and the TQM5200B have). This patch deactivates the commands accessing
63947 the SM501 for the TQM5200S.
63948
63949 Signed-off-by: Martin Krause <martin.krause@tqs.de>
63950
63951 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
63952 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63953 Date: Sun Oct 21 09:14:28 2007 +0200
63954
63955 Mips: Fix string functions differ prototype declaration
63956
63957 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63958
63959 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
63960 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
63961 Date: Fri Oct 19 17:51:40 2007 -0500
63962
63963 fsl_pci_init enable COMMAND_MEMORY if inbound window
63964
63965 Patch 16e23c3f removed PCSRBAR allocation. But passing zero windows
63966 to pciauto_setup_device has the side effect of not getting
63967 COMMAND_MEMORY set.
63968
63969 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
63970
63971 commit e9d0d527992566ebef9826962ff1745b2f082b92
63972 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63973 Date: Fri Oct 19 10:55:24 2007 +0200
63974
63975 delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
63976
63977 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63978
63979 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
63980 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63981 Date: Fri Oct 19 08:10:15 2007 +0200
63982
63983 fix warning: no return statement in function returning non-void
63984
63985 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63986
63987 commit e78220f6e514206757acfe247297fc9a328a881f
63988 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63989 Date: Fri Oct 19 06:33:45 2007 +0200
63990
63991 xsengine: Fix no partition type specified, use DOS as default
63992
63993 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63994
63995 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
63996 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
63997 Date: Fri Oct 19 00:24:59 2007 +0200
63998
63999 lubbock: Fix no partition type specified, use DOS as default
64000
64001 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64002
64003 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
64004 Author: Wolfgang Denk <wd@denx.de>
64005 Date: Tue Oct 23 16:50:03 2007 +0200
64006
64007 Coding style: keep lists sorted; update CHANGELOG
64008
64009 Signed-off-by: Wolfgang Denk <wd@denx.de>
64010
64011 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
64012 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64013 Date: Fri Oct 19 00:09:05 2007 +0200
64014
64015 Fix missing drivers makefile entries ds1722.c mw_eeprom.c
64016
64017 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64018
64019 commit 96455bfebc9887837095c9051d216f53c61b5f10
64020 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64021 Date: Fri Oct 19 00:07:39 2007 +0200
64022
64023 Fix warning differ in signedness in board/innokom/innokom.c
64024
64025 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64026
64027 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
64028 Author: Marcel Ziswiler <marcel@ziswiler.com>
64029 Date: Fri Oct 19 00:25:33 2007 +0200
64030
64031 fix pxa255_idp board
64032
64033 The pxa255_idp being an old unmaintained board showed several issues:
64034 1. CONFIG_INIT_CRITICAL was still defined.
64035 2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
64036 3. Symbol flash_addr was undeclared.
64037 4. The boards lowlevel_init function was still called memsetup.
64038 5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
64039 6. Using -march=armv5 instead of -march=armv5te resulted in lots of
64040 'target CPU does not support interworking' warnings on recent compilers.
64041 7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
64042 indexes rather than the register definitions from the pxa-regs header
64043 file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
64044 avoid any ambiguities.
64045 8. There were several redefinition warnings concerning ICMR, OSMR3,
64046 OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
64047 9. The board configuration file was rather outdated.
64048 10. The part header file defined the vendor, product and revision arrays
64049 as unsigned chars instead of just chars in the block_dev_desc_t
64050 structure.
64051
64052 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
64053
64054 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
64055 Author: Rune Torgersen <runet@innovsys.com>
64056 Date: Wed Oct 17 11:56:31 2007 -0500
64057
64058 Make MPC8266ADS command selection more robust
64059
64060 Fix MPC8266 command line definition so it won't break when new commands
64061 are added to u-boot.
64062 Signed-off-by Rune Torgersen <runet@innovsys.com>
64063
64064 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
64065 Author: Bartlomiej Sieka <tur@semihalf.com>
64066 Date: Tue Oct 23 13:14:10 2007 +0200
64067
64068 Motion-PRO: Update configuration to accomodate next generation board.
64069
64070 New board has faster oscillator and a different Flash chip. This affects:
64071 - CFG_MPC5XXX_CLKIN
64072 - SDRAM timings
64073 - Flash CS configuration (timings)
64074 - Flash sector size, and thus MTD partition layout
64075 - malloc() arena size (due to bigger Flash sectors)
64076 - smaller memory test range (due to bigger malloc() arena)
64077
64078 This patch also enables more extensive memory testing via "mtest".
64079
64080 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
64081
64082 commit eff501904df2bf1724a750062628ba2c51dbb1f8
64083 Author: Bartlomiej Sieka <tur@semihalf.com>
64084 Date: Tue Oct 23 11:36:07 2007 +0200
64085
64086 Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
64087
64088 Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
64089 register must be written a value of 0x00000004 as the first step of the
64090 SDRAM contorller configuration.
64091
64092 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
64093
64094 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
64095 Author: Peter Pearse <peter.pearse@arm.com>
64096 Date: Tue Oct 23 10:22:16 2007 +0100
64097
64098 Move PL01* serial drivers to drivers/serial and adjust Makefiles.
64099
64100 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
64101 Author: Stefan Roese <sr@denx.de>
64102 Date: Tue Oct 23 10:17:42 2007 +0200
64103
64104 ppc4xx: lwmon5: Some further GPIO config changes
64105
64106 Signed-off-by: Stefan Roese <sr@denx.de>
64107
64108 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
64109 Author: Vlad Lungu <vlad@comsys.ro>
64110 Date: Sun Oct 21 22:10:10 2007 +0900
64111
64112 [MIPS] Fix UNCACHED_SDRAM
64113
64114 PHYSADDR is for physical address, KSEG1ADDR is for uncached.
64115
64116 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
64117 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64118
64119 commit 00101dd7a32d12f698150123e47e4b3420279f86
64120 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64121 Date: Sun Oct 21 21:30:42 2007 +0900
64122
64123 [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
64124
64125 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64126
64127 commit eb700636db017d310edaeb559b13d82588560674
64128 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64129 Date: Sun Oct 21 10:55:37 2007 +0900
64130
64131 [MIPS] u-boot.lds: Define _gp in a standard manner
64132
64133 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64134
64135 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
64136 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64137 Date: Sun Oct 21 10:55:36 2007 +0900
64138
64139 [MIPS] Fix $gp usage
64140
64141 Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
64142 As a general principle, we should use _gp for $gp.
64143
64144 Thanks to linker script's help we fortunately have _gp which equals to
64145 _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
64146 be able to access to GOT entires, global variables and procedure entry
64147 points. The right thing to do is to use _gp.
64148
64149 This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
64150 which holds the offset from _gp. When updating GOT entries, we use this
64151 offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
64152
64153 This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
64154 I made some change to leave over num_got_entries.
64155
64156 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64157 Cc: Vlad Lungu <vlad@comsys.ro>
64158
64159 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
64160 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64161 Date: Sun Oct 21 10:55:36 2007 +0900
64162
64163 [MIPS] u-boot.lds: Fix __got_start and __got_end
64164
64165 Ensure that __got_start points to top of the `.got', and __got_end points
64166 to bottom as well, so that we never fail to count num_got_entries.
64167
64168 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64169
64170 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
64171 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64172 Date: Sun Oct 21 10:55:36 2007 +0900
64173
64174 [MIPS] u-boot.lds: Remove duplicated .sdata section
64175
64176 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
64177
64178 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
64179 Author: Wolfgang Denk <wd@denx.de>
64180 Date: Sun Oct 21 01:01:17 2007 +0200
64181
64182 Minor coding style cleanup; update CHANGELOG
64183
64184 Signed-off-by: Wolfgang Denk <wd@denx.de>
64185
64186 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
64187 Author: Vlad Lungu <vlad@comsys.ro>
64188 Date: Thu Oct 4 20:47:10 2007 +0300
64189
64190 Fix NE2000 driver:
64191
64192 Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
64193 to do anything in eth_stop() if eth_init() was not called.
64194 Simplified RX path in order to avoid timeouts on really really
64195 fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
64196 clever enough to cope with 1 packet per eth_rx().
64197
64198 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
64199
64200 commit df90968b48fb34fa9072fab150db2ac89678f537
64201 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
64202 Date: Mon Sep 24 13:32:13 2007 -0400
64203
64204 Setting MSR[DE] in do_reset
64205
64206 Hello,
64207 This patch ensures the soft reset of the board for the 85xx boards
64208 by setting the MSR[DE] in the do_reset function.
64209
64210 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
64211
64212 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
64213 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
64214 Date: Mon Sep 24 13:36:01 2007 -0400
64215
64216 MSR overwrite fix
64217
64218 Hello,
64219 This patch fixes the MSR overwrite in the start.S when moving out of
64220 the last 4K page.
64221
64222 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
64223
64224 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
64225 Author: Dan Wilson <dwilson@fulcrummicro.com>
64226 Date: Fri Oct 19 11:33:48 2007 -0500
64227
64228 tsec driver should clear RHALT on startup
64229
64230 This was causing problems for some people.
64231
64232 Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
64233 Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
64234 Signed-off-by: Andy Fleming <afleming@freescale.com>
64235
64236 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
64237 Author: Kumar Gala <galak@kernel.crashing.org>
64238 Date: Thu Oct 11 00:29:18 2007 -0500
64239
64240 Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
64241
64242 On the MPC85xx CDS we have two issues:
64243
64244 1. The device tree fixup code did not check to see if the property we are
64245 trying to update is actually found. Its possible that it would update
64246 random memory starting at 0.
64247
64248 2. Newer Linux kernel's have moved the location of the PCI nodes to be
64249 sibilings of the soc node and not children. The explicit PATH to the PCI
64250 node would not be found for these device trees. Add the ability to handle
64251 both paths. In the future we shouldn't handle such fixups by explicit path.
64252
64253 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64254
64255 commit a3063eec775719b7e91023bbec3f64b3118791df
64256 Author: Kumar Gala <galak@kernel.crashing.org>
64257 Date: Thu Oct 11 00:18:48 2007 -0500
64258
64259 Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
64260
64261 On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
64262 console. Make it so we match that config what we tell Linux as the early
64263 STDOUT console.
64264
64265 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64266
64267 commit e1ce3cb617bb06f91f82f98915391175addf3e82
64268 Author: Kumar Gala <galak@kernel.crashing.org>
64269 Date: Tue Oct 2 11:12:27 2007 -0500
64270
64271 Remove magic numbers from cache related operations for mpc85xx
64272
64273 The mpc85xx start code uses some magic numbers that we actually
64274 have #defines for in <config.h> so use those instead.
64275
64276 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
64277
64278 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
64279 Author: Detlev Zundel <dzu@denx.de>
64280 Date: Fri Oct 19 16:47:26 2007 +0200
64281
64282 Fix two typos.
64283
64284 Signed-off-by: Detlev Zundel <dzu@denx.de>
64285
64286 commit 281df457c1aa50d2752165d0c5c3282d4027b974
64287 Author: Tony Li <tony.li@freescale.com>
64288 Date: Thu Oct 18 17:47:19 2007 +0800
64289
64290 mpc83xx: Add configure entry for MPC83xx ATM support
64291
64292 Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
64293 Makfile and MAKEALL
64294
64295 Signed-off-by: Tony Li <tony.li@freescale.com>
64296 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64297
64298 commit d2646554f529a9577515eceb0ec5eceee18244ba
64299 Author: Tony Li <tony.li@freescale.com>
64300 Date: Thu Oct 18 17:44:38 2007 +0800
64301
64302 mpc83xx: pq-mds-pib.c typo error
64303
64304 Correct to val8 from val.
64305
64306 Signed-off-by: Tony Li <tony.li@freescale.com>
64307 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
64308
64309 commit 3e11ae80fec1ee12194940955431186abf6009c2
64310 Author: Stefan Roese <sr@denx.de>
64311 Date: Wed Oct 17 15:40:19 2007 +0200
64312
64313 ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
64314
64315 Signed-off-by: Stefan Roese <sr@denx.de>
64316
64317 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
64318 Author: Jon Loeliger <jdl@freescale.com>
64319 Date: Tue Oct 16 15:27:43 2007 -0500
64320
64321 Initial mpc8610hpcd Makefile files.
64322
64323 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64324 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
64325 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
64326 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64327
64328 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
64329 Author: Jon Loeliger <jdl@freescale.com>
64330 Date: Tue Oct 16 15:26:51 2007 -0500
64331
64332 Initial mpc8610hpcd cpu/, README and include/ files.
64333
64334 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64335 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
64336 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
64337 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64338
64339 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
64340 Author: Jon Loeliger <jdl@freescale.com>
64341 Date: Tue Oct 16 13:54:01 2007 -0500
64342
64343 Initial mpc8610hpcd board files.
64344
64345 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64346 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
64347 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
64348 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64349
64350 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
64351 Author: runet@innovsys.com <runet@innovsys.com>
64352 Date: Tue Oct 16 14:50:40 2007 -0500
64353
64354 Make MPC8266ADS board compile again.
64355
64356 Signed-off-by: Runet Torgersen <runet@innovsys.com>
64357
64358 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
64359 Author: Jon Loeliger <jdl@freescale.com>
64360 Date: Mon Aug 27 12:41:03 2007 -0500
64361
64362 86xx: Allow for fewer DDR slots per memory controller.
64363
64364 As a direct correlation exists between DDR DIMM slots
64365 and SPD EEPROM addresses used to configure them, use
64366 the individually defined SPD_EEPROM_ADDRESS* values to
64367 determine if a DDR DIMM slot should have its SPD
64368 configuration read or not.
64369
64370 Effectively, this now allows for 1 or 2 DIMM slots
64371 per memory controller.
64372
64373 Signed-off-by: Jon Loeliger <jdl@freescale.com>
64374
64375 commit 4d4a945e189a2f384c66432316da2788a0ac1607
64376 Author: Rodolfo Giometti <giometti@enneenne.com>
64377 Date: Mon Oct 15 11:59:17 2007 +0200
64378
64379 PXA USB OHCI: "usb stop" implementation.
64380
64381 Some USB keys need to be switched off before loading the kernel
64382 otherwise they can remain in an undefined status which prevents them
64383 to be correctly recognized by the kernel.
64384
64385 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
64386
64387 commit e2e93442e558cf1500e92861f99713b2f045ea22
64388 Author: Stefan Roese <sr@denx.de>
64389 Date: Mon Oct 15 11:39:00 2007 +0200
64390
64391 ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
64392
64393 The I2C bootstrap values that can be setup via the "bootstrap" command,
64394 were setup incorrect regarding the generation of the internal sync PCI
64395 clock. The values for PLB clock == 133MHz were slighly incorrect and the
64396 values for PLB clock == 166MHz were totally incorrect. This could
64397 lead to a hangup upon booting while PCI configuration scan.
64398
64399 This patch fixes this issue and configures valid PCI divisor values
64400 for the sync PCI clock, with respect to the provided external async
64401 PCI frequency.
64402
64403 Here the values of the formula in the chapter 14.2 "PCI clocking"
64404 from the 440EPx users manual:
64405
64406 AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
64407
64408 33MHz async PCI frequency:
64409 PLB = 133:
64410 => 32 <= 44.3 <= 65 (div = 3)
64411
64412 PLB = 166:
64413 => 32 <= 55.3 <= 65 (div = 3)
64414
64415 66MHz async PCI frequency:
64416 PLB = 133:
64417 => 65 <= 66.5 <= 132 (div = 2)
64418
64419 PLB = 166:
64420 => 65 <= 83 <= 132 (div = 2)
64421
64422 Signed-off-by: Stefan Roese <sr@denx.de>
64423
64424 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
64425 Author: Stefan Roese <sr@denx.de>
64426 Date: Mon Oct 15 11:29:33 2007 +0200
64427
64428 ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
64429
64430 The BCSR status bit for the 66MHz PCI operation was correctly
64431 addressed (MSB/LSB problem). Now the correct currently setup
64432 PCI frequency is displayed upon bootup.
64433
64434 This patch also fixes this problem on Rainier & Yellowstone, since these
64435 boards use the same souce code as Sequoia & Yosemite do.
64436
64437 Signed-off-by: Stefan Roese <sr@denx.de>
64438
64439 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
64440 Author: Martin Krause <martin.krause@tqs.de>
64441 Date: Wed Sep 26 17:55:56 2007 +0200
64442
64443 TQM860M: adjust for doubled flash sector size.
64444
64445 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
64446 doubled sector size.
64447
64448 Signed-off-by: Martin Krause <martin.krause@tqs.de>
64449
64450 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
64451 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
64452 Date: Wed Sep 26 17:55:54 2007 +0200
64453
64454 TQM8xx: Fix CAN timing.
64455
64456 Signed-off-by: Martin Krause <martin.krause@tqs.de>
64457
64458 commit d43e489baf02afae49077791fb22332d240d8656
64459 Author: Martin Krause <martin.krause@tqs.de>
64460 Date: Thu Sep 27 14:54:36 2007 +0200
64461
64462 TQM866M: fix SDRAM refresh
64463
64464 At 133 MHz the current SDRAM refresh rate is too fast
64465 (measured 4 * 1.17 us).
64466 CFG_MAMR_PTA changes from 39 to 97. This result
64467 in a refresh rate of 4 * 7.8 us at the default clock
64468 50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
64469 This is a compromise until a new method is found to
64470 adjust the refresh rate.
64471
64472 Signed-off-by: Martin Krause <martin.krause@tqs.de>
64473
64474 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
64475 Author: Martin Krause <martin.krause@tqs.de>
64476 Date: Wed Sep 26 17:55:55 2007 +0200
64477
64478 TQM866M: adjust for doubled flash sector size.
64479
64480 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
64481 doubled sector size.
64482
64483 Signed-off-by: Martin Krause <martin.krause@tqs.de>
64484
64485 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
64486 Author: Michal Simek <monstr@monstr.eu>
64487 Date: Sun Oct 14 16:12:29 2007 +0200
64488
64489 [FIX] XUPV2P change command handling
64490 and remove code violation
64491
64492 commit 636400198228d96983c06657b17f760f5989958e
64493 Author: Wolfgang Denk <wd@denx.de>
64494 Date: Sun Oct 14 00:13:19 2007 +0200
64495
64496 Prepare for 1.3.0-rc3 release
64497
64498 Signed-off-by: Wolfgang Denk <wd@denx.de>
64499
64500 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
64501 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64502 Date: Sat Sep 29 13:41:37 2007 +0200
64503
64504 Fix warning differ in signedness in cpu/pxa/mmc.c
64505
64506 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64507
64508 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
64509 Author: Wolfgang Denk <wd@denx.de>
64510 Date: Sat Oct 13 23:51:14 2007 +0200
64511
64512 Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
64513
64514 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64515 Signed-off-by: Wolfgang Denk <wd@denx.de>
64516
64517 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
64518 Author: Wolfgang Denk <wd@denx.de>
64519 Date: Sat Oct 13 21:15:39 2007 +0200
64520
64521 Coding Style cleanup.
64522
64523 Signed-off-by: Wolfgang Denk <wd@denx.de>
64524
64525 commit e1893815b0999410d7a327589611c7b38e95299e
64526 Author: Wolfgang Denk <wd@denx.de>
64527 Date: Fri Oct 12 15:49:39 2007 +0200
64528
64529 GP3 SSA: enable RTC
64530
64531 Signed-off-by: Wolfgang Denk <wd@denx.de>
64532
64533 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
64534 Author: Grzegorz Bernacki <gjb@semihalf.com>
64535 Date: Tue Oct 9 13:58:24 2007 +0200
64536
64537 [ads5121] EEPROM support added.
64538
64539 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64540
64541 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
64542 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
64543 Date: Sat Oct 6 18:55:35 2007 +0200
64544
64545 AVR32: Initialize bi_flash* in board_init_r
64546
64547 The ATSTK1000-specific flash driver intializes bi_flashstart,
64548 bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
64549 driver, don't.
64550
64551 Initialize these in board_init_r instead so that things will still be
64552 set up correctly when we switch to the CFI driver.
64553
64554 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64555
64556 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
64557 Author: Marian Balakowicz <m8@semihalf.com>
64558 Date: Fri Oct 5 10:40:54 2007 +0200
64559
64560 tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
64561
64562 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
64563
64564 commit 92869195ef8210758d2176230c0a36897afd50ed
64565 Author: Bartlomiej Sieka <tur@semihalf.com>
64566 Date: Fri Oct 5 09:46:06 2007 +0200
64567
64568 CM5200: Fix missing null-termination in hostname manipulation code
64569
64570 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
64571
64572 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
64573 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
64574 Date: Tue Oct 2 19:09:01 2007 +0200
64575
64576 Fix memtest breakage
64577
64578 CFG_MEMTEST_START uses weird magic involving gd, which fails to
64579 compile. Use hardcoded values instead (we actually know how much RAM
64580 we have on board.)
64581
64582 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64583
64584 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
64585 Author: Stefan Roese <sr@denx.de>
64586 Date: Tue Oct 2 11:44:46 2007 +0200
64587
64588 ppc4xx: Coding style cleanup
64589
64590 Signed-off-by: Stefan Roese <sr@denx.de>
64591
64592 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
64593 Author: Stefan Roese <sr@denx.de>
64594 Date: Tue Oct 2 11:44:19 2007 +0200
64595
64596 ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
64597
64598 Signed-off-by: Stefan Roese <sr@denx.de>
64599
64600 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
64601 Author: Grzegorz Bernacki <gjb@semihalf.com>
64602 Date: Mon Oct 1 09:51:50 2007 +0200
64603
64604 Program EPLD to force full duplex mode for PHY.
64605
64606 EPLD forces modes of PHY operation. By default full duplex is turned off.
64607 This fix turns it on.
64608
64609 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
64610
64611 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
64612 Author: Timo Ketola <timo.ketola@exertus.fi>
64613 Date: Mon Sep 24 14:50:32 2007 +0300
64614
64615 Bugfix: Use only one PTD for one endpoint
64616
64617 Original isp116x-hcd code prepared multiple PTDs for longer than 16
64618 byte transfers for one endpoint. That is unnecessary because the
64619 ISP116x is able to split long data from one PTD into multiple
64620 transactions based on the buffer size of the endpoint. It also caused
64621 serious problems if the endpoint NAKed some of the transactions. In
64622 that case ISP116x wouldn't notice that the other PTDs were for the same
64623 endpoint and would try the other PTDs possibly out of order. That would
64624 break the whole transfer.
64625
64626 This patch makes isp116x_submit_job to use one PTD for one transfer.
64627
64628 Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
64629 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
64630
64631 commit 86ec86c04326c3913178a7679aa910de071da75d
64632 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64633 Date: Thu Sep 27 23:27:47 2007 +0200
64634
64635 Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
64636
64637 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
64638
64639 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
64640 Author: Stefan Roese <sr@denx.de>
64641 Date: Tue Sep 11 14:12:55 2007 +0200
64642
64643 ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
64644
64645 Signed-off-by: Stefan Roese <sr@denx.de>
64646
64647 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
64648 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
64649 Date: Wed Sep 26 16:35:54 2007 -0500
64650
64651 85xx io out functions need sync after write.
64652
64653 This fixes the mc146818 rtc_read/write functions for 85xx.
64654
64655 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
64656
64657 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
64658 Author: Grant Likely <grant.likely@secretlab.ca>
64659 Date: Tue Sep 25 15:48:05 2007 -0600
64660
64661 Fpga: fix incorrect test of CFG_FPGA_XILINX macro
64662
64663 CFG_FPGA_XILINX is a bit value used to test against the value in
64664 CONFIG_FPGA. Testing for a value will always return TRUE. I don't
64665 think that is the intention in this code.
64666
64667 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64668
64669 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
64670 Author: Michal Simek <monstr@monstr.eu>
64671 Date: Mon Sep 24 00:41:30 2007 +0200
64672
64673 [FIX] change command handling and removing code violation
64674
64675 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
64676 Author: Michal Simek <monstr@monstr.eu>
64677 Date: Mon Sep 24 00:36:06 2007 +0200
64678
64679 [FIX] change sets of commands
64680 because changing of command handling brings
64681 compilation problems
64682
64683 commit cb1bc63b75a232571eb69aa2c8aa919321655845
64684 Author: Michal Simek <monstr@monstr.eu>
64685 Date: Mon Sep 24 00:30:42 2007 +0200
64686
64687 [FIX] Email reparation & Copyright
64688 Both codes are written by myself without any
64689 support from CTU
64690
64691 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
64692 Author: Michal Simek <monstr@monstr.eu>
64693 Date: Mon Sep 24 00:25:11 2007 +0200
64694
64695 [PATCH] Change macro name for UartLite
64696 because PowerPC 405 can use UartLite as console
64697
64698 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
64699 Author: Michal Simek <monstr@monstr.eu>
64700 Date: Mon Sep 24 00:21:19 2007 +0200
64701
64702 [PATCH] Add support for design without interrupt controller
64703 Polling timer
64704
64705 commit 0731933ec8ec45d02ba89b52df673d526873cdde
64706 Author: Michal Simek <monstr@monstr.eu>
64707 Date: Mon Sep 24 00:19:48 2007 +0200
64708
64709 [FIX] resolve problem with cpu without barrel shifter
64710
64711 commit db14d77995ce515b728b178b63f82babe60e3d56
64712 Author: Michal Simek <monstr@monstr.eu>
64713 Date: Mon Sep 24 00:18:46 2007 +0200
64714
64715 [FIX] repair email address
64716
64717 commit 481d4328618804add1f818a6c96296121cd0528e
64718 Author: Michal Simek <monstr@monstr.eu>
64719 Date: Mon Sep 24 00:17:42 2007 +0200
64720
64721 [FIX] repair MFSL commands
64722
64723 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
64724 Author: Michal Simek <monstr@monstr.eu>
64725 Date: Mon Sep 24 00:08:37 2007 +0200
64726
64727 synchronizition with mainline
64728
64729 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
64730 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64731 Date: Sun Sep 23 02:42:38 2007 +0900
64732
64733 sh: Add support command of ide with sh
64734
64735 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64736
64737 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
64738 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64739 Date: Sun Sep 23 02:38:42 2007 +0900
64740
64741 sh: Update Makefile
64742
64743 Add support MS7722SE01 to Makefile.
64744
64745 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64746
64747 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
64748 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64749 Date: Sun Sep 23 02:31:13 2007 +0900
64750
64751 sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
64752
64753 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64754
64755 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
64756 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64757 Date: Sun Sep 23 02:19:24 2007 +0900
64758
64759 sh: Update MS7750SE01 platform
64760
64761 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64762
64763 commit 516ad760db3553766267ada01b7d5d727faa4bbd
64764 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64765 Date: Sun Sep 23 02:17:08 2007 +0900
64766
64767 sh: Remove comment out code from include/asm-sh/cpu_sh4.h
64768
64769 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64770
64771 commit b02bad128669e567fce87d8df823b06a0144b8db
64772 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64773 Date: Sun Sep 23 02:12:30 2007 +0900
64774
64775 sh: Update core code of SuperH.
64776
64777 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
64778
64779 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
64780 Author: Wolfgang Denk <wd@denx.de>
64781 Date: Thu Sep 20 00:04:14 2007 +0200
64782
64783 v1.3.0-rc2
64784
64785 Signed-off-by: Wolfgang Denk <wd@denx.de>
64786
64787 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
64788 Author: Wolfgang Denk <wd@denx.de>
64789 Date: Tue Sep 18 21:36:35 2007 +0200
64790
64791 Avoid compiler warning.
64792
64793 Signed-off-by: Wolfgang Denk <wd@denx.de>
64794
64795 commit 8a783a65851bc7421ab69f442261215e21b8891a
64796 Author: Grant Likely <grant.likely@secretlab.ca>
64797 Date: Tue Sep 18 12:24:57 2007 -0600
64798
64799 Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
64800
64801 /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
64802 nulls in a string differently. For example, the following statement:
64803 echo "this is a string\0" > afile
64804 Will produce the following with /bin/bash:
64805 "this is a string\0"
64806 But with /bin/dash, will produce:
64807 "this is a string
64808
64809 Bug fixed by moving the embedded null out of the makefile and into the
64810 config header. Also renamed the macro to avoid usage colision with the same
64811 macro used by other board ports.
64812
64813 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
64814
64815 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
64816 Author: Wolfgang Denk <wd@denx.de>
64817 Date: Tue Sep 18 17:40:27 2007 +0200
64818
64819 MCC200: fix build warning
64820
64821 The MCC200 board config file includes version.h for some customer-
64822 specific setting, which causes warnings with "make depend"; build
64823 version.h before depend.
64824
64825 Signed-off-by: Wolfgang Denk <wd@denx.de>
64826
64827 commit bd86220f58b99d6896198c385fda132f0c980915
64828 Author: Peter Pearse <peter.pearse@arm.com>
64829 Date: Tue Sep 18 13:07:54 2007 +0100
64830
64831 Move coloured led API to status_led.h
64832 Improve indentation in drivers/at45.c
64833
64834 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
64835 Author: Eirik Aanonsen <eaa@wprmedical.com>
64836 Date: Tue Sep 18 08:47:20 2007 +0200
64837
64838 Update atstk1002 bootargs.
64839
64840 Updates to atstk1002 U-Boot header file:
64841 - Changed bootargs:
64842 * Set the bootargs for at1002 to point to the SD-card partition instead
64843 * ... of the boot flash.
64844 * Removing the rootfstype since that argument are not needed.
64845
64846 Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
64847 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64848
64849 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
64850 Author: Eirik Aanonsen <eaa@wprmedical.com>
64851 Date: Wed Sep 12 13:32:37 2007 +0200
64852
64853 Add some comments to clocks in atstk1002.h
64854
64855 This patch applies some clarifying comments to how the different
64856 clocks are setup according to atstk1002.h Some of the previous
64857 comments where stating wrongful information.
64858
64859 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
64860
64861 commit 97213f32416ead885deafea86774e912ffd60ad0
64862 Author: David Saada <David.Saada@ecitele.com>
64863 Date: Mon Sep 17 17:04:47 2007 +0200
64864
64865 Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
64866
64867 Signed-off-by: David Saada <david.saada@ecitele.com>
64868
64869 commit 30363e98fa470fbecea5e8bc0f1443352754f303
64870 Author: Stefan Roese <sr@denx.de>
64871 Date: Mon Sep 17 08:20:47 2007 +0200
64872
64873 Small whitespace cleanup of OneNAND patch
64874
64875 Signed-off-by: Stefan Roese <sr@denx.de>
64876
64877 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
64878 Author: Kyungmin Park <kmpark@infradead.org>
64879 Date: Mon Sep 10 17:15:14 2007 +0900
64880
64881 OneNAND support (take #2)
64882
64883 [PATCH 3/3] OneNAND support (take #2)
64884
64885 OneNAND support at U-Boot
64886
64887 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
64888
64889 commit 17aa2800457df0c06b41516f46f126712c196219
64890 Author: Kyungmin Park <kmpark@infradead.org>
64891 Date: Mon Sep 10 17:14:34 2007 +0900
64892
64893 OneNAND support (take #2)
64894
64895 [PATCH 2/3] OneNAND support (take #2)
64896
64897 OneNAND support at U-Boot
64898
64899 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
64900
64901 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
64902 Author: Kyungmin Park <kmpark@infradead.org>
64903 Date: Mon Sep 10 17:13:49 2007 +0900
64904
64905 OneNAND support (take #2)
64906
64907 [PATCH 1/3] OneNAND support (take #2)
64908
64909 OneNAND support at U-Boot
64910
64911 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
64912
64913 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
64914 Author: Michal Simek <monstr@monstr.eu>
64915 Date: Sun Sep 16 20:51:57 2007 +0200
64916
64917 [FIX] remove files form repository
64918
64919 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
64920 Author: Wolfgang Denk <wd@denx.de>
64921 Date: Sun Sep 16 17:10:04 2007 +0200
64922
64923 TQM8xx[LM]: Fix broken environment alignment.
64924
64925 With recent toolchains, the environment sectors were no longer aligned to
64926 sector boundaries. The reason was a combination of two bugs:
64927
64928 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
64929 for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
64930 this gets defined, is not included here (and cannot be included
64931 without causing lots of problems).
64932
64933 Added a new #define CFG_USE_PPCENV for all boards which really
64934 want to put the environment is a ".ppcenv" section.
64935
64936 2) The linker scripts just include environment.o, silently assuming
64937 that the objects in that file are really in the order in which
64938 they are coded in the C file, i. e. "environment" first, then
64939 "redundand_environment", and "env_size" last. However, current
64940 toolchains (GCC-4.x) reorder the objects, causing the environment
64941 data not to start on a flash sector boundary:
64942
64943 Instead of: we got:
64944
64945 40008000 T environment 40008000 T env_size
64946 4000c000 T redundand_environment 40008004 T redundand_environment
64947 40010000 T env_size 4000c004 T environment
64948
64949 Note: this patch fixes just the first part, and cures the alignment
64950 problem by making sure that "env_size" gets placed correctly. However,
64951 we still have a potential issue because primary and redundant
64952 environment sectors are actually swapped, i. e. we have now:
64953
64954 40008000 T redundand_environment
64955 4000c000 T environment
64956 40010000 T env_size
64957
64958 This shall be fixed in the next version.
64959
64960 Signed-off-by: Wolfgang Denk <wd@denx.de>
64961
64962 commit eb6da8050797c204c9d010548424186c7ce32fc1
64963 Author: Wolfgang Denk <wd@denx.de>
64964 Date: Sun Sep 16 02:39:35 2007 +0200
64965
64966 TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
64967
64968 Signed-off-by: Wolfgang Denk <wd@denx.de>
64969
64970 commit cd2d1602c54cc6957bdef3872272a4b264893960
64971 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
64972 Date: Mon Sep 10 14:54:56 2007 -0400
64973
64974 Typo fix in tsec.c
64975
64976 Fixup for the break statement in wrong place.
64977
64978 [Patch by urwithsughosh@gmail.com]
64979 Acked-by: Andy Fleming <afleming@freescale.com>
64980 Signed-off-by: Wolfgang Denk <wd@denx.de>
64981
64982 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
64983 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64984 Date: Tue Sep 11 17:04:00 2007 +0200
64985
64986 Fix do_div() usage in nand process output
64987
64988 Fix usage of do_div() in nand erase|read|write process output.
64989
64990 The last patch to nand_util.c introduced do_div() instead of libgcc's
64991 implementation. But do_div() returns the quotient in its first
64992 macro parameter and not as result.
64993
64994 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64995
64996 commit c750d2e6692a000a82f29de7bf24e3dc21239161
64997 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
64998 Date: Wed Sep 12 12:36:53 2007 +0200
64999
65000 NAND: Add CFG_NAND_QUIET option
65001
65002 This config option sets the default for the progress information
65003 output behavior that can also be configured through the 'quiet'
65004 environment variable.
65005
65006 The legacy NAND code does not print the current progress info
65007 on the console. So this option is for backward compatibility for
65008 units that are in the field and where setting the quiet variable
65009 is not an option. With CFG_NAND_QUIET set to '1' the console
65010 progress info is turned off. This can still be overwritten
65011 through the environment variable.
65012
65013 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
65014
65015 commit dcb88630290d2bcd803386dd4c2be73142994c4f
65016 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
65017 Date: Thu Sep 13 16:06:05 2007 -0700
65018
65019 ColdFire: fix build error becasue of bad type of mii_init()
65020
65021 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65022
65023 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
65024 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
65025 Date: Thu Sep 13 16:04:05 2007 -0700
65026
65027 ColdFire: Fix build error caused by pixis.c
65028
65029 Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
65030
65031 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65032
65033 commit e21659e30660a1377c42af135a6114efe39801d9
65034 Author: Sam Sparks <SSparks@twacs.com>
65035 Date: Fri Sep 14 11:14:42 2007 -0600
65036
65037 Update MPC8349ITX*_config to place config.tmp in right place.
65038
65039 MPC834ITX*_config does not store config.tmp at the correct locatation,
65040 causing MPC8349ITXGP to have the wrong TEXT_BASE.
65041
65042 Signed-off-by: Sam Sparks <SSparks@twacs.com>
65043 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65044
65045 commit 1218abf1b5817a39a82399b4b928b00750575bda
65046 Author: Wolfgang Denk <wd@denx.de>
65047 Date: Sat Sep 15 20:48:41 2007 +0200
65048
65049 Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
65050
65051 Signed-off-by: Wolfgang Denk <wd@denx.de>
65052
65053 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
65054 Author: Dirk Behme <dirk.behme@googlemail.com>
65055 Date: Sat Sep 15 11:55:42 2007 +0200
65056
65057 Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
65058
65059 As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
65060 function local.
65061
65062 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
65063
65064 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
65065
65066 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
65067 Author: Michal Simek <monstr@monstr.eu>
65068 Date: Sat Sep 15 00:03:35 2007 +0200
65069
65070 Synchronize with U-BOOT mainline
65071
65072 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
65073 Author: Sam Sparks <SSparks@twacs.com>
65074 Date: Fri Sep 14 11:14:42 2007 -0600
65075
65076 Update MPC8349ITX*_config to place config.tmp in right place.
65077
65078 MPC834ITX*_config does not store config.tmp at the correct locatation,
65079 causing MPC8349ITXGP to have the wrong TEXT_BASE.
65080
65081 Signed-off-by: Sam Sparks <SSparks@twacs.com>
65082 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65083 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65084
65085 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
65086 Author: Bartlomiej Sieka <tur@semihalf.com>
65087 Date: Thu Sep 13 18:21:48 2007 +0200
65088
65089 cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
65090
65091 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
65092
65093 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
65094 Author: Bartlomiej Sieka <tur@semihalf.com>
65095 Date: Thu Sep 13 16:33:59 2007 +0200
65096
65097 tqm5200: Restore customary env. variable boot commands for powerpc kernels
65098
65099 - update default definitions of kernel_addr and fdt_addr env. variables
65100 - make arch/powerpc booting the default scenario
65101 - update MTD partition layout to match the above
65102
65103 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
65104
65105 commit f34024d4a328e6edd906456da98d2c537155c4f7
65106 Author: Wolfgang Denk <wd@denx.de>
65107 Date: Wed Sep 12 00:48:57 2007 +0200
65108
65109 Fix memory corruption problem on STX GP3 SSA Board.
65110
65111 Signed-off-by: Wolfgang Denk <wd@denx.de>
65112
65113 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
65114 Author: Peter Pearse <peter.pearse@arm.com>
65115 Date: Tue Sep 11 15:35:01 2007 +0100
65116
65117 Final tidy
65118
65119 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
65120 Author: Grzegorz Bernacki <gjb@semihalf.com>
65121 Date: Tue Sep 11 15:42:11 2007 +0200
65122
65123 [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
65124 scan on second pci bus.
65125
65126 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65127
65128 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
65129 Author: Grzegorz Bernacki <gjb@semihalf.com>
65130 Date: Tue Sep 11 12:57:52 2007 +0200
65131
65132 [ppc4xx] Individual handling of sdram.c for bamboo_nand build
65133
65134 Bamboo has a file sdram.c which needs special treatment when building in
65135 separate directory. It has to be linked to build directory otherwise it is
65136 not seen.
65137
65138 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65139
65140 commit d45963854eff39d575124d859419bb4953ce2c87
65141 Author: Michal Simek <monstr@monstr.eu>
65142 Date: Tue Sep 11 00:37:04 2007 +0200
65143
65144 [FIX] Microblaze ML401 - repare FLASH handling
65145
65146 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
65147 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
65148 Date: Mon Sep 10 16:55:59 2007 +0100
65149
65150 Allocate CPU Architecture Code for STMicroelectronics' ST200.
65151
65152 Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
65153 ---------------------------------------------------
65154
65155 commit 754bac48156f8958d8f6a53a51eda88ab5758929
65156 Author: Wolfgang Denk <wd@denx.de>
65157 Date: Mon Sep 10 20:42:31 2007 +0200
65158
65159 Update version to match current state.
65160
65161 Signed-off-by: Wolfgang Denk <wd@denx.de>
65162
65163 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
65164 Author: Grzegorz Bernacki <gjb@semihalf.com>
65165 Date: Mon Sep 10 17:39:08 2007 +0200
65166
65167 [MPC512x] Streamline frame handling in the FEC driver
65168
65169 - convert frame size settings to be derived from a single base
65170 - set frame size to the recommended default value
65171
65172 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65173
65174 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
65175 Author: Kyungmin Park <kmpark@infradead.org>
65176 Date: Mon Sep 10 11:34:00 2007 +0900
65177
65178 Remove compiler warning: target CPU does not support interworking
65179
65180 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
65181
65182 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
65183 Author: Wolfgang Denk <wd@denx.de>
65184 Date: Sun Sep 9 21:21:33 2007 +0200
65185
65186 Fix compile error in spc1920 config.
65187
65188 Signed-off-by: Markus Klotzbücher <mk@denx.de>
65189 Signed-off-by: Wolfgang Denk <wd@denx.de>
65190
65191 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
65192 Author: Grant Likely <grant.likely@secretlab.ca>
65193 Date: Fri Sep 7 09:25:07 2007 -0600
65194
65195 Bugfix: make bootm+libfdt compile on boards with no flash
65196
65197 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65198
65199 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
65200 Author: Grzegorz Bernacki <gjb@semihalf.com>
65201 Date: Fri Sep 7 18:35:37 2007 +0200
65202
65203 [PPC440SPe] PCIe environment settings for Katmai and Yucca
65204
65205 - 'pciconfighost' is set by default in order to be able to scan bridges
65206 behind the primary host/PCIe
65207
65208 - 'pciscandelay' env variable is recognized to allow for user-controlled
65209 delay before the PCIe bus enumeration; some peripheral devices require a
65210 significant delay before they can be scanned (e.g. LSI8408E); without the
65211 delay they are not detected
65212
65213 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65214
65215 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
65216 Author: Grzegorz Bernacki <gjb@semihalf.com>
65217 Date: Fri Sep 7 18:20:23 2007 +0200
65218
65219 [PPC440SPe] Improve PCIe configuration space access
65220
65221 - correct configuration space mapping
65222 - correct bus numbering
65223 - better access to config space
65224
65225 Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
65226 first device on the first bus. We now allow to configure up to 16 buses;
65227 also, scanning for devices behind the PCIe-PCIe bridge is supported, so
65228 peripheral devices farther in hierarchy can be identified.
65229
65230 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65231
65232 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
65233 Author: Grzegorz Bernacki <gjb@semihalf.com>
65234 Date: Fri Sep 7 17:46:18 2007 +0200
65235
65236 [PPC440SPe] Convert machine check exceptions handling
65237
65238 Convert using fixup mechanism to suppressing MCK for the duration of config
65239 read/write transaction: while fixups work fine with the case of a precise
65240 exception, we identified a major drawback with this approach when there's
65241 an imprecise case. In this scenario there is the following race condition:
65242 the fixup is (by design) set to catch the instruction following the one
65243 actually causing the exception; if an interrupt (e.g. decrementer) happens
65244 between those two instructions, the ISR code is executed before the fixup
65245 handler the machine check is no longer protected by the fixup handler as it
65246 appears as within the ISR code. In consequence the fixup approach is being
65247 phased out and replaced with explicit suppressing of MCK during a PCIe
65248 config read/write cycle.
65249
65250 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65251
65252 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
65253 Author: Wolfgang Denk <wd@denx.de>
65254 Date: Fri Sep 7 17:43:36 2007 +0200
65255
65256 Fix typo in MAKEALL script.
65257
65258 Signed-off-by: Wolfgang Denk <wd@denx.de>
65259
65260 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
65261 Author: Grzegorz Bernacki <gjb@semihalf.com>
65262 Date: Fri Sep 7 17:09:21 2007 +0200
65263
65264 [MPC512x] Proper handling of larger frames in the FEC driver
65265
65266 When frame larger than local RX buffer is received, it is split and handled
65267 by two buffer descriptors. Prior to this patch the FEC driver discarded
65268 contents of a buffer descriptor without the 'LAST' bit set, so the first
65269 part of the frame was lost in case of larger frames. This fix allows to
65270 safely combine the two pieces into the whole frame.
65271
65272 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
65273
65274 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
65275 Author: Rafal Jaworowski <raj@semihalf.com>
65276 Date: Fri Sep 7 17:05:36 2007 +0200
65277
65278 [MPC512x] Correct fixup relocation
65279
65280 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
65281
65282 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
65283 Author: Wolfgang Denk <wd@denx.de>
65284 Date: Fri Sep 7 01:21:25 2007 +0200
65285
65286 Update CHANGELOG, minor coding style cleanup.
65287
65288 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
65289 Author: stefano babic <sbabic@denx.de>
65290 Date: Thu Aug 30 23:01:49 2007 +0200
65291
65292 PXA270: Added support for TrizepsIV board.
65293
65294 This patch add support for the Trizeps IV module (520Mhz).
65295
65296 Signed-off-by: Stefano Babic <sbabic@denx.de>
65297
65298 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
65299 Author: stefano babic <sbabic@denx.de>
65300 Date: Thu Aug 30 22:57:04 2007 +0200
65301
65302 PXA270: Add support for multiple serial ports.
65303
65304 This patch adds support for multiple serial ports to the PXA target.
65305 FFUART, BTUART and STUART are supported.
65306
65307 Signed-off-by: Stefano Babic <sbabic@denx.de>
65308
65309 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
65310 Author: stefano babic <sbabic@denx.de>
65311 Date: Thu Aug 30 22:48:47 2007 +0200
65312
65313 PXA270: fix compile issue (invalid lvalue)
65314
65315 Code is broken for PXA270 due to "invalid lvalue in assignment".
65316
65317 This patch fix it in pxa-regs.h
65318
65319 Signed-off-by: Stefano Babic <sbabic@denx.de>
65320
65321 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
65322 Author: Jason Jin <Jason.jin@freescale.com>
65323 Date: Thu Aug 30 18:19:05 2007 +0800
65324
65325 Add BUILD_DIR support for bios emulator.
65326
65327 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
65328
65329 commit b4d8a55145442f136982634862341a3e02002bda
65330 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65331 Date: Fri Aug 31 14:41:51 2007 +0900
65332
65333 [MIPS] Remove inline asm string functions
65334
65335 Stop using inline string functions on MIPS as other ARCHs do so,
65336 since the optimized inline asm versions are not small.
65337
65338 This change is triggered by a following MIPS build error:
65339 common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
65340 common/exports.c:32: undefined reference to `strcmp'
65341 make: *** [u-boot] Error 1
65342
65343 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65344
65345 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
65346 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65347 Date: Fri Aug 31 14:41:45 2007 +0900
65348
65349 [MIPS] Update asm string header
65350
65351 This patches contains several bugfixes and cleanups in the latest upstream:
65352
65353 - Don't include linux/config.h
65354 - Remove buggy inline version of memscan.
65355 - Merge with Linux 2.6.11-rc3.
65356 - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
65357 - Goodbye mips64. 31704 lines of code bite the dust.
65358 - Replace extern inline with static inline.
65359 - Fix return value of strncpy.
65360 - Remove a bunch more "$1" clobbers.
65361
65362 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65363
65364 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
65365 Author: Bartlomiej Sieka <tur@semihalf.com>
65366 Date: Tue Sep 4 17:31:22 2007 +0200
65367
65368 Fix do_bootm_linux() so that multi-file images with FDT blob boot.
65369
65370 Fix incorrect blob address calculation in do_bootm_linux() that prevents
65371 booting the kernel from a multi-file image (kernel + initrd + blob).
65372
65373 Also, make minor updates to the U-Boot's output and to the coding style.
65374
65375 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
65376
65377 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
65378 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
65379 Date: Fri Aug 31 14:29:04 2007 +0200
65380
65381 Add support for Sil680 IDE controller.
65382
65383 o add drivers/sil680.c to support the Sil680 IDE-controller.
65384 o drivers/Makefile: add sil680.o.
65385
65386 Signed-off-by: Gary Jennejohn <garyj@denx.de>
65387
65388 commit e79021223bc339df655e360645a52c457a74b067
65389 Author: Grant Likely <grant.likely@secretlab.ca>
65390 Date: Thu Sep 6 09:47:40 2007 -0600
65391
65392 bootm/fdt: Only process the fdt if an fdt address was provided
65393
65394 Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
65395 kernels using the board info structure (instead of passing a device tree)
65396 This change allows the old style booting to be used if the fdt argument
65397 was not passed to 'bootm'.
65398
65399 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65400 Acked-by: Kim Phillips <kim.phillips@freescale.com>
65401
65402 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
65403 Author: Grant Likely <grant.likely@secretlab.ca>
65404 Date: Thu Sep 6 09:46:23 2007 -0600
65405
65406 Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
65407
65408 Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
65409
65410 Tested on: lite5200b
65411
65412 Note: the fixup functions have not been moved to a common place. This
65413 patch is targeted for immediate merging as in solves a build issue, but
65414 the final name/location of the fixups is still subject to debate. I
65415 propose to merge this now, and move the fixups in the next merge window
65416 to be usable by all targets.
65417
65418 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65419
65420 commit 41bb76e941929f54a73206fb132f7a4c275543a3
65421 Author: Grant Likely <grant.likely@secretlab.ca>
65422 Date: Thu Sep 6 09:46:17 2007 -0600
65423
65424 libfdt: add convenience function fdt_find_and_setprop()
65425
65426 Given the path to a node, fdt_find_and_setprop() allows a property value
65427 to be set directly.
65428
65429 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65430
65431 commit 80767a6cead9990d9e77e62be947843c2c72f469
65432 Author: Peter Pearse <peter.pearse@arm.com>
65433 Date: Wed Sep 5 16:04:41 2007 +0100
65434
65435 Changed API name to coloured_led.h
65436 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
65437 Tidied other cpu/arm920t/start.S code
65438
65439 commit 56a9270521baaa00e12639a978302a67f61ef060
65440 Author: Kumar Gala <galak@kernel.crashing.org>
65441 Date: Thu Aug 30 16:18:18 2007 -0500
65442
65443 Fix ULI RTC support on MPC8544 DS
65444
65445 The RTC on the M1575 ULI chipset requires a dummy read before
65446 we are able to talk to the RTC. We accomplish this by adding a
65447 second memory region to the PHB the ULI is on and read from it.
65448
65449 The second region is added to maintain compatiabilty with Linux's
65450 view of the PCI memory map.
65451
65452 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
65453
65454 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
65455 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
65456 Date: Thu Aug 30 01:58:48 2007 -0500
65457
65458 ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
65459
65460 pcie is now differentiated from pci. Add 8641 bus-range updates.
65461
65462 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
65463
65464 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
65465 Author: Peter Pearse <peter.pearse@arm.com>
65466 Date: Tue Sep 4 16:18:38 2007 +0100
65467
65468 Add coloured led interface for ARM boards.
65469 Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
65470
65471 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
65472 Author: Peter Pearse <peter.pearse@arm.com>
65473 Date: Tue Sep 4 14:49:28 2007 +0100
65474
65475 Move include/led.h to board/at91rm9200dk
65476
65477 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
65478 Author: Peter Pearse <peter.pearse@arm.com>
65479 Date: Tue Sep 4 14:25:51 2007 +0100
65480
65481 Ran Lindent on drivers/at45.c
65482
65483 commit 557ab89d294f08dd532f21d19861b40093200a33
65484 Author: Peter Pearse <peter.pearse@arm.com>
65485 Date: Tue Sep 4 14:23:50 2007 +0100
65486
65487 Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
65488
65489 commit 81b73dec16fd1227369a191e725e10044a9d56b8
65490 Author: Gary Jennejohn <garyj@denx.de>
65491 Date: Fri Aug 31 15:21:46 2007 +0200
65492
65493 ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
65494
65495 The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
65496 set to non-zero, because it doesn't support MRM (memory-read-
65497 multiple) correctly. We now added the possibility to configure
65498 this register in the board config file, so that the default value
65499 of 8 can be overridden.
65500
65501 Here the details of this patch:
65502
65503 o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
65504 board-specific settings. As an example the sequoia board requires 0.
65505 Idea from Stefan Roese <sr@denx.de>.
65506 o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
65507 PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
65508 o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
65509 CFG_PCI_CACHE_LINE_SIZE to 0.
65510
65511 Signed-off-by: Gary Jennejohn <garyj@denx.de>
65512 Signed-off-by: Stefan Roese <sr@denx.de>
65513
65514 commit 60174746c668b309378a91488dded898e9553eae
65515 Author: Wolfgang Denk <wd@denx.de>
65516 Date: Fri Aug 31 10:01:51 2007 +0200
65517
65518 Fix TFTP OACK code for short packets.
65519
65520 The old code had a loop limit overflow bug which caused a semi-
65521 infinite loop for small packets, because in "i<len-8", "i" was signed,
65522 but "len" was unsigned, and "len-8" became a huge number for small
65523 values of "len".
65524
65525 This is a workaround which replaces broken commit 8f1bc284.
65526
65527 Signed-off-by: Wolfgang Denk <wd@denx.de>
65528
65529 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
65530 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65531 Date: Thu Aug 30 15:03:05 2007 +0200
65532
65533 Reduce BOOTDELAY variable to 1 second by default for STK1002
65534
65535 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65536 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65537
65538 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
65539 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65540 Date: Thu Aug 30 15:03:04 2007 +0200
65541
65542 Remove double quotation marks around MAC address for STK1002
65543
65544 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
65545 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65546
65547 commit ff13ac8c7bbebb238e339592de765c546dba1073
65548 Author: Wolfgang Denk <wd@denx.de>
65549 Date: Thu Aug 30 14:42:15 2007 +0200
65550
65551 Backout commit 8f1bc284 as it causes TFTP to fail.
65552
65553 Signed-off-by: Wolfgang Denk <wd@denx.de>
65554
65555 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
65556 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
65557 Date: Thu Aug 30 02:26:17 2007 -0500
65558
65559 Revert "Fix MPC8544DS PCIe3 scsi."
65560
65561 This reverts commit 9468e680.
65562 Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
65563
65564 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
65565
65566 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
65567 Author: Grant Likely <grant.likely@secretlab.ca>
65568 Date: Wed Aug 29 18:26:24 2007 -0600
65569
65570 tftp: don't implicity trust the format of recevied packets
65571
65572 The TFTP OACK code trusts that the incoming packet is formated as
65573 ASCII text and can be processed by string functions. It also has a
65574 loop limit overflow bug where if the packet length is less than 8, it
65575 ends up looping over *all* of memory to find the 'blksize' string.
65576
65577 This patch solves the problem by forcing the packet to be null
65578 terminated and using strstr() to search for the sub string.
65579
65580 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
65581
65582 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
65583 Author: Stefan Roese <sr@denx.de>
65584 Date: Wed Aug 29 16:31:18 2007 +0200
65585
65586 ppc4xx: Change lwmon5 default environment to support Linux RTC
65587
65588 The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
65589 to supply the RTC I2C address as bootline parameter. This patch
65590 adds support for this rtc probing parameter to the bootargs:
65591
65592 "rtc-pcf8563.probe=0,0x51"
65593
65594 Signed-off-by: Stefan Roese <sr@denx.de>
65595
65596 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
65597 Author: Kim Phillips <kim.phillips@freescale.com>
65598 Date: Wed Aug 29 09:06:05 2007 -0500
65599
65600 sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
65601
65602 this had slipped through the cracks, since the sbc board was added
65603 after I wrote the original patch to remove all these symbols, and
65604 before it was merged.
65605
65606 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65607
65608 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
65609 Author: Wolfgang Denk <wd@denx.de>
65610 Date: Wed Aug 29 14:05:30 2007 +0200
65611
65612 Add mii_init() prototype
65613
65614 to get rid of a *lot* of compiler warnings.
65615
65616 Signed-off-by: Wolfgang Denk <wd@denx.de>
65617
65618 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
65619 Author: Wolfgang Denk <wd@denx.de>
65620 Date: Wed Aug 29 13:35:03 2007 +0200
65621
65622 Disable network support on cmi_mpc5xx board
65623
65624 ..because it caused compiler errors and there seems to be no
65625 board maintainer to take care of this.
65626
65627 Signed-off-by: Wolfgang Denk <wd@denx.de>
65628
65629 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
65630 Author: Kumar Gala <galak@kernel.crashing.org>
65631 Date: Mon Aug 20 09:44:00 2007 -0500
65632
65633 Fix MPC8544DS PCIe3 scsi.
65634
65635 <ed.swarthout@freescale.com>
65636
65637 The problem is pciauto_setup_device() getting called from fsl_pci_init.c
65638 is allocating memory space it doesn't need.
65639
65640 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
65641 Signed-off-by: Andy Fleming <afleming@freescale.com>
65642
65643 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
65644 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
65645 Date: Tue Aug 21 09:38:59 2007 -0500
65646
65647 8548cds fixes
65648
65649 Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
65650 correct consoledev needed for linux boot.
65651 Standardize on fdt{file,addr} var to hold dtb file name.
65652
65653 Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
65654
65655 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
65656
65657 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
65658 Author: Haiying Wang <Haiying.Wang@freescale.com>
65659 Date: Thu Aug 23 15:20:54 2007 -0400
65660
65661 Enable L2 cache for MPC8568MDS board
65662
65663 The L2 cache size is 512KB for 8568, print out the correct informaiton.
65664
65665 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
65666
65667 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
65668 Author: Jason Jin <Jason.jin@freescale.com>
65669 Date: Wed Aug 22 17:54:49 2007 +0800
65670
65671 Remove the bios emulator binary files from MAI board
65672
65673 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
65674
65675 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
65676 Author: Kim Phillips <kim.phillips@freescale.com>
65677 Date: Tue Aug 21 17:00:17 2007 -0500
65678
65679 support board vendor-common makefiles
65680
65681 if a board/$(VENDOR)/common/Makefile exists, build it.
65682
65683 also add the first such case, board/freescale/common/Makefile, to
65684 handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
65685 dictated by board configuration.
65686
65687 thusly get rid of alternate build dir errors such as:
65688
65689 FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
65690
65691 by putting the common/ mkdir command in its proper place (the common
65692 Makefile). Common bits from existing individual board Makefiles have
65693 been removed.
65694
65695 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65696
65697 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
65698 Author: stefano babic <sbabic@denx.de>
65699 Date: Tue Aug 21 15:52:33 2007 +0200
65700
65701 Fix: TFTP is not working on little endian systems
65702
65703 TFTP does not work anymore after multicast tftp
65704 patch was applied on little endian systems.
65705 This patch fix it.
65706
65707 Signed-off-by: Stefano Babic <sbabic@denx.de>
65708
65709 commit 5f470948570526e9186f053a3003da7719604e90
65710 Author: stefano babic <sbabic@denx.de>
65711 Date: Tue Aug 21 15:50:33 2007 +0200
65712
65713 Fix MAC address setting in DM9000 driver.
65714
65715 The logic to check if there is a correct MAC address in the DM9000
65716 EEPROM, added in the last patch, is wrong. Now the MAC address is
65717 always taken from the environment, even if a suitable MAC is present
65718 in the EEPROM.
65719
65720 Signed-off-by: Stefano Babic <sbabic@denx.de>
65721
65722 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
65723 Author: Martin Krause <martin.krause@tqs.de>
65724 Date: Tue Aug 21 12:40:34 2007 +0200
65725
65726 MPC5xxx: fix some compiler warnings in USB code
65727
65728 Fix the following warnings:
65729 - usb.c:xx: warning: function declaration isn't a prototype
65730 - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
65731 from pointer wihtout a cast
65732
65733 Signed-off-by: Martin Krause <martin.krase@tqs.de>
65734
65735 commit 16e23c3f5dab6937f5109365416808c7f15c122b
65736 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
65737 Date: Mon Aug 20 23:55:33 2007 -0500
65738
65739 fsl_pci_init - Remove self PCSRBAR allocation
65740
65741 CPU physical address space was being wasted by allocating a
65742 PCSRBAR PCI inbound region to it's memory space.
65743
65744 As a rule, PCSRBAR should be left alone since it does not affect
65745 transactions from self and other masters may have changed it.
65746
65747 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
65748
65749 commit 0e700ce03a23bb1921149bc77008ace7103d5289
65750 Author: Martin Krause <martin.krause@tqs.de>
65751 Date: Mon Aug 20 13:56:47 2007 +0200
65752
65753 Fix compiler warning in include/s3c2410.h
65754
65755 This patch fixes the "type qualifiers ignored on fuction return tpye"
65756 warning for include/s3c2410.h
65757
65758 Signed-off-by: Martin Krause <martin.krause@tqs.de>
65759
65760 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
65761 Author: Dirk Behme <dirk.behme@googlemail.com>
65762 Date: Mon Aug 20 07:09:05 2007 +0200
65763
65764 Fix compilation error for omap2420h4_config.
65765
65766 omap2420h4 switched to cfi, so remove old (already disabled) flash.c
65767 and flash_probe() calls in env_flash.c.
65768
65769 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
65770
65771 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
65772 Author: Kim Phillips <kim.phillips@freescale.com>
65773 Date: Fri Aug 10 14:34:14 2007 -0500
65774
65775 fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
65776
65777 and make some minor corrections to the FDT part of the README.
65778
65779 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65780
65781 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
65782 Author: Wolfgang Denk <wd@denx.de>
65783 Date: Wed Aug 29 01:32:05 2007 +0200
65784
65785 Minor coding style cleanup.
65786
65787 Signed-off-by: Wolfgang Denk <wd@denx.de>
65788
65789 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
65790 Author: Heiko Schocher <hs@pollux.denx.de>
65791 Date: Tue Aug 28 17:40:33 2007 +0200
65792
65793 [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
65794
65795 Signed-off-by: Heiko Schocher <hs@denx.de>
65796
65797 commit f98984cb194bb34dbe1db9429d3b51133af30d07
65798 Author: Heiko Schocher <hs@pollux.denx.de>
65799 Date: Tue Aug 28 17:39:14 2007 +0200
65800
65801 IDE: - make ide_inb () and ide_outb () "weak", so boards can
65802 define there own I/O functions.
65803 (Needed for the pcs440ep board).
65804 - The default I/O Functions are again 8 Bit accesses.
65805 - Added CONFIG_CMD_IDE for the pcs440ep Board.
65806
65807 Signed-off-by: Heiko Schocher <hs@denx.de>
65808
65809 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
65810 Author: Semih Hazar <semih.hazar@indefia.com>
65811 Date: Mon Aug 20 19:00:01 2007 +0300
65812
65813 AVR32: Change prototype of memset
65814
65815 Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
65816 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
65817
65818 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
65819 Author: Yuri Tikhonov <yur@emcraft.com>
65820 Date: Sat Aug 25 05:07:16 2007 +0200
65821
65822 POST: limit memory test area to not touch global data anymore
65823
65824 As experienced on lwmon5, on some boards the POST memory test can
65825 corrupt the global data buffer (bd). This patch fixes this issue
65826 by checking and limiting this area.
65827
65828 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
65829 Signed-off-by: Stefan Roese <sr@denx.de>
65830
65831 commit 75e1a84d483e36be10e206e539b028c4889e1158
65832 Author: Stefan Roese <sr@denx.de>
65833 Date: Fri Aug 24 15:41:42 2007 +0200
65834
65835 ppc4xx: Add RTC POST test to lwmon5 board configuration
65836
65837 Since this RTC POST test is taking quite a while to complete
65838 it's only initiated upon special keypress same as the complete
65839 memory POST.
65840
65841 Signed-off-by: Stefan Roese <sr@denx.de>
65842
65843 commit d7bfa620037a6d2210159387571bdf93aa32c162
65844 Author: Stefan Roese <sr@denx.de>
65845 Date: Fri Aug 24 15:19:10 2007 +0200
65846
65847 ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
65848
65849 Signed-off-by: Stefan Roese <sr@denx.de>
65850
65851 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
65852 Author: Stefan Roese <sr@denx.de>
65853 Date: Thu Aug 23 11:02:37 2007 +0200
65854
65855 ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
65856
65857 This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
65858 board. Now the "eeprom" command can be used to read/write from/to this
65859 device. Additionally a new command was added "eepromwp" to en-/disable
65860 the write-protect of this 2nd EEPROM.
65861
65862 The 1st EEPROM is not affected by this write-protect command.
65863
65864 Signed-off-by: Stefan Roese <sr@denx.de>
65865
65866 commit c64fb30e4c5976007d56fc1789c7a0666082b536
65867 Author: Stefan Roese <sr@denx.de>
65868 Date: Wed Aug 22 08:56:09 2007 +0200
65869
65870 ppc4xx: Remove unused option CFG_INIT_RAM_OCM
65871
65872 Signed-off-by: Stefan Roese <sr@denx.de>
65873
65874 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
65875 Author: Stefan Roese <sr@denx.de>
65876 Date: Tue Aug 21 16:27:57 2007 +0200
65877
65878 ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
65879
65880 This patch adds support for the matrix keyboard on the lwmon5 board.
65881 Since the implementation in the dsPCI is kind of compatible with the
65882 "old" lwmon board, most of the code is copied from the lwmon
65883 board directory.
65884
65885 Signed-off-by: Stefan Roese <sr@denx.de>
65886
65887 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
65888 Author: Wolfgang Denk <wd@denx.de>
65889 Date: Sun Aug 19 10:27:34 2007 +0200
65890
65891 Fix some build errors.
65892
65893 Signed-off-by: Wolfgang Denk <wd@denx.de>
65894
65895 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
65896 Author: Wolfgang Denk <wd@denx.de>
65897 Date: Sat Aug 18 22:00:38 2007 +0200
65898
65899 Update CHANGELOG.
65900
65901 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
65902 Author: Kim Phillips <kim.phillips@freescale.com>
65903 Date: Thu Aug 16 22:52:39 2007 -0500
65904
65905 lib_ppc: make board_add_ram_info weak
65906
65907 platforms wishing to display RAM diagnostics in addition to size,
65908 can do so, on one line, in their own board_add_ram_info()
65909 implementation.
65910
65911 this consequently eliminates CONFIG_ADD_RAM_INFO.
65912
65913 Thanks to Stefan for the hint.
65914
65915 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65916
65917 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
65918 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65919 Date: Fri Aug 17 12:43:44 2007 +0900
65920
65921 PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
65922
65923 This patch has been sent on:
65924 - 6 Jun 2007
65925
65926 Many users of PCI config read routines tend to ignore the function
65927 ret value, and are only concerned about the contents of *val. Based
65928 on this, pci_hose_read_config_{byte,word}_via_dword should initialize
65929 the *val on dword read error.
65930
65931 Without this fix, for example, we'll go on scanning bus with vendor or
65932 header_type uninitialized. This brings many unnecessary config trials.
65933
65934 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
65935
65936 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
65937 Author: Stefan Roese <sr@denx.de>
65938 Date: Sat Aug 18 14:37:52 2007 +0200
65939
65940 ColdFire: Fix some remaining problems with CFG_CMD_
65941
65942 Signed-off-by: Stefan Roese <sr@denx.de>
65943
65944 commit 8280f6a1c43247616b68224675188e5ccd124650
65945 Author: Stefan Roese <sr@denx.de>
65946 Date: Sat Aug 18 14:33:02 2007 +0200
65947
65948 Coding style cleanup
65949
65950 Signed-off-by: Stefan Roese <sr@denx.de>
65951
65952 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
65953 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65954 Date: Thu Aug 16 19:23:50 2007 -0500
65955
65956 ColdFire: Add M5235EVB Platform for MCF523x
65957
65958 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
65959
65960 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
65961 Author: Kim Phillips <kim.phillips@freescale.com>
65962 Date: Fri Aug 17 09:30:00 2007 -0500
65963
65964 mpc83xx: fix typo in DDR2 programming
65965
65966 introduced in the implement board_add_ram_info patch as I was cleaning out the
65967 magic numbers. sorry.
65968
65969 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65970
65971 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
65972 Author: Kim Phillips <kim.phillips@freescale.com>
65973 Date: Thu Aug 16 22:53:09 2007 -0500
65974
65975 mpc83xx: move freescale boards to boards/freescale
65976
65977 includes build fixes.
65978
65979 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65980
65981 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
65982 Author: Kim Phillips <kim.phillips@freescale.com>
65983 Date: Thu Aug 16 22:52:59 2007 -0500
65984
65985 mpc83xx: suppress unused variable 'val8' warning
65986
65987 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
65988
65989 commit bbea46f76f767b919070b4829bf34c86bd223248
65990 Author: Kim Phillips <kim.phillips@freescale.com>
65991 Date: Thu Aug 16 22:52:48 2007 -0500
65992
65993 mpc83xx: implement board_add_ram_info
65994
65995 add board_add_ram_info, to make memory diagnostic output more
65996 consistent. u-boot banner output now looks like:
65997
65998 DRAM: 256 MB (DDR1, 64-bit, ECC on)
65999
66000 and for boards with SDRAM on the local bus, a line such as this is
66001 added:
66002
66003 SDRAM: 64 MB (local bus)
66004
66005 also replaced some magic numbers with their equivalent define names.
66006
66007 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66008
66009 commit 14778585d1389d86d5846efec29e5fce892680ce
66010 Author: Tony Li <tony.li@freescale.com>
66011 Date: Fri Aug 17 10:35:59 2007 +0800
66012
66013 mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
66014
66015 The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
66016 And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
66017
66018 Signed-off-by Tony Li <tony.li@freescale.com>
66019
66020 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
66021 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66022 Date: Thu Aug 16 15:05:11 2007 -0500
66023
66024 ColdFire: Add M54455EVB for MCF5445x
66025
66026 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66027
66028 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
66029 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66030 Date: Thu Aug 16 13:20:50 2007 -0500
66031
66032 ColdFire: Add M5253EVBE platform for MCF52x2
66033
66034 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66035
66036 commit a605aacd8324094199402816cc6d9124aba57b8d
66037 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66038 Date: Thu Aug 16 05:04:31 2007 -0500
66039
66040 ColdFire: Add M5249EVB platform for MCF52x2
66041
66042 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66043
66044 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
66045 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66046 Date: Wed Aug 15 20:32:06 2007 -0500
66047
66048 ColdFire: Update Freescale MCF52x2 platforms
66049
66050 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66051
66052 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
66053 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66054 Date: Wed Aug 15 19:55:10 2007 -0500
66055
66056 ColdFire: Update EB+MCF-EV123 platform
66057
66058 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66059
66060 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
66061 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66062 Date: Wed Aug 15 19:46:38 2007 -0500
66063
66064 ColdFire: update TASREG platform for MCF52x2
66065
66066 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66067
66068 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
66069 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66070 Date: Wed Aug 15 19:45:51 2007 -0500
66071
66072 ColdFire: update r5200 platform for MCF52x2
66073
66074 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66075
66076 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
66077 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66078 Date: Wed Aug 15 19:43:20 2007 -0500
66079
66080 ColdFire: idmr platform MCF52x2 update
66081
66082 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66083
66084 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
66085 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66086 Date: Wed Aug 15 19:41:06 2007 -0500
66087
66088 ColdFire: cobra5272 platform for MCF52x2 update
66089
66090 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66091
66092 commit 56115665b4a64c10c01440c57749b265e0908fa4
66093 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66094 Date: Wed Aug 15 19:38:15 2007 -0500
66095
66096 ColdFire: MCF52x2 Header files update
66097
66098 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66099
66100 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
66101 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66102 Date: Wed Aug 15 19:21:21 2007 -0500
66103
66104 ColdFire: MCF52x2 update
66105
66106 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66107
66108 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
66109 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66110 Date: Wed Aug 15 18:46:11 2007 -0500
66111
66112 ColdFire: MCF5329 update cache
66113
66114 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66115
66116 commit 7171977fb8fd77cfb6676953fa9a05789c450513
66117 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66118 Date: Wed Aug 15 15:40:20 2007 -0500
66119
66120 ColdFire: MCF5329 header file clean up
66121
66122 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66123
66124 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
66125 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66126 Date: Wed Aug 15 15:39:17 2007 -0500
66127
66128 ColdFire: MCF5329 Update and cleanup
66129
66130 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
66131
66132 commit 10327dc5541f947c0cf7e31fef86c4706169607a
66133 Author: Andy Fleming <afleming@freescale.com>
66134 Date: Thu Aug 16 16:35:02 2007 -0500
66135
66136 Add CONFIG_HAS_ETH0 to all boards with TSEC
66137
66138 The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
66139 to update TSEC1's device-tree node, so we need to add it
66140 to all the boards with TSECs. Do this for 83xx and 86xx, too,
66141 since they will eventually do something similar.
66142
66143 Signed-off-by: Andy Fleming <afleming@freescale.com>
66144
66145 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
66146 Author: Kumar Gala <galak@kernel.crashing.org>
66147 Date: Thu Aug 16 15:05:04 2007 -0500
66148
66149 Update MPC8544 DS PCI memory map
66150
66151 The PCIe bus that the ULI M1575 is connected to has no possible way of
66152 needing more than the fixed amount of IO & Memory space needed by the ULI.
66153
66154 So make it use far less IO & memory space and have it use the shared LAW. This
66155 free's up a LAW for PCIe1 IO space. Also reduce the amount of IO space needed
66156 by each bus.
66157
66158 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66159
66160 commit ea5877e31ed63ade948fd1293895ec23fe01472e
66161 Author: Kumar Gala <galak@kernel.crashing.org>
66162 Date: Thu Aug 16 11:01:21 2007 -0500
66163
66164 Fix up some fdt issues on 8544DS
66165
66166 It looks like we had a merge issue that duplicated a bit of code
66167 in ft_board_setup. Also, we need to set CONFIG_HAS_ETH0 to get
66168 the MAC address properly set in the device tree on boot for TSEC1
66169
66170 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66171
66172 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
66173 Author: Niklaus Giger <niklaus.giger@netstal.com>
66174 Date: Thu Aug 16 15:16:03 2007 +0200
66175
66176 PPC4xx:HCU4/5 cleanup
66177
66178 Minor cleanups to confirm to the u-boot coding style.
66179 Some german expressions -> english.
66180 HCU5 enforces a unique IP adress for a given slot in the rack.
66181
66182 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
66183
66184 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
66185 Author: Niklaus Giger <niklaus.giger@netstal.com>
66186 Date: Thu Aug 16 15:16:02 2007 +0200
66187
66188 PPC4xx:HCU4/5 cleanup ecc/sdram init
66189
66190 Make ecc initialisation robust, as DDR2-ECC errors may be generated
66191 while zeroing the RAM.
66192
66193 Return 16 bytes (a cacheline) less than the available memory, as the
66194 board and/or PPC440EPx might have problems accessing the last bytes.
66195
66196 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
66197
66198 commit d35b508a55508535b6e8445b718585d27df733d3
66199 Author: Kim Phillips <kim.phillips@freescale.com>
66200 Date: Wed Aug 15 22:29:56 2007 -0500
66201
66202 fdt: suppress unused variable 'bd' warning
66203
66204 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66205
66206 commit 82bd9ee77490588d4da785d75829ca63d0176baf
66207 Author: Andy Fleming <afleming@freescale.com>
66208 Date: Wed Aug 15 20:06:50 2007 -0500
66209
66210 Fix warnings from of_data copy fix
66211
66212 Forgot to cast of_flat_tree to ulong.
66213
66214 Signed-off-by: Andy Fleming <afleming@freescale.com>
66215
66216 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
66217 Author: Andy Fleming <afleming@freescale.com>
66218 Date: Wed Aug 15 20:03:44 2007 -0500
66219
66220 Don't wait for disconnected TSECs
66221
66222 The TSEC driver's PHY code waits a long time for autonegotiation to
66223 complete, even if the link is down. The PHY knows the link is
66224 down or up before autonegotiation completes, so we can short-circuit
66225 the process if the link is down.
66226
66227 Signed-off-by: Andy Fleming <afleming@freescale.com>
66228
66229 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
66230 Author: Andy Fleming <afleming@freescale.com>
66231 Date: Wed Aug 15 20:03:34 2007 -0500
66232
66233 Fix numerous bugs in the 8568 UEC support
66234
66235 Actually, fixed a large bug in the UEC for *all* platforms.
66236 How did this ever work?
66237
66238 uec_init() did not follow the spec for eth_init(), and returned
66239 0 on success. Switch it to return the link like tsec_init()
66240 (and 0 on error)
66241
66242 The immap for the 8568 was defined based on MPC8568, rather than
66243 CONFIG_MPC8568
66244
66245 CONFIG_QE was off
66246
66247 CONFIG_ETHPRIME was set to "Freescale GETH". Now is "FSL UEC0"
66248
66249 Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
66250 enabled
66251
66252 Signed-off-by: Andy Fleming <afleming@freescale.com>
66253
66254 commit 3a79013e2adda53332dfd0b511066a805e929a9d
66255 Author: Andy Fleming <afleming@freescale.com>
66256 Date: Wed Aug 15 20:03:25 2007 -0500
66257
66258 Define tsec flag values in config files
66259
66260 The tsec_info structure and array has a "flags" field for each
66261 ethernet controller. This field is the only reason there are
66262 settings. Switch to defining TSECn_FLAGS for each controller
66263 in the config header, and we can greatly simplify the array, and
66264 also simplify the addition of future boards.
66265
66266 Signed-off-by: Andy Fleming <afleming@freescale.com>
66267
66268 commit ec7238229507e7f47533a611ea8c53319d234cf3
66269 Author: Andy Fleming <afleming@freescale.com>
66270 Date: Wed Aug 15 20:03:13 2007 -0500
66271
66272 Add support for building all boards with a TSEC
66273
66274 Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
66275 Now we can do a MAKEALL test on all of them!
66276
66277 Signed-off-by: Andy Fleming <afleming@freescale.com>
66278
66279 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
66280 Author: Andy Fleming <afleming@freescale.com>
66281 Date: Wed Aug 15 17:30:56 2007 -0500
66282
66283 Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
66284
66285 The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
66286 neglected to *also* put the code inside the similar #ifdef
66287 for CONFIG_OF_FLAT_TREE.
66288
66289 Signed-off-by: Andy Fleming <afleming@freescale.com>
66290
66291 commit 78f9fef7f406078c8bf7191e665a73f795157746
66292 Author: Scott Wood <scottwood@freescale.com>
66293 Date: Wed Aug 15 15:46:46 2007 -0500
66294
66295 mpc885ads: Don't define CONFIG_BZIP2.
66296
66297 bzip2 requires a significant chunk of malloc space, and there isn't
66298 enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
66299 and a downloaded image at 0x400000.
66300
66301 Signed-off-by: Scott Wood <scottwood@freescale.com>
66302
66303 commit 002275a3ed8b114885f6702d6d544d0780dfe689
66304 Author: Michal Simek <Monstr@seznam.cz>
66305 Date: Thu Aug 16 08:54:10 2007 +0200
66306
66307 Bios emulator - fix microblaze toolchain problem
66308
66309 microblaze CPU have problem with bios_emulator code.
66310 Microblaze toolchain doesn't support PRAGMA PACK.
66311
66312 Signed-off-by: Michal Simek <monstr@monstr.eu>
66313
66314 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
66315 Author: Wolfgang Denk <wd@denx.de>
66316 Date: Thu Aug 16 11:51:04 2007 +0200
66317
66318 Minor Coding Style fix; Update CHANGELOG file.
66319
66320 Signed-off-by: Wolfgang Denk <wd@denx.de>
66321
66322 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
66323 Author: Stefan Roese <sr@denx.de>
66324 Date: Thu Aug 16 11:21:49 2007 +0200
66325
66326 ppc4xx: Remove #warning in esd auto_update.c
66327
66328 Signed-off-by: Stefan Roese <sr@denx.de>
66329
66330 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
66331 Author: Stefan Roese <sr@denx.de>
66332 Date: Fri Jun 22 17:32:28 2007 +0200
66333
66334 ppc7xx: Update CPCI750 board
66335
66336 This small CPCI750 update extends the board specific command
66337 "show_config" to display the Marvell strapping registers and
66338 extends the PCI IDE controller.
66339
66340 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
66341 Signed-off-by: Stefan Roese <sr@denx.de>
66342
66343 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
66344 Author: Michal Simek <monstr@monstr.eu>
66345 Date: Thu Aug 16 10:46:28 2007 +0200
66346
66347 [FIX] Changes for bios_emulator code for others architecture
66348
66349 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
66350 Author: Michal Simek <monstr@monstr.eu>
66351 Date: Thu Aug 16 10:45:09 2007 +0200
66352
66353 [FIX] Remove unused include file
66354
66355 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
66356 Author: Stefan Roese <sr@denx.de>
66357 Date: Thu Aug 16 10:18:33 2007 +0200
66358
66359 ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
66360
66361 Signed-off-by: Stefan Roese <sr@denx.de>
66362
66363 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
66364 Author: Stefan Roese <sr@denx.de>
66365 Date: Thu Aug 16 09:54:51 2007 +0200
66366
66367 Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
66368
66369 Signed-off-by: Stefan Roese <sr@denx.de>
66370
66371 commit 02ba7022f62bb75908296c58c63866e1d294b69a
66372 Author: Stefan Roese <sr@denx.de>
66373 Date: Thu Aug 16 09:52:29 2007 +0200
66374
66375 ppc4xx: Update Sequoia/Rainier bootstrap command
66376
66377 As suggested by David Mitchell, here an update for the Sequoia/Rainier
66378 bootstrap command.
66379
66380 Signed-off-by: Stefan Roese <sr@denx.de>
66381
66382 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
66383 Author: Kim Phillips <kim.phillips@freescale.com>
66384 Date: Wed Aug 15 22:30:39 2007 -0500
66385
66386 mpc83xx: enable libfdt by default on freescale boards
66387
66388 this enables libfdt code by default for the
66389 freescale mpc8313erdb, mpc832xemds, mpc8349emds,
66390 mpc8349itx and gp boards.
66391
66392 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66393
66394 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
66395 Author: Kim Phillips <kim.phillips@freescale.com>
66396 Date: Wed Aug 15 22:30:33 2007 -0500
66397
66398 mpc83xx: migrate remaining freescale boards to libfdt
66399
66400 this adds libfdt support code for the freescale
66401 mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
66402 and gp boards.
66403
66404 Boards remain compatible with OF_FLAT_TREE.
66405
66406 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66407
66408 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
66409 Author: Kim Phillips <kim.phillips@freescale.com>
66410 Date: Wed Aug 15 22:30:26 2007 -0500
66411
66412 mpc83xx: move common /memory node update mechanism to cpu.c
66413
66414 also adds common prototypes to include/common.h.
66415
66416 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66417
66418 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
66419 Author: Kim Phillips <kim.phillips@freescale.com>
66420 Date: Wed Aug 15 22:30:19 2007 -0500
66421
66422 mpc83xx: remaining 8360 libfdt fixes
66423
66424 PCI clocks and QE frequencies weren't being updated, and the core clock
66425 was being updated incorrectly. This patch also adds a /memory node if
66426 it doesn't already exist prior to update.
66427
66428 plus some cosmetic trimming to single line comments.
66429
66430 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66431
66432 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
66433 Author: Kim Phillips <kim.phillips@freescale.com>
66434 Date: Wed Aug 15 22:30:12 2007 -0500
66435
66436 mpc83xx: fix UEC2->1 typo in libfdt setup code
66437
66438 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66439
66440 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
66441 Author: Kim Phillips <kim.phillips@freescale.com>
66442 Date: Wed Aug 15 22:30:05 2007 -0500
66443
66444 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
66445
66446 and reorder the existing 83xx maintainers alpha.
66447
66448 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
66449
66450 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
66451 Author: Michal Simek <monstr@monstr.eu>
66452 Date: Wed Aug 15 21:15:05 2007 +0200
66453
66454 [FIX] Resolve problem with warnings
66455 microblaze toolchain don't support PRAGMA PACK.
66456
66457 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
66458 Author: Michal Simek <monstr@monstr.eu>
66459 Date: Wed Aug 15 21:05:07 2007 +0200
66460
66461 [FIX] Correction command setting for Microblaze boards
66462
66463 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
66464 Author: Michal Simek <monstr@monstr.eu>
66465 Date: Wed Aug 15 21:03:41 2007 +0200
66466
66467 [FIX] Correction command definition
66468
66469 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
66470 Author: Jon Loeliger <jdl@freescale.com>
66471 Date: Wed Aug 15 11:55:35 2007 -0500
66472
66473 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
66474
66475 Remove a leftover in net/tftp.c while we're at it.
66476
66477 Signed-off-by: Jon Loeliger <jdl@freescale.com>
66478
66479 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
66480 Author: Jon Loeliger <jdl@freescale.com>
66481 Date: Wed Aug 15 12:20:40 2007 -0500
66482
66483 Move the MPC8641HPCN board under board/freescale.
66484
66485 Minor path corrections needed to ensure buildability.
66486
66487 Signed-off-by: Jon Loeliger <jdl@freescale.com>
66488
66489 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
66490 Author: Jon Loeliger <jdl@freescale.com>
66491 Date: Wed Aug 15 11:46:22 2007 -0500
66492
66493 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
66494
66495 Remove a leftover in net/tftp.c while we're at it.
66496
66497 Signed-off-by: Jon Loeliger <jdl@freescale.com>
66498
66499 commit 210f463c71917b7a4495c2103c228b9c179ae64d
66500 Author: Jerry Van Baren <gvb.uboot@gmail.com>
66501 Date: Wed Aug 15 11:13:15 2007 -0400
66502
66503 Fix where the #ifdef CFG_BOOTMAPSZ is placed.
66504
66505 Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
66506 interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
66507 when it should have gone inside of the conditional. As a result, it
66508 broke non-LIBFDT board builds.
66509
66510 Also added a missing "not." to the comment.
66511
66512 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
66513
66514 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
66515 Author: Niklaus Giger <niklaus.giger@netstal.com>
66516 Date: Wed Aug 15 12:14:23 2007 +0200
66517
66518 PPC4xx:HCU4/5-Board fix compile warning
66519
66520 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
66521
66522 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
66523 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66524 Date: Tue Aug 14 14:06:45 2007 -0500
66525
66526 Fix malloc size error in ahci_init_one.
66527
66528 Typically this causes scsi init to corrupt the
66529 devlist and break the coninfo command.
66530 Fix a compiler size warning.
66531
66532 Signed-off-by: Jason Jin <jason.jin@freescale.com>
66533 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66534 Acked-by: Andy Fleming <afleming@freescale.com>
66535
66536 commit b361acd64fd2525c081b9b288b0804efe209c0e9
66537 Author: ksi@koi8.net <ksi@koi8.net>
66538 Date: Tue Aug 14 10:02:16 2007 -0700
66539
66540 TI DaVinci - fix unsupported %hhx format
66541
66542 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
66543
66544 commit f01dbb5424a81453c81190dd30e945891466f621
66545 Author: Wolfgang Denk <wd@denx.de>
66546 Date: Tue Aug 14 18:42:36 2007 +0200
66547
66548 Coding style cleanup. Update CHANGELOG.
66549
66550 Signed-off-by: Wolfgang Denk <wd@denx.de>
66551
66552 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
66553 Author: Andy Fleming <afleming@freescale.com>
66554 Date: Tue Aug 14 10:32:59 2007 -0500
66555
66556 Fix initrd/dtb interaction
66557
66558 The original code would wrongly relocate the blob to be right before
66559 the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ,
66560 if it is defined. So we make two changes:
66561
66562 1) flag the blob for relocation whenever its address is above BOOTMAPSZ
66563
66564 2) If the blob is being relocated, relocate it before kbd, not initrd
66565
66566 Signed-off-by: Andy Fleming <afleming@freescale.com>
66567
66568 commit e54b970173769307a116bd34028b6d0c2eea2a4e
66569 Author: Peter Pearse <peter.pearse@arm.com>
66570 Date: Tue Aug 14 15:40:00 2007 +0100
66571
66572 Supply spi interface in at45.c
66573
66574 commit 4ce846ec59f36b85d6644a769690ad3feb667575
66575 Author: Stefan Roese <sr@denx.de>
66576 Date: Tue Aug 14 15:12:01 2007 +0200
66577
66578 POST: Fix merge problem
66579
66580 Signed-off-by: Stefan Roese <sr@denx.de>
66581
66582 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
66583 Author: Stefan Roese <sr@denx.de>
66584 Date: Tue Aug 14 15:03:17 2007 +0200
66585
66586 Coding style cleanup
66587
66588 Signed-off-by: Stefan Roese <sr@denx.de>
66589
66590 commit 779e975117a75e91fcebe226a63104dbfb924ab1
66591 Author: Stefan Roese <sr@denx.de>
66592 Date: Tue Aug 14 14:44:41 2007 +0200
66593
66594 ppc4xx: Add initial Zeus (PPC405EP) board support
66595
66596 Signed-off-by: Stefan Roese <sr@denx.de>
66597
66598 commit c5a172a5fd636c12467429e3f7910e53773979c6
66599 Author: Stefan Roese <sr@denx.de>
66600 Date: Tue Aug 14 14:41:55 2007 +0200
66601
66602 POST: Add option for external ethernet loopback test
66603
66604 When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
66605 is not done using an internal loopback connection, but by assuming
66606 that an external loopback connector is plugged into the board.
66607
66608 Signed-off-by: Stefan Roese <sr@denx.de>
66609
66610 commit eb2b4010ae426245172988804ee8d9193fb41038
66611 Author: Stefan Roese <sr@denx.de>
66612 Date: Tue Aug 14 14:39:44 2007 +0200
66613
66614 POST: Add ppc405 support to cache and UART POST
66615
66616 Signed-off-by: Stefan Roese <sr@denx.de>
66617
66618 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
66619 Author: Peter Pearse <peter.pearse@arm.com>
66620 Date: Tue Aug 14 10:46:32 2007 +0100
66621
66622 Replace lost end of at45.c.
66623
66624 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
66625 Author: Peter Pearse <peter.pearse@arm.com>
66626 Date: Tue Aug 14 10:30:06 2007 +0100
66627
66628 Update Makefiles for merged and split at45.c.
66629
66630 commit 3454cece2db57cb9eb7087995f7e73066a163f71
66631 Author: Peter Pearse <peter.pearse@arm.com>
66632 Date: Tue Aug 14 10:21:06 2007 +0100
66633
66634 Delete the merged files.
66635
66636 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
66637 Author: Peter Pearse <peter.pearse@arm.com>
66638 Date: Tue Aug 14 10:14:05 2007 +0100
66639
66640 Add the files.
66641
66642 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
66643 Author: Peter Pearse <peter.pearse@arm.com>
66644 Date: Tue Aug 14 10:10:52 2007 +0100
66645
66646 Add MACH_TYPE records for several AT91 boards.
66647 Merge to two at45.c files into a common file, split to at45.c and spi.c
66648 Fix spelling error in DM9161 PHY Support.
66649 Initialize at91rm9200 board (and set LED).
66650 Add PIO control for at91rm9200dk LEDs and Mux.
66651 Change dataflash partition boundaries to be compatible with Linux 2.6.
66652
66653 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
66654 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
66655
66656 commit 4ef35e53c693556c54b0c22d6f873de87bade253
66657 Author: Wolfgang Denk <wd@denx.de>
66658 Date: Tue Aug 14 09:54:46 2007 +0200
66659
66660 Coding style cleanup, update CHANGELOG
66661
66662 Signed-off-by: Wolfgang Denk <wd@denx.de>
66663
66664 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
66665 Author: Wolfgang Denk <wd@denx.de>
66666 Date: Tue Aug 14 09:47:27 2007 +0200
66667
66668 Coding style cleanup; rebuild CHANGELOG
66669
66670 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
66671 Author: Randy Vinson <rvinson@linuxbox.(none)>
66672 Date: Tue Feb 27 19:42:22 2007 -0700
66673
66674 85xxCDS: Add make targets for legacy systems.
66675
66676 The PCI ID select values on the Arcadia main board differ depending
66677 on the version of the hardware. The standard configuration supports
66678 Rev 3.1. The legacy target supports Rev 2.x.
66679
66680 Signed-off-by Randy Vinson <rvinson@mvista.com>
66681
66682 commit e41094c7e38177c755fbd9b182018069614f080d
66683 Author: Andy Fleming <afleming@freescale.com>
66684 Date: Tue Aug 14 01:50:09 2007 -0500
66685
66686 85xxCDS: Enable the VIA PCI-to-ISA bridge.
66687
66688 Author: Randy Vinson <rvinson@linuxbox.(none)>
66689
66690 Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
66691 Arcadia main board.
66692
66693 Signed-off-by: Randy Vinson <rvinson@mvista.com>
66694 Signed-off-by: York Sun <yorksun@freescale.com>
66695
66696 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
66697 Author: Andy Fleming <afleming@freescale.com>
66698 Date: Tue Aug 14 00:14:25 2007 -0500
66699
66700 Add support for UEC to 8568
66701
66702 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
66703 Signed-off-by: Andy Fleming <afleming@freescale.com>
66704
66705 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
66706 Author: Haiying Wang <Haiying.Wang@freescale.com>
66707 Date: Tue Jun 19 14:18:34 2007 -0400
66708
66709 Add PCI support for MPC8568MDS board
66710
66711 This patch is against u-boot-mpc85xx.git of www.denx.com
66712
66713 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
66714 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
66715
66716 commit d111d6382c99fdea08c2312eeeae8786945e189a
66717 Author: Haiying Wang <Haiying.Wang@freescale.com>
66718 Date: Tue Jun 19 14:18:32 2007 -0400
66719
66720 Empirically set cpo and clk_adjust for mpc85xx DDR2 support
66721
66722 This patch is against u-boot-mpc85xx.git of www.denx.com
66723
66724 Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
66725 both MPC8548CDS board and MPC8568MDS board, especially for supporting
66726 533MHz DDR2.
66727
66728 Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
66729 DDR2 on all current board versions especially ver 1.92 or later to bring
66730 up.
66731
66732 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
66733
66734 commit 3db0bef59eab1155801618cef5c481e97553b597
66735 Author: Kumar Gala <galak@kernel.crashing.org>
66736 Date: Tue Aug 7 18:07:27 2007 -0500
66737
66738 Use an absolute address when jumping out of 4k boot page
66739
66740 On e500 when we leave the 4k boot page we should use an absolute address since
66741 we don't know where the board code may want us to be really running at.
66742
66743 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
66744
66745 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
66746 Author: Andy Fleming <afleming@freescale.com>
66747 Date: Mon Aug 13 14:49:59 2007 -0500
66748
66749 MPC85xx BA bits not set for 3-bit bank address DIMM
66750
66751 The current implementation does not set the number of bank address bits
66752 (BA) in the processor. The default assumes 2 logical bank bits. This
66753 works fine for a DIMM that uses devices with 4 internal banks (SPD
66754 byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
66755 devices with 8 internal banks (SPD byte17 = 0x8).
66756
66757 Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
66758
66759 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
66760 Author: Andy Fleming <afleming@freescale.com>
66761 Date: Mon Aug 13 14:38:06 2007 -0500
66762
66763 Fix minor 85xx warnings
66764
66765 Some patches had inserted warnings into the build:
66766 * mpc8560ads declared data without using it
66767 * cpu_init declared ecm and immap without using it in all CONFIGs
66768 * MPC8548CDS.h had its default filenames changed so that they contained
66769 "\m" in the paths. Made the defaults not Windows-specific (or
66770 anything-specific)
66771
66772 Signed-off-by: Andy Fleming <afleming@freescale.com>
66773
66774 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
66775 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66776 Date: Fri Jul 27 01:50:52 2007 -0500
66777
66778 8548cds PCIE support.
66779
66780 Make the early L1 cache stack region guarded to prevent speculative
66781 fetches outside the locked range.
66782
66783 Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
66784 init.S whitespace cleanup.
66785
66786 Allow TEXT_BASE value to be specified on command line. This allows it
66787 to be set to 0xfffc0000 which cuts the uboot binary in half.
66788
66789 Clear and enable lbc and ecm errors.
66790
66791 Update last_busno in device-tree for pci and pcie.
66792
66793 Remove load of obsolete cpu/mpc85xx/pci.0
66794
66795 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66796 Acked-by: Andy Fleming <afleming@freescale.com>
66797
66798 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
66799 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66800 Date: Fri Jul 27 01:50:51 2007 -0500
66801
66802 8544ds PCIE support
66803
66804 PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
66805
66806 Enable LBC and ECM errors and clear error registers.
66807
66808 Add tftpflash env var to get uboot from tftp server and flash it.
66809
66810 Add pci/pcie convenience env vars to display register space:
66811 "run pcie3regs" to see all pcie3 ccsr registers
66812 "run pcie3cfg" to see all cfg registers
66813 Whitespace cleanup and MPC8544DS.h
66814
66815 Enable CONFIG_INTERRUPTS.
66816
66817 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66818 Acked-by: Andy Fleming <afleming@freescale.com>
66819
66820 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
66821 Author: Andy Fleming <afleming@freescale.com>
66822 Date: Tue Aug 14 01:34:21 2007 -0500
66823
66824 85xx start.S cleanup and exception support
66825
66826 From: Ed Swarthout <Ed.Swarthout@freescale.com>
66827
66828 Support external interrupts from platform to eliminate system hangs.
66829 Define CONFIG_INTERRUPTS board configure option to enable.
66830 Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
66831
66832 Remove extra cpu initialization redundant with hardware initialization.
66833 Whitespace cleanup.
66834
66835 Define and use _START_OFFSET consistent with other processors using
66836 ppc_asm.tmpl
66837
66838 Move additional code from .text to boot page to make room for
66839 exception vectors at start of image.
66840
66841 Handle Machine Check, External and Critical exceptions.
66842
66843 Fix e500 machine check error determination in traps.c
66844
66845 TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
66846
66847 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66848 Acked-by: Andy Fleming <afleming@freescale.com>
66849
66850 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
66851 Author: Andy Fleming <afleming@freescale.com>
66852 Date: Tue Aug 14 01:33:18 2007 -0500
66853
66854 Add MPC8544DS README
66855
66856 Signed-off-by: Andy Fleming <afleming@freescale.com>
66857
66858 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
66859 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66860 Date: Fri Jul 27 01:50:48 2007 -0500
66861
66862 85xx allow debugger to configure ddr.
66863
66864 Only check for mpc8548 rev 1 when compiled for 8548.
66865
66866 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66867 Acked-by: Andy Fleming <afleming@freescale.com>
66868
66869 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
66870 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66871 Date: Fri Jul 27 01:50:47 2007 -0500
66872
66873 mpc85xx L2 cache reporting and SRAM relocation option.
66874
66875 Allow debugger to override flash cs0/cs1 settings to enable alternate
66876 boot regions
66877
66878 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66879 Acked-by: Andy Fleming <afleming@freescale.com>
66880
66881 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
66882 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
66883 Date: Fri Jul 27 01:50:46 2007 -0500
66884
66885 e500 needs ppc_asm.tmp MCK_EXCEPTION
66886
66887 Always define MCK_EXCEPTION macro - so e500 can use it too.
66888
66889 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
66890 Acked-by: Andy Fleming <afleming@freescale.com>
66891
66892 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
66893 Author: David Updegraff <dave@cray.com>
66894 Date: Mon Jun 11 10:41:07 2007 -0500
66895
66896 multicast tftp: RFC2090
66897
66898 Implemented IETF RFC2090, Multicast TFTP. Initial implementation
66899 on Realtek RTL8139 and Freescale TSEC.
66900
66901 Signed-off-by: David Updegraff <dave@cray.com>
66902 Signed-off-by: Ben Warren <bwarren@qstreams.com>
66903
66904 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
66905 Author: Wilson Callan <wcallan@savantav.com>
66906 Date: Sat Jul 28 10:56:13 2007 -0400
66907
66908 New CONFIG_BOOTP_SERVERIP option
66909
66910 Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
66911 from the bootp server
66912
66913 Signed-off-by: Wilson Callan <wcallan@savantav.com>
66914 Signed-off-by: Ben Warren <bwarren@qstreams.com>
66915
66916 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
66917 Author: Mike Rapoport <mike@compulab.co.il>
66918 Date: Sun Aug 12 08:48:27 2007 +0300
66919
66920 Add ability to take MAC address from the environment to DM9000 driver
66921
66922 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
66923 Signed-off-by: Ben Warren <bwarren@qstreams.com>
66924
66925 commit be5d72d10d47609326226225181e301fb9a33b58
66926 Author: Wolfgang Denk <wd@denx.de>
66927 Date: Mon Aug 13 21:57:53 2007 +0200
66928
66929 Minor coding style cleanup. Update CHANGELOG.
66930
66931 Signed-off-by: Wolfgang Denk <wd@denx.de>
66932
66933 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
66934 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
66935 Date: Sat Aug 11 06:54:58 2007 -0500
66936
66937 Modify SBC8641D to use new Freescale PCI routines
66938
66939 PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
66940 adapter.
66941
66942 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
66943 Signde-off-by: Jon Loeliger <jdl@freescale.com>
66944
66945 commit a08458303e7f9db67f296980036d3292c35cb45c
66946 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66947 Date: Fri Jun 29 18:38:51 2007 +0200
66948
66949 atmel_mci: Fix data timeout value
66950
66951 Calculate the data timeout based on values from the CSD instead of
66952 just using a hardcoded DTOR value. This is a backport of a similar fix
66953 in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
66954 instead of down.
66955
66956 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66957
66958 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
66959 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66960 Date: Mon Aug 13 17:22:31 2007 +0200
66961
66962 AVR32: Include <div64.h> instead of <asm/div64.h>
66963
66964 include/asm-avr32/div64.h was recently moved to include/div64.h, but
66965 cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
66966 the patch was merged perhaps?)
66967
66968 This patch updates cpu/at32ap/interrupts.c so that the avr32 port
66969 compiles again.
66970
66971 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66972
66973 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
66974 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
66975 Date: Wed Jun 27 13:34:26 2007 +0200
66976
66977 atmel_mci: Use 512 byte blocksize if possible
66978
66979 Instead of always using the largest blocksize the card supports, check
66980 if it can support smaller block sizes and use 512 bytes if possible.
66981 Most cards do support this, and other parts of u-boot seem to have
66982 trouble with block sizes different from 512 bytes.
66983
66984 Also enable underrun/overrun protection.
66985
66986 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
66987 Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
66988
66989 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
66990 Author: Stefan Roese <sr@denx.de>
66991 Date: Mon Aug 13 09:05:33 2007 +0200
66992
66993 ppc4xx: Fix problem in PLL clock calculation
66994
66995 This patch was originall provided by David Mitchell <dmitchell@amcc.com>
66996 and fixes a bug in the PLL clock calculation.
66997
66998 Signed-off-by: Stefan Roese <sr@denx.de>
66999
67000 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
67001 Author: Wolfgang Denk <wd@denx.de>
67002 Date: Sun Aug 12 21:34:50 2007 +0200
67003
67004 Update CHANGELOG
67005
67006 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
67007 Author: Wolfgang Denk <wd@denx.de>
67008 Date: Sun Aug 12 21:34:34 2007 +0200
67009
67010 Minor alignment of output, 2nd try.
67011 Also update CHANGELOG
67012
67013 Signed-off-by: Wolfgang Denk <wd@denx.de>
67014
67015 commit 6b309f22a724fad8418e811751a0741b893419cf
67016 Author: Wolfgang Denk <wd@denx.de>
67017 Date: Sun Aug 12 20:35:49 2007 +0200
67018
67019 Minor alignment of output
67020
67021 Signed-off-by: Wolfgang Denk <wd@denx.de>
67022
67023 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
67024 Author: Wolfgang Denk <wd@denx.de>
67025 Date: Sun Aug 12 18:28:18 2007 +0200
67026
67027 Cleanup output on ADS5121 board
67028
67029 Signed-off-by: Wolfgang Denk
67030
67031 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
67032 Author: Wolfgang Denk <wd@denx.de>
67033 Date: Sun Aug 12 15:11:38 2007 +0200
67034
67035 Adapt board configuration and fix kernel crash on MCC200 board.
67036
67037 The update procedure was modified to turn off the USB subsystem
67038 before exit for MCC200 and TRAB. This is necessary as otherwise the
67039 USB controller continues to write periodically to system memory!
67040
67041 MCC200-specific notes:
67042 - the patch disables the magic key check for MCC200
67043 - the patch contains the configuration changes made
67044 for the new revision of the board.
67045
67046 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
67047 Signed-off-by: Wolfgang Denk <wd@denx.de>
67048
67049 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
67050 Author: Wolfgang Denk <wd@denx.de>
67051 Date: Sun Aug 12 14:47:54 2007 +0200
67052
67053 Adjust default configuration of ADS5121 board.
67054
67055 Signed-off-by: Wolfgang Denk <wd@denx.de>
67056
67057 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
67058 Author: Wolfgang Denk <wd@denx.de>
67059 Date: Sun Aug 12 14:27:39 2007 +0200
67060
67061 Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
67062
67063 Signed-off-by: Wolfgang Denk <wd@denx.de>
67064
67065 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
67066 Author: Gerald Van Baren <vanbaren@cideas.com>
67067 Date: Tue Aug 7 21:14:22 2007 -0400
67068
67069 Improve error print messages.
67070
67071 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67072
67073 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
67074 Author: Kim Phillips <kim.phillips@freescale.com>
67075 Date: Tue Jul 17 13:57:04 2007 -0500
67076
67077 fdt: allow for builds that don't want env and bd_t nodes
67078
67079 protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
67080 area.
67081
67082 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67083
67084 commit 91148bf7aeba142d6f348805db7625db7da64d6f
67085 Author: Kim Phillips <kim.phillips@freescale.com>
67086 Date: Tue Jul 17 13:56:53 2007 -0500
67087
67088 fdt: do board setup based on fdt address specified on bootm line
67089
67090 The last fdt patch to bootm did board setup based on the address
67091 specified by a prior fdt address command invocation. The bootm
67092 code, as its call to fdt_chosen does, should use the fdt specified
67093 by the user on the bootm command. Note this restores full
67094 functionality for the 8360's existing default boot environment
67095 values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
67096 before booting a kernel).
67097
67098 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67099
67100 commit e125a2ffc209dd34794e326c7175658253beadf3
67101 Author: Gerald Van Baren <vanbaren@cideas.com>
67102 Date: Tue Jul 10 20:40:39 2007 -0400
67103
67104 Call ft_board_setup() from the bootm command.
67105
67106 In the patch titled "Create new fdt boardsetup command..." I removed the
67107 call to ft_board_setup() from the routine fdt_chosen(), but I forgot
67108 to add a direct call back into cmd_bootm.c
67109
67110 This fixes the oversight by adding the direct call to the bootm command.
67111
67112 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67113
67114 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
67115 Author: Gerald Van Baren <vanbaren@cideas.com>
67116 Date: Mon Jun 25 23:25:28 2007 -0400
67117
67118 Create new fdt boardsetup command, fix bug parsing [] form of set values.
67119
67120 Previously ft_board_setup() was called by fdt_chosen() which was not
67121 really correctly structured. This splits ft_board_setup() out by creating
67122 a new fdt boardsetup command.
67123
67124 Fix a bug when parsing fdt set command values which have the square
67125 bracket form [00 11 22 33] - the length was updated incorrectly in when
67126 parsing that form.
67127
67128 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67129
67130 commit 6f35ded9e85493595e0eb66a82b502a95326d049
67131 Author: Gerald Van Baren <vanbaren@cideas.com>
67132 Date: Mon Jun 25 20:55:58 2007 -0400
67133
67134 Tighten up the error messages.
67135
67136 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67137
67138 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
67139 Author: Gerald Van Baren <vanbaren@cideas.com>
67140 Date: Mon Jun 25 19:52:23 2007 -0400
67141
67142 Asthetic improvements: error messages and line lengths.
67143
67144 Tighten up the error messages, split overlength lines.
67145
67146 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67147
67148 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
67149 Author: Gerald Van Baren <vanbaren@cideas.com>
67150 Date: Fri May 25 22:08:57 2007 -0400
67151
67152 Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
67153
67154 The fdt_chosen() function was adding/seting some properties ad-hoc
67155 improperly and duplicated (poorly) what was done in ft_board_setup()
67156
67157 Clean up long lines (setting properties, printing errors).
67158
67159 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67160
67161 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
67162 Author: Gerald Van Baren <vanbaren@cideas.com>
67163 Date: Mon May 21 23:27:16 2007 -0400
67164
67165 For fdt_find_node_by_path(), handle the root path properly.
67166
67167 Also removes the special case root path detection in cmd_fdt.c since it
67168 is no longer necessary.
67169
67170 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67171
67172 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
67173 Author: Gerald Van Baren <vanbaren@cideas.com>
67174 Date: Thu May 17 23:54:36 2007 -0400
67175
67176 Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
67177
67178 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
67179 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
67180
67181 commit 1a861169bc3758f9de3aead62b058736c6891246
67182 Author: Gerald Van Baren <vanbaren@cideas.com>
67183 Date: Wed Jun 6 22:47:58 2007 -0400
67184
67185 Replace fdt_node_offset() with fdt_find_node_by_path().
67186
67187 The new name matches more closely the kernel's name, which is also
67188 a much better description.
67189
67190 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
67191 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
67192
67193 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
67194 Author: Gerald Van Baren <vanbaren@cideas.com>
67195 Date: Wed May 16 22:39:59 2007 -0400
67196
67197 Fix cmd_fdt line lengths, refactor code.
67198
67199 Break lines that were greater than 80 characters in length.
67200 Move the fdt print and property parsing code to separate static functions
67201 to reduce coding clutter in the fdt_cmd handling body.
67202
67203 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67204
67205 commit 25114033ab21788810c48ba4df103b649da1223b
67206 Author: Gerald Van Baren <vanbaren@cideas.com>
67207 Date: Sat May 12 09:47:25 2007 -0400
67208
67209 FDT command improvements.
67210
67211 Fix "fdt set" so that it will create a non-existing property.
67212 Add "fdt mknode" to create nodes.
67213
67214 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67215
67216 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
67217 Author: Gerald Van Baren <vanbaren@cideas.com>
67218 Date: Sat May 12 09:45:46 2007 -0400
67219
67220 Reorganize and fix problems (returns) in the bootm command.
67221
67222 Do *NOT* return after the "point of no return" has been passed.
67223 If something goes wrong, the board must be reset after that point.
67224 Move the "Transferring control to Linux" debug message back to where it
67225 belongs: just before transferring control to linux.
67226
67227 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67228
67229 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
67230 Author: Gerald Van Baren <vanbaren@cideas.com>
67231 Date: Tue May 8 21:27:35 2007 -0400
67232
67233 Fix bugs in the CONFIG_OF_LIBFDT
67234
67235 Stupid coding mistakes (identified by Timur Tabi, thanks).
67236
67237 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67238
67239 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
67240 Author: Gerald Van Baren <vanbaren@cideas.com>
67241 Date: Wed Apr 25 22:47:15 2007 -0400
67242
67243 Improve fdt move length handling.
67244
67245 Make the length parameter optional: if not specified, do the move using
67246 the current size unchanged.
67247
67248 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67249
67250 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
67251 Author: Gerald Van Baren <vanbaren@cideas.com>
67252 Date: Wed Apr 25 22:23:36 2007 -0400
67253
67254 Minor code clean up.
67255
67256 Declare the variable fdt properly as extern.
67257 Call the "set_fn" function pointer the "short way" without the full
67258 dereferencing syntax.
67259
67260 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67261
67262 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
67263 Author: Gerald Van Baren <vanbaren@cideas.com>
67264 Date: Wed Apr 25 21:24:27 2007 -0400
67265
67266 Improve error messages, more informative.
67267
67268 Print more than the raw libfdt error message strings. This is especially
67269 useful for cluing in the user when the bootm command aborts due to
67270 blob problems.
67271
67272 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67273
67274 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
67275 Author: Gerald Van Baren <vanbaren@cideas.com>
67276 Date: Fri Apr 20 22:46:53 2007 -0400
67277
67278 libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
67279
67280 This is the way u-boot reduces configured-out code. At Wolfgang
67281 Grandegger and Wolfgang Denk's request, make libfdt conform.
67282
67283 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67284
67285 commit 923efd286411ed052d9e074f59f8986d6081061c
67286 Author: Bruce Adler <bruce.adler@ccpu.com>
67287 Date: Fri Aug 10 14:54:47 2007 -0700
67288
67289 add image size and descriptors for Spartan 3E FPGA chips
67290
67291 Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
67292
67293 Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
67294
67295 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
67296 Author: Kim Phillips <kim.phillips@freescale.com>
67297 Date: Fri Aug 10 15:34:48 2007 -0500
67298
67299 make MAKEALL more immune to merge conflicts
67300
67301 ..by placing board entries one per line, as suggested by jdl.
67302
67303 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67304
67305 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
67306 Author: Kim Phillips <kim.phillips@freescale.com>
67307 Date: Fri Aug 10 13:28:25 2007 -0500
67308
67309 README: Remove outdated cpu type, board type, and NAME_config lists
67310
67311 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67312
67313 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
67314 Author: Dave Liu <r63238@freescale.com>
67315 Date: Fri Aug 10 15:48:59 2007 +0800
67316
67317 mpc83xx: Suppress the warning 'burstlen'
67318
67319 suppress the warning 'burstlen' of spd_sdram.
67320
67321 Signed-off-by: Dave Liu <daveliu@freescale.com>
67322
67323 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
67324 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
67325 Date: Thu Aug 9 15:11:03 2007 -0500
67326
67327 Add support for SBC8641D. Config files.
67328
67329 Add support for Wind River's SBC8641D reference board.
67330
67331 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
67332 Acked-by: Wolfgang Denk <wd@denx.de>
67333 Acked-by: Jon Loeliger <jdl@freescale.com>
67334
67335 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
67336 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
67337 Date: Thu Aug 9 15:10:53 2007 -0500
67338
67339 Add support for SBC8641D. Board files.
67340
67341 Add support for Wind River's SBC8641D reference board.
67342
67343 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
67344 Acked-by: Wolfgang Denk <wd@denx.de>
67345 Acked-by: Jon Loeliger <jdl@freescale.com>
67346
67347 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
67348 Author: Stefan Roese <sr@denx.de>
67349 Date: Fri Aug 10 20:34:58 2007 +0200
67350
67351 Conding style cleanup
67352
67353 Signed-off-by: Stefan Roese <sr@denx.de>
67354
67355 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
67356 Author: Sergey Kubushyn <ksi@koi8.net>
67357 Date: Fri Aug 10 20:26:18 2007 +0200
67358
67359 [ARM] TI DaVinci support, hopefully final
67360
67361 Add support for the following DaVinci boards:
67362 - DV_EVM
67363 - SCHMOOGIE
67364 - SONATA
67365
67366 Changes:
67367
67368 - Split into separate board directories
67369 - Removed changes to MTD_DEBUG (or whatever it's called)
67370 - New CONFIG_CMD party line followed
67371 - Some cosmetic fixes, cleanup etc.
67372 - Patches against the latest U-Boot tree as of now.
67373 - Fixed CONFIG_CMD_NET in net files.
67374 - Fixed CONFIG_CMD_EEPROM for schmoogie.
67375 - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
67376 DV_EVM. Can't check if it works on SONATA, don't have a board any more,
67377 but it at least compiles.
67378
67379 Here is an excerpt from session log on SCHMOOGIE...
67380
67381 U-Boot 1.2.0-g6c33c785-dirty (Aug 7 2007 - 13:07:17)
67382
67383 DRAM: 128 MB
67384 NAND: 128 MiB
67385 In: serial
67386 Out: serial
67387 Err: serial
67388 ARM Clock : 297MHz
67389 DDR Clock : 162MHz
67390 ETH PHY : DP83848 @ 0x01
67391 U-Boot > iprobe
67392 Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
67393 U-Boot > ping 192.168.253.10
67394 host 192.168.253.10 is alive
67395 U-Boot >
67396
67397 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
67398 Acked-by: Dirk Behme <dirk.behme@gmail.com>
67399 Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
67400 Acked-by: Stefan Roese <sr@denx.de>
67401
67402 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
67403 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
67404 Date: Fri Jul 27 01:50:45 2007 -0500
67405
67406 fsl_pci_init cleanup.
67407
67408 Do not enable normal errors created during probe (master abort, perr,
67409 and pcie Invalid Configuration access).
67410
67411 Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
67412
67413 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
67414 Acked-by: Andy Fleming <afleming@freescale.com>
67415
67416 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
67417 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
67418 Date: Fri Jul 27 01:50:44 2007 -0500
67419
67420 pciauto_setup_device bars_num fix
67421
67422 Passing bars_num=0 to pciauto_setup_device should assign no bars.
67423
67424 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
67425 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
67426 Acked-by: Andy Fleming <afleming@freescale.com>
67427
67428 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
67429 Author: Jon Loeliger <jdl@freescale.com>
67430 Date: Mon Aug 6 17:39:44 2007 -0500
67431
67432 8641hpcn: Do correct sized pointer math.
67433
67434 When I rebased Ed's patch and cleaned up a few compilation
67435 problems, I apparently rebased my brain on crack first.
67436 Fix that by doing (char *) sized pointer math as needed.
67437
67438 Signed-off-by: Jon Loeliger <jdl@freescale.com>
67439
67440 commit cfc7a7f5bb3273c9951173c788001d45118f141f
67441 Author: Jon Loeliger <jdl@freescale.com>
67442 Date: Thu Aug 2 14:42:20 2007 -0500
67443
67444 cpu/86xx fixes.
67445
67446 Remove rev 1 fixes.
67447 Always set PICGCR_MODE.
67448 Enable machine check and provide board config option
67449 to set and handle SoC error interrupts.
67450
67451 Include MSSSR0 in error message.
67452
67453 Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
67454
67455 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
67456 Signed-off-by: Jon Loeliger <jdl@freescale.com>
67457
67458 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
67459 Author: Stefan Roese <sr@denx.de>
67460 Date: Fri Aug 10 10:42:25 2007 +0200
67461
67462 Coding style cleanup
67463
67464 Signed-off-by: Stefan Roese <sr@denx.de>
67465
67466 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
67467 Author: Dirk Behme <dirk.behme@googlemail.com>
67468 Date: Thu Aug 2 17:42:08 2007 +0200
67469
67470 Make use of generic 64bit division in nand_util.c
67471
67472 Use generic 64bit division in nand_util.c. This makes nand_util.c
67473 independent of any toolchain 64bit division.
67474
67475 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
67476
67477 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
67478 Author: Dirk Behme <dirk.behme@googlemail.com>
67479 Date: Thu Aug 2 17:41:14 2007 +0200
67480
67481 Move 64bit division from avr32 to generic lib
67482
67483 Move the 64bit division from lib_avr32 to lib_generic. With this, all
67484 boards can do_div/__div64_32 if needed, not only avr one. Code is put
67485 to lib_generic, so no larger memory footprint if not used. No code
67486 modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
67487
67488 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
67489
67490 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
67491 Author: Niklaus Giger <niklausgiger@gmx.ch>
67492 Date: Fri Jul 27 11:31:22 2007 +0200
67493
67494 Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
67495
67496 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67497
67498 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
67499 Author: Niklaus Giger <niklausgiger@gmx.ch>
67500 Date: Fri Jul 27 11:30:33 2007 +0200
67501
67502 Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
67503
67504 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67505
67506 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
67507 Author: Niklaus Giger <niklausgiger@gmx.ch>
67508 Date: Fri Jul 27 11:38:26 2007 +0200
67509
67510 Add PPC4xx-HCU4 and HCU5 boards: common files
67511
67512 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67513
67514 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
67515 Author: Niklaus Giger <niklausgiger@gmx.ch>
67516 Date: Fri Jul 27 11:28:44 2007 +0200
67517
67518 Add PPC4xx-HCU4 and HCU5 boards: make related
67519
67520 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67521
67522 commit 137fdd9f474ecb853efdace5200576308c67f18d
67523 Author: Niklaus Giger <niklausgiger@gmx.ch>
67524 Date: Fri Jul 27 11:28:03 2007 +0200
67525
67526 Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
67527
67528 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67529
67530 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
67531 Author: Niklaus Giger <niklausgiger@gmx.ch>
67532 Date: Fri Jul 27 11:27:15 2007 +0200
67533
67534 Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
67535
67536 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67537
67538 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
67539 Author: Niklaus Giger <niklausgiger@gmx.ch>
67540 Date: Fri Jul 27 11:25:31 2007 +0200
67541
67542 Add PPC4xx-HCU4 and HCU5 boards: READMEs
67543
67544 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67545
67546 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
67547 Author: Niklaus Giger <niklausgiger@gmx.ch>
67548 Date: Fri Jul 27 11:37:40 2007 +0200
67549
67550 Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
67551
67552 This series of patches adds support for 2 boards from Netstal Maschinen.
67553
67554 The HCU4 has a PPC405Gpr and
67555 the HCU5 has a PPC440EPX.
67556
67557 The HCU4 has a somehow complicated flash setup, as the booteprom is
67558 only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
67559 elegant solution.
67560
67561 The HCU5 has only a booteprom as the whole code will be downloaded from a
67562 different board which has HD, CD-ROM, etc and where all code is stored.
67563
67564 This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
67565 Thanks them a lot.
67566
67567 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
67568
67569 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
67570 Author: Stefan Roese <sr@denx.de>
67571 Date: Fri Aug 10 08:42:55 2007 +0200
67572
67573 ppc4xx: Update lwmon5 POST configuration
67574
67575 Signed-off-by: Stefan Roese <sr@denx.de>
67576
67577 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
67578 Author: Yuri Tikhonov <yur@emcraft.com>
67579 Date: Fri Aug 10 08:25:22 2007 +0200
67580
67581 POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
67582
67583 The patch adds support for UART POST on ppc44x-based boards with no
67584 external serial clocks installed.
67585
67586 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
67587 Acked-by: Stefan Roese <sr@denx.de>
67588
67589 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
67590 Author: Kim Phillips <kim.phillips@freescale.com>
67591 Date: Mon Aug 6 18:18:34 2007 -0500
67592
67593 mpc83xx: fix ITX[GP] O=builddir builds
67594
67595 make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'. Stop.
67596
67597 Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
67598 "BUILD_DIR=<some dir> ./MAKEALL ..."
67599
67600 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67601
67602 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
67603 Author: Dave Liu <r63238@freescale.com>
67604 Date: Wed Aug 1 15:00:59 2007 +0800
67605
67606 mpc83xx: Correct the README for DDR ECC
67607
67608 Update the README for DDR ECC, change the name
67609 to README.mpc83xx.ddrecc.
67610
67611 Signed-off-by: Dave Liu <daveliu@freescale.com>
67612 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67613
67614 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
67615 Author: Dave Liu <r63238@freescale.com>
67616 Date: Wed Aug 1 15:00:15 2007 +0800
67617
67618 mpc83xx: Consolidate the ECC support of 83xx
67619
67620 Remove the duplicated source code of ecc command on the <board>.c,
67621 for reused, move these code to cpu/mpc83xx directory.
67622
67623 Signed-off-by: Dave Liu <daveliu@freescale.com>
67624 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67625
67626 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
67627 Author: Dave Liu <r63238@freescale.com>
67628 Date: Sat Aug 4 13:37:39 2007 +0800
67629
67630 mpc83xx: Correct the burst length for DDR2 with 32 bits
67631
67632 The burst length should be 4 for DDR2 with 32 bits bus
67633
67634 Signed-off-by: Dave Liu <daveliu@freescale.com>
67635
67636 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
67637 Author: Kim Phillips <kim.phillips@freescale.com>
67638 Date: Wed Jul 25 19:25:33 2007 -0500
67639
67640 mpc83xx: add support for the MPC8323E RDB
67641
67642 MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
67643 five 10/100 ethernet ports connected via an ICPlus IP175C
67644 switch, one PCI slot, and serial. Features not supported
67645 in this patch are SD card interface, 2 USB ports, and the
67646 two phone ports.
67647
67648 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
67649 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67650
67651 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
67652 Author: Kim Phillips <kim.phillips@freescale.com>
67653 Date: Wed Jul 25 19:25:28 2007 -0500
67654
67655 mpc83xx: fixup generic pci for libfdt
67656
67657 add libfdt support to the generic 83xx pci code
67658
67659 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67660
67661 commit f57ac7a7b37109245b69db80839ebee26179966a
67662 Author: Kim Phillips <kim.phillips@freescale.com>
67663 Date: Wed Jul 25 19:25:22 2007 -0500
67664
67665 mpc83xx: fix 8360 and cpu functions to update fdt being passed
67666
67667 ..and not the global fdt. Rename local fdt vars to blob so as not to
67668 be confused with the global var with the same three-letter name.
67669
67670 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67671
67672 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
67673 Author: Jerry Van Baren <gvb.uboot@gmail.com>
67674 Date: Wed Jul 4 21:34:24 2007 -0400
67675
67676 mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
67677
67678 Several node strings were not correct (trailing slashes and properties
67679 in the strings)
67680 Added setting of the timebase-frequency.
67681 Improved error messages and use debug() instead of printf().
67682
67683 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
67684 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67685
67686 commit 26d02c9bbac1751c5e19294f000100b48d43a920
67687 Author: Jerry Van Baren <gvb.uboot@gmail.com>
67688 Date: Wed Jul 4 21:27:30 2007 -0400
67689
67690 mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
67691
67692 The new name matches more closely the kernel's name, which is also
67693 a much better description.
67694
67695 These are the mpc83xx changes made necessary by the function name change.
67696
67697 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
67698 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
67699 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67700
67701 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
67702 Author: Dave Liu <daveliu@freescale.com>
67703 Date: Mon Jun 25 10:41:56 2007 +0800
67704
67705 mpc83xx: Add support for the display of reset status
67706
67707 83xx processor family has many reset sources, such as
67708 power on reset, software hard reset, software soft reset,
67709 JTAG, bus monitor, software watchdog, check stop reset,
67710 external hard reset, external software reset.
67711 sometimes, to figure out the fault of system, we need to
67712 know the cause of reset early before the prompt of
67713 u-boot present.
67714
67715 Signed-off-by: Dave Liu <daveliu@freescale.com>
67716 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67717
67718 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
67719 Author: Dave Liu <daveliu@freescale.com>
67720 Date: Mon Jun 25 10:41:04 2007 +0800
67721
67722 mpc83xx: Fix the align bug of SDMA buffer
67723
67724 According to the latest user manual, the SDMA temporary
67725 buffer base address must be 4KB aligned.
67726
67727 Signed-off-by: Dave Liu <daveliu@freescale.com>
67728 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67729
67730 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
67731 Author: Dave Liu <daveliu@freescale.com>
67732 Date: Mon Jun 25 13:21:12 2007 +0800
67733
67734 mpc83xx: Revise the MPC8360EMDS readme doc
67735
67736 When the rev2.x silicon mount on the MPC8360EMDS baord,
67737 and if you are using the u-boot version after the commit
67738 3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
67739 to make the ethernet interface usable, we have to setup
67740 the jumpers correctly.
67741
67742 Signed-off-by: Dave Liu <daveliu@freescale.com>
67743 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67744
67745 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
67746 Author: Timur Tabi <timur@freescale.com>
67747 Date: Tue Jul 3 13:46:32 2007 -0500
67748
67749 FSL I2C driver programs the two I2C busses differently
67750
67751 The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
67752 The second I2C bus has its slave address programmed incorrectly and is
67753 missing a 5-us delay.
67754
67755 Signed-off-by: Timur Tabi <timur@freescale.com>
67756 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67757
67758 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
67759 Author: Timur Tabi <timur@freescale.com>
67760 Date: Tue Jul 3 13:04:34 2007 -0500
67761
67762 Update SCCR programming in cpu_init_f() to support all 83xx processors
67763
67764 Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
67765 bitfields for all 83xx processors. The code to update some bitfields was
67766 compiled only on some processors. Now, the bitfields are programmed as long
67767 as the corresponding CFG_SCCR option is defined in the board header file.
67768 This means that the board header file should not define any CFG_SCCR macros
67769 for bitfields that don't exist on that processor, otherwise the SCCR will be
67770 programmed incorrectly.
67771
67772 Signed-off-by: Timur Tabi <timur@freescale.com>
67773 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67774
67775 commit 9546266999f0b9b51372636614211b88d90f0f25
67776 Author: Martin Krause <martin.krause@tqs.de>
67777 Date: Fri Jun 22 13:04:22 2007 +0200
67778
67779 TQM834x: cleanup configuraton
67780
67781 Remove irritating #undef DEBUG
67782
67783 Signed-off-by: Martin Krause <martin.krause@tqs.de>
67784 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67785
67786 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
67787 Author: david.saada <David.Saada@ecitele.com>
67788 Date: Mon Jun 18 09:09:53 2007 -0700
67789
67790 MPC83xx: Fix makefile to generate config.h file in the build directory
67791
67792 MPC83xx: Fix the Makefile config sections to generate the include/config.h
67793 file in the build directory instead of the source directory.
67794
67795 Signed-off-by: David Saada <david.saada@ecitele.com>
67796 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67797
67798 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
67799 Author: Lee Nipper <Lee.Nipper@freescale.com>
67800 Date: Thu Jun 14 20:07:33 2007 -0500
67801
67802 mpc83xx: Add support for 8360 silicon revision 2.1
67803
67804 This change adds 8360 silicon revision 2.1 support to u-boot.
67805
67806 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
67807 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67808
67809 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
67810 Author: Kumar Gala <galak@kernel.crashing.org>
67811 Date: Wed Aug 8 04:14:28 2007 -0500
67812
67813 Treat ppc64 host as ppc
67814
67815 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
67816
67817 commit 0dc4279b08ff82472bec2e2c90858602459febe8
67818 Author: Jason Jin <Jason.jin@freescale.com>
67819 Date: Wed Aug 8 09:01:46 2007 +0800
67820
67821 Minor fix for bios emulator makefile
67822
67823 Add $(obj) to LIB avoiding objects be built in the source dir
67824
67825 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67826
67827 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
67828 Author: Jason Jin <Jason.jin@freescale.com>
67829 Date: Wed Aug 8 08:33:11 2007 +0800
67830
67831 Add CONFIG_BIOSEMU define to guard all the bios emulator code
67832
67833 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
67834
67835 This patch fix the compile issue on the board that did not enable the bios emulator
67836
67837 commit ed8106433522f2ea8933e9808346860d061d7731
67838 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
67839 Date: Tue Jul 31 12:27:25 2007 -0500
67840
67841 tsec: fix multiple PHY support
67842
67843 The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
67844 broke multiple PHY support in tsec.c. This fixes it.
67845
67846 Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
67847 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
67848
67849 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
67850 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
67851 Date: Thu Aug 9 09:08:18 2007 -0500
67852
67853 tsec: Allow Ten Bit Interface address to be configurable
67854
67855 Allow the address of the Ten Bit Interface (TBI) to be changed in the
67856 event of a conflict with another device.
67857
67858 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
67859
67860 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
67861 Author: Stefan Roese <sr@denx.de>
67862 Date: Wed Aug 8 09:54:26 2007 +0200
67863
67864 Coding style cleanup
67865
67866 Signed-off-by: Stefan Roese <sr@denx.de>
67867
67868 commit a41de1f0d373e09c782dea558385a06247111ba5
67869 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67870 Date: Sun Aug 5 05:15:18 2007 -0500
67871
67872 Port enabled for I2C signals and chipselects port configuration.
67873
67874 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67875
67876 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
67877 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67878 Date: Sun Aug 5 04:31:18 2007 -0500
67879
67880 Added NAND support
67881
67882 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67883
67884 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
67885 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67886 Date: Sun Aug 5 04:11:20 2007 -0500
67887
67888 Added I2C support
67889
67890 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67891
67892 commit 99c03c175d2689093176facf17c58ce2cb320001
67893 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67894 Date: Sun Aug 5 03:58:52 2007 -0500
67895
67896 Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
67897
67898 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67899
67900 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
67901 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67902 Date: Sun Aug 5 03:55:21 2007 -0500
67903
67904 Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
67905
67906 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67907
67908 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
67909 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67910 Date: Sun Aug 5 03:43:30 2007 -0500
67911
67912 Moved sync() from board file to include/asm-m68k/io.h
67913
67914 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67915
67916 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
67917 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67918 Date: Sun Aug 5 03:30:44 2007 -0500
67919
67920 Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
67921
67922 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67923
67924 commit 9998bd37ead85e93953559720710d3b0685c81e6
67925 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67926 Date: Sun Aug 5 03:19:10 2007 -0500
67927
67928 Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
67929
67930 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
67931
67932 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
67933 Author: Jason Jin <Jason.jin@freescale.com>
67934 Date: Tue Aug 7 16:17:06 2007 +0800
67935
67936 Add CONFIG_BIOSEMU define to guard all the bios emulator code
67937
67938 This patch fix the compile issue on the board that did not enable the bios emulator
67939
67940 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
67941 Author: Wolfgang Denk <wd@denx.de>
67942 Date: Tue Aug 7 16:02:13 2007 +0200
67943
67944 Fix missing brace error in fs/fat/fat.c
67945 [pointed out by Roderik Wildenburg]
67946
67947 Signed-off-by: Wolfgang Denk <wd@denx.de>
67948
67949 commit 706714d97a0d08d59eda4de2268c39f504688329
67950 Author: Michal Simek <monstr@monstr.eu>
67951 Date: Mon Aug 6 23:41:53 2007 +0200
67952
67953 [FIX] remove cute code
67954
67955 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
67956 Author: Michal Simek <monstr@monstr.eu>
67957 Date: Mon Aug 6 23:35:26 2007 +0200
67958
67959 [FIX] Fix romfs code
67960
67961 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
67962 Author: Michal Simek <monstr@monstr.eu>
67963 Date: Mon Aug 6 23:31:49 2007 +0200
67964
67965 [FIX] Coding style cleanup - Wolfgang's suggestions
67966
67967 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
67968 Author: Wolfgang Denk <wd@denx.de>
67969 Date: Mon Aug 6 23:21:05 2007 +0200
67970
67971 Fixed typo in README (pointed out by Martin Jost).
67972
67973 Signed-off-by: Wolfgang Denk <wd@denx.de>
67974
67975 commit 537223afa61f64480df31ce440a9cb386df4a814
67976 Author: Stefan Roese <sr@denx.de>
67977 Date: Mon Aug 6 21:10:17 2007 +0200
67978
67979 ppc4xx: Update AMCC Bamboo README doc/README.bamboo
67980
67981 As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
67982 here an updated Bamboo README.
67983
67984 Signed-off-by: Stefan Roese <sr@denx.de>
67985
67986 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
67987 Author: Wolfgang Denk <wd@denx.de>
67988 Date: Mon Aug 6 02:17:36 2007 +0200
67989
67990 Coding style cleanup. Update CHANGELOG.
67991
67992 Signed-off-by: Wolfgang Denk <wd@denx.de>
67993
67994 commit 221838cc7eb178370ff62aa05920a582e12ac322
67995 Author: Jason Jin <Jason.jin@freescale.com>
67996 Date: Tue Jul 10 09:03:22 2007 +0800
67997
67998 Remove the bios emulator from MAI board.
67999
68000 The bios emulator in the MAI board can not pass compile
68001 and have a lot of crap in it. remove it and will have a
68002 clean and small bios emulator in the drivers directory
68003 which can be uesed for every board.
68004
68005 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68006
68007 commit 5618332409bb96f4448d1712899369fc80c0b489
68008 Author: Jason Jin <Jason.jin@freescale.com>
68009 Date: Fri Jul 13 12:14:59 2007 +0800
68010
68011 Fix some compile issues for MAI board.
68012
68013 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68014
68015 commit 0f460a1ee148b648ee242c3157650287d4296260
68016 Author: Jason Jin <Jason.jin@freescale.com>
68017 Date: Fri Jul 13 12:14:58 2007 +0800
68018
68019 Configurations for ATI video card BIOS emulator
68020
68021 This patch add definition of the BIOS emulator and the ATI framebuffer
68022 driver for MPC8641HPCN board.
68023
68024 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68025 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
68026
68027 commit ece92f85053b8df613edcf05b26a416cbc3d629c
68028 Author: Jason Jin <Jason.jin@freescale.com>
68029 Date: Fri Jul 6 08:34:56 2007 +0800
68030
68031 This is a BIOS emulator, porting from SciTech for u-boot, mainly for
68032 ATI video card BIOS. and can be used for x86 code emulation by some
68033 modifications.
68034
68035 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68036
68037 commit 5072188acabde3178fac7f5a597150e6e74fd40c
68038 Author: Jason Jin <Jason.jin@freescale.com>
68039 Date: Fri Jul 6 08:33:33 2007 +0800
68040
68041 This is a framebuffer driver for ATI video card, can work for PCI9200,
68042 X300, X700, X800 ATI video cards.
68043
68044 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
68045 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
68046
68047 commit 5728be389e65fd47f34b33c2596271eb4db751ae
68048 Author: Wolfgang Denk <wd@denx.de>
68049 Date: Mon Aug 6 01:01:49 2007 +0200
68050
68051 Coding style cleanup. Update CHANGELOG.
68052
68053 Signed-off-by: Wolfgang Denk <wd@denx.de>
68054
68055 commit 8092fef4c29b395958bb649647da7e3775731517
68056 Author: Martin Krause <Martin.Krause@tqs.de>
68057 Date: Tue Dec 12 14:26:01 2006 +0100
68058
68059 Add functions to list of exported functions
68060
68061 Additionally export the following fuctions (to make trab_config build again):
68062 - simple_strtol()
68063 - strcmp()
68064
68065 Also bump the ABI version to reflect this change
68066
68067 Signed-off-by: Martin Krause <martin.krause@tqs.de>
68068
68069 commit 63cec5814fab5d2b1c86982327433807a5ac0249
68070 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68071 Date: Thu Aug 2 14:09:49 2007 -0500
68072
68073 Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
68074
68075 All of the PCI/PCI-Express driver and initialization code that
68076 was in the MPC8641HPCN port has now been moved into the common
68077 drivers/fsl_pci_init.c. In a subsequent patch, this will be
68078 utilized by the 85xx ports as well.
68079
68080 Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
68081
68082 Also enable the second PCI-Express controller on 8641
68083 by getting its BATS and CFG_ setup right.
68084
68085 Fixed a u16 vendor compiler warning in AHCI driver too.
68086
68087 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68088 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
68089 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68090
68091 commit a274ca4f6d68830e7c916f897561cff8c4101c38
68092 Author: Michal Simek <monstr@monstr.eu>
68093 Date: Sun Aug 5 22:33:05 2007 +0200
68094
68095 [FIX] Coding style cleanup
68096
68097 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
68098 Author: Michal Simek <monstr@monstr.eu>
68099 Date: Sun Aug 5 16:13:31 2007 +0200
68100
68101 [FIX] Xilinx Uartlite driver
68102 Because PPC405 can use UARTLITE serial interface and
68103 Microblaze can use Uart16550 serial interface not only Uartlite.
68104
68105 commit 98889edd50aadf862071eb5664747ad0d568a20e
68106 Author: Michal Simek <monstr@monstr.eu>
68107 Date: Sun Aug 5 15:54:53 2007 +0200
68108
68109 [FIX] Change configuration for XUPV2P Microblaze board
68110
68111 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
68112 Author: Michal Simek <monstr@monstr.eu>
68113 Date: Sun Aug 5 15:53:50 2007 +0200
68114
68115 [PATCH] Added support for Xilinx Emac community driver
68116
68117 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
68118 Author: Bartlomiej Sieka <tur@semihalf.com>
68119 Date: Fri Aug 3 12:08:16 2007 +0200
68120
68121 cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
68122
68123 Add the ability for modules from the Schindler cm5200 family to use a
68124 single U-Boot image:
68125 - rename cm1_qp1 to cm5200
68126 - add run-time module detection
68127 - parametrize SDRAM configuration according to the module we are running on
68128
68129 Few minor, board-specific fixes included in this patch:
68130 - better MAC address handling
68131 - updated default environment ('update' command uses +{filesize} now)
68132 - improved error messages in the auto-update code
68133 - allow booting U-Boot from RAM (CFG_RAMBOOT)
68134
68135 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
68136 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
68137 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
68138
68139 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
68140 Author: Andy Fleming <afleming@freescale.com>
68141 Date: Fri Aug 3 04:05:25 2007 -0500
68142
68143 Add Marvell 1149 PHY support to the TSEC
68144
68145 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
68146 Author: Wolfgang Denk <wd@denx.de>
68147 Date: Thu Aug 2 21:27:46 2007 +0200
68148
68149 Coding style cleanup, update CHANGELOG
68150
68151 Signed-off-by: Wolfgang Denk <wd@denx.de>
68152
68153 commit 63e22764d2f8653f68888c667eb65b3996b52680
68154 Author: Wolfgang Denk <wd@denx.de>
68155 Date: Thu Aug 2 10:11:18 2007 +0200
68156
68157 Minor cleanup of <board>_nand build rules.
68158
68159 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
68160 Author: Stefan Roese <sr@denx.de>
68161 Date: Thu Aug 2 08:33:56 2007 +0200
68162
68163 ppc4xx: Code cleanup
68164
68165 Signed-off-by: Stefan Roese <sr@denx.de>
68166
68167 commit c92409812206ac67a7fa7aae298539a9c3804a46
68168 Author: Grzegorz Bernacki <gjb@semihalf.com>
68169 Date: Tue Jul 31 18:51:48 2007 +0200
68170
68171 [ppc440SPe] Graceful recovery from machine check during PCIe configuration
68172
68173 During config transactions on the PCIe bus an attempt to scan for a
68174 non-existent device can lead to a machine check exception with certain
68175 peripheral devices. In order to avoid crashing in such scenarios the
68176 instrumented versions of the config cycle read routines are introduced, so
68177 the exceptions fixups framework can gracefully recover.
68178
68179 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
68180 Acked-by: Rafal Jaworowski <raj@semihalf.com>
68181
68182 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
68183 Author: Rafal Jaworowski <raj@semihalf.com>
68184 Date: Tue Jul 31 18:19:54 2007 +0200
68185
68186 [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
68187
68188 This brings back separate settings for PCIe bus numbers depending on chip
68189 revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
68190 commit. 440SPe rev. A does NOT work properly with the same settings as for
68191 the rev. B (no devices are seen on the bus during enumeration).
68192
68193 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
68194
68195 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
68196 Author: Wolfgang Denk <wd@denx.de>
68197 Date: Thu Aug 2 00:48:45 2007 +0200
68198
68199 Fix build errors and warnings / code cleanup.
68200
68201 Signed-off-by: Wolfgang Denk <wd@denx.de>
68202
68203 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
68204 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
68205 Date: Tue Jul 31 10:24:56 2007 +0200
68206
68207 ppc4xx: Update AMCC Bamboo 440EP support
68208
68209 Changed storage type of cfg_simulate_spd_eeprom to const
68210 Changed storage type of gpio_tab to stack storage
68211 (Cannot access global data declarations in .bss until afer code relocation)
68212
68213 Improved SDRAM tests to catch problems where data is not uniquely addressable
68214 (e.g. incorrectly programmed SDRAM row or columns)
68215
68216 Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
68217 Fixed AM29LV320DT (OpCode Flash) sector map
68218
68219 Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
68220 Signed-off-by: Stefan Roese <sr@denx.de>
68221
68222 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
68223 Author: Stefan Roese <sr@denx.de>
68224 Date: Tue Jul 31 08:37:01 2007 +0200
68225
68226 ppc4xx: Update 440EPx lwmon5 board support
68227
68228 - Clear ECC status regs after ECC POST test
68229 - Set dcbz for ECC generation with caches enabled as default
68230 - Code cleanup
68231
68232 Signed-off-by: Stefan Roese <sr@denx.de>
68233
68234 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
68235 Author: Stefan Roese <sr@denx.de>
68236 Date: Mon Jul 30 11:04:57 2007 +0200
68237
68238 ppc4xx: Only print ECC related info when the error bis are set
68239
68240 Signed-off-by: Stefan Roese <sr@denx.de>
68241
68242 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
68243 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68244 Date: Fri Jul 27 16:44:31 2007 +0200
68245
68246 new FPGA image for PLU405 board
68247
68248 new FPGA image for PLU405 board with improved CompactFlash timing
68249
68250 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
68251
68252 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
68253 Author: Rafal Jaworowski <raj@semihalf.com>
68254 Date: Fri Jul 27 14:43:59 2007 +0200
68255
68256 [ADS5121] Support for the ADS5121 board
68257
68258 The following MPC5121e subsystems are supported:
68259
68260 - low-level CPU init
68261 - NOR Boot Flash (common CFI driver)
68262 - DDR SDRAM
68263 - FEC
68264 - I2C
68265 - Watchdog
68266
68267 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
68268 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
68269 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
68270
68271 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
68272 Author: Rafal Jaworowski <raj@semihalf.com>
68273 Date: Fri Jul 27 14:22:04 2007 +0200
68274
68275 [PPC] Remove unused MSR_USER definition
68276
68277 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
68278
68279 commit d4024bb72dd81695ec099b2199eda0d27c623e62
68280 Author: John Otken <john@softadvances.com>
68281 Date: Thu Jul 26 17:49:11 2007 +0200
68282
68283 ppc4xx: Add support for AMCC 405EP Taihu board
68284
68285 Signed-off-by: John Otken <john@softadvances.com>
68286
68287 commit b66091de6c7390620312c2501db23d8391e7cabb
68288 Author: Anatolij Gustschin <agust@denx.de>
68289 Date: Thu Jul 26 15:08:01 2007 +0200
68290
68291 ppc4xx: lwmon5: Update Lime initialization
68292
68293 Change Lime SDRAM initialization to now support 100MHz and
68294 133MHz (if enabled). Also the framebuffer is initialized to
68295 display a blue rectangle with a white border.
68296
68297 Signed-off-by: Anatolij Gustschin <agust@denx.de>
68298 Signed-off-by: Stefan Roese <sr@denx.de>
68299
68300 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
68301 Author: Stefan Roese <sr@denx.de>
68302 Date: Tue Jul 24 09:52:52 2007 +0200
68303
68304 ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
68305
68306 The used Intel NOR FLASH chips have internally two dies, and are now
68307 treated as two seperate chips.
68308
68309 Signed-off-by: Stefan Roese <sr@denx.de>
68310
68311 commit aedf5bde179ecfbd0a96130d18996a96518b785f
68312 Author: Stefan Roese <sr@denx.de>
68313 Date: Tue Jul 24 07:20:09 2007 +0200
68314
68315 ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
68316
68317 As suggested by Hakan Eryigit, here an updated setup for the lwmon5
68318 interrupt controller.
68319
68320 Signed-off-by: Stefan Roese <sr@denx.de>
68321
68322 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
68323 Author: Stefan Roese <sr@denx.de>
68324 Date: Fri Jul 20 15:03:44 2007 +0200
68325
68326 ppc4xx: Fix bug with default GPIO output value
68327
68328 As spotted by Matthias Fuchs, the default output values for all GPIO1
68329 outputs were not setup correctly. This patch fixes this issue.
68330
68331 Signed-off-by: Stefan Roese <sr@denx.de>
68332
68333 commit 531e3e8b831f357056448fa573137d5fb37000fd
68334 Author: Pavel Kolesnikov <concord@emcraft.com>
68335 Date: Fri Jul 20 15:03:03 2007 +0200
68336
68337 POST: Add ECC POST for the lwmon5 board
68338
68339 This patch adds ECC Post test for the Lwmon5 board based
68340 on PPC440EPx to U-Boot.
68341
68342 Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
68343 Acked-by: Yuri Tikhonov <yur@emcraft.com>
68344 Acked-by: Stefan Roese <sr@denx.de>
68345
68346 commit cc3023b9f95d7ac959a764471a65001062aecf41
68347 Author: Rafal Jaworowski <raj@semihalf.com>
68348 Date: Thu Jul 19 17:12:28 2007 +0200
68349
68350 Fix breakage of 8xx boards from recent commit.
68351
68352 This patch fixes the negative consequences for 8xx of the recent
68353 "ppc4xx: Clean up 440 exceptions handling" commit.
68354
68355 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
68356
68357 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
68358 Author: Stefan Roese <sr@denx.de>
68359 Date: Mon Jul 16 13:11:12 2007 +0200
68360
68361 Coding style cleanup
68362
68363 Signed-off-by: Stefan Roese <sr@denx.de>
68364
68365 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
68366 Author: Stefan Roese <sr@denx.de>
68367 Date: Mon Jul 16 10:02:12 2007 +0200
68368
68369 ppc4xx: Code cleanup
68370
68371 Signed-off-by: Stefan Roese <sr@denx.de>
68372
68373 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
68374 Author: Stefan Roese <sr@denx.de>
68375 Date: Mon Jul 16 10:01:38 2007 +0200
68376
68377 ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
68378
68379 Signed-off-by: Stefan Roese <sr@denx.de>
68380
68381 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
68382 Author: Stefan Roese <sr@denx.de>
68383 Date: Mon Jul 16 10:00:43 2007 +0200
68384
68385 ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
68386
68387 The new boardspecific DDR2 controller configuration is used for the Yucca
68388 board. Now the Yucca board with 440SPe Rev. A chips is also supported.
68389
68390 Signed-off-by: Stefan Roese <sr@denx.de>
68391
68392 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
68393 Author: Stefan Roese <sr@denx.de>
68394 Date: Mon Jul 16 09:57:00 2007 +0200
68395
68396 ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
68397
68398 The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
68399 support non default, boardspecific DDR(2) controller configuration.
68400
68401 Signed-off-by: Stefan Roese <sr@denx.de>
68402
68403 commit 5743a9207a370b90f09b20ebd61167c806b937f3
68404 Author: Stefan Roese <sr@denx.de>
68405 Date: Mon Jul 16 08:53:51 2007 +0200
68406
68407 ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
68408
68409 The new function remove_tlb() can be used to remove the TLB's used to
68410 map a specific memory region. This is especially useful for the DDR(2)
68411 setup routines which configure the SDRAM area temporarily as a cached
68412 area (for speedup on auto-calibration and ECC generation) and later
68413 need this area uncached for normal usage.
68414
68415 Signed-off-by: Stefan Roese <sr@denx.de>
68416
68417 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
68418 Author: Michal Simek <monstr@monstr.eu>
68419 Date: Mon Jul 16 00:31:07 2007 +0200
68420
68421 [PATCH] Support for Xilinx EmacLite controller
68422
68423 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
68424 Author: Wolfgang Denk <wd@denx.de>
68425 Date: Sat Jul 14 22:51:02 2007 +0200
68426
68427 Update CHANGELOG
68428
68429 Signed-off-by: Wolfgang Denk <wd@denx.de>
68430
68431 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
68432 Author: Michal Simek <monstr@monstr.eu>
68433 Date: Sat Jul 14 13:11:28 2007 +0200
68434
68435 [FIX] support for simply measuring time
68436
68437 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
68438 Author: Michal Simek <monstr@monstr.eu>
68439 Date: Sat Jul 14 12:41:23 2007 +0200
68440
68441 [FS] Added support for ROMFS
68442
68443 commit 011595307731a7a67a7445d107c279d031e8ab97
68444 Author: Heiko Schocher <hs@pollux.denx.de>
68445 Date: Sat Jul 14 01:06:58 2007 +0200
68446
68447 [PCS440EP] - fix compile error, if BUILD_DIR is used
68448
68449 commit 5a2f1098d81ad58b309e5e558d0492643166a799
68450 Author: Michal Simek <monstr@monstr.eu>
68451 Date: Sat Jul 14 00:18:48 2007 +0200
68452
68453 [PATCH] Support time without timer
68454
68455 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
68456 Author: Michal Simek <monstr@monstr.eu>
68457 Date: Fri Jul 13 21:43:55 2007 +0200
68458
68459 [PATCH] Remove problem with disabled BARREL SHIFTER
68460
68461 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
68462 Author: Michal Simek <monstr@monstr.eu>
68463 Date: Fri Jul 13 21:41:44 2007 +0200
68464
68465 [FIX] correct help for rspr
68466
68467 commit fad63407154f46246ce80d53a9c669a44362ac67
68468 Author: Heiko Schocher <hs@pollux.denx.de>
68469 Date: Fri Jul 13 09:54:17 2007 +0200
68470
68471 make show_boot_progress () weak.
68472
68473 Signed-off-by: Heiko Schocher <hs@denx.de>
68474
68475 commit 907902472391b6ca1876ec300687562ecaf459b1
68476 Author: Heiko Schocher <hs@pollux.denx.de>
68477 Date: Fri Jul 13 08:26:05 2007 +0200
68478
68479 [PCS440EP] - The DIAG LEDs are now blinking, if an error occur
68480 - fix compile error, if BUILD_DIR is used
68481
68482 Signed-off-by: Heiko Schocher <hs@denx.de>
68483
68484 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
68485 Author: Stefan Roese <sr@denx.de>
68486 Date: Thu Jul 12 16:32:08 2007 +0200
68487
68488 ppc4xx: Change receive buffer handling in the 4xx emac driver
68489
68490 This change fixes a bug in the receive buffer handling, that
68491 could lead to problems upon high network traffic (broadcasts...).
68492
68493 Signed-off-by: Stefan Roese <sr@denx.de>
68494
68495 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
68496 Author: Wolfgang Denk <wd@denx.de>
68497 Date: Thu Jul 12 01:45:34 2007 +0200
68498
68499 Update CHANGELOG, minor coding style cleanup.
68500
68501 Signed-off-by: Wolfgang Denk <wd@denx.de>
68502
68503 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
68504 Author: Andy Fleming <afleming@freescale.com>
68505 Date: Fri Jun 8 16:41:18 2007 -0500
68506
68507 Remove erroneous errata code from Marvel 88E1111S driver
68508
68509 The Marvel 88E1111S driver for the TSEC was copied from the
68510 88E1101 driver, and included a fix for an erratum which does not
68511 exist on that part. Now it is removed
68512
68513 Signed-off-by: Andy Fleming <afleming@freescale.com>
68514
68515 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
68516 Author: Andy Fleming <afleming@freescale.com>
68517 Date: Tue Jun 5 16:38:44 2007 -0500
68518
68519 From: eran liberty <eran.liberty@gmail.com>
68520
68521 adds the reset register to 85xx immap
68522
68523 Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
68524 Signed-off-by: Andy Fleming <afleming@freescale.com>
68525
68526 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
68527 Author: Andy Fleming <afleming@freescale.com>
68528 Date: Thu May 10 17:50:01 2007 -0500
68529
68530 Polished the 85xx ADS config files
68531
68532 Made the boot commands use device trees by default.
68533 Also moved the ramdisk to 1000000 (I think the previous address
68534 was getting overridden during boot).
68535
68536 Signed-off-by: Andy Fleming <afleming@freescale.com>
68537
68538 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
68539 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68540 Date: Wed May 9 11:03:32 2007 -0500
68541
68542 8544ds: Fix Makefile after moving pixis to board/freescale.
68543
68544 The OBJTREE != SRCTREE build scenario was broken.
68545 This fixes it.
68546
68547 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68548 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68549
68550 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
68551 Author: Andy Fleming <afleming@freescale.com>
68552 Date: Wed May 9 00:54:20 2007 -0500
68553
68554 tsec: Fix PHY code to match first driver
68555
68556 Jarrold Wen noticed that the generic PHY code always matches
68557 under the current implementation. Change it so the first match
68558 wins, and *only* unknown PHYs trigger the generic driver
68559
68560 Signed-off-by: Andy Fleming <afleming@freescale.com>
68561
68562 commit ccc091aac61a38cd998d575d92f7232e256d6312
68563 Author: Andy Fleming <afleming@freescale.com>
68564 Date: Tue May 8 17:27:43 2007 -0500
68565
68566 Add support for CPM device tree configuration to 8560 ADS
68567
68568 * Adds code to modify CPM frequencies
68569 * Cleans up the config file to #define TSEC and (for now) #undef FCC
68570 * Adds the MII command for all 8560 ADS configurations
68571 * Updates config file to provide convenience commands for booting
68572 with a device tree
68573
68574 Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
68575 Signed-off-by: Andy Fleming <afleming@freescale.com>
68576
68577 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
68578 Author: Andy Fleming <afleming@freescale.com>
68579 Date: Tue May 8 17:23:02 2007 -0500
68580
68581 Fix Marvell 88e1145 PHY init code
68582
68583 Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
68584 where the reset was being done after the errata code instead of
68585 before.
68586
68587 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
68588 Signed-off-by: Andy Fleming <afleming@freescale.com>
68589
68590 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
68591 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68592 Date: Wed Jul 11 14:52:16 2007 -0500
68593
68594 Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
68595
68596 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68597
68598 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
68599 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68600 Date: Wed Jul 11 14:52:08 2007 -0500
68601
68602 pciauto setup bridge
68603
68604 The P2P bridge bus numbers programmed into the device are relative to
68605 hose->first_busno.
68606
68607 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68608
68609 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
68610 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68611 Date: Wed Jul 11 14:52:01 2007 -0500
68612
68613 Support PCIe extended config registers
68614
68615 FSL PCIe block has extended cfg registers in the 100 and 400 range.
68616 For example, to read the LTSSM register: pci display <busn>.0 404 1
68617
68618 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68619
68620 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
68621 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68622 Date: Wed Jul 11 14:51:48 2007 -0500
68623
68624 Minor improvements to drivers/pci_auto.c
68625
68626 - Make pciauto_{pre,post}scan_setup_bridge non-static
68627 - Added physical address display in debug messages.
68628
68629 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68630
68631 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
68632 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
68633 Date: Wed Jul 11 14:51:35 2007 -0500
68634
68635 Start pci hose scan from hose->current_busno.
68636
68637 Ensure hose->current_busno is not less than first_busno. This fixes
68638 broken board code which leaves current_busno=0 when first_busno is
68639 greater than 0 for the cases with multiple controllers.
68640
68641 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
68642
68643 commit 3865b1fb7843a08ad49a6319a36415752276ff48
68644 Author: Stefan Roese <sr@denx.de>
68645 Date: Wed Jul 11 12:13:53 2007 +0200
68646
68647 Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
68648
68649 Signed-off-by: Stefan Roese <sr@denx.de>
68650
68651 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
68652 Author: Bartlomiej Sieka <tur@semihalf.com>
68653 Date: Wed Jul 11 20:11:07 2007 +0200
68654
68655 CM1.QP1: Support for the Schindler CM1.QP1 board.
68656
68657 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
68658 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
68659
68660 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
68661 Author: Heiko Schocher <hs@pollux.denx.de>
68662 Date: Wed Jul 11 18:39:11 2007 +0200
68663
68664 [PCS440EP] - Show on the DIAG LEDs, if the SHA1 check failed
68665 - now the Flash ST M29W040B is supported (not tested)
68666 - fix the "led" command
68667 - fix compile error, if BUILD_DIR is used
68668
68669 Signed-off-by: Heiko Schocher <hs@denx.de>
68670
68671 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
68672 Author: Stefan Roese <sr@denx.de>
68673 Date: Sun Jul 8 13:44:27 2007 +0200
68674
68675 Fix malloc problem introduced with the relocation fixup for the PPC platform
68676
68677 The relocation fixup didn't handle the malloc pointer initialization
68678 correctly. This patch fixes this problem. Tested successfully on 4xx.
68679 The relocation fixup patches for 4xx will follow soon.
68680
68681 Signed-off-by: Stefan Roese <sr@denx.de>
68682
68683 commit 0dca874db62718e41253659e60f3a1de7eb418ce
68684 Author: TsiChung <tcliew@Goku.(none)>
68685 Date: Tue Jul 10 15:45:43 2007 -0500
68686
68687 Cache update and added CFG_UNIFY_CACHE
68688
68689 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.
68690
68691 Signed-off-by: TsiChung <tcliew@Goku.(none)>
68692
68693 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
68694 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68695 Date: Thu Jul 5 23:36:16 2007 -0500
68696
68697 Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
68698
68699 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
68700
68701 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68702
68703 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
68704 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68705 Date: Thu Jul 5 23:31:25 2007 -0500
68706
68707 Update header files
68708
68709 Include immap.h and renamed mcfrtc.h to rtc.h
68710
68711 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68712
68713 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
68714 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68715 Date: Thu Jul 5 23:29:21 2007 -0500
68716
68717 Add mcffec_initialize()
68718
68719 Added mcffec_initialize() in eth_initialize()
68720
68721 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68722
68723 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
68724 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68725 Date: Thu Jul 5 23:27:40 2007 -0500
68726
68727 Update header file and clean up
68728
68729 Include immap.h
68730
68731 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68732
68733 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
68734 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68735 Date: Thu Jul 5 23:23:15 2007 -0500
68736
68737 New uart structure and defines
68738
68739 Seperated from mcfuart.h
68740
68741 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68742
68743 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
68744 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68745 Date: Thu Jul 5 23:22:31 2007 -0500
68746
68747 New timer structure and defines
68748
68749 Seperated from mcftimer.h
68750
68751 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68752
68753 commit e04acb2eba4782489417240eff76e20e176aec10
68754 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68755 Date: Thu Jul 5 23:21:09 2007 -0500
68756
68757 Rename mcfrtc to rtc
68758
68759 Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
68760
68761 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68762
68763 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
68764 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68765 Date: Thu Jul 5 23:17:36 2007 -0500
68766
68767 Rename mcfserial.c. Update include header
68768
68769 Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
68770
68771 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68772
68773 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
68774 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68775 Date: Thu Jul 5 23:13:58 2007 -0500
68776
68777 Header file update, clean up and cache handling
68778
68779 Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
68780
68781 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68782
68783 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
68784 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68785 Date: Thu Jul 5 23:10:40 2007 -0500
68786
68787 Create interrupts.c and modify Makefile
68788
68789 interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
68790
68791 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68792
68793 commit ddd104f1ed655eda50c06ba636237a83ed943f34
68794 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68795 Date: Thu Jul 5 23:06:55 2007 -0500
68796
68797 Enable Icache
68798
68799 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68800
68801 commit b9bf3de377b2bae70c983c9b97feae914999e735
68802 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68803 Date: Thu Jul 5 23:05:31 2007 -0500
68804
68805 Update header file and some clean up
68806
68807 Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
68808
68809 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68810
68811 commit 84a015b52ec820a5ae173717d78516de731c89c2
68812 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68813 Date: Thu Jul 5 23:03:28 2007 -0500
68814
68815 Update header file and enable icache
68816
68817 Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
68818
68819 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68820
68821 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
68822 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68823 Date: Thu Jul 5 23:01:22 2007 -0500
68824
68825 Update header file and removed interrupt_init()
68826
68827 Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
68828
68829 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68830
68831 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
68832 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68833 Date: Thu Jul 5 22:57:46 2007 -0500
68834
68835 Update for flash.o and mii.o
68836
68837 Removed flash.o and added mii.o
68838
68839 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68840
68841 commit c5ded275d839e4ff79f41718d50a835d989f57bc
68842 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68843 Date: Thu Jul 5 22:56:19 2007 -0500
68844
68845 MII functions calls.
68846
68847 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68848
68849 commit 427c814104560e29bda14955c67703245aaaa5b4
68850 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68851 Date: Thu Jul 5 22:54:42 2007 -0500
68852
68853 Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
68854
68855 The removed MII routines will be placed in mii.c.
68856
68857 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68858
68859 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
68860 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68861 Date: Thu Jul 5 22:51:05 2007 -0500
68862
68863 Duplicate code
68864
68865 There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
68866
68867 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68868
68869 commit 2744354a8437b8f78db178e30660215688bff570
68870 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68871 Date: Thu Jul 5 22:46:38 2007 -0500
68872
68873 Seperate old structure defines and new structure defines
68874
68875 Removed new uart structure and defines to uart.h
68876
68877 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68878
68879 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
68880 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68881 Date: Thu Jul 5 22:45:01 2007 -0500
68882
68883 Seperate old structure defines and new structure defines
68884
68885 New timer structure and defines will move to new timer.h
68886
68887 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68888
68889 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
68890 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68891 Date: Thu Jul 5 22:42:23 2007 -0500
68892
68893 Clean up
68894
68895 Removed whitespace
68896
68897 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68898
68899 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
68900 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68901 Date: Thu Jul 5 22:41:24 2007 -0500
68902
68903 Clean up
68904
68905 Replaced whitespace with tabs
68906
68907 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68908
68909 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
68910 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68911 Date: Thu Jul 5 22:39:07 2007 -0500
68912
68913 Create new header file and move peripherals base address from configs file to new header file.
68914
68915 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.
68916
68917 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68918
68919 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
68920 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68921 Date: Thu Jul 5 22:24:58 2007 -0500
68922
68923 Revert file mode
68924
68925 Changed MAKEALL file mode to executable, removed executable file mode from Makefile
68926
68927 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
68928
68929 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
68930 Author: Jon Loeliger <jdl@freescale.com>
68931 Date: Tue Jul 10 11:19:50 2007 -0500
68932
68933 disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
68934
68935 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68936 Those always evaluated TRUE, and thus were always compiled
68937 even when IDE really wasn't defined/wanted.
68938
68939 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68940
68941 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
68942 Author: Jon Loeliger <jdl@freescale.com>
68943 Date: Tue Jul 10 11:13:21 2007 -0500
68944
68945 drivers/: Remove lingering references to CFG_CMD_* symbols.
68946
68947 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68948 Those always evaluated TRUE, and thus were always compiled
68949 even when IDE really wasn't defined/wanted.
68950
68951 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68952
68953 commit f40a7f3e3888b42a43674b099e5470022c8c544c
68954 Author: Jon Loeliger <jdl@freescale.com>
68955 Date: Tue Jul 10 11:07:56 2007 -0500
68956
68957 fs/: Remove lingering references to CFG_CMD_* symbols.
68958
68959 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68960 Those always evaluated TRUE, and thus were always compiled
68961 even when IDE really wasn't defined/wanted.
68962
68963 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68964
68965 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
68966 Author: Jon Loeliger <jdl@freescale.com>
68967 Date: Tue Jul 10 11:05:02 2007 -0500
68968
68969 net/: Remove lingering references to CFG_CMD_* symbols.
68970
68971 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68972 Those always evaluated TRUE, and thus were always compiled
68973 even when IDE really wasn't defined/wanted.
68974
68975 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68976
68977 commit 902531788376046da212afd1661cffb62f3daa1c
68978 Author: Jon Loeliger <jdl@freescale.com>
68979 Date: Tue Jul 10 11:02:44 2007 -0500
68980
68981 common/: Remove lingering references to CFG_CMD_* symbols.
68982
68983 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68984 Those always evaluated TRUE, and thus were always compiled
68985 even when IDE really wasn't defined/wanted.
68986
68987 Signed-off-by: Jon Loeliger <jdl@freescale.com>
68988
68989 commit d39b57415838c73fb0a37eca84de3c68ba990586
68990 Author: Jon Loeliger <jdl@freescale.com>
68991 Date: Tue Jul 10 10:48:22 2007 -0500
68992
68993 board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
68994
68995 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
68996 Those always evaluated TRUE, and thus were always compiled
68997 even when IDE really wasn't defined/wanted.
68998
68999 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69000
69001 commit 77a318545d57aefa844752465b94c7e09a3f26d0
69002 Author: Jon Loeliger <jdl@freescale.com>
69003 Date: Tue Jul 10 10:39:10 2007 -0500
69004
69005 board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
69006
69007 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
69008 Those always evaluated TRUE, and thus were always compiled
69009 even when IDE really wasn't defined/wanted.
69010
69011 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69012
69013 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
69014 Author: Jon Loeliger <jdl@freescale.com>
69015 Date: Tue Jul 10 10:27:39 2007 -0500
69016
69017 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
69018
69019 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69020
69021 commit 079a136c3588814784561d6e4856970ee82d6e2a
69022 Author: Jon Loeliger <jdl@freescale.com>
69023 Date: Tue Jul 10 10:12:10 2007 -0500
69024
69025 include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
69026
69027 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
69028 used to be included but CONFIG_BOOTP_MASK was not defined.
69029
69030 Remove lingering references to CFG_CMD_* symbols.
69031
69032 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69033
69034 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
69035 Author: Jon Loeliger <jdl@freescale.com>
69036 Date: Tue Jul 10 09:38:02 2007 -0500
69037
69038 include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
69039
69040 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
69041 used to be included but CONFIG_BOOTP_MASK was not defined.
69042
69043 Remove lingering references to CFG_CMD_* symbols.
69044
69045 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69046
69047 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
69048 Author: Jon Loeliger <jdl@freescale.com>
69049 Date: Tue Jul 10 09:29:01 2007 -0500
69050
69051 include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
69052
69053 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
69054 used to be included but CONFIG_BOOTP_MASK was not defined.
69055
69056 Remove lingering references to CFG_CMD_* symbols.
69057
69058 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69059
69060 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
69061 Author: Jon Loeliger <jdl@freescale.com>
69062 Date: Tue Jul 10 09:22:23 2007 -0500
69063
69064 include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
69065
69066 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
69067 used to be included but CONFIG_BOOTP_MASK was not defined.
69068
69069 Remove lingering references to CFG_CMD_* symbols.
69070
69071 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69072
69073 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
69074 Author: Jon Loeliger <jdl@freescale.com>
69075 Date: Tue Jul 10 09:10:49 2007 -0500
69076
69077 include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
69078
69079 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
69080 used to be included but CONFIG_BOOTP_MASK was not defined.
69081
69082 Remove lingering references to CFG_CMD_* symbols.
69083
69084 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69085
69086 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
69087 Author: Jon Loeliger <jdl@freescale.com>
69088 Date: Tue Jul 10 09:02:57 2007 -0500
69089
69090 include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
69091
69092 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
69093 used to be included but CONFIG_BOOTP_MASK was not defined.
69094
69095 Remove lingering references to CFG_CMD_* symbols.
69096
69097 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69098
69099 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
69100 Author: Jon Loeliger <jdl@freescale.com>
69101 Date: Mon Jul 9 22:08:34 2007 -0500
69102
69103 Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
69104
69105 All of the choices for CONFIG_BOOTP_ are now documented in
69106 the README file. You must now individually select exactly
69107 the set that you want using a series of
69108 #define CONFIG_BOOTP_<x>
69109 statements in the board port config files now.
69110
69111 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69112
69113 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
69114 Author: Jon Loeliger <jdl@freescale.com>
69115 Date: Mon Jul 9 21:57:31 2007 -0500
69116
69117 include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
69118
69119 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69120
69121 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
69122 Author: Jon Loeliger <jdl@freescale.com>
69123 Date: Mon Jul 9 21:48:26 2007 -0500
69124
69125 include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
69126
69127 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69128
69129 commit 37d4bb70586659dedef1658ce1bed071be098aec
69130 Author: Jon Loeliger <jdl@freescale.com>
69131 Date: Mon Jul 9 21:38:02 2007 -0500
69132
69133 include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
69134
69135 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69136
69137 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
69138 Author: Jon Loeliger <jdl@freescale.com>
69139 Date: Mon Jul 9 21:31:24 2007 -0500
69140
69141 include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
69142
69143 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69144
69145 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
69146 Author: Jon Loeliger <jdl@freescale.com>
69147 Date: Mon Jul 9 21:24:19 2007 -0500
69148
69149 include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
69150
69151 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69152
69153 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
69154 Author: Jon Loeliger <jdl@freescale.com>
69155 Date: Mon Jul 9 21:16:53 2007 -0500
69156
69157 include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
69158
69159 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69160
69161 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
69162 Author: Jon Loeliger <jdl@freescale.com>
69163 Date: Mon Jul 9 19:12:30 2007 -0500
69164
69165 Retire CONFIG_COMMANDS finally.
69166 Strip old CFG_CMD_* symbols out.
69167
69168 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69169
69170 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
69171 Author: Jon Loeliger <jdl@freescale.com>
69172 Date: Mon Jul 9 19:10:03 2007 -0500
69173
69174 Update README.* to reference new CONFIG_CMD_* names now.
69175
69176 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69177
69178 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
69179 Author: Jon Loeliger <jdl@freescale.com>
69180 Date: Mon Jul 9 19:06:00 2007 -0500
69181
69182 cpu/m*: Remove obsolete references to CONFIG_COMMANDS
69183
69184 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69185
69186 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
69187 Author: Jon Loeliger <jdl@freescale.com>
69188 Date: Mon Jul 9 18:57:22 2007 -0500
69189
69190 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
69191
69192 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69193
69194 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
69195 Author: Jon Loeliger <jdl@freescale.com>
69196 Date: Mon Jul 9 18:45:16 2007 -0500
69197
69198 board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
69199
69200 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69201
69202 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
69203 Author: Jon Loeliger <jdl@freescale.com>
69204 Date: Mon Jul 9 18:38:39 2007 -0500
69205
69206 board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
69207
69208 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69209
69210 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
69211 Author: Jon Loeliger <jdl@freescale.com>
69212 Date: Mon Jul 9 18:31:28 2007 -0500
69213
69214 board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
69215
69216 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69217
69218 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
69219 Author: Jon Loeliger <jdl@freescale.com>
69220 Date: Mon Jul 9 18:24:55 2007 -0500
69221
69222 board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
69223
69224 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69225
69226 commit fcec2eb93e126400009729328e797f12bc94f1fd
69227 Author: Jon Loeliger <jdl@freescale.com>
69228 Date: Mon Jul 9 18:19:09 2007 -0500
69229
69230 board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
69231
69232 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69233
69234 commit a593814f2be0c9cdc3133cd550b167b8a988328f
69235 Author: Jon Loeliger <jdl@freescale.com>
69236 Date: Mon Jul 9 18:10:50 2007 -0500
69237
69238 rtc/: Remove obsolete references to CONFIG_COMMANDS
69239
69240 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69241
69242 commit 67350568f9d46e66c21829f3513b3db0caeb948b
69243 Author: Jon Loeliger <jdl@freescale.com>
69244 Date: Mon Jul 9 18:05:38 2007 -0500
69245
69246 lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
69247
69248 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69249
69250 commit 7def6b34f910f08d7ef0a14646da067719237ca2
69251 Author: Jon Loeliger <jdl@freescale.com>
69252 Date: Mon Jul 9 18:02:11 2007 -0500
69253
69254 lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
69255
69256 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69257
69258 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
69259 Author: Jon Loeliger <jdl@freescale.com>
69260 Date: Mon Jul 9 17:56:50 2007 -0500
69261
69262 fs/: Remove obsolete references to CONFIG_COMMANDS
69263
69264 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69265
69266 commit c91898bbc505aff3e12a807af88e76da18efb7ee
69267 Author: Jon Loeliger <jdl@freescale.com>
69268 Date: Mon Jul 9 17:46:09 2007 -0500
69269
69270 tools/: Remove obsolete references to CONFIG_COMMANDS
69271
69272 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69273
69274 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
69275 Author: Jon Loeliger <jdl@freescale.com>
69276 Date: Mon Jul 9 17:45:14 2007 -0500
69277
69278 net/: Remove obsolete references to CONFIG_COMMANDS
69279
69280 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69281
69282 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
69283 Author: Jon Loeliger <jdl@freescale.com>
69284 Date: Mon Jul 9 17:39:42 2007 -0500
69285
69286 drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
69287
69288 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69289
69290 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
69291 Author: Jon Loeliger <jdl@freescale.com>
69292 Date: Mon Jul 9 17:30:01 2007 -0500
69293
69294 drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
69295
69296 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69297
69298 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
69299 Author: Jon Loeliger <jdl@freescale.com>
69300 Date: Mon Jul 9 17:22:37 2007 -0500
69301
69302 disk/: Remove obsolete references to CONFIG_COMMANDS
69303
69304 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69305
69306 commit 639221c76c88215bd55af83ad174fc30d1940f8f
69307 Author: Jon Loeliger <jdl@freescale.com>
69308 Date: Mon Jul 9 17:15:49 2007 -0500
69309
69310 include/: Remove obsolete references to CONFIG_COMMANDS
69311 Mostly removed from comments here.
69312
69313 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69314
69315 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
69316 Author: Wolfgang Denk <wd@denx.de>
69317 Date: Tue Jul 10 00:01:28 2007 +0200
69318
69319 Coding style cleanup; update CHANGELOG.
69320
69321 Signed-off-by: Wolfgang Denk <wd@denx.de>
69322
69323 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
69324 Author: Stefan Roese <sr@denx.de>
69325 Date: Mon Jul 9 11:00:24 2007 +0200
69326
69327 Small coding style cleanup
69328
69329 Signed-off-by: Stefan Roese <sr@denx.de>
69330
69331 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
69332 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69333 Date: Mon Jul 9 10:10:08 2007 +0200
69334
69335 Migrate esd 405EP boards to new NAND subsystem
69336
69337 Remove unused CFG_NAND_LEGACY define
69338
69339 These boards to not have NAND.
69340
69341 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69342
69343 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
69344 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69345 Date: Mon Jul 9 10:10:06 2007 +0200
69346
69347 Migrate esd 405EP boards to new NAND subsystem
69348
69349 Migrate esd 405EP boards to new NAND subsystem
69350
69351 -cleanup
69352 -use correct io accessors (in/out_be32())
69353
69354 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69355
69356 commit e09f7ab5749c345f924da272bea0521a73af5b11
69357 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69358 Date: Mon Jul 9 10:10:04 2007 +0200
69359
69360 Migrate esd 405EP boards to new NAND subsystem
69361
69362 This patch prepares the migration from the legacy NAND driver
69363 to U-Boot's new NAND subsystem for esd boards.
69364
69365 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
69366
69367 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
69368 Author: Jon Loeliger <jdl@freescale.com>
69369 Date: Sun Jul 8 18:10:08 2007 -0500
69370
69371 common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
69372
69373 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69374
69375 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
69376 Author: Jon Loeliger <jdl@freescale.com>
69377 Date: Sun Jul 8 18:05:39 2007 -0500
69378
69379 common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
69380
69381 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69382
69383 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
69384 Author: Jon Loeliger <jdl@freescale.com>
69385 Date: Sun Jul 8 18:02:23 2007 -0500
69386
69387 common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
69388
69389 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69390
69391 commit baa26db4113679b80970ff447d91cc10217742a6
69392 Author: Jon Loeliger <jdl@freescale.com>
69393 Date: Sun Jul 8 17:51:39 2007 -0500
69394
69395 common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
69396
69397 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69398
69399 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
69400 Author: Jon Loeliger <jdl@freescale.com>
69401 Date: Sun Jul 8 17:02:01 2007 -0500
69402
69403 Clear up confusion over the CMD_POST and POST_DIAG mess.
69404
69405 For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
69406 when it really means just CONFIG_CMD_DIAG. There is no CMD_POST.
69407 Clear this mess up some.
69408
69409 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69410
69411 commit b3631487105a57ab7cbadfc26efbaf9676275018
69412 Author: Jon Loeliger <jdl@freescale.com>
69413 Date: Sun Jul 8 15:45:08 2007 -0500
69414
69415 Remove references to the old cmd_confdefs.h include file.
69416
69417 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69418
69419 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
69420 Author: Jon Loeliger <jdl@freescale.com>
69421 Date: Sun Jul 8 15:42:59 2007 -0500
69422
69423 include/configs: Catch some CONFIG_CMD_* conversion stragglers.
69424
69425 Use new CONFIG_CMD_* in lwmon5.h board config file.
69426 Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
69427
69428 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69429
69430 commit a5562901661bd428f7e5feb333f796372cb81019
69431 Author: Jon Loeliger <jdl@freescale.com>
69432 Date: Sun Jul 8 15:31:57 2007 -0500
69433
69434 include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
69435
69436 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69437
69438 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
69439 Author: Jon Loeliger <jdl@freescale.com>
69440 Date: Sun Jul 8 15:02:44 2007 -0500
69441
69442 include/configs: Use new CONFIG_CMD_* in various S* named board config files.
69443
69444 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69445
69446 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
69447 Author: Jon Loeliger <jdl@freescale.com>
69448 Date: Sun Jul 8 15:12:40 2007 -0500
69449
69450 include/configs: Use new CONFIG_CMD_* in various R* named board config files.
69451
69452 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69453
69454 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
69455 Author: Jon Loeliger <jdl@freescale.com>
69456 Date: Sun Jul 8 14:55:07 2007 -0500
69457
69458 include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
69459
69460 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69461
69462 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
69463 Author: Jon Loeliger <jdl@freescale.com>
69464 Date: Sun Jul 8 14:49:44 2007 -0500
69465
69466 include/configs: Use new CONFIG_CMD_* in various P* named board config files.
69467
69468 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69469
69470 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
69471 Author: Jon Loeliger <jdl@freescale.com>
69472 Date: Sun Jul 8 14:21:43 2007 -0500
69473
69474 include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
69475
69476 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69477
69478 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
69479 Author: Jon Loeliger <jdl@freescale.com>
69480 Date: Sun Jul 8 14:14:17 2007 -0500
69481
69482 include/configs: Use new CONFIG_CMD_* in various M* named board config files.
69483
69484 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69485
69486 commit 348f258f24253433e4a2302a0bbceb6740a67246
69487 Author: Jon Loeliger <jdl@freescale.com>
69488 Date: Sun Jul 8 13:46:18 2007 -0500
69489
69490 include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
69491
69492 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69493
69494 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
69495 Author: Jon Loeliger <jdl@freescale.com>
69496 Date: Sun Jul 8 10:09:35 2007 -0500
69497
69498 include/configs: Use new CONFIG_CMD_* in various H* named board config files.
69499
69500 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69501
69502 commit 60a0876b5106b34220e459c208bbf648073306c0
69503 Author: Jon Loeliger <jdl@freescale.com>
69504 Date: Sat Jul 7 21:04:26 2007 -0500
69505
69506 include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
69507
69508 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69509
69510 commit dcaa71562826a2466e894c868d132509dcda8444
69511 Author: Jon Loeliger <jdl@freescale.com>
69512 Date: Sat Jul 7 20:56:05 2007 -0500
69513
69514 include/configs: Use new CONFIG_CMD_* in various E* named board config files.
69515
69516 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69517
69518 commit 3c3227f3c737502311b25b72084573901cbbf17d
69519 Author: Jon Loeliger <jdl@freescale.com>
69520 Date: Sat Jul 7 20:40:43 2007 -0500
69521
69522 include/configs: Use new CONFIG_CMD_* in various D* named board config files.
69523
69524 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69525
69526 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
69527 Author: Jon Loeliger <jdl@freescale.com>
69528 Date: Thu Jul 5 19:52:35 2007 -0500
69529
69530 include/configs: Use new CONFIG_CMD_* in various C* named board config files.
69531
69532 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69533
69534 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
69535 Author: Jon Loeliger <jdl@freescale.com>
69536 Date: Thu Jul 5 19:32:07 2007 -0500
69537
69538 include/configs: Use new CONFIG_CMD_* in various B* named board config files.
69539
69540 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69541
69542 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
69543 Author: Jon Loeliger <jdl@freescale.com>
69544 Date: Thu Jul 5 19:13:52 2007 -0500
69545
69546 include/configs: Use new CONFIG_CMD_* in various A* named board config files.
69547
69548 Since ADS860.h includes "board/fads/fads.h" with ramifications
69549 on the CONFIG_COMMAND treatment, it too has to be adjusted to
69550 exclude already configured commands in this same commit.
69551
69552 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69553
69554 commit 10e038932f22ee80ebd53de312531e70e6590a2f
69555 Author: Thomas Knobloch <knobloch@siemens.com>
69556 Date: Fri Jul 6 14:58:39 2007 +0200
69557
69558 [NAND] Bad block skipping for command nboot
69559
69560 The old implementation of command nboot does not support reading the image from
69561 NAND flash with skipping of bad blocks. The patch implements a new version of
69562 the nboot command: by calling nboot.jffs2 from the u-boot command line the
69563 command will load the image from NAND flash with respect to bad blocks (by using
69564 nand_read_opts()). This is similar to e.g. the NAND read command: "nand
69565 read.jffs2 ...".
69566
69567 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
69568 Signed-off-by: Stefan Roese <sr@denx.de>
69569
69570 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
69571 Author: Stefan Roese <sr@denx.de>
69572 Date: Fri Jul 6 12:26:51 2007 +0200
69573
69574 ppc4xx: Update lwmon5 default environment
69575
69576 Signed-off-by: Stefan Roese <sr@denx.de>
69577
69578 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
69579 Author: Stefan Roese <sr@denx.de>
69580 Date: Fri Jul 6 11:48:24 2007 +0200
69581
69582 ppc4xx: Update lwmon5 board
69583
69584 Add unlock=yes environment variable to default variables to unlock
69585 the CFI flash by default.
69586
69587 Signed-off-by: Stefan Roese <sr@denx.de>
69588
69589 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
69590 Author: Stefan Roese <sr@denx.de>
69591 Date: Fri Jul 6 09:45:47 2007 +0200
69592
69593 Fix problem with get/setdcr commands introduced by cfg patches
69594
69595 Signed-off-by: Stefan Roese <sr@denx.de>
69596
69597 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
69598 Author: Wolfgang Denk <wd@denx.de>
69599 Date: Fri Jul 6 02:50:19 2007 +0200
69600
69601 Code cleanup and default config update for STC GP3 SSA board.
69602
69603 Signed-off-by: Wolfgang Denk <wd@denx.de>
69604
69605 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
69606 Author: Wolfgang Denk <wd@denx.de>
69607 Date: Thu Jul 5 17:56:27 2007 +0200
69608
69609 Fixing some typos etc. introduced mainly by cfg patches.
69610
69611 Signed-off-by: Wolfgang Denk <wd@denx.de>
69612
69613 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
69614 Author: Wolfgang Denk <wd@denx.de>
69615 Date: Thu Jul 5 11:12:16 2007 +0200
69616
69617 Minor coding style cleanup. Update CHANGELOG.
69618
69619 commit dca3b3d6d6396b67e5e84af53452164923c73443
69620 Author: Jon Loeliger <jdl@jdl.com>
69621 Date: Wed Jul 4 22:33:46 2007 -0500
69622
69623 include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
69624
69625 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69626
69627 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
69628 Author: Jon Loeliger <jdl@jdl.com>
69629 Date: Wed Jul 4 22:33:38 2007 -0500
69630
69631 include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
69632
69633 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69634
69635 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
69636 Author: Jon Loeliger <jdl@jdl.com>
69637 Date: Wed Jul 4 22:33:30 2007 -0500
69638
69639 include/configs: Use new CONFIG_CMD_* in various s* named board config files.
69640
69641 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69642
69643 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
69644 Author: Jon Loeliger <jdl@jdl.com>
69645 Date: Wed Jul 4 22:33:23 2007 -0500
69646
69647 include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
69648
69649 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69650
69651 commit 26a34560d56a9df5bc2ae23525d9229736134757
69652 Author: Jon Loeliger <jdl@jdl.com>
69653 Date: Wed Jul 4 22:33:17 2007 -0500
69654
69655 include/configs: Use new CONFIG_CMD_* in various p* named board config files.
69656
69657 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69658
69659 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
69660 Author: Jon Loeliger <jdl@jdl.com>
69661 Date: Wed Jul 4 22:33:13 2007 -0500
69662
69663 include/configs: Use new CONFIG_CMD_* in various o* named board config files.
69664
69665 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69666
69667 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
69668 Author: Jon Loeliger <jdl@jdl.com>
69669 Date: Wed Jul 4 22:33:07 2007 -0500
69670
69671 include/configs: Use new CONFIG_CMD_* in various n* named board config files.
69672
69673 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69674
69675 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
69676 Author: Jon Loeliger <jdl@jdl.com>
69677 Date: Wed Jul 4 22:33:01 2007 -0500
69678
69679 include/configs: Use new CONFIG_CMD_* in various m* named board config files.
69680
69681 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69682
69683 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
69684 Author: Jon Loeliger <jdl@jdl.com>
69685 Date: Wed Jul 4 22:32:57 2007 -0500
69686
69687 include/configs: Use new CONFIG_CMD_* in various l* named board config files.
69688
69689 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69690
69691 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
69692 Author: Jon Loeliger <jdl@jdl.com>
69693 Date: Wed Jul 4 22:32:51 2007 -0500
69694
69695 include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
69696
69697 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69698
69699 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
69700 Author: Jon Loeliger <jdl@jdl.com>
69701 Date: Wed Jul 4 22:32:32 2007 -0500
69702
69703 include/configs: Use new CONFIG_CMD_* in various i* named board config files.
69704
69705 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69706
69707 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
69708 Author: Jon Loeliger <jdl@jdl.com>
69709 Date: Wed Jul 4 22:32:25 2007 -0500
69710
69711 include/configs: Use new CONFIG_CMD_* in various h* named board config files.
69712
69713 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69714
69715 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
69716 Author: Jon Loeliger <jdl@jdl.com>
69717 Date: Wed Jul 4 22:32:19 2007 -0500
69718
69719 include/configs: Use new CONFIG_CMD_* in various g* named board config files.
69720
69721 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69722
69723 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
69724 Author: Jon Loeliger <jdl@jdl.com>
69725 Date: Wed Jul 4 22:32:10 2007 -0500
69726
69727 include/configs: Use new CONFIG_CMD_* in various e* named board config files.
69728
69729 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69730
69731 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
69732 Author: Jon Loeliger <jdl@jdl.com>
69733 Date: Wed Jul 4 22:32:03 2007 -0500
69734
69735 include/configs: Use new CONFIG_CMD_* in various d* named board config files.
69736
69737 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69738
69739 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
69740 Author: Jon Loeliger <jdl@jdl.com>
69741 Date: Wed Jul 4 22:31:56 2007 -0500
69742
69743 include/configs: Use new CONFIG_CMD_* in various c* named board config files.
69744
69745 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69746
69747 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
69748 Author: Jon Loeliger <jdl@jdl.com>
69749 Date: Wed Jul 4 22:31:49 2007 -0500
69750
69751 include/configs: Use new CONFIG_CMD_* in various b* named board config files.
69752
69753 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69754
69755 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
69756 Author: Jon Loeliger <jdl@jdl.com>
69757 Date: Wed Jul 4 22:31:42 2007 -0500
69758
69759 include/configs: Use new CONFIG_CMD_* in various a* named board config files.
69760
69761 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69762
69763 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
69764 Author: Jon Loeliger <jdl@jdl.com>
69765 Date: Wed Jul 4 22:31:35 2007 -0500
69766
69767 include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
69768
69769 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69770
69771 commit d794cfefead5fc177cf4f41164e80382e9c9484a
69772 Author: Jon Loeliger <jdl@jdl.com>
69773 Date: Wed Jul 4 22:31:15 2007 -0500
69774
69775 include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
69776
69777 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69778
69779 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
69780 Author: Jon Loeliger <jdl@jdl.com>
69781 Date: Wed Jul 4 22:31:07 2007 -0500
69782
69783 include/configs: Use new CONFIG_CMD_* in STx board config files.
69784
69785 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69786
69787 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
69788 Author: Jon Loeliger <jdl@jdl.com>
69789 Date: Wed Jul 4 22:30:58 2007 -0500
69790
69791 include/configs: Use new CONFIG_CMD_* in sbc* board config files.
69792
69793 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69794
69795 commit 2694690e285acaa34922f55f4b5ae030da60c55a
69796 Author: Jon Loeliger <jdl@jdl.com>
69797 Date: Wed Jul 4 22:30:50 2007 -0500
69798
69799 include/configs: Use new CONFIG_CMD_* in TQM board config files.
69800
69801 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69802
69803 commit 1cc4c458329765b58e584a19821e796b3c10e976
69804 Author: Jon Loeliger <jdl@jdl.com>
69805 Date: Wed Jul 4 22:30:28 2007 -0500
69806
69807 include/configs: Use new CONFIG_CMD_* in 82xx board config files.
69808
69809 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69810
69811 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
69812 Author: Jon Loeliger <jdl@jdl.com>
69813 Date: Wed Jul 4 22:30:06 2007 -0500
69814
69815 include/configs: Use new CONFIG_CMD_* in 83xx board config files.
69816
69817 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69818
69819 commit b44896215a09c60fa40cae906f7ed207bbc2c492
69820 Author: Sergei Poselenov <sposelenov@emcraft.com>
69821 Date: Thu Jul 5 08:17:37 2007 +0200
69822
69823 Merged POST framework with the current TOT.
69824
69825 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
69826
69827 commit b24629fa377214d63bb40d1360e354b6d3e4af56
69828 Author: Jon Loeliger <jdl@jdl.com>
69829 Date: Wed Jun 13 13:23:15 2007 -0500
69830
69831 mpc86xx: Remove old CFG_CMD_* references.
69832
69833 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69834
69835 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
69836 Author: Jon Loeliger <jdl@jdl.com>
69837 Date: Wed Jun 13 13:22:54 2007 -0500
69838
69839 Add MPC8568MDS to MAKEALL 85xx target.
69840
69841 It was missing from the original port submission.
69842
69843 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69844
69845 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
69846 Author: Jon Loeliger <jdl@jdl.com>
69847 Date: Wed Jun 13 13:22:08 2007 -0500
69848
69849 include/configs: Use new CONFIG_CMD_* in 85xx board config files.
69850
69851 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69852
69853 commit 56b304ac2091689506088a9ae67f63fd6300cf16
69854 Author: Jon Loeliger <jdl@jdl.com>
69855 Date: Wed Jun 13 13:21:37 2007 -0500
69856
69857 Fix #if typo in CONFIG_CMD_* changes.
69858
69859 Signed-off-by: Jon Loeliger <jdl@freescale.com>
69860
69861 commit f780b83316d9af1f61d71cc88b1917b387b9b995
69862 Author: Niklaus Giger <niklausgiger@gmx.ch>
69863 Date: Wed Jun 27 18:11:38 2007 +0200
69864
69865 resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
69866
69867 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
69868
69869 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
69870 Author: Stefan Roese <sr@denx.de>
69871 Date: Wed Jul 4 10:06:30 2007 +0200
69872
69873 ppc4xx: Update lwmon5 board
69874
69875 - Add optional ECC generation routine to preserve existing
69876 RAM values. This is needed for the Linux log-buffer support
69877 - Add optional DDR2 setup with CL=4
69878 - GPIO50 not used anymore
69879 - Lime register setup added
69880
69881 Signed-off-by: Stefan Roese <sr@denx.de>
69882
69883 commit 6810a34677dbc446334f5e451f1682426dd33b49
69884 Author: Grant Likely <grant.likely@secretlab.ca>
69885 Date: Tue Jul 3 00:17:28 2007 -0600
69886
69887 Fix Makefile to use $(MKCONFIG) macro for all board ports
69888
69889 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69890
69891 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
69892 Author: Grant Likely <grant.likely@secretlab.ca>
69893 Date: Tue Jul 3 00:17:28 2007 -0600
69894
69895 Fix Makefile to use $(MKCONFIG) macro for all board ports
69896
69897 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69898
69899 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
69900 Author: Grant Likely <grant.likely@secretlab.ca>
69901 Date: Tue Jul 3 00:34:49 2007 -0600
69902
69903 Correct fixup relocation for mpc83xx
69904
69905 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69906
69907 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
69908 Author: Grant Likely <grant.likely@secretlab.ca>
69909 Date: Tue Jul 3 00:34:44 2007 -0600
69910
69911 Correct fixup relocation for mpc8260
69912
69913 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69914
69915 commit f3a52fe05923935db86985daf9438e2f70ac39aa
69916 Author: Grant Likely <grant.likely@secretlab.ca>
69917 Date: Tue Jul 3 00:34:39 2007 -0600
69918
69919 Correct fixup relocation for mpc824x
69920
69921 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69922
69923 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
69924 Author: Grant Likely <grant.likely@secretlab.ca>
69925 Date: Tue Jul 3 00:34:34 2007 -0600
69926
69927 Correct fixup relocation for mpc8220
69928
69929 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69930
69931 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
69932 Author: Grant Likely <grant.likely@secretlab.ca>
69933 Date: Tue Jul 3 00:34:29 2007 -0600
69934
69935 Correct fixup relocation for MPC5xxx
69936
69937 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69938
69939 commit 3649cd99ba815b6601868735765602f00ef3692b
69940 Author: Grant Likely <grant.likely@secretlab.ca>
69941 Date: Tue Jul 3 00:34:24 2007 -0600
69942
69943 Correct relocation fixup for mpc5xx
69944
69945 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69946
69947 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
69948 Author: Grant Likely <grant.likely@secretlab.ca>
69949 Date: Tue Jul 3 00:34:19 2007 -0600
69950
69951 Don't set gd->reloc_off if relocation of .fixup works correctly
69952
69953 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69954
69955 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
69956 Author: Grant Likely <grant.likely@secretlab.ca>
69957 Date: Tue Jul 3 00:34:14 2007 -0600
69958
69959 Remove obsolete mpc83xx linker scripts
69960
69961 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69962
69963 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
69964 Author: Grant Likely <grant.likely@secretlab.ca>
69965 Date: Tue Jul 3 00:34:09 2007 -0600
69966
69967 Consolidate mpc8260 linker scripts
69968
69969 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69970
69971 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
69972 Author: Grant Likely <grant.likely@secretlab.ca>
69973 Date: Tue Jul 3 00:34:04 2007 -0600
69974
69975 Remove obsolete mpc824x linker scripts
69976
69977 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69978
69979 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
69980 Author: Grant Likely <grant.likely@secretlab.ca>
69981 Date: Tue Jul 3 00:33:59 2007 -0600
69982
69983 Remove obsolete mpc824x linker scripts (3 of 4)
69984
69985 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69986
69987 commit a71c084f3ac7fedf144537db2b2da47323068833
69988 Author: Grant Likely <grant.likely@secretlab.ca>
69989 Date: Tue Jul 3 00:33:53 2007 -0600
69990
69991 Remove obsolete mpc824x linker scripts (2 of 4)
69992
69993 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
69994
69995 commit f670a15468d1365241d40022b9408e1004181f5e
69996 Author: Grant Likely <grant.likely@secretlab.ca>
69997 Date: Tue Jul 3 00:33:48 2007 -0600
69998
69999 Remove obsolete mpc824x linker scripts (1 of 4)
70000
70001 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70002
70003 commit 09555bd45a04c0e54f172528d21bc18896550d28
70004 Author: Grant Likely <grant.likely@secretlab.ca>
70005 Date: Tue Jul 3 00:33:43 2007 -0600
70006
70007 Remove obsolete mpc8220 linker scripts
70008
70009 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70010
70011 commit 5efb992f046e51225c93d52f80fecbe433abd789
70012 Author: Grant Likely <grant.likely@secretlab.ca>
70013 Date: Tue Jul 3 00:33:38 2007 -0600
70014
70015 Remove obsolete mpc5xxx linker scripts (3 of 3)
70016
70017 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70018
70019 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
70020 Author: Grant Likely <grant.likely@secretlab.ca>
70021 Date: Tue Jul 3 00:33:33 2007 -0600
70022
70023 Remove obsolete mpc5xxx linker scripts (2 of 3)
70024
70025 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70026
70027 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
70028 Author: Grant Likely <grant.likely@secretlab.ca>
70029 Date: Tue Jul 3 00:33:28 2007 -0600
70030
70031 Remove obsolete mpc5xxx linker scripts (1 of 3)
70032
70033 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70034
70035 commit b7d8e05f8675249b5f208aa73babeed384a4519d
70036 Author: Grant Likely <grant.likely@secretlab.ca>
70037 Date: Tue Jul 3 00:33:23 2007 -0600
70038
70039 Remove obsolete mpc5xx linker scripts
70040
70041 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70042
70043 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
70044 Author: Grant Likely <grant.likely@secretlab.ca>
70045 Date: Tue Jul 3 00:33:18 2007 -0600
70046
70047 Consolidate mpc83xx linker scripts
70048
70049 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70050
70051 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
70052 Author: Grant Likely <grant.likely@secretlab.ca>
70053 Date: Tue Jul 3 00:33:13 2007 -0600
70054
70055 Consolidate mpc8260 linker scripts
70056
70057 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70058
70059 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
70060 Author: Grant Likely <grant.likely@secretlab.ca>
70061 Date: Tue Jul 3 00:33:08 2007 -0600
70062
70063 Consolidate mpc824x linker scripts
70064
70065 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70066
70067 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
70068 Author: Grant Likely <grant.likely@secretlab.ca>
70069 Date: Tue Jul 3 00:33:03 2007 -0600
70070
70071 Consolidate mpc8220 linker scripts
70072
70073 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70074
70075 commit d181c9a15cd41863fe24840d17848429f27d3c8c
70076 Author: Grant Likely <grant.likely@secretlab.ca>
70077 Date: Tue Jul 3 00:32:58 2007 -0600
70078
70079 Consolidate mpc5xxx linker scripts
70080
70081 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70082
70083 commit 287ac924adb7291bebe5086652a362a30ab28b13
70084 Author: Grant Likely <grant.likely@secretlab.ca>
70085 Date: Tue Jul 3 00:32:53 2007 -0600
70086
70087 Consolidate mpc5xx linker scripts
70088
70089 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
70090
70091 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
70092 Author: Wolfgang Denk <wd@denx.de>
70093 Date: Wed Jul 4 00:43:53 2007 +0200
70094
70095 Fix a few file permission problems.
70096
70097 Signed-off-by: Wolfgang Denk <wd@denx.de>
70098
70099 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
70100 Author: Wolfgang Denk <wd@denx.de>
70101 Date: Wed Jul 4 00:38:38 2007 +0200
70102
70103 Minor coding style cleanup. Rebuild CHANGELOG file.
70104
70105 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
70106 Author: Jon Loeliger <jdl@jdl.com>
70107 Date: Mon Jun 11 19:03:44 2007 -0500
70108
70109 configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
70110
70111 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70112
70113 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
70114 Author: Jon Loeliger <jdl@jdl.com>
70115 Date: Mon Jun 11 19:03:39 2007 -0500
70116
70117 README: Rewrite command line config to use CONFIG_CMD_* names.
70118
70119 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70120
70121 commit 72a074cec68e5bad60d63206c050974e08afd804
70122 Author: Jon Loeliger <jdl@jdl.com>
70123 Date: Mon Jun 11 19:03:34 2007 -0500
70124
70125 include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70126
70127 This is a compatibility step that allows both the older form
70128 and the new form to co-exist for a while until the older can
70129 be removed entirely.
70130
70131 All transformations are of the form:
70132 Before:
70133 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70134 After:
70135 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70136
70137 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70138
70139 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
70140 Author: Jon Loeliger <jdl@jdl.com>
70141 Date: Mon Jun 11 19:03:28 2007 -0500
70142
70143 tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70144
70145 This is a compatibility step that allows both the older form
70146 and the new form to co-exist for a while until the older can
70147 be removed entirely.
70148
70149 All transformations are of the form:
70150 Before:
70151 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70152 After:
70153 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70154
70155 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70156
70157 commit 9107ebe0d352420895ab69b715697bdebc8caf50
70158 Author: Jon Loeliger <jdl@jdl.com>
70159 Date: Mon Jun 11 19:03:23 2007 -0500
70160
70161 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70162
70163 This is a compatibility step that allows both the older form
70164 and the new form to co-exist for a while until the older can
70165 be removed entirely.
70166
70167 All transformations are of the form:
70168 Before:
70169 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70170 After:
70171 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70172
70173 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70174
70175 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
70176 Author: Jon Loeliger <jdl@jdl.com>
70177 Date: Mon Jun 11 19:03:19 2007 -0500
70178
70179 board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70180
70181 This is a compatibility step that allows both the older form
70182 and the new form to co-exist for a while until the older can
70183 be removed entirely.
70184
70185 All transformations are of the form:
70186 Before:
70187 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70188 After:
70189 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70190
70191 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70192
70193 commit 737184114ec9c9e0ab94d6713536126073bd2472
70194 Author: Jon Loeliger <jdl@jdl.com>
70195 Date: Mon Jun 11 19:03:15 2007 -0500
70196
70197 cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70198
70199 This is a compatibility step that allows both the older form
70200 and the new form to co-exist for a while until the older can
70201 be removed entirely.
70202
70203 All transformations are of the form:
70204 Before:
70205 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70206 After:
70207 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70208
70209 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70210
70211 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
70212 Author: Jon Loeliger <jdl@jdl.com>
70213 Date: Mon Jun 11 19:03:08 2007 -0500
70214
70215 cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70216
70217 This is a compatibility step that allows both the older form
70218 and the new form to co-exist for a while until the older can
70219 be removed entirely.
70220
70221 All transformations are of the form:
70222 Before:
70223 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70224 After:
70225 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70226
70227 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70228
70229 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
70230 Author: Jon Loeliger <jdl@jdl.com>
70231 Date: Mon Jun 11 19:03:03 2007 -0500
70232
70233 lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70234
70235 This is a compatibility step that allows both the older form
70236 and the new form to co-exist for a while until the older can
70237 be removed entirely.
70238
70239 All transformations are of the form:
70240 Before:
70241 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70242 After:
70243 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70244
70245 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70246
70247 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
70248 Author: Jon Loeliger <jdl@jdl.com>
70249 Date: Mon Jun 11 19:02:58 2007 -0500
70250
70251 lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70252
70253 This is a compatibility step that allows both the older form
70254 and the new form to co-exist for a while until the older can
70255 be removed entirely.
70256
70257 All transformations are of the form:
70258 Before:
70259 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70260 After:
70261 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70262
70263 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70264
70265 commit 98b79003c21c2578206003256de4e781d6b36ca8
70266 Author: Jon Loeliger <jdl@jdl.com>
70267 Date: Mon Jun 11 19:02:53 2007 -0500
70268
70269 rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70270
70271 This is a compatibility step that allows both the older form
70272 and the new form to co-exist for a while until the older can
70273 be removed entirely.
70274
70275 All transformations are of the form:
70276 Before:
70277 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70278 After:
70279 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70280
70281 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70282
70283 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
70284 Author: Jon Loeliger <jdl@jdl.com>
70285 Date: Mon Jun 11 19:02:49 2007 -0500
70286
70287 net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70288
70289 This is a compatibility step that allows both the older form
70290 and the new form to co-exist for a while until the older can
70291 be removed entirely.
70292
70293 All transformations are of the form:
70294 Before:
70295 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70296 After:
70297 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70298
70299 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70300
70301 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
70302 Author: Jon Loeliger <jdl@jdl.com>
70303 Date: Mon Jun 11 19:02:34 2007 -0500
70304
70305 disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70306
70307 This is a compatibility step that allows both the older form
70308 and the new form to co-exist for a while until the older can
70309 be removed entirely.
70310
70311 All transformations are of the form:
70312 Before:
70313 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70314 After:
70315 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70316
70317 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70318
70319 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
70320 Author: Jon Loeliger <jdl@jdl.com>
70321 Date: Mon Jun 11 19:02:20 2007 -0500
70322
70323 fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70324
70325 This is a compatibility step that allows both the older form
70326 and the new form to co-exist for a while until the older can
70327 be removed entirely.
70328
70329 All transformations are of the form:
70330 Before:
70331 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70332 After:
70333 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70334
70335 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70336
70337 commit d5be43de93ff905c465e509d45a3164ef48d26e7
70338 Author: Jon Loeliger <jdl@jdl.com>
70339 Date: Mon Jun 11 19:02:10 2007 -0500
70340
70341 drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70342
70343 This is a compatibility step that allows both the older form
70344 and the new form to co-exist for a while until the older can
70345 be removed entirely.
70346
70347 All transformations are of the form:
70348 Before:
70349 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70350 After:
70351 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70352
70353 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70354
70355 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
70356 Author: Jon Loeliger <jdl@jdl.com>
70357 Date: Mon Jun 11 19:02:05 2007 -0500
70358
70359 common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70360
70361 This is a compatibility step that allows both the older form
70362 and the new form to co-exist for a while until the older can
70363 be removed entirely.
70364
70365 All transformations are of the form:
70366 Before:
70367 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70368 After:
70369 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70370
70371 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70372
70373 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
70374 Author: Jon Loeliger <jdl@jdl.com>
70375 Date: Mon Jun 11 19:01:54 2007 -0500
70376
70377 common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70378
70379 This is a compatibility step that allows both the older form
70380 and the new form to co-exist for a while until the older can
70381 be removed entirely.
70382
70383 All transformations are of the form:
70384 Before:
70385 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70386 After:
70387 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70388
70389 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70390
70391 commit a76adc8142c1d956385a109e0b70f9319ede4d66
70392 Author: Jon Loeliger <jdl@jdl.com>
70393 Date: Mon Jun 11 19:01:43 2007 -0500
70394
70395 common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
70396
70397 This is a compatibility step that allows both the older form
70398 and the new form to co-exist for a while until the older can
70399 be removed entirely.
70400
70401 All transformations are of the form:
70402 Before:
70403 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
70404 After:
70405 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
70406
70407 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70408
70409 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
70410 Author: Jon Loeliger <jdl@jdl.com>
70411 Date: Mon Jun 11 19:01:34 2007 -0500
70412
70413 Introduce initial versions of new Command Config files.
70414
70415 Derive three new files from cmd_confdefs.h:
70416 config_bootp.h - Has BOOTP related config options, not commands
70417 config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
70418 config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
70419
70420 For now, include "config_bootp.h" for compatability until all
70421 users of it directly include it properly.
70422
70423 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70424
70425 commit 1f2a05898658900dc5717761e27abf2052e67e13
70426 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
70427 Date: Sat Jun 30 18:50:48 2007 +0200
70428
70429 Fix S-ATA support.
70430
70431 Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
70432
70433 commit a5d71e290f3673269be8eefb4ec44f53412f9461
70434 Author: Heiko Schocher <hs@pollux.denx.de>
70435 Date: Mon Jun 25 19:11:37 2007 +0200
70436
70437 [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
70438
70439 Signed-off-by: Heiko Schocher <hs@denx.de>
70440
70441 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
70442 Author: Niklaus Giger <niklaus.giger@nestal.com>
70443 Date: Mon Jun 25 17:03:13 2007 +0200
70444
70445 ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
70446
70447 This patch prints the DDR status registers upon machine check
70448 interrupt on the 440EPx/GRx. This can be useful especially when
70449 ECC support is enabled.
70450
70451 I added some small changes to the original patch from Niklaus to
70452 make it compile clean.
70453
70454 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
70455 Signed-off-by: Stefan Roese <sr@denx.de>
70456
70457 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
70458 Author: Niklaus Giger <niklaus.giger@nestal.com>
70459 Date: Mon Jun 25 16:50:55 2007 +0200
70460
70461 ppc4xx: Fix O=buildir builds
70462
70463 This patch fixes the problem to assemble cpu/ppc4xx/start.S
70464 experienced last week where building failed having specified
70465 O=../build.sequoia.
70466
70467 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
70468
70469 commit 466fff1a7bb5fe764a06450626f6098219f446b8
70470 Author: Stefan Roese <sr@denx.de>
70471 Date: Mon Jun 25 15:57:39 2007 +0200
70472
70473 ppc4xx: Add pci_pre_init() for 405 boards
70474
70475 This patch removes the CFG_PCI_PRE_INIT option completely, since
70476 it's not needed anymore with the patch from Matthias Fuchs with
70477 the "weak" pci_pre_init() implementation.
70478
70479 Signed-off-by: Stefan Roese <sr@denx.de>
70480
70481 commit 6f35c53166213c24a5a0e2390ed861136ff73870
70482 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70483 Date: Sun Jun 24 17:41:21 2007 +0200
70484
70485 ppc4xx: Maintenance patch for esd's CPCI405 derivats
70486
70487 -add pci_pre_init() for pci interrupt fixup code
70488 -disable phy sleep mode via reset_phy() function
70489 -use correct io accessors
70490 -cleanup
70491
70492 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70493
70494 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
70495 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70496 Date: Sun Jun 24 17:23:41 2007 +0200
70497
70498 ppc4xx: Add pci_pre_init() for 405 boards
70499
70500 This patch adds support for calling a plattform dependant
70501 pci_pre_init() function for 405 boards. This can be used to
70502 move the current pci_405gp_fixup_irq() function into the
70503 board code.
70504
70505 This patch also makes the CFG_PCI_PRE_INIT define obsolete.
70506 A default function with 'weak' attribute is used when
70507 a board specific pci_pre_init() is not implemented.
70508
70509 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
70510
70511 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
70512 Author: Wolfgang Denk <wd@denx.de>
70513 Date: Fri Jun 22 23:59:00 2007 +0200
70514
70515 Coding stylke cleanup; rebuild CHANGELOG
70516
70517 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
70518 Author: Igor Lisitsin <igor@emcraft.com>
70519 Date: Wed Apr 18 14:55:19 2007 +0400
70520
70521 Adapt log buffer code to support Linux 2.6
70522
70523 A new environment variable, "logversion", selects the log buffer
70524 behaviour. If it is not set or set to a value other than 2, then the
70525 old, Linux 2.4.4, behaviour is selected.
70526
70527 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
70528 --
70529
70530 commit a11e06965ec91270c51853407ff1261d3c740386
70531 Author: Igor Lisitsin <igor@emcraft.com>
70532 Date: Wed Mar 28 19:06:19 2007 +0400
70533
70534 Extend POST support for PPC440
70535
70536 Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
70537
70538 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
70539 --
70540
70541 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
70542 Author: Heiko Schocher <hs@pollux.denx.de>
70543 Date: Fri Jun 22 19:11:54 2007 +0200
70544
70545 [PCS440EP] upgrade the PCS440EP board:
70546 - Show on the Status LEDs, some States of the board.
70547 - Get the MAC addresses from the EEProm
70548 - use PREBOOT
70549 - use the CF on the board.
70550 - check the U-Boot image in the Flash with a SHA1
70551 checksum.
70552 - use dynamic TLB entries generation for the SDRAM
70553
70554 Signed-off-by: Heiko Schocher <hs@denx.de>
70555
70556 commit 3a1f5c81b0b9557817a789bece839905581c2205
70557 Author: Stefan Roese <sr@denx.de>
70558 Date: Fri Jun 22 16:58:40 2007 +0200
70559
70560 ppc4xx: Fix problem with extended program_tlb() funtion
70561
70562 The recently extended program_tlb() function had a problem when
70563 multiple TLB's had to be setup (for example with 512MB of SDRAM). The
70564 virtual address was not incremented. This patch fixes this issue
70565 and is tested on Katmai with 512MB SDRAM.
70566
70567 Signed-off-by: Stefan Roese <sr@denx.de>
70568
70569 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
70570 Author: Rafal Jaworowski <raj@semihalf.com>
70571 Date: Fri Jun 22 14:58:04 2007 +0200
70572
70573 [ppc] Fix build breakage for all non-4xx PowerPC variants.
70574
70575 - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
70576 - minor 4xx cleanup
70577
70578 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
70579 Author: Mike Frysinger <vapier@gentoo.org>
70580 Date: Fri Jun 22 10:34:12 2007 +0200
70581
70582 [patch] add nand_init() prototype to nand.h
70583
70584 since nand_init() is expected to be called by other parts of u-boot, there
70585 should be a prototype for it in nand.h
70586
70587 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
70588 Signed-off-by: Stefan Roese <sr@denx.de>
70589
70590 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
70591 Author: Wolfgang Denk <wd@denx.de>
70592 Date: Wed Jun 20 18:14:24 2007 +0200
70593
70594 Coding style cleanup. Refresh CHANGELOG.
70595
70596 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
70597 Author: Stefan Roese <sr@denx.de>
70598 Date: Tue Jun 19 17:22:44 2007 +0200
70599
70600 ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
70601
70602 This patch adds a board command to configure the I2C bootstrap EEPROM
70603 values. Right now 533 and 667MHz are supported for booting either via NOR
70604 or NAND FLASH. Here the usage:
70605
70606 => bootstrap 533 nor ;to configure the board for 533MHz NOR booting
70607 => bootstrap 667 nand ;to configure the board for 667MHz NNAND booting
70608
70609 Signed-off-by: Stefan Roese <sr@denx.de>
70610
70611 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
70612 Author: Stefan Roese <sr@denx.de>
70613 Date: Tue Jun 19 16:42:31 2007 +0200
70614
70615 [ppc4xx] Fix problem with NAND booting on AMCC Acadia
70616
70617 The latest changes showed a problem with the location of the NAND-SPL
70618 image in the OCM and the init-data area (incl. cache). This patch
70619 fixes this problem.
70620
70621 Signed-off-by: Stefan Roese <sr@denx.de>
70622
70623 commit 86ba99e34194394052d24c04dc40d1263d29a26f
70624 Author: Stefan Roese <sr@denx.de>
70625 Date: Tue Jun 19 16:40:58 2007 +0200
70626
70627 [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
70628
70629 Signed-off-by: Stefan Roese <sr@denx.de>
70630
70631 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
70632 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
70633 Date: Mon Jun 18 13:50:13 2007 -0500
70634
70635 Added M5329AFEE and M5329BFEE Platforms
70636
70637 Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
70638 drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
70639 include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
70640 rtc/mcfrtc.c
70641
70642 Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
70643 common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
70644 include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
70645 include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
70646 include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
70647 lib_m68k/time.c, net/eth.c and rtc/Makefile
70648
70649 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
70650
70651 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
70652 Author: Michal Simek <monstr@monstr.eu>
70653 Date: Sun Jun 17 19:04:11 2007 +0200
70654
70655 [fix] email reparation
70656
70657 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
70658 Author: Michal Simek <monstr@monstr.eu>
70659 Date: Sun Jun 17 19:03:21 2007 +0200
70660
70661 [FIX] fix microblaze file permitission
70662
70663 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
70664 Author: Stefan Roese <sr@denx.de>
70665 Date: Fri Jun 15 11:33:41 2007 +0200
70666
70667 [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
70668
70669 Now CONFIG_440 has to be defined in all PPC440 board config files.
70670
70671 Signed-off-by: Stefan Roese <sr@denx.de>
70672
70673 commit efa35cf12d914d4caba942acd5a6c45f217de302
70674 Author: Grzegorz Bernacki <gjb@semihalf.com>
70675 Date: Fri Jun 15 11:19:28 2007 +0200
70676
70677 ppc4xx: Clean up 440 exceptions handling
70678
70679 - Introduced dedicated switches for building 440 and 405 images required
70680 for 440-specific machine instructions like 'rfmci' etc.
70681
70682 - Exception vectors moved to the proper location (_start moved away from
70683 the critical exception handler space, which it occupied)
70684
70685 - CriticalInput now serviced (with default handler)
70686
70687 - MachineCheck properly serviced (added a dedicated handler and return
70688 subroutine)
70689
70690 - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
70691 unhandled and those not relevant for 4xx were eliminated)
70692
70693 - Eliminated Linux leftovers, removed dead code
70694
70695 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
70696 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
70697 Signed-off-by: Stefan Roese <sr@denx.de>
70698
70699 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
70700 Author: Stefan Roese <sr@denx.de>
70701 Date: Fri Jun 15 08:18:01 2007 +0200
70702
70703 [ppc4xx] Add initial lwmon5 board support
70704
70705 This patch adds initial support for the Liebherr lwmon5 board euqipped
70706 with an AMCC 440EPx PowerPC.
70707
70708 Signed-off-by: Stefan Roese <sr@denx.de>
70709
70710 commit 85f737376d5ff3d5f0d45a8b657686326d175307
70711 Author: Stefan Roese <sr@denx.de>
70712 Date: Fri Jun 15 07:39:43 2007 +0200
70713
70714 [ppc4xx] Extend 44x GPIO setup with default output state
70715
70716 The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
70717 is extended with the default GPIO output state (level).
70718
70719 Signed-off-by: Stefan Roese <sr@denx.de>
70720
70721 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
70722 Author: Stefan Roese <sr@denx.de>
70723 Date: Thu Jun 14 11:14:32 2007 +0200
70724
70725 [ppc4xx] Extend program_tlb() with virtual & physical addresses
70726
70727 Now program_tlb() allows to program a TLB (or multiple) with
70728 different virtual and physical addresses. With this change, now one
70729 physical region (e.g. SDRAM) can be mapped 2 times, once with caches
70730 diabled and once with caches enabled.
70731
70732 Signed-off-by: Stefan Roese <sr@denx.de>
70733
70734 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
70735 Author: Detlev Zundel <dzu@denx.de>
70736 Date: Wed May 23 19:02:41 2007 +0200
70737
70738 Change 'repeatable' attribute of some commands to sensible values.
70739
70740 Most prominently this changes 'erase' to be non-repeatable.
70741
70742 Signed-off-by: Detlev Zundel <dzu@denx.de>
70743
70744 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
70745 Author: Detlev Zundel <dzu@denx.de>
70746 Date: Wed May 23 18:47:48 2007 +0200
70747
70748 Fix 'run' not to continue after interrupted command
70749
70750 Signed-off-by: Detlev Zundel <dzu@denx.de>
70751
70752 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
70753 Author: Jason Jin <Jason.jin@freescale.com>
70754 Date: Mon Jun 11 15:14:24 2007 +0200
70755
70756 USB: This patch fix readl in ohci swap reg access.
70757
70758 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
70759
70760 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
70761 Author: Bartlomiej Sieka <tur@semihalf.com>
70762 Date: Fri Jun 8 14:52:22 2007 +0200
70763
70764 TQM5200: Add Flat Device Tree support, update default env. accordingly.
70765
70766 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
70767 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
70768
70769 commit 9045f33c023f698660a2e45d1b2194c0711abebc
70770 Author: Wolfgang Denk <wd@denx.de>
70771 Date: Fri Jun 8 10:24:58 2007 +0200
70772
70773 Fix config problems on SC3 board; make ide_reset_timeout work.
70774
70775 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
70776 Author: Benoît Monin <bmonin@adeneo.eu>
70777 Date: Fri Jun 8 09:55:24 2007 +0200
70778
70779 [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
70780
70781 Set the correct value in GPIOx_TCR when configuring the gpio
70782 with CFG_440_GPIO_TABLE.
70783
70784 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
70785 Signed-off-by: Stefan Roese <sr@denx.de>
70786
70787 commit f539edc076cfe52bff919dd512ba8d7af0e22092
70788 Author: Vadim Bendebury <vbendeb@google.com>
70789 Date: Thu May 24 15:52:25 2007 -0700
70790
70791 cosmetic changes to bcm570x driver
70792
70793 This is a cosmetic only changes submission.
70794 It affects files relevant to bcm570x driver.
70795 the commands used to generate this change was
70796
70797 cd drivers
70798 Lindent -pcs -l80 bcm570x.c bcm570x_lm.h bcm570x_mm.h tigon3.c tigon3.h
70799
70800 The BMW target (the only one using this chip so far) builds cleanly, the
70801 `before and after' generated object files for drivers/bcm570x.c and
70802 drivers/tigon3.o are identical as reported by objdump -d
70803
70804 Signed-off-by: Vadim Bendebury <vbendeb@google.com>
70805 Signed-off-by: Ben Warren <bwarren@qstreams.com>
70806
70807 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
70808 Author: Wolfgang Denk <wd@denx.de>
70809 Date: Wed Jun 6 16:26:56 2007 +0200
70810
70811 Coding Style cleanup; generate new CHANGELOG file.
70812
70813 Signed-off-by: Wolfgang Denk <wd@denx.de>
70814
70815 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
70816 Author: Markus Klotzbuecher <mk@denx.de>
70817 Date: Wed Jun 6 11:49:44 2007 +0200
70818
70819 TRAB, USB: update trab board configuration for use of generic ohci driver
70820
70821 commit dace45acd1c1357daa9322099d07c9a9e08b0024
70822 Author: Markus Klotzbuecher <mk@denx.de>
70823 Date: Wed Jun 6 11:49:43 2007 +0200
70824
70825 USB: ohci fixes and cleanup for ppc4xx and yosemite board.
70826
70827 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
70828 Author: Markus Klotzbuecher <mk@denx.de>
70829 Date: Wed Jun 6 11:49:43 2007 +0200
70830
70831 USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
70832
70833 commit fc43be478f2aa37ce38acd85355038866e4162af
70834 Author: Markus Klotzbuecher <mk@denx.de>
70835 Date: Wed Jun 6 11:49:35 2007 +0200
70836
70837 USB/OHCI: endianness cleanup in the generic ohci driver
70838
70839 commit c440bfe6d6d92d66478a7e84402b31f48413617b
70840 Author: Stefan Roese <sr@denx.de>
70841 Date: Wed Jun 6 11:42:13 2007 +0200
70842
70843 ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
70844
70845 This patch adds NAND booting support for the AMCC Acadia eval board.
70846
70847 Please make sure to configure jumper J7 to position 2-3 when booting
70848 from NOR, and to position 1-2 when booting for NAND.
70849
70850 I also added a board command to configure the I2C bootstrap EEPROM
70851 values. Right now only 267MHz is support for booting either via NOR
70852 or NAND FLASH. Here the usage:
70853
70854 => bootstrap 267 nor ;to configure the board for 267MHz NOR booting
70855 => bootstrap 267 nand ;to configure the board for 267MHz NNAND booting
70856
70857 Signed-off-by: Stefan Roese <sr@denx.de>
70858
70859 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
70860 Author: Rodolfo Giometti <giometti@linux.it>
70861 Date: Wed Jun 6 10:08:14 2007 +0200
70862
70863 Files include/linux/byteorder/{big,little}_endian.h define
70864 __BIG_ENDIAN and __LITTLE_ENDIAN.
70865
70866 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
70867
70868 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
70869 Author: Zhang Wei <wei.zhang@freescale.com>
70870 Date: Wed Jun 6 10:08:14 2007 +0200
70871
70872 Add USB PCI-OHCI, USB keyboard and event poll support to the
70873 MPC8641HPCN board config file.
70874
70875 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
70876
70877 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
70878 Author: Zhang Wei <wei.zhang@freescale.com>
70879 Date: Wed Jun 6 10:08:14 2007 +0200
70880
70881 USB PCI-OHCI, interrupt pipe and usb event poll support
70882
70883 This patch added USB PCI-OHCI chips support, interrupt pipe support
70884 and usb event poll support. For supporting the USB interrupt pipe, the
70885 globe urb_priv is moved to purb in ed struct. Now, we can process
70886 several urbs at one time. The interrupt pipe support codes are ported
70887 from Linux kernel 2.4.
70888
70889 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
70890
70891 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
70892 Author: Zhang Wei <wei.zhang@freescale.com>
70893 Date: Wed Jun 6 10:08:13 2007 +0200
70894
70895 USB event poll support
70896
70897 This patch adds USB event poll support, which could be used in usbkbd
70898 and other usb devices driver when the asynchronous interrupt
70899 processing is supported.
70900
70901 Signed-off-by: Zhang Wei <wei.zhang@freescale.com
70902
70903 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
70904 Author: Rodolfo Giometti <giometti@linux.it>
70905 Date: Wed Jun 6 10:08:12 2007 +0200
70906
70907 ISP116x: delay for crappy USB keys
70908
70909 Using some (very) slow USB keys cause the USB host controller buffers
70910 are not ready to be read by the CPU so we need an extra delay before
70911 reading the USB storage data.
70912
70913 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
70914
70915 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
70916 Author: Markus Klotzbuecher <mk@denx.de>
70917 Date: Wed Jun 6 10:08:12 2007 +0200
70918
70919 Change duplicate usb_cpu_init_fail to usb_board_init_fail
70920
70921 Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
70922 this out.
70923
70924 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
70925
70926 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
70927 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
70928 Date: Tue Jun 5 12:30:52 2007 -0500
70929
70930 mpc8641 image size cleanup
70931
70932 e600 does not have a bootpg restriction.
70933 Move the version string to beginning of image at fff00000.
70934 Resetvec.S is not needed.
70935 Update flash copy instructions.
70936 Add tftpflash env variable
70937
70938 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
70939 Signed-off-by: Jon Loeliger <jdl@freescale.com>
70940
70941 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
70942 Author: Benoît Monin <bmonin@adeneo.eu>
70943 Date: Mon Jun 4 08:36:05 2007 +0200
70944
70945 [PATCH] Fix ppc4xx bootstrap letter displayed on startup
70946
70947 The attached patch is mainly cosmetic, allowing u-boot to
70948 display the correct bootstrap option letter according to the
70949 datasheets.
70950
70951 The original patch was extended with 405EZ support by Stefan
70952 Roese.
70953
70954 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
70955 Signed-off-by: Stefan Roese <sr@denx.de>
70956
70957 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
70958 Author: Nikita V. Youshchenko <yoush@debian.org>
70959 Date: Wed May 23 12:45:19 2007 +0400
70960
70961 fix compilation problem for mpc8349itx CFG_RAMBOOT
70962
70963 Current include/configs/MPC8349ITX.h does contain some support for building
70964 image that will be started from memory (without putting in into flash).
70965 It could be triggered by building with TEXT_BASE set to a low value.
70966
70967 However, this support is incomplete: using of low TEXT_BASE causes
70968 defining configuration macros in inconsistent way, which later leads
70969 to compilation errors. In particular. flash support is being disabled,
70970 but then flash structures get referenced.
70971
70972 This patch fixes this, making it possible to build with low TEXT_BASE.
70973
70974 Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
70975
70976 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
70977
70978 commit 8a364f0970de49949d635e60accf463c6443ef8c
70979 Author: Nikita V. Youshchenko <yoush@debian.org>
70980 Date: Wed May 23 12:45:25 2007 +0400
70981
70982 add missing 'console' var to default mpc8349itx config
70983
70984 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
70985
70986 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
70987 Author: Stefan Roese <sr@denx.de>
70988 Date: Fri Jun 1 16:18:17 2007 +0200
70989
70990 ppc4xx: Add missing file for Bamboo NAND booting support
70991
70992 Signed-off-by: Stefan Roese <sr@denx.de>
70993
70994 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
70995 Author: Stefan Roese <sr@denx.de>
70996 Date: Fri Jun 1 15:58:19 2007 +0200
70997
70998 ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
70999
71000 This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
71001 suggested by AMCC it is not recommended to dynamically change the EBC
71002 speed after bootup. So we undo this change to be on the safe side.
71003
71004 Signed-off-by: Stefan Roese <sr@denx.de>
71005
71006 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
71007 Author: Stefan Roese <sr@denx.de>
71008 Date: Fri Jun 1 15:29:04 2007 +0200
71009
71010 ppc4xx: Update Sequoia NAND booting support with ECC
71011
71012 Signed-off-by: Stefan Roese <sr@denx.de>
71013
71014 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
71015 Author: Stefan Roese <sr@denx.de>
71016 Date: Fri Jun 1 15:27:11 2007 +0200
71017
71018 ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
71019
71020 This patch adds NAND booting support for the AMCC Bamboo eval board.
71021 Since the NAND-SPL boot image is limited to 4kbytes, this version
71022 only supports the onboard 64MBytes of DDR. The DIMM modules can't be
71023 supported, since the setup code for I2C DIMM autodetection and
71024 configuration is too big for this NAND bootloader.
71025
71026 Signed-off-by: Stefan Roese <sr@denx.de>
71027
71028 commit 42be56f53c8b107868e6125c8524ae84293e95a7
71029 Author: Stefan Roese <sr@denx.de>
71030 Date: Fri Jun 1 15:23:04 2007 +0200
71031
71032 NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
71033
71034 The U-Boot NAND booting support is now extended to support ECC
71035 upon loading of the NAND U-Boot image.
71036
71037 Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
71038
71039 Signed-off-by: Stefan Roese <sr@denx.de>
71040
71041 commit a471db07fbb65a841ffc9f4f112562b945230f98
71042 Author: Stefan Roese <sr@denx.de>
71043 Date: Fri Jun 1 15:19:29 2007 +0200
71044
71045 ppc4xx: Prepare Bamboo port for NAND booting support
71046
71047 This patch updates the "normal" Bamboo NOR booting port, so
71048 that it is compatible with the coming soon NAND booting
71049 Bamboo port.
71050
71051 It also enables the 2nd NAND flash on the Bamboo.
71052
71053 Signed-off-by: Stefan Roese <sr@denx.de>
71054
71055 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
71056 Author: Stefan Roese <sr@denx.de>
71057 Date: Fri Jun 1 15:16:58 2007 +0200
71058
71059 ppc4xx: Update in_be32() functions and friends to latest Linux version
71060
71061 Signed-off-by: Stefan Roese <sr@denx.de>
71062
71063 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
71064 Author: Stefan Roese <sr@denx.de>
71065 Date: Fri Jun 1 15:15:12 2007 +0200
71066
71067 NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
71068
71069 This patch adds hardware ECC support to the NDFC driver. It also
71070 changes the register access from using the "simple" in32/out32
71071 functions to the in_be32/out_be32 functions, which make sure
71072 that the access is correctly synced. This is the only recommended
71073 access to SoC registers in the current Linux kernel.
71074
71075 Signed-off-by: Stefan Roese <sr@denx.de>
71076
71077 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
71078 Author: Stefan Roese <sr@denx.de>
71079 Date: Fri Jun 1 15:12:15 2007 +0200
71080
71081 NAND: Update nand_ecc.c to latest Linux version
71082
71083 This patch updates the nand_ecc code to the latest Linux version.
71084 The main reason for this is the more compact code. This makes
71085 it possible to include the ECC code into the NAND bootloader
71086 image (NAND_SPL) for PPC4xx.
71087
71088 Signed-off-by: Stefan Roese <sr@denx.de>
71089
71090 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
71091 Author: Stefan Roese <sr@denx.de>
71092 Date: Fri Jun 1 15:09:50 2007 +0200
71093
71094 ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
71095
71096 Signed-off-by: Stefan Roese <sr@denx.de>
71097
71098 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
71099 Author: Stefan Roese <sr@denx.de>
71100 Date: Fri Jun 1 13:45:24 2007 +0200
71101
71102 ppc4xx: Change Luan config file to support ECC
71103
71104 With the updated 44x DDR2 driver the Luan board now supports
71105 ECC generation and checking.
71106
71107 Signed-off-by: Stefan Roese <sr@denx.de>
71108
71109 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
71110 Author: Stefan Roese <sr@denx.de>
71111 Date: Fri Jun 1 13:45:00 2007 +0200
71112
71113 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
71114
71115 Add config option for 180 degree advance clock control as needed
71116 for the AMCC Luan eval board.
71117
71118 Signed-off-by: Stefan Roese <sr@denx.de>
71119
71120 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
71121 Author: Wolfgang Denk <wd@denx.de>
71122 Date: Thu May 31 17:20:09 2007 +0200
71123
71124 Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
71125
71126 Signed-off-by: Wolfgang Denk <wd@denx.de>
71127
71128 commit 7049288fb1f16f1b317140226cdebd07bd416395
71129 Author: Bartlomiej Sieka <tur@semihalf.com>
71130 Date: Sun May 27 17:26:46 2007 +0200
71131
71132 Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
71133
71134 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
71135
71136 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
71137 Author: Bartlomiej Sieka <tur@semihalf.com>
71138 Date: Sun May 27 17:06:36 2007 +0200
71139
71140 Motion-PRO: Add support for redundant environment.
71141
71142 Enable redundant environment, add a MTD partition for it; also add env.
71143 variable command for passing MTD partitions to the kernel command line.
71144
71145 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71146 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71147
71148 commit a26eabeec31746f06d309103690892805696e344
71149 Author: Bartlomiej Sieka <tur@semihalf.com>
71150 Date: Sun May 27 17:05:11 2007 +0200
71151
71152 Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
71153
71154 Allow passing longer command line to the kernel - useful especially
71155 for passing MTD partition layout.
71156
71157 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71158 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71159
71160 commit 9160b96f71483a116de81c68985e8ee306d36764
71161 Author: Bartlomiej Sieka <tur@semihalf.com>
71162 Date: Sun May 27 17:04:18 2007 +0200
71163
71164 Fix: Add missing NULL termination in strings expanded by macros parser.
71165
71166 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71167 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71168
71169 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
71170 Author: Bartlomiej Sieka <tur@semihalf.com>
71171 Date: Sun May 27 17:03:37 2007 +0200
71172
71173 Motion-PRO: Update EEPROM's page write bits and write delay.
71174
71175 Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
71176 have a page write capability of two bytes", and "This device offers fast (1ms)
71177 byte write". Add 3ms of extra delay.
71178
71179 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71180 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71181
71182 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
71183 Author: Bartlomiej Sieka <tur@semihalf.com>
71184 Date: Sun May 27 16:58:45 2007 +0200
71185
71186 MPC5XXX, Motion-PRO: Fix PHY initialization problem.
71187
71188 After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
71189 networking does not function. This commit switches PHY to TX mode by clearing
71190 the FX_SEL bit of Mode Control Register. It also reverses commit
71191 008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
71192
71193 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71194 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71195
71196 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
71197 Author: Bartlomiej Sieka <tur@semihalf.com>
71198 Date: Sun May 27 16:57:15 2007 +0200
71199
71200 Motion-PRO: Add support for the temperature sensor.
71201
71202 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
71203 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71204
71205 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
71206 Author: Bartlomiej Sieka <tur@semihalf.com>
71207 Date: Sun May 27 16:55:23 2007 +0200
71208
71209 Motion-PRO: Add displaying of CPLD revision information during boot.
71210
71211 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
71212 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71213
71214 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
71215 Author: Bartlomiej Sieka <tur@semihalf.com>
71216 Date: Sun May 27 16:53:43 2007 +0200
71217
71218 MPC5xxx: Change names of defines related to IPB and PCI clocks.
71219
71220 Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
71221 them does not cause PCI or IPB clocks to run at the specified speed.
71222 Instead, they configure divisors used to calculate said clocks. This
71223 patch renames the defines according to their real function.
71224
71225 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
71226 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71227
71228 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
71229 Author: Bartlomiej Sieka <tur@semihalf.com>
71230 Date: Sun May 27 16:51:48 2007 +0200
71231
71232 Motion-PRO: Add LED support.
71233
71234 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
71235 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
71236 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
71237
71238 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
71239 Author: Ulf Samuelsson <ulf@atmel.com>
71240 Date: Thu May 24 12:12:47 2007 +0200
71241
71242 [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
71243
71244 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
71245 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
71246 Signed-off-by: Stefan Roese <sr@denx.de>
71247
71248 commit d756894722c888d09a9fa1df8323753772d3dcce
71249 Author: Stefan Roese <sr@denx.de>
71250 Date: Thu May 24 09:49:00 2007 +0200
71251
71252 ppc4xx: Fix small 405EZ OCM initilization bug in start.S
71253
71254 As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
71255 fixes a small bug in the 405EZ OCM initialization. Thanks for
71256 spotting.
71257
71258 Signed-off-by: Stefan Roese <sr@denx.de>
71259
71260 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
71261 Author: Stefan Roese <sr@denx.de>
71262 Date: Thu May 24 08:22:09 2007 +0200
71263
71264 ppc4xx: Update AMCC Acadia support for board revision 1.1
71265
71266 This patch updates the Acadia (405EZ) support for the new 1.1 board
71267 revision. It also adds support for NAND FLASH via the 4xx NDFC.
71268
71269 Please note that the jumper J7 must be in position 2-3 for this
71270 NAND support. Position 1-2 is for NAND booting only. NAND booting
71271 support will follow later.
71272
71273 Signed-off-by: Stefan Roese <sr@denx.de>
71274
71275 commit 822d55365bb557e084d0e33625a6dedcc866110b
71276 Author: Jon Loeliger <jdl@freescale.com>
71277 Date: Wed May 23 14:09:46 2007 -0500
71278
71279 Add LIST_86xx MAKEALL target for PowerPC builds.
71280
71281 Signed-off-by: Jon Loeliger <jdl@freescale.com>
71282
71283 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
71284 Author: Stefan Roese <sr@denx.de>
71285 Date: Tue May 22 12:48:09 2007 +0200
71286
71287 ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
71288
71289 Signed-off-by: Stefan Roese <sr@denx.de>
71290
71291 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
71292 Author: Stefan Roese <sr@denx.de>
71293 Date: Tue May 22 12:46:10 2007 +0200
71294
71295 ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
71296
71297 This patch adds support for 405 PPC's to the 4xx NAND driver
71298 ndfc.c. This is in preparation for the new AMCC 405EZ.
71299
71300 Signed-off-by: Stefan Roese <sr@denx.de>
71301
71302 commit 10603d76767426be803dadd4fb688b97eb69481c
71303 Author: Stefan Roese <sr@denx.de>
71304 Date: Mon May 21 07:41:22 2007 +0200
71305
71306 ppc4xx: Fix problem in 405EZ OCM initialization
71307
71308 As spotted by Bruce Adler this patch fixes an initialization problem
71309 for the 405EZ OCM.
71310
71311 Signed-off-by: Stefan Roese <sr@denx.de>
71312
71313 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
71314 Author: Peter Pearse <peter.pearse@arm.com>
71315 Date: Fri May 18 16:47:03 2007 +0100
71316
71317 Reduce line lengths to 80 characters max.
71318
71319 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
71320 Author: Peter Pearse <peter.pearse@arm.com>
71321 Date: Fri May 18 14:34:07 2007 +0100
71322
71323 Makefile permissions
71324
71325 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
71326 Author: Peter Pearse <peter.pearse@arm.com>
71327 Date: Fri May 18 14:33:11 2007 +0100
71328
71329 Makefile permissions
71330
71331 commit 255a3577c848706441daee0174543efe205a77f8
71332 Author: Kim Phillips <kim.phillips@freescale.com>
71333 Date: Wed May 16 16:52:19 2007 -0500
71334
71335 Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
71336
71337 For all practical u-boot purposes, TSECs don't differ throughout the
71338 mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
71339
71340 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71341
71342 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
71343 Author: Stefano Babic <sbabic@denx.de>
71344 Date: Wed May 16 14:49:12 2007 +0200
71345
71346 Fix compile problem cause my Microblaze merge
71347
71348 Signed-off-by: Stefano Babic <sbabic@denx.de>
71349
71350 commit ada4697d0230d6da552867777f98a67ec3ba2579
71351 Author: Jeffrey Mann <mannj@embeddedplanet.com>
71352 Date: Wed May 16 13:23:10 2007 +0200
71353
71354 [PATCH] Run new sequoia boards with an EBC speed of 83MHz
71355
71356 Because the Sequoia board does not boot with an EBC faster than 66MHz,
71357 the clock divider are changed after the initial boot process.
71358
71359 This allows for maximum clocking speeds to be achieved on newer boards.
71360 Sequoia boards with 666.66 MHz processors require that the EBC divider
71361 be set to 3 in order to start the initial boot process at a slower EBC
71362 speed. After the initial boot process, the divider can be set back to 2,
71363 which will cause the boards to run at 83.333MHz. This is backward
71364 compatible with boards with 533.33 MHz processors, as these boards will
71365 already be set with an EBC divider of 2.
71366
71367 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
71368
71369 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
71370 Author: Wolfgang Denk <wd@denx.de>
71371 Date: Wed May 16 01:16:53 2007 +0200
71372
71373 Minor Coding Style cleanup, update CHANGELOG.
71374
71375 Signed-off-by: Wolfgang Denk <wd@denx.de>
71376
71377 commit d62f64cc23a940eafe712c776b3249e4160753d1
71378 Author: Wolfgang Denk <wd@denx.de>
71379 Date: Wed May 16 00:13:33 2007 +0200
71380
71381 Coding Style Cleanup, new CHANGELOG
71382
71383 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
71384 Author: Wolfgang Denk <wd@denx.de>
71385 Date: Tue May 15 23:38:05 2007 +0200
71386
71387 Minor coding style cleanup.
71388
71389 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
71390 Author: mushtaq khan <mushtaq_k@procsys.com>
71391 Date: Fri Apr 20 14:23:02 2007 +0530
71392
71393 Add driver for S-ATA-controller on Intel processors with South
71394 Bridge, ICH-5, ICH-6 and ICH-7.
71395
71396 Implementation:
71397
71398 1. Code is divided in to two files. All functions, which are
71399 controller specific are kept in "drivers/ata_piix.c" file and
71400 functions, which are not controller specific, are kept in
71401 "common/cmd_sata.c" file.
71402
71403 2. Reading and Writing from the S-ATA drive is done using PIO method.
71404
71405 3. Driver can be configured for 48-bit addressing by defining macro
71406 CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
71407 addressing.
71408
71409 4. S-ATA read function is hooked to the File system, commands like
71410 ext2ls and ext2load file can be used. This has been tested.
71411
71412 5. U-Boot command "SATA_init" is added, which initializes the S-ATA
71413 controller and identifies the S-ATA drives connected to it.
71414
71415 6. U-Boot command "sata" is added, which is used to read/write, print
71416 partition table and get info about the drives present. This I have
71417 implemented in same way as "ide" command is implemented in U-Boot.
71418
71419 7. This driver is for S-ATA in native mode.
71420
71421 8. This driver does not support the Native command queuing and
71422 Hot-plugging.
71423
71424 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
71425
71426 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
71427 Author: mushtaq khan <mushtaq_k@procsys.com>
71428 Date: Mon Apr 30 15:57:22 2007 +0530
71429
71430 Fixes bug clearing the bss section for i386
71431
71432 Hi,
71433 There is a bug in the code of clearing the bss section for processor
71434 i386.(File: cpu/i386/start.S)
71435 In the code, bss_start addr (starting addr of bss section) is put into
71436 the register %eax, but the code which clears the bss section refers to
71437 the addr pointed by %edi.
71438
71439 This patch fixes this bug by putting bss_start into %edi register.
71440
71441 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
71442
71443 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
71444 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
71445 Date: Mon Apr 30 16:47:28 2007 -0500
71446
71447 Add support for BCM5464 Quad Phy
71448
71449 Added support for Broadcom's BCM5464 Quad Phy
71450
71451 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
71452
71453 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
71454 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
71455 Date: Wed May 9 08:10:57 2007 +0800
71456
71457 Search the exception table with linear algorithm
71458
71459 Search the exception table with linear algorithm instead of
71460 bisecting algorithm.
71461 Because the exception table might be unsorted.
71462
71463 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
71464
71465 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
71466 Author: Aubrey.Li <aubrey.adi@gmail.com>
71467 Date: Mon May 14 11:47:35 2007 +0800
71468
71469 Fix compilation issues on MACOSX
71470
71471 Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
71472 Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
71473
71474 commit 56fd7162985c412317bbf763a225fba23c64fd31
71475 Author: Stephen Williams <steve@icarus.com>
71476 Date: Tue May 15 07:55:42 2007 -0700
71477
71478 Fix for compile of JSE target
71479
71480 The attached patch fixes the compile of the JSE board in the
71481 denx git as of 14 may 2007. It is an extremely simple patch,
71482 it just adds the missing define of CFG_SYSTEMACE_WIDTH.
71483
71484 Fix to compile JSE against 20070514 git of u-boot
71485
71486 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
71487 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
71488 Date: Sun May 13 21:01:03 2007 +0900
71489
71490 sh: MS7750SE support.
71491
71492 This adds support for the Hitachi MS7750SE.
71493
71494 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
71495
71496 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
71497 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
71498 Date: Sun May 13 20:58:00 2007 +0900
71499
71500 sh: First support code of SuperH.
71501
71502 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
71503
71504 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
71505 Author: Stefan Roese <sr@denx.de>
71506 Date: Fri May 11 12:01:49 2007 +0200
71507
71508 ppc4xx: Add mtcpr/mfcpr access macros
71509
71510 Signed-off-by: Stefan Roese <sr@denx.de>
71511
71512 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
71513 Author: Stefan Roese <sr@denx.de>
71514 Date: Fri May 11 12:01:06 2007 +0200
71515
71516 ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
71517
71518 Signed-off-by: Stefan Roese <sr@denx.de>
71519
71520 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
71521 Author: Piotr Kruszynski <ppk@semihalf.com>
71522 Date: Thu May 10 16:55:52 2007 +0200
71523
71524 [Motion-PRO] Add MTD and JFFS2 support, also add default partition
71525 definition.
71526
71527 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
71528 Author: Peter Pearse <peter.pearse@arm.com>
71529 Date: Wed May 9 11:42:44 2007 +0100
71530
71531 Add the board directory for SMN42
71532
71533 commit 160131bf965785419626df6c388729fe0b597992
71534 Author: Peter Pearse <peter.pearse@arm.com>
71535 Date: Wed May 9 11:41:58 2007 +0100
71536
71537 Add the files for the SMN42 board
71538
71539 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
71540 Author: Peter Pearse <peter.pearse@arm.com>
71541 Date: Wed May 9 11:40:34 2007 +0100
71542
71543 Remove the deleted files for the SMN42 patch
71544
71545 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
71546 Author: Peter Pearse <peter.pearse@arm.com>
71547 Date: Wed May 9 11:37:56 2007 +0100
71548
71549 New board SMN42 branch
71550
71551 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
71552 Author: Peter Pearse <peter.pearse@arm.com>
71553 Date: Wed May 9 10:24:38 2007 +0100
71554
71555 Makefile permissions
71556
71557 commit b84289b595731e8851df46e893845cc1322c9b9b
71558 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
71559 Date: Tue May 8 14:17:07 2007 -0500
71560
71561 8641hpcn: Fix Makefile after moving pixis to board/freescale.
71562
71563 The OBJTREE != SRCTREE build scenario was broken.
71564 This fixes it.
71565
71566 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
71567 Signed-off-by: Jon Loeliger <jdl@freescale.com>
71568
71569 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
71570 Author: Michal Simek <monstr@monstr.eu>
71571 Date: Tue May 8 15:57:43 2007 +0200
71572
71573 add: reading special purpose registers
71574
71575 commit 1a50f164beb065f360fbddb76029607d6b099698
71576 Author: Michal Simek <monstr@monstr.eu>
71577 Date: Tue May 8 14:52:52 2007 +0200
71578
71579 add: Microblaze V5 exception handling
71580
71581 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
71582 Author: Michal Simek <monstr@monstr.eu>
71583 Date: Tue May 8 14:39:11 2007 +0200
71584
71585 add: FSL control read and write
71586
71587 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
71588 Author: Piotr Kruszynski <ppk@semihalf.com>
71589 Date: Tue May 8 13:05:44 2007 +0200
71590
71591 [Motion-PRO] Add support for I2C, EEPROM and RTC.
71592
71593 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
71594 Author: Bartlomiej Sieka <tur@semihalf.com>
71595 Date: Tue May 8 10:23:56 2007 +0200
71596
71597 [Motion-PRO] Add ATA support. Add CF-booting commands to the default
71598 environment.
71599
71600 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
71601 Author: Bartlomiej Sieka <tur@semihalf.com>
71602 Date: Tue May 8 09:39:12 2007 +0200
71603
71604 [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
71605 eliminates networking problems in Linux (timeouts).
71606
71607 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
71608 Author: Bartlomiej Sieka <tur@semihalf.com>
71609 Date: Tue May 8 09:21:57 2007 +0200
71610
71611 [Motion-PRO] Enable Flat Device Tree support and modify default environment
71612 to allow booting of FDT-expecting kernels.
71613
71614 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
71615 Author: Michal Simek <monstr@monstr.eu>
71616 Date: Mon May 7 23:58:31 2007 +0200
71617
71618 new: USE_MSR_INTR support
71619
71620 commit 008861a2f3ef2c062744d733787c7e530a1b8761
71621 Author: Bartlomiej Sieka <tur@semihalf.com>
71622 Date: Mon May 7 22:36:15 2007 +0200
71623
71624 [MPC5xxx] There are networking problems on the Motion-PRO board with
71625 current PHY initalization code (tftp timeouts all the time). This commit
71626 temporarily disables PHY initalization sequence to make the networking
71627 operational, until a fix is found.
71628
71629 commit abca901869c3760b6c5fecb825db6c1d91a78a93
71630 Author: Wolfgang Denk <wd@denx.de>
71631 Date: Mon May 7 22:10:36 2007 +0200
71632
71633 Get rid of duplicated file (see include/configs/sbc8560.h instead)
71634
71635 Signed-off-by: Wolfgang Denk <wd@denx.de>
71636
71637 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
71638 Author: Wolfgang Denk <wd@denx.de>
71639 Date: Mon May 7 22:07:08 2007 +0200
71640
71641 Get rid of duplicated file (see doc/README.SBC8560 instead)
71642
71643 Signed-off-by: Wolfgang Denk <wd@denx.de>
71644
71645 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
71646 Author: Michal Simek <monstr@monstr.eu>
71647 Date: Mon May 7 19:43:10 2007 +0200
71648
71649 fix: read and write MSR - repair number of parameters
71650
71651 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
71652 Author: Jeffrey Mann <mannj@embeddedplanet.com>
71653 Date: Mon May 7 19:42:49 2007 +0200
71654
71655 [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
71656
71657 A '3' got cut off in the formatting of the last patch to automatically
71658 change the clock speed of the system clock on sequoia board.
71659
71660 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
71661 Signed-off-by: Stefan Roese <sr@denx.de>
71662
71663 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
71664 Author: Michal Simek <monstr@monstr.eu>
71665 Date: Mon May 7 19:33:51 2007 +0200
71666
71667 new: fsl interrupt support
71668 FSL_Has_data is connected to INTC.
71669
71670 commit 792032baa7d625e34c981ab6df521911bd8dc861
71671 Author: Michal Simek <monstr@monstr.eu>
71672 Date: Mon May 7 19:30:12 2007 +0200
71673
71674 fix: interrupt handler
71675 remove asm code
71676
71677 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
71678 Author: Michal Simek <monstr@monstr.eu>
71679 Date: Mon May 7 19:25:08 2007 +0200
71680
71681 fix: remove asm code
71682
71683 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
71684 Author: Michal Simek <monstr@monstr.eu>
71685 Date: Mon May 7 19:12:43 2007 +0200
71686
71687 fix: clean interrupt
71688
71689 commit 42efed6130c8fcf7da881385b5427065d2801757
71690 Author: Michal Simek <monstr@monstr.eu>
71691 Date: Mon May 7 17:22:25 2007 +0200
71692
71693 fix: interrupt handler for multiple sources
71694
71695 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
71696 Author: Michal Simek <monstr@monstr.eu>
71697 Date: Mon May 7 17:11:09 2007 +0200
71698
71699 new: add writing to msr register
71700
71701 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
71702 Author: Markus Klotzbuecher <mk@denx.de>
71703 Date: Mon May 7 16:43:56 2007 +0200
71704
71705 Fix an ancient CHANGELOG conflict
71706
71707 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
71708 Author: Timur Tabi <timur@freescale.com>
71709 Date: Sat May 5 08:12:30 2007 +0200
71710
71711 5xxx: write MAC address to mac-address and local-mac-address
71712
71713 Some device trees have a mac-address property, some have local-mac-address,
71714 and some have both. To support all of these device trees, ftp_cpu_setup()
71715 should write the MAC address to mac-address and local-mac-address, if they
71716 exist.
71717
71718 Signed-off-by: Timur Tabi <timur@freescale.com>
71719 Acked-by: Grant Likely <grant.likely@secretlab.ca>
71720
71721 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
71722 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
71723 Date: Sun Apr 29 14:01:54 2007 +0200
71724
71725 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
71726
71727 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
71728 message. Use PVR to distinguish between the two variants, and print proper CPU
71729 information.
71730
71731 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
71732 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
71733 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
71734
71735 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
71736 Author: Ladislav Michl <ladis@linux-mips.org>
71737 Date: Wed Apr 25 16:01:26 2007 +0200
71738
71739 [PATCH] simplify silent console
71740
71741 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
71742 Acked-by: Stefan Roese <sr@denx.de>
71743
71744 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
71745 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
71746 Date: Mon Apr 23 15:30:39 2007 +0200
71747
71748 [PATCH] Avoid assigning PCI resources from zero address
71749
71750 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
71751 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
71752 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
71753 sentence about "0" being considered an invalid address) -- so, use a reasonable
71754 starting value of 0x1000 (that's what the most Linux archs are using).
71755
71756 Alternatively, one might have fixed the calls to pci_set_region() individually
71757 (some code even seems to have taken care of this issue) but that would have
71758 been a lot more work. :-)
71759
71760 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
71761 Acked-by: Stefan Roese <sr@denx.de>
71762
71763 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
71764 Author: Jeffrey Mann <mannj@embeddedplanet.com>
71765 Date: Mon Apr 23 14:00:11 2007 +0200
71766
71767 [patch] setenv(...) can delete environmentalvariables
71768
71769 update setenv() function so that entering a NULL value for the
71770 variable's value will delete the environmental variable
71771
71772 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
71773 Acked-by: Stefan Roese <sr@denx.de>
71774
71775 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
71776 Author: Mike Frysinger <vapier@gentoo.org>
71777 Date: Mon Apr 23 13:54:24 2007 +0200
71778
71779 [patch] use unsigned char in smc91111 driver for mac
71780
71781 the v_mac variable in the smc91111 driver is declared as a signed char ...
71782 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
71783 because when it gets printed out, you get a display like:
71784 0xFFFFFFE0 and that's no good
71785
71786 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
71787
71788 commit ffc50f9bb194343c6303517a517708457a5eb6b8
71789 Author: Michal Simek <monstr@monstr.eu>
71790 Date: Sat May 5 18:54:42 2007 +0200
71791
71792 new: FSL and MSR support #2
71793
71794 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
71795 Author: Michal Simek <monstr@monstr.eu>
71796 Date: Sat May 5 18:27:16 2007 +0200
71797
71798 new: FSL and MSR support
71799
71800 commit 2f15278c2eb911c668b4fe562130b78cf554d139
71801 Author: Wolfgang Denk <wd@denx.de>
71802 Date: Sat May 5 18:23:11 2007 +0200
71803
71804 Coding stylke cleanup; update CHANGELOG.
71805
71806 Signed-off-by: Wolfgang Denk <wd@denx.de>
71807
71808 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
71809 Author: Wolfgang Denk <wd@denx.de>
71810 Date: Sat May 5 18:05:02 2007 +0200
71811
71812 Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
71813
71814 Signed-off-by: Wolfgang Denk <wd@denx.de>
71815
71816 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
71817 Author: Wolfgang Denk <wd@denx.de>
71818 Date: Sat May 5 17:15:50 2007 +0200
71819
71820 Make "file" command happy with some config.mk files; update CHANGELOG
71821
71822 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
71823 Author: Jeffrey Mann <mannj@embeddedplanet.com>
71824 Date: Sat May 5 08:32:14 2007 +0200
71825
71826 ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
71827
71828 The AMCC Secquoia board has been changed in a new revision from using a
71829 33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
71830 indicates the difference. This patch reads that bit and uses the correct
71831 clock speed for the board. This code is backward compatable will all
71832 prior boards. All prior boards will be read as 33.000.
71833
71834 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
71835 Signed-off-by: Stefan Roese <sr@denx.de>
71836
71837 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
71838 Author: Stefan Roese <sr@denx.de>
71839 Date: Sat May 5 08:29:01 2007 +0200
71840
71841 ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
71842
71843 Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
71844 for the 4k NAND boot image so define bus_frequency to 133MHz here
71845 which is save for the refresh counter setup.
71846
71847 Signed-off-by: Stefan Roese <sr@denx.de>
71848
71849 commit 2f550ab976405300f5b07bf2890800840d0aa05f
71850 Author: Timur Tabi <timur@freescale.com>
71851 Date: Sat May 5 08:12:30 2007 +0200
71852
71853 5xxx: write MAC address to mac-address and local-mac-address
71854
71855 Some device trees have a mac-address property, some have local-mac-address,
71856 and some have both. To support all of these device trees, ftp_cpu_setup()
71857 should write the MAC address to mac-address and local-mac-address, if they
71858 exist.
71859
71860 Signed-off-by: Timur Tabi <timur@freescale.com>
71861 Acked-by: Grant Likely <grant.likely@secretlab.ca>
71862
71863 commit a79886590593ba1d667c840caa4940c61639f18f
71864 Author: Thomas Knobloch <knobloch@siemens.com>
71865 Date: Sat May 5 07:04:42 2007 +0200
71866
71867 NAND: Wrong calculation of page number in nand_block_bad()
71868
71869 In case that there is no memory based bad block table available the
71870 function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
71871 nand_block_bad() directly. When parameter 'getchip' is set to zero,
71872 nand_block_bad() will not right shift the offset to calculate the
71873 correct page number.
71874
71875 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
71876 Signed-off-by: Stefan Roese <sr@denx.de>
71877
71878 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
71879 Author: Wolfgang Denk <wd@denx.de>
71880 Date: Fri May 4 10:02:33 2007 +0200
71881
71882 Fix initrd length corruption in bootm command.
71883
71884 When using FDT Images, the length of an inital ramdisk was
71885 overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
71886
71887 Patches by Timur Tabi & Johns Daniel.
71888
71889 Signed-off-by: Wolfgang Denk <wd@denx.de>
71890
71891 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
71892 Author: Kim Phillips <kim.phillips@freescale.com>
71893 Date: Thu May 3 19:43:52 2007 -0500
71894
71895 mpc83xx: fix trivial error in MAKEALL
71896
71897 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
71898
71899 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
71900 Author: Wolfgang Denk <wd@denx.de>
71901 Date: Thu May 3 16:34:41 2007 +0200
71902
71903 Update board configuration for STX GP3SSA board:
71904
71905 Enable hush shell, environment in flash rather in EEPROM,
71906 more user-friendly default environment, etc.
71907 The simple EEPROM environment can be selected easily in the board
71908 config file.
71909
71910 Signed-off-by: Wolfgang Denk <wd@denx.de>
71911
71912 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
71913 Author: Wolfgang Denk <wd@denx.de>
71914 Date: Tue Apr 24 14:37:49 2007 +0200
71915
71916 Cleanup STX GP3SSA code; fix build and compile problems.
71917
71918 commit 35171dc04e028ecacc23ad916a66295472555dbf
71919 Author: Dan Malek <dan@embeddedalley.com>
71920 Date: Fri Jan 5 09:15:34 2007 +0100
71921
71922 Add support for STX GP3SSA (stxssa) Board
71923
71924 Signed-off-by Dan Malek, <dan@embeddedalley.com>
71925
71926 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
71927 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
71928 Date: Wed May 2 13:31:53 2007 +0200
71929
71930 macb: Don't restart autonegotiation if we already have link
71931
71932 Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
71933 link is already up.
71934
71935 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71936
71937 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
71938 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
71939 Date: Wed May 2 13:22:38 2007 +0200
71940
71941 macb: Introduce a few barriers when dealing with DMA descriptors
71942
71943 There were a few theoretical possibilities that the compiler might
71944 optimize away DMA descriptor reads and/or writes and thus cause
71945 synchronization problems with the hardware. Insert barriers where
71946 we depend on reads/writes actually hitting memory.
71947
71948 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
71949
71950 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
71951 Author: Andy Fleming <afleming@freescale.com>
71952 Date: Sat Feb 24 01:08:13 2007 -0600
71953
71954 Cleaned up some 85xx PCI bugs
71955
71956 * Cleaned up the CDS PCI Config Tables and added NULL entries to
71957 the end
71958 * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
71959 * Fixed 85xx PCI code to assign powar region sizes based on the
71960 config values (rather than hard-coding them)
71961 * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
71962
71963 Signed-off-by: Andy Fleming <afleming@freescale.com>
71964
71965 commit 6743105988fc44d5b0d30388c790607835aae7a6
71966 Author: Andy Fleming <afleming@freescale.com>
71967 Date: Mon Apr 23 02:54:25 2007 -0500
71968
71969 Add support for the 8568 MDS board
71970
71971 This included some changes to common files:
71972 * Add 8568 processor SVR to various places
71973 * Add support for setting the qe bus-frequency value in the dts
71974 * Add the 8568MDS target to the Makefile
71975
71976 Signed-off-by: Andy Fleming <afleming@freescale.com>
71977
71978 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
71979 Author: David Updegraff <dave@cray.com>
71980 Date: Fri Apr 20 14:34:48 2007 -0500
71981
71982 Add support for treating unknown PHYs as generic PHYs.
71983
71984 When bringing up u-boot on new boards, PHY support sometimes gets
71985 neglected. Most PHYs don't really need any special support,
71986 though. By adding a generic entry that always matches if nothing
71987 else does, we can provide support for "unsupported" PHYs for the
71988 tsec.
71989
71990 The generic PHY driver supports most PHYs, including gigabit.
71991
71992 Signed-off-by: David Updegraff <dave@cray.com>
71993 Signed-off-by: Andy Fleming <afleming@freescale.com>
71994
71995 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
71996 Author: James Yang <James.Yang@freescale.com>
71997 Date: Wed Feb 7 15:28:04 2007 -0600
71998
71999 Conditionalize 8641 Rev1.0 MCM workarounds
72000
72001 Signed-off-by: James Yang <James.Yang@freescale.com>
72002 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72003
72004 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
72005 Author: Timur Tabi <timur@freescale.com>
72006 Date: Mon Apr 30 13:59:50 2007 -0500
72007
72008 Fix memory initialization on MPC8349E-mITX
72009
72010 Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
72011 This allows ddr->sdram_clk_cntl to be properly initialized. This is necessary
72012 on some ITX boards, notably those with a revision 3.1 CPU.
72013
72014 Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
72015 ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
72016
72017 Signed-off-by: Timur Tabi <timur@freescale.com>
72018 Acked-by: Michael Benedict <MBenedict@twacs.com>
72019 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72020
72021 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
72022 Author: Kim Phillips <kim.phillips@freescale.com>
72023 Date: Mon Apr 30 15:26:21 2007 -0500
72024
72025 mpc83xx: replace elaborate boottime verbosity with 'clocks' command
72026
72027 and fix CPU: to align with Board: display text.
72028
72029 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72030
72031 commit c1ab82669d9525998c34e802a12cad662723f22a
72032 Author: James Yang <James.Yang@freescale.com>
72033 Date: Fri Mar 16 13:02:53 2007 -0500
72034
72035 Rewrote picos_to_clk() to avoid rounding errors.
72036 Clarified that conversion is to DRAM clocks rather than platform clocks.
72037 Made function static to spd_sdram.c.
72038
72039 Signed-off-by: James Yang <James.Yang@freescale.com>
72040 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72041
72042 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
72043 Author: Stefan Roese <sr@denx.de>
72044 Date: Sun Apr 29 14:13:01 2007 +0200
72045
72046 ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
72047
72048 Signed-off-by: Stefan Roese <sr@denx.de>
72049
72050 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
72051 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
72052 Date: Sun Apr 29 14:01:54 2007 +0200
72053
72054 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
72055
72056 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
72057 message. Use PVR to distinguish between the two variants, and print proper CPU
72058 information.
72059
72060 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
72061 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
72062 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
72063
72064 commit 5c5d3242935cf3543af01142627494434834cf98
72065 Author: Kim Phillips <kim.phillips@freescale.com>
72066 Date: Wed Apr 25 12:34:38 2007 -0500
72067
72068 mpc83xx: minor fixups for 8313rdb introduction
72069
72070 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
72071 Author: Ladislav Michl <ladis@linux-mips.org>
72072 Date: Wed Apr 25 16:01:26 2007 +0200
72073
72074 [PATCH] simplify silent console
72075
72076 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
72077 Acked-by: Stefan Roese <sr@denx.de>
72078
72079 commit 144876a380f5756f57412caf74c1d6dc201dd796
72080 Author: Michal Simek <monstr@monstr.eu>
72081 Date: Tue Apr 24 23:01:02 2007 +0200
72082
72083 [PATCH] MTD partition support, JFFS2 support
72084
72085 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
72086 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
72087 Date: Tue Apr 24 14:03:45 2007 +0200
72088
72089 ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
72090
72091 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
72092
72093 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
72094 Author: Andy Fleming <afleming@freescale.com>
72095 Date: Mon Apr 23 02:37:47 2007 -0500
72096
72097 Reworked 85xx speed detection code
72098
72099 Changed the code to read the registers and calculate the clock
72100 rates, rather than using a "switch" statement.
72101
72102 Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
72103
72104 Signed-off-by: Andy Fleming <afleming@freescale.com>
72105
72106 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
72107 Author: Andy Fleming <afleming@freescale.com>
72108 Date: Mon Apr 23 02:24:28 2007 -0500
72109
72110 Enable 8544 support
72111
72112 * Add support to the Makefile
72113 * Add 8544 configuration support to the tsec driver
72114 * Add 8544 SVR numbers to processor.h
72115
72116 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72117 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72118
72119 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
72120 Author: Andy Fleming <afleming@freescale.com>
72121 Date: Fri Feb 23 17:12:25 2007 -0600
72122
72123 Support 1G size on 8548
72124
72125 e500v2 and newer cores support 1G page sizes.
72126
72127 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72128 Signed-off-by: Andy Fleming <afleming@freescale.com>
72129
72130 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
72131 Author: Andy Fleming <afleming@freescale.com>
72132 Date: Fri Feb 23 17:11:16 2007 -0600
72133
72134 Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
72135
72136 The other pagesz constants use one letter to specify order of
72137 magnitude. Also change the one reference to it in mpc8548cds/init.S
72138
72139 Signed-off-by: Andy Fleming <afleming@freescale.com>
72140
72141 commit 1f9a318cea14272edd10d63739e2d326c90f430e
72142 Author: Andy Fleming <afleming@freescale.com>
72143 Date: Fri Feb 23 16:28:46 2007 -0600
72144
72145 Only set ddrioovcr for 8548 rev1.
72146
72147 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72148 Signed-off-by: Andy Fleming <afleming@freescale.com>
72149
72150 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
72151 Author: Andy Fleming <afleming@freescale.com>
72152 Date: Sat Feb 24 01:16:45 2007 -0600
72153
72154 Tweak DDR ECC error counter
72155
72156 Enable single-bit error counter when memory was cleared by ddr controller.
72157
72158 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72159 Signed-off-by: Andy Fleming <afleming@freescale.com>
72160
72161 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
72162 Author: Timur Tabi <timur@freescale.com>
72163 Date: Mon Feb 12 13:34:55 2007 -0600
72164
72165 85xx: write MAC address to mac-address and local-mac-address
72166
72167 Some device trees have a mac-address property, some have local-mac-address,
72168 and some have both. To support all of these device trees, ftp_cpu_setup()
72169 should write the MAC address to mac-address and local-mac-address, if they
72170 exist.
72171
72172 Signed-off-by: Timur Tabi <timur@freescale.com>
72173
72174 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
72175 Author: Andy Fleming <afleming@freescale.com>
72176 Date: Mon Apr 23 01:44:44 2007 -0500
72177
72178 Some 85xx cpu cleanups
72179
72180 * Cleaned up the TSR[WIS] clearing
72181 * Cleaned up DMA initialization
72182
72183 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72184 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72185 Acked-by: Andy Fleming <afleming@freescale.com>
72186
72187 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
72188 Author: Andy Fleming <afleming@freescale.com>
72189 Date: Mon Apr 23 01:32:22 2007 -0500
72190
72191 Add cpu support for the 8544
72192
72193 Recognize new SVR values, and add a few register definitions
72194
72195 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72196 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72197 Acked-by: Andy Fleming <afleming@freescale.com>
72198
72199 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
72200 Author: Jon Loeliger <jdl@freescale.com>
72201 Date: Wed Apr 11 16:51:02 2007 -0500
72202
72203 Add MPC8544DS basic port board files.
72204
72205 Add board port under new board/freescale directory
72206 structure and reuse existing PIXIS FPGA support there.
72207
72208 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72209 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72210
72211 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
72212 Author: Jon Loeliger <jdl@freescale.com>
72213 Date: Wed Apr 11 16:50:57 2007 -0500
72214
72215 Add MPC8544DS main configuration file.
72216
72217 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72218 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72219
72220 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
72221 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
72222 Date: Wed Dec 27 22:07:15 2006 +0300
72223
72224 Fix PCI I/O space mapping on Freescale MPC85x0ADS
72225
72226 The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
72227 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
72228 describing the local address window used for the PCI I/O space accesses -- fix
72229 this and carry over the necessary changes into the MPC8560ADS code since the
72230 PCI I/O space mapping was also broken for this board (by the earlier commit
72231 087454609e47295443af793a282cddcd91a5f49c). Add the comments clarifying how
72232 the PCI I/O space must be mapped to all the MPC85xx board config. headers.
72233
72234 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
72235
72236 board/mpc8540ads/init.S | 4 ++--
72237 board/mpc8560ads/init.S | 4 ++--
72238 include/configs/MPC8540ADS.h | 5 ++---
72239 include/configs/MPC8541CDS.h | 2 +-
72240 include/configs/MPC8548CDS.h | 2 +-
72241 include/configs/MPC8560ADS.h | 8 ++++----
72242 6 files changed, 12 insertions(+), 13 deletions(-)
72243
72244 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
72245 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72246 Date: Tue Dec 5 16:42:30 2006 +0800
72247
72248 u-boot: Fix e500 v2 core reset bug
72249
72250 The following patch fixes the e500 v2 core reset bug.
72251 For e500 v2 core, a new reset control register is added to reset the
72252 processor.
72253
72254 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
72255
72256 commit 63247a5acd58032e6cf33f525bc3923b467bac88
72257 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72258 Date: Wed Dec 20 11:01:00 2006 +0800
72259
72260 u-boot: v2: Remove the fixed TLB and LAW entrynubmer
72261
72262 Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
72263 entry number to control the loop. This can reduce the potential risk
72264 for the 85xx processor increasing its TLB adn LAW entry number.
72265
72266 Signed-off-by: Swarthout Edward <swarthout@freescale.com>
72267 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
72268
72269 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
72270 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72271 Date: Mon Dec 18 17:01:04 2006 +0800
72272
72273 u-boot: Fix the 85xxcds tsec bug
72274
72275 Fix the 85xxcds tsec bug.
72276 When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
72277
72278 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
72279
72280 commit 7337b237ffc4aaf1b9467024fe472a880d852598
72281 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72282 Date: Fri Dec 15 14:43:31 2006 +0800
72283
72284 u-boot: Fix CPU2 errata on MPC8548CDS board
72285
72286 This patch apply workaround of CPU2 errata on MPC8548CDS board.
72287
72288 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
72289
72290 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
72291 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
72292 Date: Mon Dec 18 16:25:15 2006 +0800
72293
72294 u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
72295
72296 This patch disables MPC8548CDS 2T_TIMING for DDR by default.
72297
72298 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
72299
72300 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
72301 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
72302 Date: Thu Dec 14 14:14:55 2006 +0800
72303
72304 u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
72305
72306 Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
72307 board.
72308 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
72309
72310 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
72311 Author: Scott Wood <scottwood@freescale.com>
72312 Date: Mon Apr 16 14:54:15 2007 -0500
72313
72314 mpc83xx: Add MPC8313ERDB support.
72315
72316 Signed-off-by: Scott Wood <scottwood@freescale.com>
72317
72318 commit 49ea3b6eafe606285ae4d5c378026153dde53200
72319 Author: Scott Wood <scottwood@freescale.com>
72320 Date: Mon Apr 16 14:34:21 2007 -0500
72321
72322 mpc83xx: Add generic PCI setup code.
72323
72324 Board code can now request the generic setup code rather than having to
72325 copy-and-paste it for themselves. Boards should be converted to use this
72326 once they're tested with it.
72327
72328 Signed-off-by: Scott Wood <scottwood@freescale.com>
72329
72330 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
72331 Author: Scott Wood <scottwood@freescale.com>
72332 Date: Mon Apr 16 14:34:19 2007 -0500
72333
72334 mpc83xx: Add 831x support to speed.c.
72335
72336 Signed-off-by: Scott Wood <scottwood@freescale.com>
72337
72338 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
72339 Author: Scott Wood <scottwood@freescale.com>
72340 Date: Mon Apr 16 14:34:18 2007 -0500
72341
72342 mpc83xx: Add 831x support to global_data.h
72343
72344 Signed-off-by: Scott Wood <scottwood@freescale.com>
72345
72346 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
72347 Author: Scott Wood <scottwood@freescale.com>
72348 Date: Mon Apr 16 14:34:16 2007 -0500
72349
72350 mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
72351
72352 Rather than misleadingly define PVR_83xx as the specific type of 83xx
72353 being built for, the PVR of each core revision is defined. checkcpu() now
72354 prints the core that it detects, rather than aborting if it doesn't find
72355 what it thinks it wants.
72356
72357 Signed-off-by: Scott Wood <scottwood@freescale.com>
72358
72359 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
72360 Author: Scott Wood <scottwood@freescale.com>
72361 Date: Mon Apr 16 14:34:15 2007 -0500
72362
72363 mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
72364
72365 Signed-off-by: Scott Wood <scottwood@freescale.com>
72366
72367 commit d87c57b201b4572d16f1b642998faa00c9912b16
72368 Author: Scott Wood <scottwood@freescale.com>
72369 Date: Mon Apr 16 14:31:55 2007 -0500
72370
72371 mpc83xx: Add register definitions for MPC831x.
72372
72373 Signed-off-by: Scott Wood <scottwood@freescale.com>
72374
72375 commit 7fc4c71a143be8666d70803fb25ae60379c95622
72376 Author: Stefan Roese <sr@denx.de>
72377 Date: Mon Apr 23 15:39:59 2007 +0200
72378
72379 Fix file mode
72380
72381 Signed-off-by: Stefan Roese <sr@denx.de>
72382
72383 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
72384 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
72385 Date: Mon Apr 23 15:30:39 2007 +0200
72386
72387 [PATCH] Avoid assigning PCI resources from zero address
72388
72389 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
72390 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
72391 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
72392 sentence about "0" being considered an invalid address) -- so, use a reasonable
72393 starting value of 0x1000 (that's what the most Linux archs are using).
72394
72395 Alternatively, one might have fixed the calls to pci_set_region() individually
72396 (some code even seems to have taken care of this issue) but that would have
72397 been a lot more work. :-)
72398
72399 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
72400 Acked-by: Stefan Roese <sr@denx.de>
72401
72402 commit afb903a2eb9436baa9270ccc0c27082d86497d89
72403 Author: Jeffrey Mann <mannj@embeddedplanet.com>
72404 Date: Mon Apr 23 14:00:11 2007 +0200
72405
72406 [patch] setenv(...) can delete environmentalvariables
72407
72408 update setenv() function so that entering a NULL value for the
72409 variable's value will delete the environmental variable
72410
72411 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
72412 Acked-by: Stefan Roese <sr@denx.de>
72413
72414 commit 36f104e5caa747d568eff26b369565af57c2ffa6
72415 Author: Mike Frysinger <vapier@gentoo.org>
72416 Date: Mon Apr 23 13:54:24 2007 +0200
72417
72418 [patch] use unsigned char in smc91111 driver for mac
72419
72420 the v_mac variable in the smc91111 driver is declared as a signed char ...
72421 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
72422 because when it gets printed out, you get a display like:
72423 0xFFFFFFE0 and that's no good
72424
72425 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
72426
72427 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
72428 Author: Rodolfo Giometti <giometti@enneenne.com>
72429 Date: Mon Apr 23 13:10:52 2007 +0200
72430
72431 USB: (Another) delay for crappy USB keys.
72432
72433 Some USB keys are slow in giving back an answer when the Root HUB
72434 enables power lines.
72435
72436 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
72437
72438 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
72439 Author: Stefan Roese <sr@denx.de>
72440 Date: Mon Apr 23 12:00:22 2007 +0200
72441
72442 Remove BOARDLIBS usage completely
72443
72444 Signed-off-by: Stefan Roese <sr@denx.de>
72445
72446 commit 32556443840f127170e4baa8bdd5b567039f6c36
72447 Author: Michal Simek <monstr@monstr.eu>
72448 Date: Sat Apr 21 21:07:22 2007 +0200
72449
72450 [PATCH] SystemACE support for Microblaze
72451
72452 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
72453 Author: Michal Simek <monstr@monstr.eu>
72454 Date: Sat Apr 21 21:02:40 2007 +0200
72455
72456 16bit read/write little endian
72457
72458 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
72459 Author: Michal Simek <monstr@monstr.eu>
72460 Date: Sat Apr 21 20:53:31 2007 +0200
72461
72462 Change ML401 parameters - Xilinx BSP
72463
72464 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
72465 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
72466 Date: Wed Feb 28 05:37:29 2007 -0600
72467
72468 mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
72469
72470 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
72471
72472 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
72473 Author: Zhang Wei <wei.zhang@freescale.com>
72474 Date: Fri Jan 19 10:42:37 2007 +0800
72475
72476 Enable LAWs for MPC8641 PCI-Ex2.
72477
72478 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
72479 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72480
72481 commit bd7851ce1e1f140665b520026abf1042968b1102
72482 Author: Jon Loeliger <jdl@freescale.com>
72483 Date: Fri Apr 20 14:12:26 2007 -0500
72484
72485 mpc86xx; Write MAC address to mac-address and local-mac-address
72486
72487 Some device trees have a mac-address property, some have local-mac-address,
72488 and some have both. To support all of these device trees, ftp_cpu_setup()
72489 should write the MAC address to mac-address and local-mac-address, if they
72490 exist.
72491
72492 Signed-off-by: Timur Tabi <timur@freescale.com>
72493 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72494
72495 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
72496 Author: Jon Loeliger <jdl@freescale.com>
72497 Date: Fri Apr 20 14:11:38 2007 -0500
72498
72499 mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
72500
72501 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
72502 Signed-off-by: Jon Loeliger <jdl@freescale.com>
72503
72504 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
72505 Author: Wolfgang Denk <wd@denx.de>
72506 Date: Fri Apr 20 17:43:28 2007 +0200
72507
72508 Cleanup compiler warnings, update CHANGELOG
72509
72510 Signed-off-by: Wolfgang Denk <wd@denx.de>
72511
72512 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
72513 Author: Detlev Zundel <dzu@denx.de>
72514 Date: Fri Apr 20 12:01:47 2007 +0200
72515
72516 Fix breakage of NC650 board with respect to nand support.
72517
72518 Signed-off-by: Detlev Zundel <dzu@denx.de>
72519
72520 commit 39f23cd90947639ac278a18ff277ec786b5ac167
72521 Author: Domen Puncer <domen.puncer@telargo.com>
72522 Date: Fri Apr 20 11:13:16 2007 +0200
72523
72524 [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
72525
72526 G2 core reference manual says decrementer and time base
72527 are decreasing/increasing once every 4 bus clock cycles.
72528 Lets fix it, so time in Linux won't run twice as fast
72529
72530 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
72531 Acked-by: Grant Likely <grant.likely@secretlab.ca>
72532
72533 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
72534 Author: Gerald Van Baren <vanbaren@cideas.com>
72535 Date: Thu Apr 19 23:14:39 2007 -0400
72536
72537 Fix serious pointer bug with bootm and reserve map.
72538
72539 What was suppose to be a stack variable was declared as a pointer,
72540 overwriting random memory.
72541 Also moved the libfdt.a requirement into the main Makefile. That is
72542 The U-Boot Way.
72543
72544 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
72545 Author: Stefan Roese <sr@denx.de>
72546 Date: Thu Apr 19 09:53:52 2007 +0200
72547
72548 ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
72549
72550 Previous versions used full wait states for the chip select #1 which
72551 is connected to the Xilinix SystemACE controller on the AMCC Katmai
72552 evaluation board. This leads to really slow access and therefore low
72553 performance. This patch now sets up the chip select a lot faster
72554 resulting in much better read/write performance of the Linux driver.
72555
72556 Signed-off-by: Stefan Roese <sr@denx.de>
72557
72558 commit 37837828d89084879bee2f2b8c7c68d4695940df
72559 Author: Wolfgang Denk <wd@denx.de>
72560 Date: Wed Apr 18 17:49:29 2007 +0200
72561
72562 Clenaup, update CHANGELOG
72563
72564 Signed-off-by: Wolfgang Denk <wd@denx.de>
72565
72566 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
72567 Author: Wolfgang Denk <wd@denx.de>
72568 Date: Wed Apr 18 17:20:58 2007 +0200
72569
72570 Update CHANGELOG
72571
72572 Signed-off-by: Wolfgang Denk <wd@denx.de>
72573
72574 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
72575 Author: Wolfgang Denk <wd@denx.de>
72576 Date: Wed Apr 18 17:07:26 2007 +0200
72577
72578 Cleanup, update CHANGELOG
72579
72580 Sigend-off-by: Wolfgang Denk <wd@denx.de>
72581
72582 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
72583 Author: Wolfgang Denk <wd@denx.de>
72584 Date: Wed Apr 18 16:17:46 2007 +0200
72585
72586 Update CHANGELOG
72587
72588 commit ad4eb555671d97f96dc56eab55103b1f86874b01
72589 Author: Wolfgang Denk <wd@denx.de>
72590 Date: Wed Apr 18 14:30:39 2007 +0200
72591
72592 MCC200 board: remove warning which is obsolete after PSoC firmware changes
72593
72594 Signed-off-by: Wolfgang Denk <wd@denx.de>
72595
72596 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
72597 Author: Domen Puncer <domen.puncer@telargo.com>
72598 Date: Wed Apr 18 12:11:05 2007 +0200
72599
72600 [PATCH] icecube/lite5200b: document wakeup from low-power support
72601
72602 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
72603
72604 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
72605 Author: Stefan Roese <sr@denx.de>
72606 Date: Wed Apr 18 12:07:47 2007 +0200
72607
72608 ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
72609
72610 Signed-off-by: Stefan Roese <sr@denx.de>
72611
72612 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
72613 Author: Stefan Roese <sr@denx.de>
72614 Date: Wed Apr 18 12:05:59 2007 +0200
72615
72616 ppc4xx: Add output for bootrom location to 405EZ ports
72617
72618 Now 405EZ ports also show upon bootup from which boot device
72619 they are configured to boot:
72620
72621 U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
72622
72623 CPU: AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
72624 Bootstrap Option E - Boot ROM Location EBC (32 bits)
72625 16 kB I-Cache 16 kB D-Cache
72626 Board: Acadia - AMCC PPC405EZ Evaluation Board
72627
72628 Signed-off-by: Stefan Roese <sr@denx.de>
72629
72630 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
72631 Author: Peter Pearse <peter.pearse@arm.com>
72632 Date: Tue Apr 17 13:30:33 2007 +0100
72633
72634 Move ppearse to ARM board list
72635 Add Konstantin Kletschke for scb9328.
72636 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
72637
72638 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
72639 Author: Domen Puncer <domen.puncer@telargo.com>
72640 Date: Mon Apr 16 14:00:13 2007 +0200
72641
72642 [PATCH] icecube/lite5200b: wakeup from low-power support
72643
72644 U-Boot part of Lite5200b low power mode support.
72645 Puts SDRAM out of self-refresh and transfers control to
72646 address saved at physical 0x0.
72647
72648 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
72649 Acked-by: Grant Likely <grant.likely@secretlab.ca>
72650
72651 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
72652 Author: Gerald Van Baren <vanbaren@cideas.com>
72653 Date: Sun Apr 15 13:54:26 2007 -0400
72654
72655 Fix the ft_cpu_setup() property settings.
72656
72657 Use "setter" functions instead of flags, cleaner and more flexible.
72658 It also fixes the problem noted by Timur Tabi that the ethernet MAC
72659 addresses were all being set incorrectly to the same MAC address.
72660
72661 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
72662 Author: Gerald Van Baren <vanbaren@cideas.com>
72663 Date: Sat Apr 14 22:51:24 2007 -0400
72664
72665 Improve the bootm command for CONFIG_OF_LIBFDT
72666
72667 In bootm, create the "/chosen" node only if it doesn't already exist
72668 (better matches the previous behavior).
72669 Update for proper reserved memory map handling for initrd.
72670
72671 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
72672 Author: Gerald Van Baren <vanbaren@cideas.com>
72673 Date: Sat Apr 14 22:46:41 2007 -0400
72674
72675 Add some utilities to manipulate the reserved memory map.
72676
72677 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
72678 Author: Wolfgang Denk <wd@denx.de>
72679 Date: Sat Apr 14 21:16:54 2007 +0200
72680
72681 Update CHANGELOG
72682
72683 commit 8e6875183cdca91c134408d119d4abcd48ef6856
72684 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72685 Date: Sun Dec 17 18:56:46 2006 +0100
72686
72687 AVR32: Enable MMC support
72688
72689 Set up the portmux for the MMC interface and enable the MMC driver
72690 along with support for DOS partitions, ext2 and FAT filesystems.
72691
72692 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72693
72694 commit fc26c97bb6df41b4a95662c34054fe912387bf38
72695 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72696 Date: Fri Jan 20 10:03:53 2006 +0100
72697
72698 Atmel MCI driver
72699
72700 Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
72701
72702 The AT91 ARM-based CPUs use basically the same hardware, so it should
72703 be possible to share this driver, but no effort has been made so far.
72704
72705 Hardware documentation can be found in the AT32AP7000 data sheet,
72706 which can be downloaded from
72707
72708 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
72709
72710 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72711
72712 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
72713 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72714 Date: Sun Dec 17 18:55:37 2006 +0100
72715
72716 AVR32: Add clk and gpio infrastructure for mmci
72717
72718 Implement functions for configuring the mmci pins, as well as
72719 functions for getting the clock rate of the mmci controller.
72720
72721 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72722
72723 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
72724 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72725 Date: Sun Dec 17 18:53:56 2006 +0100
72726
72727 Enable partition support with MMC
72728
72729 Include implementations of init_part() and get_partition_info() when
72730 CONFIG_MMC is set.
72731
72732 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72733
72734 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
72735 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72736 Date: Sun Dec 17 17:14:30 2006 +0100
72737
72738 AVR32: Enable networking
72739
72740 Implement MACB initialization for AVR32 and ATSTK1000, and turn
72741 everything on, including the MACB driver.
72742
72743 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72744
72745 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
72746 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72747 Date: Fri Jan 20 10:03:34 2006 +0100
72748
72749 Atmel MACB ethernet driver
72750
72751 Driver for the Atmel MACB on-chip ethernet controller.
72752
72753 This driver has been tested on the ATSTK1000 board with a AT32AP7000
72754 CPU. It should probably work on AT91SAM926x as well with some minor
72755 modifications.
72756
72757 Hardware documentation can be found in the AT32AP7000 data sheet,
72758 which can be downloaded from
72759
72760 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
72761
72762 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72763
72764 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
72765 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72766 Date: Sun Dec 17 16:56:14 2006 +0100
72767
72768 AVR32: Add clk and gpio infrastructure for macb0 and macb1
72769
72770 Implement functions for configuring the macb0 and macb1 pins, as
72771 well as functions for getting the clock rate of the various
72772 busses the macb ethernet controllers are connected to.
72773
72774 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72775
72776 commit d5acb95b16a0a74c643524342c3437e765426d05
72777 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72778 Date: Sun Dec 17 15:39:15 2006 +0100
72779
72780 AVR32: Implement simple DMA memory allocator
72781
72782 Implement dma_alloc_coherent() which returns cache-aligned
72783 uncacheable memory.
72784
72785 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72786
72787 commit 91975b0fea773c9e681fea8cf3349669f27685ee
72788 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72789 Date: Sun Dec 17 15:46:02 2006 +0100
72790
72791 Import <linux/mii.h> from the Linux kernel
72792
72793 Instead of creating yet another set of MII register definitions
72794 in the macb driver, here's a complete set of definitions for everyone
72795 to use.
72796
72797 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72798
72799 commit 1b804b229556a4d862da93c0ec94e79419364b2c
72800 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72801 Date: Wed Mar 21 19:47:36 2007 +0100
72802
72803 AVR32: Include more commands for ATSTK1000
72804
72805 Include the imi, imls and jffs commands sets by default on ATSTK1000.
72806 Also define CONFIG_BOOTARGS to something more useful, define
72807 CONFIG_BOOTCOMMAND and enable autoboot by default.
72808
72809 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72810
72811 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
72812 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72813 Date: Wed Mar 21 19:44:48 2007 +0100
72814
72815 AVR32: Provide a definition of struct stat
72816
72817 Copy the definition of struct stat from the Linux kernel.
72818
72819 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72820
72821 commit 12f099c08167a7a51aeee623bc16dafd0841271c
72822 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72823 Date: Sun Dec 17 14:46:06 2006 +0100
72824
72825 AVR32: Use initdram() instead of board_init_memories()
72826
72827 Conform to the "standard" interface and use initdram() instead of
72828 board_init_memories() on AVR32. This enables us to get rid of the
72829 sdram_size member of the global_data struct as well.
72830
72831 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72832
72833 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
72834 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72835 Date: Mon Nov 20 15:53:10 2006 +0100
72836
72837 AVR32: Relocate u-boot to SDRAM
72838
72839 Relocate the u-boot image into SDRAM like everyone else does. This
72840 means that we can handle much larger .data and .bss than we used to.
72841
72842 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72843
72844 commit df548d3c3e2bbc40258713167859ffc2ce99a900
72845 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72846 Date: Sun Nov 19 18:06:53 2006 +0100
72847
72848 AVR32: Resource management rewrite
72849
72850 Rewrite the resource management code (i.e. I/O memory, clock gating,
72851 gpio) so it doesn't depend on any global state. This is necessary
72852 because this code is heavily used before relocation to RAM, so we
72853 can't write to any global variables.
72854
72855 As an added bonus, this makes u-boot's memory footprint a bit smaller,
72856 although some functionality has been left out; all clocks are enabled
72857 all the time, and there's no checking for gpio line conflicts.
72858
72859 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72860
72861 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
72862 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72863 Date: Sat Nov 18 18:01:13 2006 +0100
72864
72865 AVR32: Clean up memory-map.h for at32ap7000
72866
72867 Convert spaces to tabs (must have missed this one last time around),
72868 sort the entries by address and group them together by bus
72869 connectivity.
72870
72871 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72872
72873 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
72874 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72875 Date: Sat Nov 18 17:32:31 2006 +0100
72876
72877 AVR32: Build position-independent u-boot
72878
72879 Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
72880 position independent. This will make relocation a lot easier.
72881
72882 -mno-init-got means that gcc shouldn't emit code to load the GOT
72883 address into r6 in every function prologue. We do it once and for
72884 all in the early startup assembly code, so enabling this option
72885 makes u-boot a bit faster and smaller.
72886
72887 The assembly parts have always been position-independent, so no code
72888 changes should be necessary.
72889
72890 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72891
72892 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
72893 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72894 Date: Sat Nov 18 17:24:31 2006 +0100
72895
72896 AVR32: Use avr32-linux- cross-compilation prefix by default
72897
72898 It doesn't really matter which toolchain you use to compile u-boot,
72899 but the avr32-linux one is probably what most people have installed.
72900
72901 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72902
72903 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
72904 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
72905 Date: Sat Nov 18 17:15:30 2006 +0100
72906
72907 AVR32: Split start_u_boot into board_init_f and board_init_r
72908
72909 Split the avr32 initialization code into a function to run before
72910 relocation, board_init_f and a function to run after relocation,
72911 board_init_r. For now, board_init_f simply calls board_init_r
72912 at the end.
72913
72914 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
72915
72916 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
72917 Author: Heiko Schocher <hs@pollux.denx.de>
72918 Date: Sat Apr 14 05:26:48 2007 +0200
72919
72920 [Fix] Set the LED status register on the UC101 for the LXT971 PHY.
72921 clear the Display after reset.
72922
72923 Signed-off-by: Heiko Schocher <hs@denx.de>
72924
72925 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
72926 Author: Denis Peter <d.peter@mpl.ch>
72927 Date: Fri Apr 13 09:13:33 2007 +0200
72928
72929 [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
72930
72931 Fix bug introduced by "Fix get_partition_info() parameter error in all
72932 other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
72933 to use diskboot or scsiboot form another device than 0.
72934
72935 Signed-off-by: Denis Peter <d.peter@mpl.ch>
72936
72937 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
72938 Author: Greg Lopp <lopp@pobox.com>
72939 Date: Fri Apr 13 08:02:24 2007 +0200
72940
72941 [PATCH] Fix use of "void *" for block dev read/write buffer pointers
72942
72943 Signed-of-by: Greg Lopp <lopp@pobox.com>
72944 Acked-by: Grant Likely <grant.likely@secretlab.ca>
72945
72946 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
72947 Author: Xie Xiaobo <r63061@freescale.com>
72948 Date: Fri Mar 9 19:08:25 2007 +0800
72949
72950 Fix two bugs for MPC83xx DDR2 controller SPD Init
72951
72952 There are a few bugs in the cpu/mpc83xx/spd_sdram.c
72953 the first bug is that the picos_to_clk routine introduces a huge
72954 rounding error in 83xx.
72955 the second bug is that the mode register write recovery field is
72956 tWR-1, not tWR >> 1.
72957
72958 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
72959 Author: Jeffrey Mann <mannj@embeddedplanet.com>
72960 Date: Thu Apr 12 14:15:59 2007 +0200
72961
72962 ppc4xx: Fix i2c divisor calcularion for PPC4xx
72963
72964 This patch fixes changes the i2c_init(...) function to use the function
72965 get_OPB_freq() rather than calculating the OPB speed by
72966 sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
72967 specific per processor. The prior method was not and so was calculating
72968 the wrong speed for some PPC4xx processors.
72969
72970 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
72971 Signed-off-by: Stefan Roese <sr@denx.de>
72972
72973 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
72974 Author: Wolfgang Denk <wd@denx.de>
72975 Date: Wed Apr 11 17:25:01 2007 +0200
72976
72977 Update CHANGELOG
72978
72979 Signed-off-by: Wolfgang Denk <wd@denx.de>
72980
72981 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
72982 Author: Wolfgang Denk <wd@denx.de>
72983 Date: Wed Apr 11 17:22:55 2007 +0200
72984
72985 Update for SC3 board
72986
72987 * Make IDE timeout configurable through ide_reset_timeout variable.
72988 * Use Newline as "password" string
72989 * Use just a single partition in NAND flash
72990
72991 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
72992 Author: Haiying Wang <haiying.wang@freescale.com>
72993 Date: Mon Jan 22 12:37:30 2007 -0600
72994
72995 Add PIXIS FPGA support for MPC8641HPCN board.
72996
72997 Move the 8641HPCN's PIXIS code to the new directory
72998 board/freescale/common/ as it will be shared by
72999 future boards not in the same processor family.
73000
73001 Write a "pixis_reset" command that utilizes the FPGA
73002 reset sequencer to support alternate soft-reset options
73003 such as using the "alternate" flash bank, enabling
73004 the watch dog, or choosing different CPU frequencies.
73005
73006 Add documentation for the pixis_reset to README.mpc8641hpcn.
73007
73008 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
73009 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73010
73011 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
73012 Author: Gerald Van Baren <vanbaren@cideas.com>
73013 Date: Fri Apr 6 14:19:43 2007 -0400
73014
73015 Moved fdt command support code to fdt_support.c
73016
73017 ...in preparation for improving the bootm command's handling of fdt blobs.
73018 Also cleaned up some coding sloppiness.
73019
73020 commit 6679f9299534e488a171a9bb8f9bb891de247aab
73021 Author: Gerald Van Baren <vanbaren@cideas.com>
73022 Date: Fri Apr 6 14:17:14 2007 -0400
73023
73024 libfdt: Make fdt_check_header() public
73025
73026 Changed _fdt_check_header() to fdt_check_header() and made it part of
73027 the interface - it is a useful routine.
73028
73029 Also did some asthetics cleanup to the include files (headers).
73030
73031 commit c0707ce65677650b5ceab0500ee50ae5168afef2
73032 Author: Aubrey Li <aubrey.adi@gmail.com>
73033 Date: Thu Apr 5 18:34:06 2007 +0800
73034
73035 [Blackfin][PATCH] Kill off a bunch of common local prototypes
73036
73037 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
73038 Author: Aubrey Li <aubrey.adi@gmail.com>
73039 Date: Thu Apr 5 18:33:04 2007 +0800
73040
73041 [Blackfin][PATCH] Fix dynamic CPLB generation issue
73042
73043 commit 0445e3a264251d75b1be45ef713c70726a2952f0
73044 Author: Aubrey Li <aubrey.adi@gmail.com>
73045 Date: Thu Apr 5 18:31:47 2007 +0800
73046
73047 [Blackfin][PATCH] minior cleanup
73048
73049 commit 155fd766573981090e638b493d5857562151862e
73050 Author: Aubrey Li <aubrey.adi@gmail.com>
73051 Date: Thu Apr 5 18:31:18 2007 +0800
73052
73053 [Blackfin][PATCH] Fix copyright and update license
73054
73055 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
73056 Author: Aubrey Li <aubrey.adi@gmail.com>
73057 Date: Thu Apr 5 18:30:25 2007 +0800
73058
73059 [Blackfin][PATCH] Add BF537 EMAC driver initialization
73060
73061 commit 889256e8604e0c68db1d866d720894dffede9df6
73062 Author: Aubrey Li <aubrey.adi@gmail.com>
73063 Date: Thu Apr 5 18:29:55 2007 +0800
73064
73065 [Blackfin][PATCH] call real the system synchronize instruction
73066
73067 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
73068 Author: Aubrey Li <aubrey.adi@gmail.com>
73069 Date: Thu Apr 5 18:29:17 2007 +0800
73070
73071 [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
73072
73073 commit dfeeab2cd680df047e68e723b246adf6f33bb556
73074 Author: Aubrey Li <aubrey.adi@gmail.com>
73075 Date: Thu Apr 5 18:28:34 2007 +0800
73076
73077 [Blackfin][PATCH]: fix flash unaligned copy issue
73078
73079 commit 443feb740584e406efa203af909fe2926608e8d5
73080 Author: Igor Marnat <marny@rambler.ru>
73081 Date: Wed Mar 21 09:55:01 2007 +0300
73082
73083 Update usage of 'nc' in README.NetConsole
73084
73085 Added information about usage of NetConsole on systems where the -l and -p
73086 switches are mutually exclusive.
73087
73088 Signed-off-by: Igor Marnat <marny@rambler.ru>
73089 Signed-off-by: Ben Warren <bwarren@qstreams.com>
73090
73091 commit 31c98a88228021b314c89ebb8104fb6473da4471
73092 Author: Wolfgang Denk <wd@denx.de>
73093 Date: Wed Apr 4 02:09:30 2007 +0200
73094
73095 Minor coding style cleanup.
73096
73097 commit 94abd7c0583ebe01e799b25f451201deeaab550d
73098 Author: Wolfgang Denk <wd@denx.de>
73099 Date: Wed Apr 4 01:49:15 2007 +0200
73100
73101 Minor cleanup.
73102
73103 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
73104 Author: Rodolfo Giometti <giometti@enneenne.com>
73105 Date: Tue Apr 3 14:27:18 2007 +0200
73106
73107 Support for the Philips ISP116x HCD (Host Controller Driver)
73108
73109 Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
73110
73111 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
73112 Author: Markus Klotzbuecher <mk@denx.de>
73113 Date: Tue Apr 3 14:27:08 2007 +0200
73114
73115 USB: cleanup monahans usb support. Remove dead code.
73116
73117 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
73118
73119 commit a65c5768e5537530bd1780af3d3fddc3113a163c
73120 Author: Stefan Roese <sr@denx.de>
73121 Date: Mon Apr 2 10:09:30 2007 +0200
73122
73123 ppc4xx: Change SysACE address on Katmai
73124
73125 With this new base address of the Xilinx SystemACE controller
73126 the Linux driver will be easier to adapt, since it can now be
73127 mapped via the "normal" ioremap() call.
73128
73129 Signed-off-by: Stefan Roese <sr@denx.de>
73130
73131 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
73132 Author: Gerald Van Baren <vanbaren@cideas.com>
73133 Date: Sat Mar 31 14:30:53 2007 -0400
73134
73135 Fix some minor whitespace violations.
73136
73137 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
73138 Author: Gerald Van Baren <vanbaren@cideas.com>
73139 Date: Sat Mar 31 12:23:51 2007 -0400
73140
73141 Add a flattened device tree (fdt) command (2 of 2)
73142
73143 Modifications to the existing code to support the new fdt command.
73144
73145 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
73146 Author: Gerald Van Baren <vanbaren@cideas.com>
73147 Date: Sat Mar 31 12:22:10 2007 -0400
73148
73149 Add a flattened device tree (fdt) command (1 of 2)
73150
73151 The fdt command uses David Gibson's libfdt library to manipulate as well
73152 as print the flattened device tree. This patch is the new command,
73153 the second part is the modifications to the existing code.
73154
73155 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
73156 Author: Gerald Van Baren <vanbaren@cideas.com>
73157 Date: Sat Mar 31 12:13:43 2007 -0400
73158
73159 libfdt: Enhanced and published fdt_next_tag()
73160
73161 Enhanced the formerly private function _fdt_next_tag() to allow stepping
73162 through the tree, used to produce a human-readable dump, and made
73163 it part of the published interface.
73164 Also added some comments.
73165
73166 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
73167 Author: Gerald Van Baren <vanbaren@cideas.com>
73168 Date: Sat Mar 31 12:05:39 2007 -0400
73169
73170 libfdt: Customizations for use by u-boot.
73171
73172 Changes to David Gibson's original source to fit into u-boot's
73173 environment. No functionality changes.
73174
73175 commit 35748177c64a4a83a00057e93bb33e40278a2a96
73176 Author: Gerald Van Baren <vanbaren@cideas.com>
73177 Date: Sat Mar 31 12:00:56 2007 -0400
73178
73179 libfdt: Import libfdt source (2 of 2)
73180
73181 This adds the applicable libfdt source files (unmodified) and a README
73182 to explain where the source came from.
73183
73184 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
73185 Author: Gerald Van Baren <vanbaren@cideas.com>
73186 Date: Sat Mar 31 11:59:59 2007 -0400
73187
73188 libfdt: Import libfdt source (1 of 2)
73189
73190 This adds the applicable libfdt source files (unmodified) and a README
73191 to explain where the source came from.
73192
73193 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
73194 Author: Stefan Roese <sr@denx.de>
73195 Date: Sat Mar 31 13:16:23 2007 +0200
73196
73197 ppc4xx: Update Katmai bootstrap command
73198
73199 Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
73200 is selected.
73201
73202 Signed-off-by: Stefan Roese <sr@denx.de>
73203
73204 commit cabee756a6532986729477c3cc1ea16ef8517ad2
73205 Author: Stefan Roese <sr@denx.de>
73206 Date: Sat Mar 31 13:15:06 2007 +0200
73207
73208 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
73209
73210 Additional RAM information is now printed upon powerup, like
73211 DDR2 frequency and CAS latency.
73212
73213 Signed-off-by: Stefan Roese <sr@denx.de>
73214
73215 commit 60723803431ac75cad085690789e433d5ab9174e
73216 Author: Stefan Roese <sr@denx.de>
73217 Date: Sat Mar 31 08:48:36 2007 +0200
73218
73219 ppc4xx: Change Yucca config file to support ECC
73220
73221 With the updated 44x DDR2 driver the Yucca board now supports
73222 ECC generation and checking.
73223
73224 Signed-off-by: Stefan Roese <sr@denx.de>
73225
73226 commit 490e5730c674b20d708b783a2c5ffd7208f83873
73227 Author: Stefan Roese <sr@denx.de>
73228 Date: Sat Mar 31 08:47:34 2007 +0200
73229
73230 ppc4xx: Fix "bootstrap" command for Katmai board
73231
73232 The board specific "bootstrap" command is now fixed and can
73233 be used for the AMCC Katmai board to configure different
73234 CPU/PLB/OPB frequencies.
73235
73236 Signed-off-by: Stefan Roese <sr@denx.de>
73237
73238 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
73239 Author: Stefan Roese <sr@denx.de>
73240 Date: Sat Mar 31 08:46:08 2007 +0200
73241
73242 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
73243
73244 Fix a bug in the auto calibration routine. This driver now runs
73245 more reliable with the tested modules. It's also tested with
73246 167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
73247
73248 Signed-off-by: Stefan Roese <sr@denx.de>
73249
73250 commit 342cd097be1e7affe82f42ab3da220959a699e64
73251 Author: Michal Simek <monstr@monstr.eu>
73252 Date: Fri Mar 30 22:52:09 2007 +0200
73253
73254 [PATCH] Clean include dependence
73255
73256 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
73257 Author: Michal Simek <monstr@monstr.eu>
73258 Date: Fri Mar 30 22:42:45 2007 +0200
73259
73260 [CLEAN] Remove inefficient Suzaku code
73261
73262 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
73263 Author: Stefan Roese <sr@denx.de>
73264 Date: Wed Mar 28 15:03:16 2007 +0200
73265
73266 Merge some AMCC make targets to keep the top-level Makefile smaller
73267
73268 Signed-off-by: Stefan Roese <sr@denx.de>
73269
73270 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
73271 Author: Stefan Roese <sr@denx.de>
73272 Date: Wed Mar 28 14:52:12 2007 +0200
73273
73274 i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
73275
73276 The "old" i2c commands (iprobe, imd...) are now compiled in again,
73277 even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
73278 config option.
73279
73280 Signed-off-by: Stefan Roese <sr@denx.de>
73281
73282 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
73283 Author: Michal Simek <monstr@monstr.eu>
73284 Date: Tue Mar 27 00:32:16 2007 +0200
73285
73286 PATCH: Resolve GPL license problem
73287
73288 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
73289 Author: Rodolfo Giometti <giometti@enneenne.com>
73290 Date: Mon Mar 26 12:03:36 2007 +0200
73291
73292 PXA: pxa27x USB OHCI support
73293
73294 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
73295
73296 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
73297 Author: Markus Klotzbuecher <mk@denx.de>
73298 Date: Mon Mar 26 11:21:05 2007 +0200
73299
73300 USB: remove the S3C24X0_merge #define, which was introduced while
73301 merging OHCI drivers.
73302
73303 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
73304
73305 commit 1798049522f594013aea29457d46794298c6ae15
73306 Author: Michal Simek <root@monstr.eu>
73307 Date: Mon Mar 26 01:39:07 2007 +0200
73308
73309 Support for XUPV2P board
73310 Reset support
73311 BSP autoconfig support
73312
73313 commit 0d974d5297349504a2ddfa09314be573b5df320a
73314 Author: Stefan Roese <sr@denx.de>
73315 Date: Sat Mar 24 15:57:09 2007 +0100
73316
73317 [PATCH] Add 4xx GPIO functions
73318
73319 This patch adds some 4xx GPIO functions. It also moves some of the
73320 common code and defines into a common 4xx GPIO header file.
73321
73322 Signed-off-by: Stefan Roese <sr@denx.de>
73323
73324 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
73325 Author: Stefan Roese <sr@denx.de>
73326 Date: Sat Mar 24 15:55:58 2007 +0100
73327
73328 [PATCH] Small Sequoia cleanup
73329
73330 Signed-off-by: Stefan Roese <sr@denx.de>
73331
73332 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
73333 Author: Stefan Roese <sr@denx.de>
73334 Date: Sat Mar 24 15:45:34 2007 +0100
73335
73336 [PATCH] Clean up 40EZ/Acadia support
73337
73338 This patch cleans up all the open issue of the preliminary
73339 Acadia support.
73340
73341 Signed-off-by: Stefan Roese <sr@denx.de>
73342
73343 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
73344 Author: Jon Loeliger <jdl@freescale.com>
73345 Date: Tue Dec 12 11:02:20 2006 -0600
73346
73347 Fix 8641HPCN problem with ld version 2.16
73348
73349 (Dot outside sections problem).
73350
73351 This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
73352
73353 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73354
73355 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
73356 Author: Haiying Wang <haiying.wang@freescale.com>
73357 Date: Thu Dec 7 10:35:55 2006 -0600
73358
73359 Set Rev 2.x 86xx PIC in mixed mode.
73360
73361 Prevent false interrupt from hanging Linux as MSR[EE] is set
73362 to enable interrupts by changing the PIC out of the default
73363 pass through mode into mixed mode.
73364
73365 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
73366 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73367
73368 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
73369 Author: Jason Jin <jason.jin@freescale.com>
73370 Date: Thu Dec 7 10:32:35 2006 -0600
73371
73372 Add flash cmd function to 8641HPCN ramboot
73373
73374 Also fixes some commmand for 8641 HPCN ramboot case.
73375
73376 Signed-off-by: Jason Jin <jason.jin@freescale.com>
73377 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73378
73379 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
73380 Author: Ed Swarthout <ed.swarthout@freescale.com>
73381 Date: Thu Dec 7 10:34:14 2006 -0600
73382
73383 Add support for 8641 Rev 2 silicon.
73384
73385 Without this patch, I am unable to get to the prompt on rev 2 silicon.
73386 Only set ddrioovcr for rev1.
73387
73388 Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
73389 Signed-off-by: Jon Loeliger <jdl@freescale.com>
73390
73391 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
73392 Author: Wolfgang Denk <wd@denx.de>
73393 Date: Thu Mar 22 00:13:12 2007 +0100
73394
73395 Code cleanup / re-insert previous Copyright entries.
73396
73397 Signed-off-by: Wolfgang Denk <wd@denx.de>
73398
73399 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
73400 Author: Wolfgang Denk <wd@denx.de>
73401 Date: Wed Mar 21 23:26:15 2007 +0100
73402
73403 Code cleanup. Update CHANGELOG
73404
73405 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
73406 Author: Stefan Roese <sr@denx.de>
73407 Date: Wed Mar 21 14:54:29 2007 +0100
73408
73409 ppc4xx: Fix file mode of include/configs/acadia.h
73410
73411 Signed-off-by: Stefan Roese <sr@denx.de>
73412
73413 commit d5f4614c9350d9333e575100fb250aab774d0258
73414 Author: Markus Klotzbuecher <mk@denx.de>
73415 Date: Wed Mar 21 14:41:46 2007 +0100
73416
73417 SPC1920: fix small clock routing bug
73418
73419 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
73420
73421 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
73422 Author: Stefan Roese <sr@denx.de>
73423 Date: Wed Mar 21 13:39:57 2007 +0100
73424
73425 [PATCH] Add AMCC Acadia (405EZ) eval board support
73426
73427 This patch adds support for the new AMCC Acadia eval board.
73428
73429 Please note that this Acadia/405EZ support is still in a beta stage.
73430 Still lot's of cleanup needed but we need a preliminary release now.
73431
73432 Signed-off-by: Stefan Roese <sr@denx.de>
73433
73434 commit e01bd218b00af73499331a1a701625a852cd286f
73435 Author: Stefan Roese <sr@denx.de>
73436 Date: Wed Mar 21 13:38:59 2007 +0100
73437
73438 [PATCH] Add AMCC PPC405EZ support
73439
73440 This patch adds support for the new AMCC 405EZ PPC. It is in
73441 preparation for the AMCC Acadia board support.
73442
73443 Please note that this Acadia/405EZ support is still in a beta stage.
73444 Still lot's of cleanup needed but we need a preliminary release now.
73445
73446 Signed-off-by: Stefan Roese <sr@denx.de>
73447
73448 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
73449 Author: Heiko Schocher <hs@pollux.denx.de>
73450 Date: Wed Mar 21 08:45:17 2007 +0100
73451
73452 [PATCH] TQM8272: dont change the bits given from the HRCW
73453 for the SIUMCR and BCR Register.
73454 Fix the calculation for the EEprom Size
73455
73456 Signed-off-by: Heiko Schocher <hs@denx.de>
73457
73458 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
73459 Author: Aubrey Li <aubrey.adi@gmail.com>
73460 Date: Tue Mar 20 18:16:24 2007 +0800
73461
73462 [Blackfin][PATCH] Add BF561 EZKIT board support
73463
73464 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
73465 Author: Aubrey Li <aubrey.adi@gmail.com>
73466 Date: Mon Mar 19 22:55:58 2007 +0800
73467
73468 [Blackfin][PATCH] minor cleanup
73469
73470 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
73471 Author: Wolfgang Denk <wd@denx.de>
73472 Date: Mon Mar 19 13:10:08 2007 +0100
73473
73474 Remove obsoleted POST files.
73475
73476 Signed-off-by: Wolfgang Denk <wd@denx.de>
73477
73478 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
73479 Author: Aubrey Li <aubrey.adi@gmail.com>
73480 Date: Mon Mar 19 01:26:11 2007 +0800
73481
73482 [PATCH] Add flash chip M29W320ET/B support
73483
73484 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
73485 Author: Aubrey Li <aubrey.adi@gmail.com>
73486 Date: Mon Mar 19 01:24:52 2007 +0800
73487
73488 [Blackfin][PATCH] Add BF537 stamp board support
73489
73490 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
73491 Author: Stefan Roese <sr@denx.de>
73492 Date: Fri Mar 16 21:11:42 2007 +0100
73493
73494 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
73495
73496 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
73497 DDR memory are dynamically programmed matching the total size
73498 of the equipped memory (DIMM modules).
73499
73500 Signed-off-by: Stefan Roese <sr@denx.de>
73501
73502 commit 76d1466f918b881cda2d259254761e73885093c2
73503 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73504 Date: Tue Mar 13 13:38:05 2007 +0100
73505
73506 [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
73507 boards in terms of unification.
73508
73509 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73510
73511 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
73512 Author: Wolfgang Denk <wd@denx.de>
73513 Date: Tue Mar 13 16:05:55 2007 +0100
73514
73515 Make SC3 board build with 'make O='; use 'addcons' consistently
73516 (SC3 and Jupiter used to use 'addcon' instead).
73517
73518 Signed-off-by: Wolfgang Denk wd@denx.de
73519
73520 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
73521 Author: Heiko Schocher <hs@pollux.denx.de>
73522 Date: Tue Mar 13 09:40:59 2007 +0100
73523
73524 [PATCH] update board config for jupiter Board:
73525 added Hush Shell,
73526 CONFIG_CMDLINE_EDITING,
73527 CFG_ENV_ADDR_REDUND activated
73528
73529 Signed-off-by: Heiko Schocher <hs@denx.de>
73530
73531 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
73532 Author: Aubrey Li <aubrey.adi@gmail.com>
73533 Date: Mon Mar 12 12:11:55 2007 +0800
73534
73535 [Blackfin][PATCH] minor cleanup
73536
73537 commit bfa5754a58477ac917d21527cd0f079d87cf188e
73538 Author: Aubrey Li <aubrey.adi@gmail.com>
73539 Date: Mon Mar 12 01:42:06 2007 +0800
73540
73541 [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
73542
73543 commit 8440bb14581a294375c34b91b42512f9753d1130
73544 Author: Aubrey Li <aubrey.adi@gmail.com>
73545 Date: Mon Mar 12 00:25:14 2007 +0800
73546
73547 [Blackfin][PATCH] code cleanup
73548
73549 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
73550 Author: Michal Simek <monstr@monstr.eu>
73551 Date: Sun Mar 11 13:48:24 2007 +0100
73552
73553 [Microblaze][PATCH] part 2
73554 timer support
73555 interrupt controller support
73556 flash support
73557 ethernet support
73558 cache support
73559 board information support
73560 env support
73561 booting image support
73562
73563 adding support for Xilinx ML401
73564
73565 commit 76316a318de91f6184e7c22a10e02d275ade2441
73566 Author: Michal Simek <monstr@monstr.eu>
73567 Date: Sun Mar 11 13:42:58 2007 +0100
73568
73569 [Microblaze][PATCH]
73570 timer support
73571 interrupt controller support
73572 flash support
73573 ethernet support
73574 cache support
73575 board information support
73576 env support
73577 booting image support
73578
73579 adding support for Xilinx ML401
73580
73581 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
73582 Author: Aubrey Li <aubrey.adi@gmail.com>
73583 Date: Sat Mar 10 23:49:29 2007 +0800
73584
73585 [Blackfin][PATCH] code cleanup
73586
73587 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
73588 Author: Aubrey.Li <aubrey.adi@gmail.com>
73589 Date: Fri Mar 9 13:40:56 2007 +0800
73590
73591 [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
73592
73593 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
73594 Author: Aubrey.Li <aubrey.adi@gmail.com>
73595 Date: Fri Mar 9 13:38:44 2007 +0800
73596
73597 [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
73598
73599 commit 992423ab43c2bcf6b704853bd00af77450915e20
73600 Author: Stefan Roese <sr@denx.de>
73601 Date: Thu Mar 8 23:00:08 2007 +0100
73602
73603 ppc4xx: Fix file mode of sequoia.c
73604
73605 Signed-off-by: Stefan Roese <sr@denx.de>
73606
73607 commit eb92f613556800f7483666db09d9a237ad911d4a
73608 Author: Wolfgang Denk <wd@pollux.denx.de>
73609 Date: Thu Mar 8 22:52:51 2007 +0100
73610
73611 Minor cleanup.
73612
73613 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
73614 Author: John Otken john@softadvances.com <john@softadvances.com>
73615 Date: Thu Mar 8 09:39:48 2007 -0600
73616
73617 ppc4xx: Clear Sequoia/Rainier security engine reset bits
73618
73619 Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
73620
73621 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
73622 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73623 Date: Thu Mar 8 16:26:52 2007 +0100
73624
73625 [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
73626
73627 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73628
73629 commit d9fc703246840c4b268debf48c334ba55c597dc0
73630 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73631 Date: Thu Mar 8 16:25:47 2007 +0100
73632
73633 [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
73634
73635 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73636
73637 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
73638 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73639 Date: Thu Mar 8 16:23:11 2007 +0100
73640
73641 [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
73642
73643 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73644
73645 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
73646 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73647 Date: Thu Mar 8 16:20:32 2007 +0100
73648
73649 [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
73650
73651 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73652
73653 commit f9fc6a5852a6335840882fa2111925010eea1abe
73654 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73655 Date: Wed Mar 7 15:32:01 2007 +0100
73656
73657 fixed ethernet phy configuration for plu405 board
73658
73659 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
73660
73661 commit 769104c9356594deb2092e204a39c05b33202d6c
73662 Author: Wolfgang Denk <wd@pollux.denx.de>
73663 Date: Thu Mar 8 21:49:27 2007 +0100
73664
73665 Minor cleanup
73666
73667 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
73668 Author: Stefan Roese <sr@denx.de>
73669 Date: Thu Mar 8 10:13:16 2007 +0100
73670
73671 [PATCH] Update AMCC Luan 440SP eval board support
73672
73673 The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
73674 inititializition. This includes DDR auto calibration and support
73675 for different DIMM modules, instead of the fixed setup used in
73676 the earlier version.
73677
73678 This patch also enables the cache in FLASH for the startup
73679 phase of U-Boot (while running from FLASH). After relocating to
73680 SDRAM the cache is disabled again. This will speed up the boot
73681 process, especially the SDRAM setup, since there are some loops
73682 for memory testing (auto calibration).
73683
73684 Signed-off-by: Stefan Roese <sr@denx.de>
73685
73686 commit 2f5df47351910a2936c7741cf111855829200943
73687 Author: Stefan Roese <sr@denx.de>
73688 Date: Thu Mar 8 10:10:18 2007 +0100
73689
73690 [PATCH] Update AMCC Yucca 440SPe eval board support
73691
73692 The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
73693 inititializition. This includes DDR auto calibration and support
73694 for different DIMM modules, instead of the fixed setup used in
73695 the earlier version.
73696
73697 Signed-off-by: Stefan Roese <sr@denx.de>
73698
73699 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
73700 Author: Stefan Roese <sr@denx.de>
73701 Date: Thu Mar 8 10:07:18 2007 +0100
73702
73703 ppc4xx: Small AMCC Katmai 440SPe update
73704
73705 Signed-off-by: Stefan Roese <sr@denx.de>
73706
73707 commit df294497479b1dca6dd86318b2a912f72fede0df
73708 Author: Stefan Roese <sr@denx.de>
73709 Date: Thu Mar 8 10:06:09 2007 +0100
73710
73711 ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
73712
73713 Signed-off-by: Stefan Roese <sr@denx.de>
73714
73715 commit 83853178bd36bca6f0f8f1331476620c84a587fc
73716 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
73717 Date: Wed Mar 7 12:14:50 2007 -0600
73718
73719 net - Support ping reply when processing net-loop
73720
73721 Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
73722
73723 This permits the ping command to test the phy interface when the phy
73724 is put in loopback mode (typically by setting register 0 bit 14).
73725
73726 It also allows the port to respond to an external ping when u-boot is
73727 processing some other net command (such as tftp). This is useful when
73728 tftp appears to hang.
73729
73730 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
73731 Signed-off-by: Ben Warren <bwarren@qstreams.com>
73732
73733 commit fa1aef15bcd47736687be1af544506e90fba545d
73734 Author: Stefan Roese <sr@denx.de>
73735 Date: Wed Mar 7 16:43:00 2007 +0100
73736
73737 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
73738
73739 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
73740 DDR memory are dynamically programmed matching the total size
73741 of the equipped memory (DIMM modules).
73742
73743 Signed-off-by: Stefan Roese <sr@denx.de>
73744
73745 commit e2ebe696818939e2b974628be9c921ea3fe9de13
73746 Author: Stefan Roese <sr@denx.de>
73747 Date: Wed Mar 7 16:39:36 2007 +0100
73748
73749 [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
73750
73751 This patch fixes a problem that occurs when 2 DIMM's are
73752 used. This problem was first spotted and fixed by Gerald Jackson
73753 <gerald.jackson@reaonixsecurity.com> but this patch fixes the
73754 problem in a little more clever way.
73755
73756 This patch also adds the nice functionality to dynamically
73757 create the TLB entries for the SDRAM (tlb.c). So we should
73758 never run into such problems with wrong (too short) TLB
73759 initialization again on these platforms.
73760
73761 As this feature is new to the "old" 44x SPD DDR driver, it
73762 has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
73763
73764 Signed-off-by: Stefan Roese <sr@denx.de>
73765
73766 commit 39218433983417b9df087976a79e3f80dd5e83d6
73767 Author: Wolfgang Denk <wd@denx.de>
73768 Date: Wed Mar 7 16:33:44 2007 +0100
73769
73770 UC101: fix compiler warnings
73771
73772 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
73773 Author: Wolfgang Denk <wd@pollux.denx.de>
73774 Date: Wed Mar 7 16:19:46 2007 +0100
73775
73776 HMI1001: fix build error, cleanup compiler warnings.
73777
73778 commit ad5bb451ade552c44bef9119d907929ebc2c126f
73779 Author: Wolfgang Denk <wd@pollux.denx.de>
73780 Date: Tue Mar 6 18:08:43 2007 +0100
73781
73782 Restructure POST directory to support of other CPUs, boards, etc.
73783
73784 commit a5284efd125967675b2e9c6ef7b95832268ad360
73785 Author: Wolfgang Denk <wd@pollux.denx.de>
73786 Date: Tue Mar 6 18:01:47 2007 +0100
73787
73788 Fix HOSTARCH handling.
73789 Patch by Mike Frysinger, Mar 05 2007
73790
73791 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
73792 Author: Stefan Roese <sr@denx.de>
73793 Date: Tue Mar 6 07:47:04 2007 +0100
73794
73795 [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
73796
73797 As provided by the AMCC applications team, this patch optimizes the
73798 DDR2 setup for 166MHz bus speed. The values provided are also save
73799 to use on a "normal" 133MHz PLB bus system. Only the refresh counter
73800 setup has to be adjusted as done in this patch.
73801
73802 For this the NAND booting version had to include the "speed.c" file
73803 from the cpu/ppc4xx directory. With this addition the NAND SPL image
73804 will just fit into the 4kbytes of program space. gcc version 4.x as
73805 provided with ELDK 4.x is needed to generate this optimized code.
73806
73807 Signed-off-by: Stefan Roese <sr@denx.de>
73808
73809 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
73810 Author: Wolfgang Denk <wd@pollux.denx.de>
73811 Date: Sun Mar 4 01:36:05 2007 +0100
73812
73813 Some code cleanup.
73814
73815 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
73816 Author: Kim Phillips <kim.phillips@freescale.com>
73817 Date: Wed Feb 28 00:02:04 2007 -0600
73818
73819 mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
73820
73821 (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
73822
73823 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
73824 Author: Kumar Gala <galak@kernel.crashing.org>
73825 Date: Tue Feb 27 23:51:42 2007 -0600
73826
73827 mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
73828
73829 The config value for:
73830 * CFG_ACR_PIPE_DEP
73831 * CFG_ACR_RPTCNT
73832 * CFG_SPCR_TSEC1EP
73833 * CFG_SPCR_TSEC2EP
73834 * CFG_SCCR_TSEC1CM
73835 * CFG_SCCR_TSEC2CM
73836
73837 Were not being used when setting the appropriate register
73838
73839 Added:
73840 * CFG_SCCR_USBMPHCM
73841 * CFG_SCCR_USBDRCM
73842 * CFG_SCCR_PCICM
73843 * CFG_SCCR_ENCCM
73844
73845 To allow full config of the SCCR.
73846
73847 Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
73848 that were just bogus.
73849
73850 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
73851
73852 commit d51b3cf371cd441030460ef19d36b2924c361b1a
73853 Author: Kim Phillips <kim.phillips@freescale.com>
73854 Date: Thu Feb 22 20:06:57 2007 -0600
73855
73856 mpc83xx: update [local-]mac-address properties on UEC based devices
73857
73858 8360 and 832x weren't updating their [local-]mac-address
73859 properties. This patch fixes that.
73860
73861 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73862
73863 commit 61f4f912acbe60776c5e00df1ec94094ce672957
73864 Author: Timur Tabi <timur@freescale.com>
73865 Date: Tue Feb 13 10:41:42 2007 -0600
73866
73867 mpc83xx: write MAC address to mac-address and local-mac-address
73868
73869 Some device trees have a mac-address property, some have local-mac-address,
73870 and some have both. To support all of these device trees, this patch
73871 updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
73872 This function already updates local-mac-address.
73873
73874 Signed-off-by: Timur Tabi <timur@freescale.com>
73875
73876 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
73877 Author: Kim Phillips <kim.phillips@freescale.com>
73878 Date: Tue Feb 27 18:41:08 2007 -0600
73879
73880 mpc83xx: add command line editing by default
73881
73882 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
73883 Author: Kim Phillips <kim.phillips@freescale.com>
73884 Date: Wed Feb 14 19:50:53 2007 -0600
73885
73886 mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
73887
73888 Disable G1TXCLK, G2TXCLK h/w buffers. This patch
73889 fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
73890
73891 Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
73892
73893 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
73894 Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
73895
73896 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
73897 Author: Xie Xiaobo <r63061@freescale.com>
73898 Date: Wed Feb 14 18:27:17 2007 +0800
73899
73900 mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
73901
73902 The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
73903 it pass DDR/DDR2 compliance tests.
73904
73905 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
73906
73907 commit b110f40bd180c6b560276589beedf753e97c46ce
73908 Author: Xie Xiaobo <r63061@freescale.com>
73909 Date: Wed Feb 14 18:27:06 2007 +0800
73910
73911 mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
73912
73913 MPC8360E rev2.0 have new spridr,and PVR value,
73914 The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
73915
73916 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
73917
73918 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
73919 Author: Xie Xiaobo <r63061@freescale.com>
73920 Date: Wed Feb 14 18:26:44 2007 +0800
73921
73922 mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
73923
73924 MPC8349E rev3.1 have new spridr,and PVR value,
73925 The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
73926
73927 Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
73928
73929 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
73930 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
73931 Date: Wed Jan 31 11:04:19 2007 +0100
73932
73933 mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
73934
73935 Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
73936 which is used to se if an slave will ACK after receiving its address.
73937
73938 Correct i2c probing to use this method as the old method could upset
73939 a slave as it wrote a data byte to it.
73940
73941 Add a small delay in i2c_init() to let the controller
73942 shutdown any ongoing I2C activity.
73943
73944 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
73945
73946 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
73947 Author: Timur Tabi <timur@freescale.com>
73948 Date: Wed Jan 31 15:54:29 2007 -0600
73949
73950 mpc83xx: Add support for the MPC8349E-mITX-GP
73951
73952 Add support for the MPC8349E-mITX-GP, a stripped-down version of the
73953 MPC8349E-mITX. Bonus features include support for low-boot (BMS bit in
73954 HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
73955
73956 Signed-off-by: Timur Tabi <timur@freescale.com>
73957
73958 commit fab16807adad350f618024350c6950165c247c72
73959 Author: Timur Tabi <timur@freescale.com>
73960 Date: Wed Jan 31 15:54:20 2007 -0600
73961
73962 mpc83xx: Delete sdram_init() for MPC8349E-mITX
73963
73964 There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
73965 never does anything. This patch deletes it.
73966
73967 Signed-off-by: Timur Tabi <timur@freescale.com>
73968
73969 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
73970 Author: Dave Liu <daveliu@freescale.com>
73971 Date: Fri Jan 19 10:43:26 2007 +0800
73972
73973 mpc83xx: Fix the LAW1/3 bug
73974
73975 The patch solves the alignment problem of the local bus access windows to
73976 render accessible the memory bank and PHY registers of UPC 1 (starting at
73977 0xf801 0000). What we actually did was to adjust the sizes of the bus
73978 access windows so that the base address alignment requirement would be met.
73979
73980 Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
73981 Signed-off-by: Gridish Shlomi <gridish@freescale.com>
73982 Signed-off-by: Dave Liu <daveliu@freescale.com>
73983
73984 commit 97c4b397dce236a7318b304667bf89e59d08b17c
73985 Author: Kim Phillips <kim.phillips@freescale.com>
73986 Date: Tue Jan 30 16:15:31 2007 -0600
73987
73988 mpc83xx: don't hang if watchdog configured on 8360, 832x
73989
73990 don't hang if watchdog configured on 8360, 832x
73991
73992 The watchdog programming model is the same across all 83xx devices;
73993 make the code reflect that.
73994
73995 commit b70047478570e371ce7223be342ce98afea0f7d6
73996 Author: Kim Phillips <kim.phillips@freescale.com>
73997 Date: Tue Jan 30 16:15:21 2007 -0600
73998
73999 mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
74000
74001 protect memcpy to bad address if a local-mac-address is missing from dt
74002
74003 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
74004 Author: Kim Phillips <kim.phillips@freescale.com>
74005 Date: Tue Jan 30 16:15:04 2007 -0600
74006
74007 mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
74008
74009 make 8360 default environment fdt be 8360 (not 8349)
74010
74011 commit a28899c910024a0226331df07207b1038c300c93
74012 Author: Emilian Medve <Emilian.Medve@freescale.com>
74013 Date: Tue Jan 30 16:14:50 2007 -0600
74014
74015 mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
74016
74017 The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
74018 be used for busy-waiting since it strips the 'volatile' property from
74019 the bd variable. gcc3 was working by pure luck.
74020
74021 This is a follow on patch to "Fix the UEC driver bug of QE"
74022
74023 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
74024 Author: Kumar Gala <galak@kernel.crashing.org>
74025 Date: Tue Jan 30 14:08:30 2007 -0600
74026
74027 mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
74028
74029 The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
74030 MPC834X class processors. Change the protections from CONFIG_MPC8349 to
74031 CONFIG_MPC834X so they are more generic.
74032
74033 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
74034
74035 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
74036 Author: Kim Phillips <kim.phillips@freescale.com>
74037 Date: Thu Jan 25 13:40:55 2007 -0600
74038
74039 mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
74040
74041 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
74042 Author: Kim Phillips <kim.phillips@freescale.com>
74043 Date: Wed Jan 24 17:18:37 2007 -0600
74044
74045 mpc83xx: sort Makefile targets
74046
74047 reordered targets alphabetically
74048
74049 commit 91e25769771c1164ed63ffca0add49f934ae3343
74050 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
74051 Date: Tue Jan 16 11:38:14 2007 -0500
74052
74053 mpc83xx: U-Boot support for Wind River SBC8349
74054
74055 I've redone the SBC8349 support to match git-current, which
74056 incorporates all the MPC834x updates from Freescale since the 1.1.6
74057 release, including the DDR changes.
74058
74059 I've kept all the SBC8349 files as parallel as possible to the
74060 MPC8349EMDS ones for ease of maintenance and to allow for easy
74061 inspection of what was changed to support this board. Hence the SBC8349
74062 U-Boot has FDT support and everything else that the MPC8349EMDS has.
74063
74064 Fortunately the Freescale updates added support for boards using CS0,
74065 but I had to change spd_sdram.c to allow for board specific settings for
74066 the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
74067 default if the board doesn't specify a value.)
74068
74069 Hopefully this should be mergeable as-is and require no whitespace
74070 cleanups or similar, but if something doesn't measure up then let me
74071 know and I'll fix it.
74072
74073 Thanks,
74074 Paul.
74075
74076 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
74077 Author: Sam Song <samsongshu@yahoo.com.cn>
74078 Date: Thu Dec 14 19:03:21 2006 +0800
74079
74080 mpc83xx: Remove a redundant semicolon in mpc8349itx.c
74081
74082 A redundant semicolon existed in mpc8349itx.c
74083 should be removed.
74084
74085 Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
74086
74087 commit f35f358241c549be3f75cfe2eaa642914275b7ba
74088 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
74089 Date: Wed Dec 6 21:23:55 2006 -0500
74090
74091 mpc83xx: Put the version (and magic) after the HRCW.
74092
74093 Put the version (and magic) after the HRCW. This puts it in a fixed
74094 location in flash, not at the start of flash but as close as we can get.
74095
74096 Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
74097
74098 commit 48aecd969171a6e99a55fae04933857787f9a5bd
74099 Author: Dave Liu <r63238@freescale.com>
74100 Date: Thu Dec 7 21:14:51 2006 +0800
74101
74102 mpc83xx: Add the MPC832XEMDS board readme
74103
74104 Add the MPC832XEMDS board readme
74105
74106 Signed-off-by: Dave Liu <daveliu@freescale.com>
74107
74108 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
74109 Author: Dave Liu <r63238@freescale.com>
74110 Date: Thu Dec 7 21:13:15 2006 +0800
74111
74112 mpc83xx: Add support for the MPC832XEMDS board
74113
74114 This patch supports DUART, ETH3/4 and PCI etc.
74115
74116 Signed-off-by: Dave Liu <daveliu@freescale.com>
74117
74118 commit e080313c32322e15ab5a18eb896a252858c57284
74119 Author: Dave Liu <r63238@freescale.com>
74120 Date: Thu Dec 7 21:11:58 2006 +0800
74121
74122 mpc83xx: streamline the 83xx immr head file
74123
74124 For better format and style, I streamlined the 83xx head files,
74125 including immap_83xx.h and mpc83xx.h. In the old head files, 1)
74126 duplicated macro definition appear in the both files; 2) the structure
74127 of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
74128 macro definition put inside the each structure. So, I cleaned up the
74129 structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
74130 moved the macro definition to mpc83xx.h, Just like MPC8260.
74131
74132 CHANGELOG
74133
74134 *streamline the 83xx immr head file
74135
74136 Signed-off-by: Dave Liu <daveliu@freescale.com>
74137
74138 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
74139 Author: Dave Liu <r63238@freescale.com>
74140 Date: Wed Dec 6 11:38:17 2006 +0800
74141
74142 mpc83xx: Fix the UEC driver bug of QE
74143
74144 The patch prevents the GCC tool chain from striping useful code for
74145 optimization. It will make UEC ethernet driver workable, Otherwise the
74146 UEC will fail in tx when you are using gcc4.x. but the driver can work
74147 when using gcc3.4.3.
74148
74149 CHANGELOG
74150
74151 *Prevent the GCC from striping code for optimization, Otherwise the UEC
74152 will tx failed when you are using gcc4.x.
74153
74154 Signed-off-by: Dave Liu <daveliu@freescale.com>
74155
74156 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
74157 Author: Stefan Roese <sr@denx.de>
74158 Date: Thu Mar 1 21:11:36 2007 +0100
74159
74160 [PATCH] Update AMCC Katmai 440SPe eval board support
74161
74162 This patch updates the recently added Katmai board support. The biggest
74163 change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
74164 driver.
74165
74166 Please note, that still some problems are left with some memory
74167 configurations. See the driver for more details.
74168
74169 Signed-off-by: Stefan Roese <sr@denx.de>
74170
74171 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
74172 Author: Stefan Roese <sr@denx.de>
74173 Date: Thu Mar 1 07:03:25 2007 +0100
74174
74175 [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
74176
74177 Signed-off-by: Stefan Roese <sr@denx.de>
74178
74179 commit ccbc7036648e465697ca298ba51e0e76dda352a0
74180 Author: Wolfgang Denk <wd@pollux.denx.de>
74181 Date: Wed Feb 28 01:28:53 2007 +0100
74182
74183 SC3: fix typo in default environment
74184
74185 commit e344568b1b46af85ec32d815586f91bc115d6223
74186 Author: Sergei Poselenov <sposelenov@emcraft.com>
74187 Date: Tue Feb 27 20:15:30 2007 +0300
74188
74189 MCC200: Fixes for update procedure
74190
74191 - fix logic error in image type handling
74192 - make sure file system images (cramfs etc.) get stored in flash
74193 with image header stripped so they can be mounted through MTD
74194
74195 commit 743571145b37182757d4e688a77860b36ee77573
74196 Author: Wolfgang Denk <wd@pollux.denx.de>
74197 Date: Tue Feb 27 14:26:04 2007 +0100
74198
74199 Minor code cleanup.
74200
74201 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
74202 Author: Sergei Poselenov <sposelenov@emcraft.com>
74203 Date: Tue Feb 27 12:40:16 2007 +0300
74204
74205 MCC200 update - add LCD Progress Indicator
74206
74207 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
74208 Author: Stefan Roese <sr@denx.de>
74209 Date: Thu Feb 22 07:43:34 2007 +0100
74210
74211 [PATCH] get_dev() now unconditionally uses manual relocation
74212
74213 Since the relocation fix is not included yet and we're not sure how
74214 it will be added, this patch removes code that required relocation
74215 to be fixed for now.
74216
74217 Signed-off-by: Stefan Roese <sr@denx.de>
74218
74219 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
74220 Author: Stefan Roese <sr@denx.de>
74221 Date: Thu Feb 22 07:40:23 2007 +0100
74222
74223 [PATCH] Change systemace driver to select 8 & 16bit mode
74224
74225 As suggested by Grant Likely this patch enables the Xilinx SystemACE
74226 driver to select 8 or 16bit mode upon startup.
74227
74228 Signed-off-by: Stefan Roese <sr@denx.de>
74229
74230 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
74231 Author: Haiying Wang <Haiying.Wang@freescale.com>
74232 Date: Wed Feb 21 16:52:31 2007 +0100
74233
74234 [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
74235
74236 Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
74237 is fully finished. The sync() is defined in each CPU's io.h file. For
74238 those CPUs which do not need sync for now, a dummy sync() is defined in
74239 their io.h as well.
74240
74241 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
74242
74243 commit da04995c7dc6772013a9a0dc5c767f190c402478
74244 Author: Stefan Roese <sr@denx.de>
74245 Date: Wed Feb 21 13:44:34 2007 +0100
74246
74247 [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
74248
74249 Signed-off-by: Stefan Roese <sr@denx.de>
74250
74251 commit 751bb57107d78978ae08e697c3deba816f5be091
74252 Author: Stefan Roese <sr@denx.de>
74253 Date: Tue Feb 20 13:21:57 2007 +0100
74254
74255 [PATCH] Fix relocation problem with "new" get_dev() function
74256
74257 This patch enables the "new" get_dev() function for block devices
74258 introduced by Grant Likely to be used on systems that still suffer
74259 from the relocation problems (manual relocation neede because of
74260 problems with linker script).
74261
74262 Hopefully we can resolve this relocation issue soon for all platform
74263 so we don't need this additional code anymore.
74264
74265 Signed-off-by: Stefan Roese <sr@denx.de>
74266
74267 commit d93e2212f962668b3dce091ff5edc33f2347fe37
74268 Author: Stefan Roese <sr@denx.de>
74269 Date: Tue Feb 20 13:17:42 2007 +0100
74270
74271 [PATCH] Update SystemACE driver for 16bit access
74272
74273 This patch removes some problems when the Xilinx SystemACE driver
74274 is used with 16bit access on an big endian platform (like the
74275 AMCC Katmai).
74276
74277 Signed-off-by: Stefan Roese <sr@denx.de>
74278
74279 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
74280 Author: Stefan Roese <sr@denx.de>
74281 Date: Tue Feb 20 13:15:40 2007 +0100
74282
74283 [PATCH] Clean up Katmai (440SPe) linker script
74284
74285 Signed-off-by: Stefan Roese <sr@denx.de>
74286
74287 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
74288 Author: Stefan Roese <sr@denx.de>
74289 Date: Tue Feb 20 10:57:08 2007 +0100
74290
74291 [PATCH] Add support for the AMCC Katmai (440SPe) eval board
74292
74293 Signed-off-by: Stefan Roese <sr@denx.de>
74294
74295 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
74296 Author: Stefan Roese <sr@denx.de>
74297 Date: Tue Feb 20 10:51:26 2007 +0100
74298
74299 [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
74300
74301 This patch switches to the desired I2C bus when the date/dtt
74302 commands are called. This can be configured using the
74303 CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
74304
74305 Signed-off-by: Stefan Roese <sr@denx.de>
74306
74307 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
74308 Author: Stefan Roese <sr@denx.de>
74309 Date: Tue Feb 20 10:43:34 2007 +0100
74310
74311 [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
74312
74313 This patch adds support for the DDR2 controller used on the
74314 440SP and 440SPe. It is tested on the Katmai (440SPe) eval
74315 board and works fine with the following DIMM modules:
74316
74317 - Corsair CM2X512-5400C4 (512MByte per DIMM)
74318 - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
74319 - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
74320
74321 This patch also adds the nice functionality to dynamically
74322 create the TLB entries for the SDRAM (tlb.c). So we should
74323 never run into such problems with wrong (too short) TLB
74324 initialization again on these platforms.
74325
74326 Signed-off-by: Stefan Roese <sr@denx.de>
74327
74328 commit 36d830c9830379045f5daa9f542ac1c990c70068
74329 Author: Stefan Roese <sr@denx.de>
74330 Date: Tue Feb 20 10:35:42 2007 +0100
74331
74332 [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
74333
74334 Since the existing 4xx SPD SDRAM initialization routines for the
74335 405 SDRAM controller and the 440 DDR controller don't have much in
74336 common this patch splits both drivers into different files.
74337
74338 This is in preparation for the 440 DDR2 controller support (440SP/e).
74339
74340 Signed-off-by: Stefan Roese <sr@denx.de>
74341
74342 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
74343 Author: Stefan Roese <sr@denx.de>
74344 Date: Tue Feb 20 10:27:08 2007 +0100
74345
74346 [PATCH] PPC4xx: Add support for multiple I2C busses
74347
74348 This patch adds support for multiple I2C busses on the PPC4xx
74349 platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
74350 to make use of this feature.
74351
74352 It also merges the 405 and 440 i2c header files into one common
74353 file 4xx_i2c.h.
74354
74355 Also the 4xx i2c reset procedure is reworked since I experienced
74356 some problems with the first access on the 440SPe Katmai board.
74357
74358 Signed-off-by: Stefan Roese <sr@denx.de>
74359
74360 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
74361 Author: Grant Likely <grant.likely@secretlab.ca>
74362 Date: Tue Feb 20 09:05:45 2007 +0100
74363
74364 [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
74365
74366 Block device read/write is anonymous data; there is no need to use a
74367 typed pointer. void * is fine. Also add a hook for block_read functions
74368
74369 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74370
74371 commit 53758fa20e935cc87eeb0519ed365df753a6f289
74372 Author: Grant Likely <grant.likely@secretlab.ca>
74373 Date: Tue Feb 20 09:05:38 2007 +0100
74374
74375 [PATCH 8_9] Add block_write hook to block_dev_desc_t
74376
74377 Preparation for future patches which support block device writing
74378
74379 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74380
74381 commit f4852ebe6ca946a509667eb68be42026f837be76
74382 Author: Grant Likely <grant.likely@secretlab.ca>
74383 Date: Tue Feb 20 09:05:31 2007 +0100
74384
74385 [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
74386
74387 Register read/write does not need to be wrapped in a full function. The
74388 patch replaces them with macros.
74389
74390 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74391
74392 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
74393 Author: Grant Likely <grant.likely@secretlab.ca>
74394 Date: Tue Feb 20 09:05:23 2007 +0100
74395
74396 [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
74397
74398 The code in this file is not a command; it is a device driver. Put it in
74399 the correct place. There are zero functional changes in this patch, it
74400 only moves the file.
74401
74402 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74403
74404 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
74405 Author: Grant Likely <grant.likely@secretlab.ca>
74406 Date: Tue Feb 20 09:05:16 2007 +0100
74407
74408 [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
74409
74410 This patch is in preparation of additional changes to the sysace driver.
74411 May as well take this opportunity to fixup the inconsistent whitespace since
74412 this file is about to undergo major changes anyway.
74413
74414 There are zero functional changes in this patch. It only cleans up the
74415 the whitespace.
74416
74417 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74418
74419 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
74420 Author: Grant Likely <grant.likely@secretlab.ca>
74421 Date: Tue Feb 20 09:05:07 2007 +0100
74422
74423 [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
74424
74425 isprint is already defined in ctype.c
74426
74427 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74428
74429 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
74430 Author: Grant Likely <grant.likely@secretlab.ca>
74431 Date: Tue Feb 20 09:05:00 2007 +0100
74432
74433 [PATCH 3_9] Move buffer print code from md command to common function
74434
74435 Printing a buffer is a darn useful thing. Move the buffer print code
74436 into print_buffer() in lib_generic/
74437
74438 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74439
74440 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
74441 Author: Grant Likely <grant.likely@secretlab.ca>
74442 Date: Tue Feb 20 09:04:52 2007 +0100
74443
74444 [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
74445
74446 Change the xilinx device drivers and board code to include config.h
74447 instead of xparameters.h directly. config.h always includes the
74448 correct xparameters file. This change reduces the posibility of
74449 including the wrong file when adding a new xilinx board port
74450
74451 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74452
74453 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
74454 Author: Grant Likely <grant.likely@secretlab.ca>
74455 Date: Tue Feb 20 09:04:34 2007 +0100
74456
74457 [PATCH 1_4] Merge common get_dev() routines for block devices
74458
74459 Each of the filesystem drivers duplicate the get_dev routine. This change
74460 merges them into a single function in part.c
74461
74462 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
74463
74464 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
74465 Author: Wolfgang Denk <wd@pollux.denx.de>
74466 Date: Mon Feb 19 23:09:51 2007 +0100
74467
74468 MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
74469 as root file system images.
74470
74471 commit 489c696ae7211218961d159e43e722d74c36fcbc
74472 Author: Sergei Poselenov <sposelenov@emcraft.com>
74473 Date: Wed Feb 14 14:30:28 2007 +0300
74474
74475 MCC200: Extensions to Software Update Mechanism
74476
74477 Update / extend Software Update Mechanism for MCC200 board:
74478
74479 - Add support for rootfs image added. The environment variables
74480 "rootfs_st" and "rootfs_nd" can be used to override the default
74481 values of the image start and end.
74482 - Remove excessive key check code.
74483 - Code cleanup.
74484
74485 commit 4be23a12f23f1372634edc3215137b09768b7949
74486 Author: Stefan Roese <sr@denx.de>
74487 Date: Mon Feb 19 08:23:15 2007 +0100
74488
74489 [PATCH] Update Sequoia EBC configuration (NOR FLASH)
74490
74491 As spotted by Matthias Fuchs, the READY input should not be
74492 enabled for the NOR FLASH on the Sequoia board.
74493
74494 Signed-off-by: Stefan Roese <sr@denx.de>
74495
74496 commit 2605e90bf676d48123afe5719a846d2b52b24aac
74497 Author: Heiko Schocher <hs@pollux.denx.de>
74498 Date: Fri Feb 16 07:57:42 2007 +0100
74499
74500 [PATCH] Added support for the jupiter board.
74501
74502 Signed-off-by: Heiko Schocher <hs@denx.de>
74503
74504 commit 497d012e5be0194e1084073d0081eb1a844796b2
74505 Author: Gary Jennejohn <garyj@pollux.denx.de>
74506 Date: Mon Feb 12 13:11:50 2007 +0100
74507
74508 LPC2292: patch from Siemens.
74509
74510 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
74511 Author: Stefan Roese <sr@denx.de>
74512 Date: Sat Feb 10 08:49:31 2007 +0100
74513
74514 [PATCH] Add missing p3mx.h file to repository (ups)
74515
74516 Signed-off-by: Stefan Roese <sr@denx.de>
74517
74518 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
74519 Author: Bartlomiej Sieka <tur@semihalf.com>
74520 Date: Fri Feb 9 10:45:42 2007 +0100
74521
74522 [Motion-PRO] Preliminary support for the Motion-PRO board.
74523
74524 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
74525 Author: Stefan Roese <sr@denx.de>
74526 Date: Wed Feb 7 16:51:08 2007 +0100
74527
74528 [PATCH] Update some AMCC 4xx board config files (set initrd_high)
74529
74530 Some boards that can have more than 768MBytes of SDRAM need to
74531 set "initrd_high", so that the initrd can be accessed by the
74532 Linux kernel.
74533
74534 Signed-off-by: Stefan Roese <sr@denx.de>
74535
74536 commit 7372ca68227930d03cffa548310524cad5b96733
74537 Author: Stefan Roese <sr@denx.de>
74538 Date: Fri Feb 2 12:44:22 2007 +0100
74539
74540 [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
74541
74542 Previously the strapping DCR/SDR was read to determine if the internal PCI
74543 arbiter is enabled or not. This strapping bit can be overridden, so now
74544 the current status is read from the correct DCR/SDR register.
74545
74546 Signed-off-by: Stefan Roese <sr@denx.de>
74547
74548 commit 2aa54f651a42d198673318f07a20c89a43e4d197
74549 Author: Stefan Roese <sr@denx.de>
74550 Date: Fri Feb 2 12:42:08 2007 +0100
74551
74552 [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
74553
74554 Signed-off-by: Stefan Roese <sr@denx.de>
74555
74556 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
74557 Author: Stefan Roese <sr@denx.de>
74558 Date: Thu Feb 1 13:22:41 2007 +0100
74559
74560 [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
74561
74562 When PCI PNP is enabled the pci pnp configuration routine is called
74563 which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
74564 problems with some PCI cards. For now disable the PCI PNP configuration.
74565
74566 Signed-off-by: Stefan Roese <sr@denx.de>
74567
74568 commit 2902fadade3be7659467e8d074048c6b7068f5c0
74569 Author: Stefan Roese <sr@denx.de>
74570 Date: Wed Jan 31 16:56:10 2007 +0100
74571
74572 [PATCH] Update 440EPx/440GRx cpu detection
74573
74574 Signed-off-by: Stefan Roese <sr@denx.de>
74575
74576 commit d5ea287b02a6945c3977410e364a879dd1a555c8
74577 Author: Stefan Roese <sr@denx.de>
74578 Date: Wed Jan 31 16:38:04 2007 +0100
74579
74580 [PATCH] Update esd cpci5200 files
74581
74582 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
74583
74584 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
74585 Author: Stefan Roese <sr@denx.de>
74586 Date: Wed Jan 31 16:37:34 2007 +0100
74587
74588 [PATCH] Add support for esd mecp5200 board
74589
74590 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
74591
74592 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
74593 Author: Stefan Roese <sr@denx.de>
74594 Date: Wed Jan 31 12:38:50 2007 +0100
74595
74596 [PATCH] Remove unneccessary yellowstone board config file
74597
74598 Signed-off-by: Stefan Roese <sr@denx.de>
74599
74600 commit e802594b6fa1b166308820c276b96dc0d7cc731c
74601 Author: Stefan Roese <sr@denx.de>
74602 Date: Tue Jan 30 17:06:10 2007 +0100
74603
74604 [PATCH] Update Sequoia (440EPx) config file
74605
74606 The config file now handles the 2nd target, the Rainier (440GRx)
74607 evaluation board better. Additionally the PPC input clock was
74608 adjusted to match the correct value of 33.0 MHz.
74609
74610 Signed-off-by: Stefan Roese <sr@denx.de>
74611
74612 commit 700200c67e73b83751418abe7815840dca8fd6cb
74613 Author: Stefan Roese <sr@denx.de>
74614 Date: Tue Jan 30 17:04:19 2007 +0100
74615
74616 [PATCH] Merge Yosemite & Yellowstone board ports
74617
74618 Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
74619 share one config file and all board specific files. This way we
74620 don't have to maintain two different sets of files for nearly
74621 identical boards.
74622
74623 Signed-off-by: Stefan Roese <sr@denx.de>
74624
74625 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
74626 Author: Stefan Roese <sr@denx.de>
74627 Date: Tue Jan 30 15:01:49 2007 +0100
74628
74629 [PATCH] Update Prodrive SCPU (PDNB3 variant) board
74630
74631 SCPU doesn't use redundant environment in flash.
74632
74633 Signed-off-by: Stefan Roese <sr@denx.de>
74634
74635 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
74636 Author: Stefan Roese <sr@denx.de>
74637 Date: Tue Jan 30 12:51:07 2007 +0100
74638
74639 [PATCH] alpr: Update alpr board config file
74640
74641 Signed-off-by: Stefan Roese <sr@denx.de>
74642
74643 commit f8db84f132b1e335f20f96138a1f09ed97b08664
74644 Author: Wolfgang Denk <wd@pollux.denx.de>
74645 Date: Tue Jan 30 00:50:40 2007 +0100
74646
74647 LPC2292 SODIMM port coding style cleanup.
74648
74649 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
74650 Author: Gary Jennejohn <garyj@pollux.denx.de>
74651 Date: Wed Jan 24 12:16:56 2007 +0100
74652
74653 Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
74654
74655 commit 2daf046ba627f85f44195815778140039636244e
74656 Author: Bartlomiej Sieka <tur@semihalf.com>
74657 Date: Tue Jan 23 17:22:06 2007 +0100
74658
74659 [iDMR] Add MTD and JFFS2 support, also add default partition definition.
74660
74661 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
74662 Author: Bartlomiej Sieka <tur@semihalf.com>
74663 Date: Tue Jan 23 14:21:14 2007 +0100
74664
74665 [iDMR] Flash driver on initialisation write-protects some sectors,
74666 currently sectors 0-3. Sector 3 does not need to be protected, though
74667 (U-boot occupies sectors 0-1 and the environment sector 2). This commit
74668 fixes this, i.e., only sectors 0-2 are protected.
74669
74670 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
74671 Author: Bartlomiej Sieka <tur@semihalf.com>
74672 Date: Tue Jan 23 14:11:22 2007 +0100
74673
74674 [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
74675 "mii device" results in "Unexpected exception"). Fixing this properly
74676 requires some clean-up in the FEC drivers infrastructure for ColdFire, so
74677 this commit disables MII commads for now.
74678
74679 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
74680 Author: Bartlomiej Sieka <tur@semihalf.com>
74681 Date: Tue Jan 23 13:25:22 2007 +0100
74682
74683 [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
74684 Identification Register (CIR).
74685
74686 commit fdef388758506765d4d6a7155c8f1584c63ff581
74687 Author: roy zang <tie-fei.zang@freescale.com>
74688 Date: Mon Jan 22 13:19:21 2007 +0800
74689
74690 use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
74691 The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
74692 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
74693 mpc7448hpc2 board.
74694
74695 commit a4012396645533aef218354eeba754dff0deace8
74696 Author: Wolfgang Denk <wd@pollux.denx.de>
74697 Date: Fri Jan 19 23:08:39 2007 +0100
74698
74699 Minor code cleanup.
74700
74701 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
74702 Author: Heiko Schocher <hs@pollux.denx.de>
74703 Date: Fri Jan 19 19:57:10 2007 +0100
74704
74705 [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
74706
74707 Signed-off-by: Heiko Schocher <hs@denx.de>
74708
74709 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
74710 Author: Heiko Schocher <hs@pollux.denx.de>
74711 Date: Fri Jan 19 18:05:26 2007 +0100
74712
74713 [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
74714 if you must swap the bytes between reading/writing.
74715 (Needed for the SC3 board)
74716
74717 Signed-off-by: Heiko Schocher <hs@denx.de>
74718
74719 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
74720 Author: Stefan Roese <sr@denx.de>
74721 Date: Thu Jan 18 16:05:47 2007 +0100
74722
74723 [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
74724
74725 Signed-off-by: Stefan Roese <sr@denx.de>
74726
74727 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
74728 Author: Stefan Roese <sr@denx.de>
74729 Date: Thu Jan 18 11:54:52 2007 +0100
74730
74731 [PATCH] Update Prodrive P3Mx support
74732
74733 Signed-off-by: Stefan Roese <sr@denx.de>
74734
74735 commit 34167a36c29ee946b727465db5c014746a08e978
74736 Author: Stefan Roese <sr@denx.de>
74737 Date: Thu Jan 18 11:48:10 2007 +0100
74738
74739 [PATCH] Add missing Taishan config file
74740
74741 Signed-off-by: Stefan Roese <sr@denx.de>
74742
74743 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
74744 Author: Heiko Schocher <hs@pollux.denx.de>
74745 Date: Thu Jan 18 11:28:51 2007 +0100
74746
74747 [PATCH] Fix: Compilerwarnings for SC3 board.
74748 The EBC Configuration Register is now by CFG_EBC_CFG definable
74749 Added JFFS2 support for the SC3 board.
74750
74751 Signed-off-by: Heiko Schocher <hs@denx.de>
74752
74753 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
74754 Author: Stefan Roese <sr@denx.de>
74755 Date: Thu Jan 18 10:25:34 2007 +0100
74756
74757 [PATCH] Add support for AMCC Taishan PPC440GX eval board
74758
74759 Signed-off-by: Stefan Roese <sr@denx.de>
74760
74761 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
74762 Author: Wolfgang Denk <wd@pollux.denx.de>
74763 Date: Tue Jan 16 18:30:50 2007 +0100
74764
74765 Raname solidcard3 into sc3; add redundant env for sc3
74766
74767 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
74768 Author: Wolfgang Denk <wd@pollux.denx.de>
74769 Date: Tue Jan 16 12:46:35 2007 +0100
74770
74771 Update default environment for Solidcard3
74772
74773 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
74774 Author: Stefan Roese <sr@denx.de>
74775 Date: Mon Jan 15 09:46:29 2007 +0100
74776
74777 [PATCH] Fix 440SPe rev B detection from previous patch
74778
74779 Signed-off-by: Stefan Roese <sr@denx.de>
74780
74781 commit a443d31410c571ee8f970da819a44d698fdd6b1f
74782 Author: Heiko Schocher <hs@pollux.denx.de>
74783 Date: Sun Jan 14 13:35:31 2007 +0100
74784
74785 [FIX] correct I2C Writes for the LM81 Sensor.
74786
74787 Signed-off-by: Heiko Schocher <hs@denx.de>
74788
74789 commit 0bba5452835f19a61204edcda3a58112fd8e2208
74790 Author: Wolfgang Denk <wd@pollux.denx.de>
74791 Date: Sat Jan 13 11:17:10 2007 +0100
74792
74793 Undo commit 3033ebb2: reset command does not take any arguments
74794
74795 Haiying Wang's modification to the reset command was broken, undo it.
74796
74797 Signed-off-by: Wolfgang Denk <wd@denx.de>
74798
74799 commit 95981778cff0038fd9941044d6a3eda810e33258
74800 Author: Stefan Roese <sr@denx.de>
74801 Date: Sat Jan 13 08:01:03 2007 +0100
74802
74803 [PATCH] Update 440SP(e) cpu revisions
74804
74805 Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
74806
74807 Signed-off-by: Stefan Roese <sr@denx.de>
74808
74809 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
74810 Author: Stefan Roese <sr@denx.de>
74811 Date: Sat Jan 13 07:59:56 2007 +0100
74812
74813 [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
74814
74815 Now the board revision and the current PCI bus speed are printed after
74816 the board message.
74817
74818 Also the EBC initialising is now done via defines in the board config
74819 file.
74820
74821 Signed-off-by: Stefan Roese <sr@denx.de>
74822
74823 commit 36adff362c2c0141ff8a810d42a7e478f779130f
74824 Author: Stefan Roese <sr@denx.de>
74825 Date: Sat Jan 13 07:59:19 2007 +0100
74826
74827 [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
74828
74829 Now the board revision and the current PCI bus speed are printed after
74830 the board message.
74831
74832 Also the EBC initialising is now done via defines in the board config
74833 file.
74834
74835 Signed-off-by: Stefan Roese <sr@denx.de>
74836
74837 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
74838 Author: Stefan Roese <sr@denx.de>
74839 Date: Sat Jan 13 07:57:51 2007 +0100
74840
74841 [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
74842
74843 Now the board revision and the current PCI bus speed are printed after
74844 the board message.
74845
74846 Signed-off-by: Stefan Roese <sr@denx.de>
74847
74848 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
74849 Author: Heiko Schocher <hs@pollux.denx.de>
74850 Date: Thu Jan 11 15:44:44 2007 +0100
74851
74852 Added support for the SOLIDCARD III board from Eurodesign
74853
74854 Signed-off-by: Heiko Schocher <hs@denx.de>
74855
74856 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
74857 Author: Reinhard Thies <Reinhard.Thies@web.de>
74858 Date: Wed Jan 10 14:41:14 2007 +0100
74859
74860 Adjusted default environment for cam5200 board.
74861
74862 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
74863 Author: Wolfgang Denk <wd@pollux.denx.de>
74864 Date: Wed Jan 10 15:35:52 2007 +0100
74865
74866 Update CHANGELOG
74867
74868 commit 787fa15860a57833e50bd30555079a9cd4e519b8
74869 Author: Wolfgang Denk <wd@pollux.denx.de>
74870 Date: Wed Jan 10 01:28:39 2007 +0100
74871
74872 Fix auto_update for MCC200 board.
74873
74874 The invocation of do_auto_update() is moved to the end of the
74875 misc_init_r() function, after the flash mappings have been
74876 initialized. Please find attached a patch that implements that
74877 change.
74878
74879 Also correct the decoding of the keypad status. With this update, the
74880 key that will trigger the update is Column 2, Row 2.
74881
74882 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
74883 Author: Marian Balakowicz <m8@semihalf.com>
74884 Date: Wed Jan 10 00:26:15 2007 +0100
74885
74886 CAM5200 flash driver modifications:
74887 - use CFI driver (replaces custom flash driver) for main 'cam5200' target
74888 - add second build target 'cam5200_niosflash' which still uses custom driver
74889
74890 commit 67fea022fa957f59653b5238c7496f80a6b70432
74891 Author: Markus Klotzbuecher <mk@denx.de>
74892 Date: Tue Jan 9 16:02:48 2007 +0100
74893
74894 SPC1920: cleanup memory contoller setup
74895
74896 commit 8fc2102faa23593c80381437c09f7745a14deb40
74897 Author: Markus Klotzbuecher <mk@denx.de>
74898 Date: Tue Jan 9 14:57:14 2007 +0100
74899
74900 Fix the cpu speed setup to work with all boards.
74901
74902 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
74903 Author: Markus Klotzbuecher <mk@denx.de>
74904 Date: Tue Jan 9 14:57:13 2007 +0100
74905
74906 SPC1920: add support for the FM18L08 Ramtron FRAM
74907
74908 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
74909 Author: Markus Klotzbuecher <mk@denx.de>
74910 Date: Tue Jan 9 14:57:13 2007 +0100
74911
74912 SPC1920: update the HPI register addresses to work with the second
74913 generation of hardware
74914
74915 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
74916 Author: Markus Klotzbuecher <mk@creamnet.de>
74917 Date: Tue Jan 9 14:57:13 2007 +0100
74918
74919 Miscellanious spc1920 related cleanups
74920
74921 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
74922 Author: Markus Klotzbuecher <mk@denx.de>
74923 Date: Tue Jan 9 14:57:12 2007 +0100
74924
74925 SPC1920 GO/NOGO led should be set to color red in U-Boot
74926
74927 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
74928 Author: Markus Klotzbuecher <mk@creamnet.de>
74929 Date: Tue Jan 9 14:57:12 2007 +0100
74930
74931 Add support for the DS3231 RTC
74932
74933 commit 8139567b60d678584b05f0718a681f2047c5e14f
74934 Author: Markus Klotzbuecher <mk@creamnet.de>
74935 Date: Tue Jan 9 14:57:11 2007 +0100
74936
74937 SMC1 uses external CLK4 instead of BRG on spc1920
74938
74939 commit d8d9de1a02fbd880b613d607143d1f57342affc7
74940 Author: Markus Klotzbuecher <mk@creamnet.de>
74941 Date: Tue Jan 9 14:57:10 2007 +0100
74942
74943 Update the SPC1920 CMB PLD driver
74944
74945 commit 3f34f869162750e5e999fd140f884f5de952bcfe
74946 Author: Markus Klotzbuecher <mk@creamnet.de>
74947 Date: Tue Jan 9 14:57:10 2007 +0100
74948
74949 Add / enable I2C support on the spc1920 board
74950
74951 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
74952 Author: Markus Klotzbuecher <mk@creamnet.de>
74953 Date: Tue Jan 9 14:57:10 2007 +0100
74954
74955 Add support for the tms320671x host port interface (HPI)
74956
74957 commit f4eb54529bb3664c3a562e488b460fe075f79d67
74958 Author: Wolfgang Denk <wd@pollux.denx.de>
74959 Date: Sun Jan 7 00:13:11 2007 +0100
74960
74961 Prepare for release 1.2.0
74962
74963 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
74964 Author: Stefan Roese <sr@denx.de>
74965 Date: Sat Jan 6 15:58:09 2007 +0100
74966
74967 [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
74968
74969 This patch fixes a problem with an incorrect setup for the refresh
74970 timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
74971
74972 Signed-off-by: Stefan Roese <sr@denx.de>
74973
74974 commit f16c1da9577f06c5fc08651a4065537407de4635
74975 Author: Stefan Roese <sr@denx.de>
74976 Date: Sat Jan 6 15:56:13 2007 +0100
74977
74978 [PATCH] Update ALPR board files
74979
74980 This update brings the ALPR board support to the newest version.
74981 It also fixes a problem with the NAND driver.
74982
74983 Signed-off-by: Stefan Roese <sr@denx.de>
74984
74985 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
74986 Author: Stefan Roese <sr@denx.de>
74987 Date: Fri Jan 5 11:46:05 2007 +0100
74988
74989 [PATCH] nand: Fix problem with oobsize calculation
74990
74991 Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
74992
74993 The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
74994 returns a 0x15. In the code fragment below bits [1:0] determine the
74995 page size, it is ANDed via "(extid & 0x3)" then shifted out. The
74996 next field is also ANDed with 0x3. However this is a one bit field
74997 as defined in the Hynix and Samsung parts in the 4th ID byte that
74998 determins the oobsize, not a two bit field. It works on Samsung as
74999 bits[3:2] are 01. However for the Hynix there is a 11 in these two
75000 bits, so the oob size gets messed up.
75001
75002 I checked the correct linux code and the suggested fix from Brian is
75003 also available in the linux nand mtd driver.
75004
75005 Signed-off-by: Stefan Roese <sr@denx.de>
75006
75007 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
75008 Author: Stefan Roese <sr@denx.de>
75009 Date: Fri Jan 5 10:40:36 2007 +0100
75010
75011 [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
75012
75013 This fix will make the MAL burst disabling patch for the Linux
75014 EMAC driver obsolete.
75015
75016 Signed-off-by: Stefan Roese <sr@denx.de>
75017
75018 commit 023889838282b6237b401664f22dd22dfba2c066
75019 Author: Stefan Roese <sr@denx.de>
75020 Date: Fri Jan 5 10:38:05 2007 +0100
75021
75022 [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
75023
75024 This code will optimize the DDR2 controller setup on a board specific
75025 basis.
75026
75027 Note: This code doesn't work right now on the NAND booting image for the
75028 Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
75029
75030 Signed-off-by: Stefan Roese <sr@denx.de>
75031
75032 commit cce4acbb68398634b8d011ed7bb0d12269c84230
75033 Author: Bartlomiej Sieka <tur@semihalf.com>
75034 Date: Thu Dec 28 19:08:21 2006 +0100
75035
75036 Few V38B changes:
75037 - fix a typo in V38B config file
75038 - move watchdog initialisation earlier in the boot process
75039 - add "wdt=off" to default kernel command line (disables kernel watchdog)
75040
75041 commit 92eb729bad876725aeea908d2addba0800620840
75042 Author: Wolfgang Denk <wd@pollux.denx.de>
75043 Date: Wed Dec 27 01:26:13 2006 +0100
75044
75045 Fix bug in adaption of Stefano Babic's CFI driver patch.
75046
75047 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
75048 Author: Wolfgang Denk <wd@pollux.denx.de>
75049 Date: Sun Dec 24 01:42:57 2006 +0100
75050
75051 Minor code cleanup.
75052
75053 commit d784fdb05900ada3686d5778783e1fb328e9fb66
75054 Author: Stefano Babic <sbabic@denx.de>
75055 Date: Tue Dec 12 00:22:42 2006 +0100
75056
75057 Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
75058
75059 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
75060 Author: Stefan Roese <sr@denx.de>
75061 Date: Fri Dec 22 14:29:40 2006 +0100
75062
75063 [PATCH] Fix sequoia flash autodetection (finally correct)
75064
75065 Now 32MByte and 64MByte FLASH is know to work and other
75066 configurations should work too.
75067
75068 Signed-off-by: Stefan Roese <sr@denx.de>
75069
75070 commit 82e5236a8b719543643fd26d5827938ab2b94818
75071 Author: Wolfgang Denk <wd@pollux.denx.de>
75072 Date: Fri Dec 22 10:30:26 2006 +0100
75073
75074 Minor code cleanup; update CHANGELOG.
75075
75076 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
75077 Author: Heiko Schocher <hs@pollux.denx.de>
75078 Date: Thu Dec 21 17:17:02 2006 +0100
75079
75080 Added support for the TQM8272 board from TQ
75081
75082 Signed-off-by: Heiko Schocher <hs@denx.de>
75083
75084 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
75085 Author: Heiko Schocher <hs@pollux.denx.de>
75086 Date: Thu Dec 21 16:14:48 2006 +0100
75087
75088 [PATCH] Add support for the UC101 board from MAN.
75089
75090 Signed-off-by: Heiko Schocher <hs@denx.de>
75091
75092 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
75093 Author: Bartlomiej Sieka <tur@semihalf.com>
75094 Date: Wed Dec 20 00:29:43 2006 +0100
75095
75096 Fix to make the baudrate changes immediate for the MCF52x2 family.
75097
75098 commit daa6e418bcc0c717752e8de939c213c790286096
75099 Author: Bartlomiej Sieka <tur@semihalf.com>
75100 Date: Wed Dec 20 00:27:32 2006 +0100
75101
75102 Preliminary support for the iDMR board (ColdFire).
75103
75104 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
75105 Author: Andrei Safronov <safronov@pollux.denx.de>
75106 Date: Fri Dec 8 16:23:08 2006 +0100
75107
75108 automatic update mechanism
75109
75110 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
75111 Author: roy zang <tie-fei.zang@freescale.com>
75112 Date: Mon Dec 4 17:56:59 2006 +0800
75113
75114 Slight code clean up.
75115 Add comments, delete duplicate define and remove spaces.
75116 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75117
75118 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
75119 Author: roy zang <tie-fei.zang@freescale.com>
75120 Date: Mon Dec 4 17:54:21 2006 +0800
75121
75122 Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
75123 multiplier table can not refect the real PLL clock behavior of these
75124 processors. Please refer to the hardware specification for detailed
75125 information of the corresponding processors.
75126 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75127
75128 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
75129 Author: roy zang <tie-fei.zang@freescale.com>
75130 Date: Mon Dec 4 14:46:23 2006 +0800
75131
75132 Remove the static MAC address, ip address, server ip, netmask and
75133 gateway ip for network setting.
75134 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75135
75136 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
75137 Author: roy zang <tie-fei.zang@freescale.com>
75138 Date: Mon Dec 4 14:33:08 2006 +0800
75139
75140 Remove the duplicate memory test code for mpc744ihpc2 board.
75141 If a memory test is needed, please use the functions in
75142 post/memory.c or memtest command.
75143 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75144
75145 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
75146 Author: roy zang <tie-fei.zang@freescale.com>
75147 Date: Fri Dec 1 19:01:25 2006 +0800
75148
75149 Fix the exception occuring in RAM table search issue.
75150 The original search_one_table() function code can only processes the search
75151 for the exception occurring in FLASH/ROM, because the exception and fixup
75152 table usually locate in FLASH. If the exception address is also in
75153 FLASH, it will be OK.
75154 If the exception occurs in RAM, after the u-boot relocation, a
75155 relocation offset should be added.
75156
75157 clean up the code in cpu/74xx_7xx/cpu.c
75158
75159 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75160
75161 commit ee311214e0d216f904feea269599d0934bf71f23
75162 Author: roy zang <tie-fei.zang@freescale.com>
75163 Date: Fri Dec 1 11:47:36 2006 +0800
75164
75165 Clean up the code according to codestyle:
75166 (1) remove some C++ comments.
75167 (2) remove trailing white space.
75168 (3) remove trailing empty line.
75169 (4) Indentation by table.
75170 (5) remove {} in one line condition.
75171 (6) add space before '(' in function call.
75172 Remove some weird printf () output.
75173 Add necessary comments.
75174 Modified Makefile to support building in a separate directory.
75175
75176 commit dd520bf314c7add4183c5191692180f576f96b60
75177 Author: Wolfgang Denk <wd@pollux.denx.de>
75178 Date: Thu Nov 30 18:02:20 2006 +0100
75179
75180 Code cleanup.
75181
75182 commit 8d9a8610b8256331132227e9e6585c6bd5742787
75183 Author: Wolfgang Denk <wd@pollux.denx.de>
75184 Date: Thu Nov 30 01:54:07 2006 +0100
75185
75186 Code cleanup. Update CHANGELOG.
75187
75188 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
75189 Author: Grant Likely <grant.likely@secretlab.ca>
75190 Date: Wed Nov 29 16:23:42 2006 +0100
75191
75192 [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
75193
75194 The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
75195 not the XLB frequency.
75196
75197 This patch depends on the previous patches for MPC52xx device tree support
75198
75199 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75200 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
75201
75202 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
75203 Author: Stefan Roese <sr@denx.de>
75204 Date: Wed Nov 29 15:42:37 2006 +0100
75205
75206 [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
75207
75208 This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
75209 and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
75210 quite similar and share the same board directory "prodrive/p3mx"
75211 and the same config file "p3mx.h".
75212
75213 Signed-off-by: Stefan Roese <sr@denx.de>
75214
75215 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
75216 Author: Stefan Roese <sr@denx.de>
75217 Date: Wed Nov 29 12:53:15 2006 +0100
75218
75219 [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
75220
75221 In the bootvx command the load address was only read from the env
75222 variable "loadaddr" and not optionally passed as paramter as described
75223 in the help. This is fixed with this patch. The behaviour is now the
75224 same as in the bootelf command.
75225
75226 Signed-off-by: Stefan Roese <sr@denx.de>
75227
75228 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
75229 Author: Stefan Roese <sr@denx.de>
75230 Date: Wed Nov 29 12:03:57 2006 +0100
75231
75232 [PATCH] include/ppc440.h minor error affecting interrupts
75233
75234 Fixed include/ppc440.c for UIC address Bug
75235
75236 Corrects bug affecting the addresses for the universal interrupt
75237 controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
75238
75239 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
75240 Signed-off-by: Stefan Roese <sr@denx.de>
75241
75242 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
75243 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
75244 Date: Tue Nov 28 16:17:27 2006 -0600
75245
75246 Make fsl-i2c not conflict with SOFT I2C
75247
75248 Signed-off-by: Timur Tabi <timur@freescale.com>
75249
75250 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
75251 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
75252 Date: Tue Nov 28 16:17:18 2006 -0600
75253
75254 Fix I2C master address initialization.
75255
75256 Signed-off-by: Timur Tabi <timur@freescale.com>
75257
75258 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
75259 Author: Kim Phillips <kim.phillips@freescale.com>
75260 Date: Tue Nov 28 23:31:19 2006 -0600
75261
75262 Assign maintainers for mpc8349emds and mpc8360emds
75263
75264 Dave for mpc8360emds, and me for mpc8349emds.
75265
75266 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
75267 Author: Kim Phillips <kim.phillips@freescale.com>
75268 Date: Tue Nov 28 23:28:33 2006 -0600
75269
75270 Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
75271
75272 give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
75273 since they are passed by reference to ucc_get_cmxucr_reg and assigned.
75274
75275 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
75276 Author: Timur Tabi <timur@freescale.com>
75277 Date: Tue Nov 28 12:09:35 2006 -0600
75278
75279 mpc83xx: Miscellaneous code style fixes
75280
75281 Implement various code style fixes and similar changes.
75282
75283 Signed-off-by: Timur Tabi <timur@freescale.com>
75284
75285 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
75286 Author: Stefan Roese <sr@denx.de>
75287 Date: Tue Nov 28 17:55:49 2006 +0100
75288
75289 [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
75290
75291 This patch adds the code and configuration necessary to boot with an
75292 arch/powerpc Linux kernel.
75293
75294 Signed-off-by: Grant Likely <grant.likely@gmail.com>
75295 Acked-by: Jon Loeliger <jdl@freescale.com>
75296
75297 commit e732faec95a83cb468b4850ae807c8301dde8f6a
75298 Author: Stefan Roese <sr@denx.de>
75299 Date: Tue Nov 28 16:09:24 2006 +0100
75300
75301 [PATCH] PPC4xx: 440SP Rev. C detection added
75302
75303 Signed-off-by: Stefan Roese <sr@denx.de>
75304
75305 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
75306 Author: Stefan Roese <sr@denx.de>
75307 Date: Tue Nov 28 11:04:45 2006 +0100
75308
75309 [PATCH] nand: Fix patch merge problem
75310
75311 Signed-off-by: Stefan Roese <sr@denx.de>
75312
75313 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
75314 Author: Stefan Roese <sr@denx.de>
75315 Date: Tue Nov 28 11:04:45 2006 +0100
75316
75317 [PATCH] nand: Fix patch merge problem
75318
75319 Signed-off-by: Stefan Roese <sr@denx.de>
75320
75321 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
75322 Author: Wolfgang Denk <wd@pollux.denx.de>
75323 Date: Mon Nov 27 22:53:53 2006 +0100
75324
75325 Update CHANGELOG
75326
75327 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
75328 Author: Stefan Roese <sr@denx.de>
75329 Date: Mon Nov 27 17:43:25 2006 +0100
75330
75331 [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
75332
75333 Patch below corrects the setting of the zmiifer register, it was
75334 overwritting the register rather than ORing the settings.
75335
75336 Signed-off-by: Neil Wilson <NWilson@airspan.com>
75337 Signed-off-by: Stefan Roese <sr@denx.de>
75338
75339 commit d1a72545296800b7e219f93104ad5836f0003d66
75340 Author: Stefan Roese <sr@denx.de>
75341 Date: Mon Nov 27 17:34:10 2006 +0100
75342
75343 [PATCH] Select NAND embedded environment from board configuration
75344
75345 The current NAND Bootloader setup forces the environment
75346 variables to be in line with the bootloader. This change
75347 enables the configuration to be made in the board include
75348 file instead so that it can be individually enabled.
75349
75350 Signed-off-by: Nick Spence <nick.spence@freescale.com>
75351 Signed-off-by: Stefan Roese <sr@denx.de>
75352
75353 commit 15784862857c3c2214498defcfed84ff137fb81e
75354 Author: Stefan Roese <sr@denx.de>
75355 Date: Mon Nov 27 17:22:19 2006 +0100
75356
75357 [PATCH] nand_wait() timeout fixes
75358
75359 Two fixes for the nand_wait() function in
75360 drivers/nand/nand_base.c:
75361
75362 1. Use correct timeouts. The original timeouts in Linux
75363 source are 400ms and 20ms not 40s and 20s
75364
75365 2. Return correct error value in case of timeout. 0 is
75366 interpreted as OK.
75367
75368 Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
75369 Signed-off-by: Stefan Roese <sr@denx.de>
75370
75371 commit da5553b095bf04f4f109ad7e565dae3aba47b230
75372 Author: Stefan Roese <sr@denx.de>
75373 Date: Mon Nov 27 17:04:06 2006 +0100
75374
75375 [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
75376
75377 This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
75378 arguments to bootm. It removes the getenv("disable_of") test that used
75379 to be used for this purpose.
75380
75381 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
75382 Acked-by: Jon Loeliger <jdl@freescale.com>
75383
75384 commit a9398e018593782c5fa7d0741955fc1256b34c1e
75385 Author: Wolfgang Denk <wd@pollux.denx.de>
75386 Date: Mon Nov 27 15:32:42 2006 +0100
75387
75388 Minor code cleanup. Update CHANGELOG.
75389
75390 commit 1729b92cde575476684bffe819d0b7791b57bff2
75391 Author: Stefan Roese <sr@denx.de>
75392 Date: Mon Nov 27 14:52:04 2006 +0100
75393
75394 [PATCH] 4xx: Fix problem with board specific reset code (now for real)
75395
75396 Signed-off-by: Stefan Roese <sr@denx.de>
75397
75398 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
75399 Author: Stefan Roese <sr@denx.de>
75400 Date: Mon Nov 27 14:49:51 2006 +0100
75401
75402 [PATCH] alpr: remove unused board specific flash driver
75403
75404 Signed-off-by: Stefan Roese <sr@denx.de>
75405
75406 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
75407 Author: Stefan Roese <sr@denx.de>
75408 Date: Mon Nov 27 14:48:41 2006 +0100
75409
75410 [PATCH] 4xx: Fix problem with board specific reset code
75411
75412 Signed-off-by: Stefan Roese <sr@denx.de>
75413
75414 commit ec0c2ec725aec9524a177a77ce75559e644a931a
75415 Author: Stefan Roese <sr@denx.de>
75416 Date: Mon Nov 27 14:46:06 2006 +0100
75417
75418 [PATCH] Remove testing 4xx enet PHY setup
75419
75420 Signed-off-by: Stefan Roese <sr@denx.de>
75421
75422 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
75423 Author: Stefan Roese <sr@denx.de>
75424 Date: Mon Nov 27 14:12:17 2006 +0100
75425
75426 [PATCH] Update Prodrive ALPR board support (440GX)
75427
75428 Signed-off-by: Stefan Roese <sr@denx.de>
75429
75430 commit 58b485776698c3d71ec5a215e392123b4c15afa3
75431 Author: Markus Klotzbuecher <mk@denx.de>
75432 Date: Mon Nov 27 11:51:21 2006 +0100
75433
75434 Add a small README with information on the generic ohci driver.
75435
75436 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
75437 Author: Markus Klotzbuecher <mk@denx.de>
75438 Date: Mon Nov 27 11:46:46 2006 +0100
75439
75440 Fix some endianness issues related to the generic ohci driver
75441
75442 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
75443 Author: Markus Klotzbuecher <mk@denx.de>
75444 Date: Mon Nov 27 11:44:58 2006 +0100
75445
75446 Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
75447 to choose between the old and the generic OHCI drivers.
75448
75449 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
75450 Author: Markus Klotzbuecher <mk@denx.de>
75451 Date: Mon Nov 27 11:43:09 2006 +0100
75452
75453 Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
75454 and adapted board configs TQM5200 and yosemite accordingly. This commit
75455 also makes the maximum number of root hub ports configurable
75456 (CFG_USB_OHCI_MAX_ROOT_PORTS).
75457
75458 commit 78d620ebb5871d252270dedfad60c6568993b780
75459 Author: Wolfgang Denk <wd@atlas.denx.de>
75460 Date: Thu Nov 23 22:58:58 2006 +0100
75461
75462 Updates for TQM5200 modules:
75463 - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
75464 - simplify "udate" definitions
75465
75466 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
75467 Author: Stefan Roese <sr@denx.de>
75468 Date: Wed Nov 22 13:20:50 2006 +0100
75469
75470 [PATCH] PPC4xx start.S: Fix for processor errata
75471
75472 Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
75473 errata 1.12: 440_33 by moving patch up in code.
75474
75475 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
75476 Signed-off-by: Stefan Roese <sr@denx.de>
75477
75478 commit 4ef6251403f637841000e0fef9e832aa01339822
75479 Author: Stefan Roese <sr@denx.de>
75480 Date: Mon Nov 20 20:39:52 2006 +0100
75481
75482 [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
75483
75484 Signed-off-by: Stefan Roese <sr@denx.de>
75485
75486 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
75487 Author: Wolfgang Denk <wd@pollux.denx.de>
75488 Date: Mon Nov 20 10:28:30 2006 +0100
75489
75490 Update CHANGELOG
75491
75492 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
75493 Author: Stefan Roese <sr@denx.de>
75494 Date: Mon Nov 13 13:55:24 2006 +0100
75495
75496 [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
75497
75498 * Adds support for AMD command set Top Boot flash geometry reversal
75499 * Adds support for reading JEDEC Manufacturer ID and Device ID
75500 * Adds support for displaying command set, manufacturer id and
75501 device ids (flinfo)
75502 * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
75503 * Removes outdated change history (refer to git log instead)
75504
75505 Signed-off-by: Tolunay Orkun <listmember@orkun.us>
75506 Signed-off-by: Stefan Roese <sr@denx.de>
75507
75508 commit b21b511d4c50408f4853f46f06b601272196223f
75509 Author: Wolfgang Denk <wd@pollux.denx.de>
75510 Date: Sun Nov 12 21:13:23 2006 +0100
75511
75512 Update CHANGELOG
75513
75514 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
75515 Author: Bartlomiej Sieka <tur@semihalf.com>
75516 Date: Sat Nov 11 22:48:22 2006 +0100
75517
75518 Disable the watchdog in the default config for the V38B board.
75519
75520 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
75521 Author: Bartlomiej Sieka <tur@semihalf.com>
75522 Date: Sat Nov 11 22:43:00 2006 +0100
75523
75524 Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
75525 group is enabled for USB earlier (in cpu_init_f() instead of
75526 usb_lowlevel_init()).
75527
75528 commit 91650b3e4de688038d4f71279c44858e3e2c6870
75529 Author: Wolfgang Denk <wd@pollux.denx.de>
75530 Date: Mon Nov 6 17:06:36 2006 +0100
75531
75532 Sequential accesses to non-existent memory must be synchronized,
75533 at least on G2 cores.
75534
75535 This fixes get_ram_size() problems on MPC5200 Rev. B boards.
75536
75537 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
75538 Author: Timur Tabi <timur@freescale.com>
75539 Date: Fri Nov 3 19:15:00 2006 -0600
75540
75541 mpc83xx: Update 83xx to use fsl_i2c.c
75542
75543 Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete
75544 cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
75545 Added multiple I2C bus support to fsl_i2c.c.
75546
75547 Signed-off-by: Timur Tabi <timur@freescale.com>
75548
75549 commit d239d74b1c937984bc519083a8e7de373a390f06
75550 Author: Timur Tabi <timur@freescale.com>
75551 Date: Fri Nov 3 12:00:28 2006 -0600
75552
75553 mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
75554
75555 Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
75556 tree matches the other 8xxx trees.
75557
75558 Signed-off-by: Timur Tabi <timur@freescale.com>
75559
75560 commit f7fb2e703ec9688541416962724adff70a7322cb
75561 Author: Kim Phillips <kim.phillips@freescale.com>
75562 Date: Thu Nov 2 19:47:11 2006 -0600
75563
75564 mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
75565
75566 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
75567 Author: Dave Liu <daveliu@freescale.com>
75568 Date: Thu Nov 2 18:05:50 2006 -0600
75569
75570 mpc83xx: Fix the incorrect dcbz operation
75571
75572 The 834x rev1.x silicon has one CPU5 errata.
75573
75574 The issue is when the data cache locked with
75575 HID0[DLOCK], the dcbz instruction looks like no-op inst.
75576
75577 The right behavior of the data cache is when the data cache
75578 Locked with HID0[DLOCK], the dcbz instruction allocates
75579 new tags in cache.
75580
75581 The 834x rev3.0 and later and 8360 have not this bug inside.
75582
75583 So, when 834x rev3.0/8360 are working with ECC, the dcbz
75584 instruction will corrupt the stack in cache, the processor will
75585 checkstop reset.
75586
75587 However, the 834x rev1.x can work with ECC with these code,
75588 because the sillicon has this cache bug. The dcbz will not
75589 corrupt the stack in cache.
75590 Really, it is the fault code running on fault sillicon.
75591
75592 This patch fix the incorrect dcbz operation. Instead of
75593 CPU FP writing to initialise the ECC.
75594
75595 CHANGELOG:
75596 * Fix the incorrect dcbz operation instead of CPU FP
75597 writing to initialise the ECC memory. Otherwise, it
75598 will corrupt the stack in cache, The processor will checkstop
75599 reset.
75600
75601 Signed-off-by: Dave Liu <daveliu@freescale.com>
75602
75603 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
75604 Author: Kim Phillips <kim.phillips@freescale.com>
75605 Date: Wed Nov 1 00:10:40 2006 -0600
75606
75607 mpc83xx: add OF_FLAT_TREE bits to 83xx boards
75608
75609 add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
75610 STDOUT_PATH configuration bits to mpc8349emds,
75611 mpc8349itx, and mpc8360emds board code.
75612
75613 redo environment to use bootm with the fdtaddr
75614 for booting ARCH=powerpc kernels by default,
75615 and provide default fdtaddr values.
75616
75617 commit 48041365b3420589ad464ebc7752e0053538b729
75618 Author: Kim Phillips <kim.phillips@freescale.com>
75619 Date: Wed Nov 1 00:07:25 2006 -0600
75620
75621 mpc83xx: change ft code to modify local-mac-address property
75622
75623 Update 83xx OF code to update local-mac-address properties
75624 for ethernet instead of the obsolete 'address' property.
75625
75626 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
75627 Author: Timur Tabi <timur@freescale.com>
75628 Date: Tue Oct 31 21:23:16 2006 -0600
75629
75630 mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
75631
75632 This patch also adds an improved I2C set_speed(), which handles all clock
75633 frequencies.
75634
75635 Signed-off-by: Timur Tabi <timur@freescale.com>
75636
75637 commit ac4b5622ce050b5ee1e154b98df630d778661632
75638 Author: Dave Liu <daveliu@freescale.com>
75639 Date: Tue Oct 31 19:54:59 2006 -0600
75640
75641 mpc83xx: add the README.mpc8360emds
75642
75643 add doc/README.mpc8360emds to accompany the new board support
75644
75645 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
75646 Author: Dave Liu <daveliu@freescale.com>
75647 Date: Fri Nov 3 12:11:15 2006 -0600
75648
75649 mpc83xx: add QE ethernet support
75650
75651 this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
75652
75653 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
75654 Author: Dave Liu <daveliu@freescale.com>
75655 Date: Fri Nov 3 19:33:44 2006 -0600
75656
75657 mpc83xx: Add MPC8360EMDS basic board support
75658
75659 Add support for the Freescale MPC8360EMDS board.
75660 Includes DDR, DUART, Local Bus, PCI.
75661
75662 commit 23892e49352de74f7fac36ff90bb1be143d195e3
75663 Author: Dave Liu <daveliu@freescale.com>
75664 Date: Tue Oct 31 19:30:40 2006 -0600
75665
75666 mpc83xx: add the QUICC Engine (QE) immap file
75667
75668 common QE immap file. Also required for 8360.
75669
75670 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
75671 Author: Dave Liu <daveliu@freescale.com>
75672 Date: Tue Oct 31 19:25:38 2006 -0600
75673
75674 mpc83xx: Add 8360 specifics to 83xx immap
75675
75676 Mainly add QE device dependencies, with appropriate 8360 protection.
75677 Lindent also run.
75678
75679 commit 988833324a7fda482c8ac3ca23eb539f8232e404
75680 Author: Timur Tabi <timur@freescale.com>
75681 Date: Tue Oct 31 19:14:41 2006 -0600
75682
75683 mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
75684
75685 PREREQUISITE PATCHES:
75686
75687 * This patch can only be applied after the following patches have been applied:
75688
75689 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2"
75690 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2"
75691
75692 CHANGELOG:
75693
75694 * For the 8349E-mITX, fix some size values in pci_init_board(), enable
75695 the clock for the 2nd USB board (Linux kernel will hang otherwise),
75696 and fix the CONFIG_BOOTARGS macro.
75697
75698 Signed-off-by: Timur Tabi <timur@freescale.com>
75699
75700 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
75701 Author: Timur Tabi <timur@freescale.com>
75702 Date: Tue Oct 31 18:44:42 2006 -0600
75703
75704 mpc83xx: Add support for the MPC8349E-mITX
75705
75706 PREREQUISITE PATCHES:
75707
75708 * This patch can only be applied after the following patches have been applied:
75709
75710 1) DNX#2006090742000024 "Add support for multiple I2C buses"
75711 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
75712 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
75713 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
75714 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
75715
75716 CHANGELOG:
75717
75718 * Add support for the Freescale MPC8349E-mITX reference design platform.
75719 The second TSEC (Vitesse 7385 switch) is not supported at this time.
75720
75721 Signed-off-by: Timur Tabi <timur@freescale.com>
75722
75723 commit 183da6d9b446cc12123455844ad1187e2375626f
75724 Author: Ben Warren <bwarren@qstreams.com>
75725 Date: Tue Sep 12 10:15:53 2006 -0400
75726
75727 Additional MPC8349 support for multibus i2c
75728
75729 Hello,
75730
75731 Here is a patch for a file that was accidentally left out of a previous
75732 attempt.
75733
75734 It accompanies the patch with ticket DNX#2006090742000024
75735
75736 CHANGELOG:
75737 Change PCI initialization to use new multi-bus I2C API.
75738
75739 regards,
75740 Ben
75741
75742 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
75743 Author: Ben Warren <bwarren@qstreams.com>
75744 Date: Thu Sep 7 16:51:04 2006 -0400
75745
75746 Multi-bus I2C implementation of MPC834x
75747
75748 Hello,
75749
75750 Attached is a patch implementing multiple I2C buses on the MPC834x CPU
75751 family and the MPC8349EMDS board in particular.
75752 This patch requires Patch 1 (Add support for multiple I2C buses).
75753 Testing was performed on a 533MHz board.
75754
75755 /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
75756
75757 Signed-off-by: Ben Warren <bwarren@qstreams.com>
75758
75759 CHANGELOG:
75760 Implemented driver-level code to support two I2C buses on the
75761 MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds
75762 are 50kHz, 100kHz and 400kHz on each bus.
75763
75764 regards,
75765 Ben
75766
75767 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
75768 Author: Ben Warren <bwarren@qstreams.com>
75769 Date: Thu Sep 7 16:50:54 2006 -0400
75770
75771 Add support for multiple I2C buses
75772
75773 Hello,
75774
75775 Attached is a patch providing support for multiple I2C buses at the
75776 command level. The second part of the patch includes an implementation
75777 for the MPC834x CPU and MPC8349EMDS board.
75778
75779 /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
75780
75781 Signed-off-by: Ben Warren <bwarren@qstreams.com>
75782
75783 Overview:
75784
75785 1. Include new 'i2c' command (based on USB implementation) using
75786 CONFIG_I2C_CMD_TREE.
75787
75788 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that
75789 the commands to change bus number and speed are only available under the
75790 new 'i2c' command mentioned in the first bullet.
75791
75792 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
75793 systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form
75794 of an array of bus-device pairs. Otherwise, it is an array of uchar.
75795
75796 CHANGELOG:
75797 Added new 'i2c' master command for all I2C interaction. This is
75798 conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for
75799 setting I2C bus speed as well as changing the active bus if the board
75800 has more than one (conditionally compiled with
75801 CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses.
75802 Updated README.
75803
75804 regards,
75805 Ben
75806
75807 commit bed85caf872714ebf53013967a695c9d63acfc68
75808 Author: Timur Tabi <timur@freescale.com>
75809 Date: Tue Oct 31 18:13:36 2006 -0600
75810
75811 mpc83xx: Add support for Errata DDR6 on MPC 834x systems
75812
75813 CHANGELOG:
75814
75815 * Errata DDR6, which affects all current MPC 834x processors, lists changes
75816 required to maintain compatibility with various types of DDR memory. This
75817 patch implements those changes.
75818
75819 Signed-off-by: Timur Tabi <timur@freescale.com>
75820
75821 commit afd6e470f639883002c7c59d562690a5cb0f4865
75822 Author: Timur Tabi <timur@freescale.com>
75823 Date: Wed Oct 25 18:45:23 2006 -0500
75824
75825 mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
75826
75827 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
75828 Author: Timur Tabi <timur@freescale.com>
75829 Date: Tue Aug 22 17:07:00 2006 -0500
75830
75831 mpc83xx: Add support for variable flash memory sizes on 83xx systems
75832
75833 CHANGELOG:
75834
75835 * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
75836 window registers, instead of using a hard-coded value of 8MB.
75837
75838 Signed-off-by: Timur Tabi <timur@freescale.com>
75839
75840 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
75841 Author: Tanya Jiang <tanya.jiang@freescale.com>
75842 Date: Thu Aug 3 18:38:13 2006 +0800
75843
75844 mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
75845
75846 Unified TQM834x variable names with 83xx and consolidated macro
75847 in preparation for the 8360 and other upcoming 83xx devices.
75848
75849 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
75850
75851 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
75852 Author: Dave Liu <daveliu@freescale.com>
75853 Date: Wed Oct 25 14:41:21 2006 -0500
75854
75855 mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
75856
75857 Incorporated the common unified variable names and the changes in preparation
75858 for releasing mpc8360 patches.
75859
75860 Signed-off-by: Dave Liu <daveliu@freescale.com>
75861
75862 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
75863 Author: Tanya Jiang <tanya.jiang@freescale.com>
75864 Date: Thu Aug 3 18:36:02 2006 +0800
75865
75866 mpc83xx: Fix missing build for mpc8349emds pci.c
75867
75868 Make pci build for mpc8349emds
75869
75870 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
75871
75872 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
75873 Author: Tanya Jiang <tanya.jiang@freescale.com>
75874 Date: Thu Aug 3 18:39:49 2006 +0800
75875
75876 mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
75877
75878 Removed unused file resetvec.S for mpc83xx cpu
75879
75880 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
75881
75882 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
75883 Author: Nick Spence <Nick.Spence@freescale.com>
75884 Date: Sat Sep 30 00:32:59 2006 -0700
75885
75886 NAND Flash verify across block boundaries
75887
75888 This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
75889 defined
75890 and the write crosses a block boundary. The pointer to the verification
75891 buffer (bufstart) is not being updated to reflect the starting of the
75892 new
75893 block so the verification of the second block fails.
75894
75895 CHANGELOG:
75896
75897 * Fix NAND FLASH page verification across block boundaries
75898
75899 commit f484dc791a3932537213c43c654cc1295c64b84c
75900 Author: Nick Spence <nick.spence@freescale.com>
75901 Date: Thu Sep 7 07:39:46 2006 -0700
75902
75903 Added RGMII support to the TSECs and Marvell 881111 Phy
75904
75905 Added a phy initialization to adjust the RGMII RX and TX timing
75906 Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
75907
75908 Signed-off-by: Nick Spence <nick.spence@freescale.com>
75909
75910 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
75911 Author: roy zang <tie-fei.zang@freescale.com>
75912 Date: Fri Nov 3 13:10:00 2006 +0800
75913
75914 Remove some unused CFG define.
75915 undef CFG_DRAM_TEST
75916
75917 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
75918 Author: roy zang <tie-fei.zang@freescale.com>
75919 Date: Fri Nov 3 13:07:36 2006 +0800
75920
75921 Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
75922 Both work. 0xFF000000 seems more reasonable.
75923
75924 commit c59200443072353044aa4bf737a5a60f9a9af231
75925 Author: Wolfgang Denk <wd@pollux.denx.de>
75926 Date: Thu Nov 2 15:15:01 2006 +0100
75927
75928 Release U-Boot 1.1.6
75929
75930 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
75931 Author: roy zang <tie-fei.zang@freescale.com>
75932 Date: Thu Nov 2 19:14:48 2006 +0800
75933
75934 This patch comes from Yuli's posted patch on 8/8/2006
75935 titled "CFI Driver Little-Endian write Issue".
75936
75937 http://sourceforge.net/mailarchive/message.php?msg_id=36311999
75938
75939 If that patch applied, please discard this one.
75940 Until now , I do not see his patch is applied. So please apply this one.
75941
75942 Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
75943 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75944
75945 commit b825f158e449e1e9cf74c08e572955e122394c96
75946 Author: roy zang <tie-fei.zang@freescale.com>
75947 Date: Thu Nov 2 19:12:31 2006 +0800
75948
75949 Tsi108 on chip i2c support.
75950
75951 The i2c Interface provides a master-only, serial interface that can be
75952 used for initializing Tsi108/Tsi109 registers from an EEPROM after a
75953 device reset.
75954
75955 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75956 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75957
75958 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
75959 Author: roy zang <tie-fei.zang@freescale.com>
75960 Date: Thu Nov 2 19:11:06 2006 +0800
75961
75962 Tsi108 on chip pci controller support.
75963
75964 If there is no pci card, the tsi108/109 pci configure read will
75965 cause a machine check exception to the processor. PCI error should
75966 also be cleared after the read.
75967
75968 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
75969 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
75970
75971 commit d1927cee977126e547ceeba23e4f978f377cfb8f
75972 Author: roy zang <tie-fei.zang@freescale.com>
75973 Date: Thu Nov 2 19:08:55 2006 +0800
75974
75975 Tundra tsi108 on chip Ethernet controller support.
75976
75977 The following is a brief description of the Ethernet controller:
75978 The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
75979 Gigabit Ethernet ports,E0 and E1. It uses a single Management interface
75980 to manage the two physical connection devices (PHYs). Each Ethernet port
75981 has its own statistics monitor that tracks and reports key interface
75982 statistics. Each port supports a 256-entry hash table for address
75983 filtering. In addition, each port is bridged to the Switch Fabric
75984 through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
75985
75986 Each Ethernet port also has a pair of internal Ethernet DMA channels to
75987 support the transmit and receive data flows. The Ethernet DMA channels
75988 use descriptors set up in memory, the memory map of the device, and
75989 access via the Switch Fabric. The Ethernet Controller?s DMA arbiter
75990 handles arbitration for the Switch Fabric. The Controller also
75991 has a register businterface for register accesses and status monitor
75992 control.
75993
75994 The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
75995 modes. The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
75996 The GMII and TBI modes are used to connect with Gigabit PMDs. Internal
75997 data flows to and from the Ethernet Controller through the Switch Fabric.
75998
75999 Each Ethernet port uses its transmit and receive DMA channels to manage
76000 data flows through buffer descriptors that are predefined by the
76001 system (the descriptors can exist anywhere in the system memory map).
76002 These descriptors are data structures that point to buffers filled
76003 with data ready to transmit over Ethernet, or they point to empty
76004 buffers ready to receive data from Ethernet.
76005
76006 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
76007 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
76008
76009 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
76010 Author: roy zang <tie-fei.zang@freescale.com>
76011 Date: Thu Nov 2 19:01:33 2006 +0800
76012
76013 Tundra tsi108 header file.
76014
76015 The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
76016 PowerPC processors that offers numerous system interconnect options for
76017 embedded application designers. The Tsi108 can interconnect 60x or
76018 MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
76019 and Flash. Provided the macro define for tsi108 chip.
76020
76021 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
76022 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
76023
76024 commit 87c4db09699c6b89176b31004afcb83eb1585d47
76025 Author: roy zang <tie-fei.zang@freescale.com>
76026 Date: Thu Nov 2 18:59:15 2006 +0800
76027
76028 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
76029 mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
76030
76031 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
76032 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
76033
76034 commit 27801b8ab11c61b577e45742a515bb3b23b80241
76035 Author: roy zang <tie-fei.zang@freescale.com>
76036 Date: Thu Nov 2 18:57:21 2006 +0800
76037
76038 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
76039 Make ,config.mk and link file for the mpc7448hpc2 board.
76040
76041 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
76042 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
76043
76044 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
76045 Author: roy zang <tie-fei.zang@freescale.com>
76046 Date: Thu Nov 2 18:55:04 2006 +0800
76047
76048 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
76049 The mpc7448hpc2 board support header file.
76050
76051 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
76052 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
76053
76054 commit 625bb5ddb50b243f931262ca8c46956409471917
76055 Author: roy zang <tie-fei.zang@freescale.com>
76056 Date: Thu Nov 2 18:52:21 2006 +0800
76057
76058 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
76059 The mpc7448hpc2 board support low level assemble language init code.
76060
76061 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
76062 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
76063
76064 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
76065 Author: roy zang <tie-fei.zang@freescale.com>
76066 Date: Thu Nov 2 18:49:51 2006 +0800
76067
76068 General code modification for mpc7448hpc2 board support.
76069 1. Add 7447A and 7448 processor support.
76070 2. Add the following flags.
76071
76072 CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
76073 (such as by switch on board), this flag should be set.
76074
76075 CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
76076 relocates to RAM, this flag should be set.
76077
76078 CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
76079 system hang in exception, this flag should be set.
76080
76081 There is a design issue for tsi108/109 pci configure read. When pci scan
76082 the slots, if there is no pci card, the tsi108/9 will cause a machine
76083 check exception for mpc7448 processor.
76084
76085 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
76086 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
76087
76088 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
76089 Author: roy zang <tie-fei.zang@freescale.com>
76090 Date: Thu Nov 2 18:34:47 2006 +0800
76091
76092 Add README file for mpc7448hpc2 board.
76093 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
76094
76095 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
76096 Author: Bartlomiej Sieka <tur@semihalf.com>
76097 Date: Wed Nov 1 02:04:38 2006 +0100
76098
76099 Finish up support for MarelV38B board
76100 - add watchdog support
76101 - enable GPIO_WKUP_7 pin for input
76102 - code cleanup
76103
76104 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
76105 Author: Bartlomiej Sieka <tur@semihalf.com>
76106 Date: Wed Nov 1 01:45:46 2006 +0100
76107
76108 - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
76109 * remove warnings when compiling ethaddr.c
76110 * adjust linker script (fixes a crash resulting from incorrect
76111 definition of __u_boot_cmd_start)
76112 - Some MarelV38B code cleanup.
76113
76114 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
76115 Author: Bartlomiej Sieka <tur@semihalf.com>
76116 Date: Wed Nov 1 01:38:16 2006 +0100
76117
76118 - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
76119 MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
76120 Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
76121 MPC5XXX_WU_GPIO_DATA_O for affected boards.
76122
76123 - Add defintions for some MPC5XXX GPIO pins.
76124
76125 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
76126 Author: Bartlomiej Sieka <tur@semihalf.com>
76127 Date: Wed Nov 1 01:34:29 2006 +0100
76128
76129 Changed MarelV38B board make target to lowercase. Config file cleanup.
76130
76131 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
76132 Author: Wolfgang Denk <wd@pollux.denx.de>
76133 Date: Sun Oct 29 01:03:51 2006 +0200
76134
76135 Automatically adjust ARFLAGS so "make -s" is really silent.
76136
76137 commit fae684e89844856383bdf101440889557df3e6b1
76138 Author: Stefan Roese <sr@denx.de>
76139 Date: Sat Oct 28 16:45:00 2006 +0200
76140
76141 [PATCH] omap925.c: Remove unused functions
76142
76143 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
76144 Signed-off-by: Stefan Roese <sr@denx.de>
76145
76146 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
76147 Author: Stefan Roese <sr@denx.de>
76148 Date: Sat Oct 28 17:12:58 2006 +0200
76149
76150 [PATCH] Add some missing machtypes for netstar & voiceblue boards
76151
76152 Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
76153 numbers in code.
76154
76155 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
76156 Signed-off-by: Stefan Roese <sr@denx.de>
76157
76158 commit 856f054410cef52d868feb330168b2a4c4091328
76159 Author: Stefan Roese <sr@denx.de>
76160 Date: Sat Oct 28 15:55:52 2006 +0200
76161
76162 [PATCH] NAND: Partition name support added to NAND subsystem
76163
76164 chpart, nboot and NAND subsystem related commands now accept also partition
76165 name to specify offset.
76166
76167 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
76168 Signed-off-by: Stefan Roese <sr@denx.de>
76169
76170 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
76171 Author: Wolfgang Denk <wd@pollux.denx.de>
76172 Date: Sat Oct 28 02:29:44 2006 +0200
76173
76174 Update CHANGELOG.
76175
76176 commit 2751a95abd1b96911081c357e96a12fa97b40dee
76177 Author: Wolfgang Denk <wd@pollux.denx.de>
76178 Date: Sat Oct 28 02:29:14 2006 +0200
76179
76180 Enable commandline editing and hush shell on all TQM boards.
76181
76182 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
76183 Author: Wolfgang Denk <wd@pollux.denx.de>
76184 Date: Sat Oct 28 02:28:02 2006 +0200
76185
76186 README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
76187
76188 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
76189 Author: Wolfgang Denk <wd@denx.de>
76190 Date: Sat Oct 28 01:14:32 2006 +0200
76191
76192 Check for illegal character '=' in environment variable names.
76193
76194 Make sure the string passed as variable name does not contain a '='
76195 character. This not only prevents the common error or typing
76196 "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
76197 also closes a backdoor which allowed to delete write-protected
76198 environment variables, for example by using "setenv ethaddr=".
76199
76200 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
76201 Author: Wolfgang Denk <wd@pollux.denx.de>
76202 Date: Sat Oct 28 00:38:39 2006 +0200
76203
76204 Minor code cleanup.
76205
76206 commit e11887a77d81077416a2d1c5e0354916fee8c034
76207 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
76208 Date: Thu Oct 26 17:55:31 2006 +0200
76209
76210 Don't pass any debug options directly to the assembler
76211
76212 When passing the -g option to gcc, gcc automatically selects a
76213 suitable --g<format> option to pass on to the assembler.
76214 Thus, there's no point in forcing a specific debug option on the
76215 assembler using the -Wa mechanism.
76216
76217 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76218
76219 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
76220 Author: Jon Loeliger <jdl@freescale.com>
76221 Date: Fri Oct 27 07:47:22 2006 -0500
76222
76223 MPC86xx: Cleaned up unused and conditionally used local variables.
76224
76225 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76226
76227 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
76228 Author: Wolfgang Denk <wd@pollux.denx.de>
76229 Date: Fri Oct 27 11:55:21 2006 +0200
76230
76231 Fix "ar" flags in some Makefiles to allow for silent "make -s"
76232
76233 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
76234 Author: Ben Warren <bwarren@qstreams.com>
76235 Date: Thu Oct 26 14:38:25 2006 -0400
76236
76237 Fix TSEC driver (now for real): avoid crashes if PHY is not attached
76238 to a TSEC (e.g. a switch is connected via RMII) or
76239 if the PHY is defective/incorrectly configured.
76240
76241 Signed-off-by: Ben Warren <bwarren@qstreams.com>
76242
76243 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
76244 Author: Ben Warren <bwarren@qstreams.com>
76245 Date: Thu Oct 26 14:38:25 2006 -0400
76246
76247 Fix TSEC driver: avoid crashes if PHY is not attached
76248 to a TSEC (e.g. a switch is connected via RMII) or
76249 if the PHY is defective/incorrectly configured.
76250
76251 Signed-off-by: Ben Warren <bwarren@qstreams.com>
76252
76253 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
76254 Author: Wolfgang Denk <wd@pollux.denx.de>
76255 Date: Thu Oct 26 16:24:31 2006 +0200
76256
76257 Code cleanup.
76258
76259 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
76260 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
76261 Date: Wed Oct 25 15:48:59 2006 +0200
76262
76263 Finish up support for the ATSTK1000/ATSTK1002 boards
76264
76265 Add atstk1002_config target to Makefile and move the AVR32 section
76266 down below Blackfin so that it doesn't end up in the middle of
76267 MIPS.
76268
76269 Drop the autogenerated linker script thing for now. Will have to
76270 revisit how to handle chips with different flash and RAM layout
76271 later.
76272
76273 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76274
76275 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
76276 Author: Kumar Gala <galak@kernel.crashing.org>
76277 Date: Tue Oct 24 23:47:37 2006 -0500
76278
76279 Added support for Multi-Image files that contain a device tree
76280
76281 If a Multi-Image file contains a third image we try to use it as a
76282 device tree. The device tree image is assumed to be uncompressed in the
76283 image file. We automatically allocate space for the device tree in memory
76284 and provide an 8k pad to allow more than a reasonable amount of growth.
76285
76286 Additionally, a device tree that was contained in flash will now automatically
76287 get copied to system memory as part of boot. Previously an error was
76288 reported if one tried to boot a device tree that was in flash.
76289
76290 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
76291
76292 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
76293 Author: Wolfgang Denk <wd@denx.de>
76294 Date: Tue Oct 24 21:35:55 2006 +0200
76295
76296 Switch to automatically generated CHANGELOG file.
76297 (use "make CHANGELOG" to update it from time to time)
76298
76299 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
76300 Author: Stefan Roese <sr@denx.de>
76301 Date: Tue Oct 24 18:06:48 2006 +0200
76302
76303 Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
76304 Patch by Stefan Roese, 24 Oct 2006
76305
76306 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
76307 Author: Wolfgang Denk <wd@pollux.denx.de>
76308 Date: Tue Oct 24 17:24:55 2006 +0200
76309
76310 Merge with /home/wd/git/u-boot/master
76311
76312 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
76313 Author: Wolfgang Denk <wd@pollux.denx.de>
76314 Date: Tue Oct 24 15:32:57 2006 +0200
76315
76316 Code cleanup
76317
76318 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
76319 Author: Wolfgang Denk <wd@pollux.denx.de>
76320 Date: Tue Oct 24 14:51:36 2006 +0200
76321
76322 Move atstk1000 files into vendor specific directory.
76323 Patch by Haavard Skinnemoen, 12 Sep 2006
76324
76325 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
76326 Author: Wolfgang Denk <wd@pollux.denx.de>
76327 Date: Tue Oct 24 14:42:37 2006 +0200
76328
76329 Add ATSTK1000 and ATSTK1002 board support
76330 Patch by Haavard Skinnemoen, 06 Sep 2006
76331
76332 This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
76333 daughterboard.
76334
76335 ATSTK1000 is a full-featured development board for AT32AP CPUs. It
76336 has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
76337 and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
76338 CompactFlash cards. For more information, please see this page:
76339
76340 http://www.atmel.com/dyn/products/tools.asp?family_id=682
76341
76342 The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
76343 AT32AP7000 chip.
76344
76345 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76346
76347 commit f93ae788c3640fcde5db383471d45548ff4060d0
76348 Author: Wolfgang Denk <wd@pollux.denx.de>
76349 Date: Tue Oct 24 14:31:24 2006 +0200
76350
76351 Add common serial driver for Atmel AT32 and AT91 chips
76352 Patch by Haavard Skinnemoen, 06 Sep 2006
76353
76354 This is a first attempt at creating a common serial driver for Atmel
76355 chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
76356 be possible to support AT91RM9200 and other ARM-based chips with some
76357 minor modifications.
76358
76359 There's nothing fundamentally AVR32-specific in this driver, but it
76360 does use some features which are currently only defined for the
76361 AT32AP CPU port:
76362 * pm_get_clock_freq: Obtain the clock frequency of a given domain
76363 * gd->console_uart: A "struct device" containing information about
76364 register mappings, gpio resources and clocks associated with the
76365 UART device.
76366
76367 For more information about these features, please see the "AT32AP
76368 CPU" patch.
76369
76370 commit 72a087e04705c26cad982879ebd06b5281bf825a
76371 Author: Wolfgang Denk <wd@pollux.denx.de>
76372 Date: Tue Oct 24 14:27:35 2006 +0200
76373
76374 Add AT32AP CPU and AT32AP7000 SoC support
76375 Patch by Haavard Skinnemoen, 06 Sep 2006
76376
76377 This patch adds support for the AT32AP CPU family and the AT32AP7000
76378 chip, which is the first chip implementing the AVR32 architecture.
76379
76380 The AT32AP CPU core is a high-performance implementation featuring a
76381 7-stage pipeline, separate instruction- and data caches, and a MMU.
76382 For more information, please see the "AVR32 AP Technical Reference":
76383
76384 http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
76385
76386 In addition to this, the AT32AP7000 chip comes with a large set of
76387 integrated peripherals, many of which are shared with the AT91 series
76388 of ARM-based microcontrollers from Atmel. Full data sheet is
76389 available here:
76390
76391 http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
76392
76393 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76394
76395 commit 7b64fef33c66be648826c0ff9758298ef13d0604
76396 Author: Wolfgang Denk <wd@pollux.denx.de>
76397 Date: Tue Oct 24 14:21:16 2006 +0200
76398
76399 Add AVR32 architecture support
76400 Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
76401
76402 This patch adds common infrastructure code for the Atmel AVR32
76403 architecture. See doc/README.AVR32 for details.
76404
76405 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
76406
76407 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
76408 Author: Wolfgang Denk <wd@pollux.denx.de>
76409 Date: Tue Oct 24 13:57:33 2006 +0200
76410
76411 Use -g instead of -gstabs in AFLAGS_DEBUG
76412 Patch by Haavard Skinnemoen, 30 Aug 2006
76413
76414 In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
76415 matter what the target's preferred debugging format is. This patch
76416 simply replaces -gstabs with -g, so that the default debugging format
76417 for the architecture is used.
76418
76419 commit 965829872169c2996023840d98e1d85ad148d629
76420 Author: Wolfgang Denk <wd@pollux.denx.de>
76421 Date: Tue Oct 24 13:55:18 2006 +0200
76422
76423 Fix/workaround broken dependency handling with make 3.81
76424 Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
76425
76426 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
76427 Author: Marian Balakowicz <m8@semihalf.com>
76428 Date: Mon Oct 23 22:17:05 2006 +0200
76429
76430 Fix sequoia separate object direcory building problems.
76431
76432 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
76433 Author: Jon Loeliger <jdl@freescale.com>
76434 Date: Fri Oct 20 17:16:35 2006 -0500
76435
76436 Use generic I2C register block on 85xx and 86xx.
76437
76438 Replace private IMMAP I2C structures with generic reg block
76439 and allow 86xx to have multiple I2C device busses.
76440
76441 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76442
76443 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
76444 Author: Jon Loeliger <jdl@freescale.com>
76445 Date: Fri Oct 20 15:54:34 2006 -0500
76446
76447 Fix compilation warnings on a few 85xx boards.
76448
76449 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76450
76451 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
76452 Author: Jon Loeliger <jdl@freescale.com>
76453 Date: Fri Oct 20 15:50:15 2006 -0500
76454
76455 Converted all 85xx boards to use a common FSL I2C driver.
76456 Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
76457 And removed hard i2c path from a few u-boot.lds scipts too.
76458 Minor whitespace cleanups along the way.
76459
76460 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76461
76462 commit 4d45f69e362b05892c9e92a7907e5820995612aa
76463 Author: Jon Loeliger <jdl@freescale.com>
76464 Date: Thu Oct 19 12:02:24 2006 -0500
76465
76466 Rewrite a series of goto statements as a sequences of
76467 conditional expressions instead.
76468
76469 Use consistent return code 0/-1 for good/bad indicators.
76470
76471 Include one fewer file if the driver isn't used at all.
76472
76473 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76474
76475 commit 7237c033b02fe295880435f1eb80819a0c987532
76476 Author: Jon Loeliger <jdl@freescale.com>
76477 Date: Thu Oct 19 11:02:16 2006 -0500
76478
76479 Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
76480
76481 in an effort to begin to unify the umpteen FSL I2C drivers that
76482 are all otherwise very similar.
76483
76484 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76485
76486 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
76487 Author: Jon Loeliger <jdl@freescale.com>
76488 Date: Thu Oct 19 11:33:52 2006 -0500
76489
76490 * Fix a bunch of compiler warnings for gcc 4.0
76491
76492 Signed-off-by: Matthew McClintock <msm@freescale.com>
76493
76494 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
76495 Author: Stefan Roese <sr@denx.de>
76496 Date: Tue Oct 17 06:14:31 2006 +0200
76497
76498 Add monitor functions for indirect access to PPC440 DCR's
76499 Patch by Leonid Baryudin, 12 Oct 2006
76500
76501 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
76502 Author: Jon Loeliger <jdl@freescale.com>
76503 Date: Fri Oct 13 16:47:53 2006 -0500
76504
76505 Fixed leading whitespace issues.
76506 Removed spurious LAWAR thing.
76507
76508 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76509
76510 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
76511 Author: Jon Loeliger <jdl@freescale.com>
76512 Date: Thu Oct 12 10:42:36 2006 -0500
76513
76514 Remove unneeded include files and local variable.
76515
76516 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76517
76518 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
76519 Author: Grant Likely <grant.likely@secretlab.ca>
76520 Date: Tue Oct 10 00:23:32 2006 -0600
76521
76522 Fix possible uninitialized variable compiler warning.
76523
76524 When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
76525 do_bootm_linux() may be uninitialized. There is no possibility in the
76526 current code that len will get used uninitialized, but this fix follows
76527 the existing convention of setting both len and data to zero at the same
76528 time.
76529
76530 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
76531
76532 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
76533 Author: Matthew McClintock <msm@freescale.com>
76534 Date: Wed Oct 11 15:13:01 2006 -0500
76535
76536 * Fix a bunch of compiler warnings for gcc 4.0
76537
76538 Signed-off-by: Matthew McClintock <msm@freescale.com>
76539
76540 commit bf651baa365e5447246aad6a633ccd667cf24a39
76541 Author: Jon Loeliger <jdl@freescale.com>
76542 Date: Wed Oct 11 10:10:43 2006 -0500
76543
76544 Move "ar" flags to config.mk to allow for silent "make -s"
76545
76546 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
76547 Author: Jon Loeliger <jdl@freescale.com>
76548 Date: Tue Oct 10 17:19:03 2006 -0500
76549
76550 Coding style changes to remove local varible blocks
76551 and reformat a bit nicer.
76552
76553 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
76554 Author: Jon Loeliger <jdl@freescale.com>
76555 Date: Tue Oct 10 17:16:04 2006 -0500
76556
76557 Fix whitespace issues.
76558
76559 commit 7b382b7125f2397cce63253df62f183e3dfa2770
76560 Author: Jon Loeliger <jdl@freescale.com>
76561 Date: Tue Oct 10 17:14:45 2006 -0500
76562
76563 Fix whitespace issues.
76564
76565 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
76566 Author: Jon Loeliger <jdl@freescale.com>
76567 Date: Tue Oct 10 17:06:53 2006 -0500
76568
76569 Fix whitespace issues.
76570
76571 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
76572 Author: Jon Loeliger <jdl@freescale.com>
76573 Date: Tue Oct 10 17:03:43 2006 -0500
76574
76575 Ran lindent and cleaned up whitespace issues.
76576 Format for 80-columns too.
76577
76578 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
76579 Author: Jon Loeliger <jdl@freescale.com>
76580 Date: Tue Oct 10 17:02:22 2006 -0500
76581
76582 Fix whitespace and 80-col issues.
76583
76584 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
76585 Author: Stefan Roese <sr@denx.de>
76586 Date: Sat Oct 7 11:36:51 2006 +0200
76587
76588 CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
76589 Patch by Stefan Roese, 07 Oct 2006
76590
76591 commit 5bc528fa4da751d472397b308137238a6465afd2
76592 Author: Stefan Roese <sr@denx.de>
76593 Date: Sat Oct 7 11:35:25 2006 +0200
76594
76595 Update ALPR code (NAND support working now)
76596 Patch by Stefan Roese, 07 Oct 2006
76597
76598 commit 77d5034847d328753b80c46b83f960a14a26f40e
76599 Author: Stefan Roese <sr@denx.de>
76600 Date: Sat Oct 7 11:33:03 2006 +0200
76601
76602 Remove compile warnings in fpga code
76603 Patch by Stefan Roese, 07 Oct 2006
76604
76605 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
76606 Author: Stefan Roese <sr@denx.de>
76607 Date: Sat Oct 7 11:30:52 2006 +0200
76608
76609 Add CONFIG_BOARD_RESET to configure board specific reset function
76610 Patch by Stefan Roese, 07 Oct 2006
76611
76612 commit f55df18187e7a45cb73fec4370d12135e6691ae1
76613 Author: John Traill <john.traill@freescale.com>
76614 Date: Fri Sep 29 08:23:12 2006 +0100
76615
76616 Fix missing tCycle/modfreq calculation.
76617
76618 Signed-off-by: John Traill <john.traill@freescale.com>
76619
76620 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
76621 Author: Andy Fleming <afleming@freescale.com>
76622 Date: Wed Sep 13 10:33:35 2006 -0500
76623
76624 Updated config headers to add default FDT-based booting
76625
76626 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
76627 Author: Andy Fleming <afleming@freescale.com>
76628 Date: Wed Sep 13 10:34:18 2006 -0500
76629
76630 Add support for eTSEC 3 & 4 on 8548 CDS
76631
76632 * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
76633 This will only work on rev 1.3 boards (but doesn't break older boards)
76634 * Cleaned up some comments to reflect the expanded role of tsec
76635 in other systems
76636
76637 commit 084d648b109c8984f83674043c1a7fa3885ef801
76638 Author: Andy Fleming <afleming@freescale.com>
76639 Date: Wed Sep 13 10:33:56 2006 -0500
76640
76641 Added code to support 2.6.18 PCI changes in u-boot
76642
76643 * Added code to swizzle the IRQ map for the PCI
76644
76645 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
76646 Author: Jon Loeliger <jdl@freescale.com>
76647 Date: Tue Sep 19 09:34:10 2006 -0500
76648
76649 Modified makefile for new build mechanism.
76650
76651 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76652
76653 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
76654 Author: Jon Loeliger <jdl@freescale.com>
76655 Date: Thu Sep 14 08:40:36 2006 -0500
76656
76657 Handle 86xx SVR values according to the new Reference Manual.
76658 Both 8641 and 8641D have SVR == 0x8090, and are distinguished
76659 by the byte in bits 16-23 instead.
76660 Thanks to Jason Jin for noticing.
76661
76662 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76663
76664 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
76665 Author: Zhang Wei <wei.zhang@freescale.com>
76666 Date: Mon Aug 28 14:25:31 2006 +0800
76667
76668 Fixed an OF-tree off-by-one bug when adding a new property name.
76669 This bug will cause the kernel booting to pause a long time.
76670
76671 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76672 (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
76673
76674 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
76675 Author: Jon Loeliger <jdl@freescale.com>
76676 Date: Tue Aug 29 11:05:09 2006 -0500
76677
76678 Remove trailing empty lines.
76679
76680 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
76681 Author: Jon Loeliger <jdl@freescale.com>
76682 Date: Tue Aug 29 09:48:49 2006 -0500
76683
76684 Remove bogus msync and use volatile asm.
76685
76686 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
76687 Author: Jon Loeliger <jdl@freescale.com>
76688 Date: Tue Aug 29 08:17:14 2006 -0500
76689
76690 Add myself as maintainer for MPC8641HPCN.
76691
76692 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
76693 Author: Zhang Wei <wei.zhang@freescale.com>
76694 Date: Mon Aug 28 14:25:31 2006 +0800
76695
76696 Fixed an OF-tree off-by-one bug when adding a new property name.
76697 This bug will cause the kernel booting to pause a long time.
76698
76699 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76700
76701 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
76702 Author: Haiying Wang <haiying.wang@freescale.com>
76703 Date: Fri Aug 25 14:38:34 2006 -0400
76704
76705 Change ramdiskaddr and dtbaddr
76706 Remove PEX fluff commands.
76707
76708 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
76709 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76710
76711 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
76712 Author: Matthew McClintock <msm@freescale.com>
76713 Date: Wed Aug 23 13:32:45 2006 -0500
76714
76715 * Another small fix for booting with disable_of
76716
76717 Signed-off-by: Matthew McClintock <msm@freescale.com>
76718
76719 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
76720 Author: Jon Loeliger <jdl@freescale.com>
76721 Date: Wed Aug 23 11:04:43 2006 -0500
76722
76723 Cleanup and lindent new AHCI driver.
76724
76725 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
76726 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
76727 Date: Wed Aug 23 19:15:12 2006 +0800
76728
76729 Add AHCI define and sata support for MPC8641HPCN board.
76730
76731 Signed-off-by:Jason Jin<jason.jin@freescale.com>
76732
76733 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
76734 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
76735 Date: Wed Aug 23 19:10:44 2006 +0800
76736
76737 Add AHCI support to u-boot
76738
76739 Add AHCI support in u-boot, enable the sata disk controllers which
76740 following the AHCI protocol.
76741
76742 Signed-off-by:Jason Jin<jason.jin@freescale.com>
76743
76744 commit d8ea2acf5f137cae99417df4f573d036ee384668
76745 Author: Zhang Wei <wei.zhang@freescale.com>
76746 Date: Wed Aug 23 17:54:32 2006 +0800
76747
76748 Add dtb boot-up parameter to default boot commands.
76749
76750 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
76751
76752 commit b93775c2036b99baa390ea425c4771895bbc63c4
76753 Author: Jon Loeliger <jdl@freescale.com>
76754 Date: Tue Aug 22 18:26:08 2006 -0500
76755
76756 Cleanup even more poorly introduced whitespace.
76757
76758 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
76759 Author: Jon Loeliger <jdl@freescale.com>
76760 Date: Tue Aug 22 18:07:00 2006 -0500
76761
76762 Cleanup more poorly introduced whitespace.
76763
76764 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
76765 Author: Jon Loeliger <jdl@freescale.com>
76766 Date: Tue Aug 22 17:54:05 2006 -0500
76767
76768 Cleanup poorly introduced whitespace.
76769
76770 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
76771 Author: Jon Loeliger <jdl@freescale.com>
76772 Date: Tue Aug 22 12:25:27 2006 -0500
76773
76774 General indent and whitespace cleanups.
76775
76776 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
76777 Author: Jon Loeliger <jdl@freescale.com>
76778 Date: Tue Aug 22 12:06:18 2006 -0500
76779
76780 General indent and whitespace cleanups.
76781
76782 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
76783 Author: Jon Loeliger <jdl@freescale.com>
76784 Date: Tue Aug 22 10:42:21 2006 -0500
76785
76786 Cleanup compiler warnings.
76787
76788 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
76789 Author: Matthew McClintock <msm@freescale.com>
76790 Date: Tue Aug 22 09:31:59 2006 -0500
76791
76792 Fix disable_of booting
76793
76794 Signed-off-by: Matthew McClintock <msm@freescale.com>
76795
76796 commit 87a449c8ac396420cb24260f717ea9e6faa82047
76797 Author: Matthew McClintock <msm@freescale.com>
76798 Date: Tue Aug 22 09:23:55 2006 -0500
76799
76800 Support for FDT in uImage format, error when using FDT from flash
76801
76802 Signed-off-by: Matthew McClintock <msm@freescale.com>
76803
76804 commit 75c299c38369d01addd5e054b8a16217b70f4a86
76805 Author: Haiying Wang <haiying.wang@freescale.com>
76806 Date: Tue Aug 15 15:12:55 2006 -0400
76807
76808 Unlock cache before kernel starts up for MPC86xx
76809
76810 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
76811 Author: Haiying Wang <haiying.wang@freescale.com>
76812 Date: Tue Aug 15 15:13:15 2006 -0400
76813
76814 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
76815
76816 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
76817 Author: Haiying Wang <haiying.wang@freescale.com>
76818 Date: Tue Aug 15 15:12:55 2006 -0400
76819
76820 Unlock cache before kernel starts up for MPC86xx
76821
76822 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
76823 Author: Haiying Wang <haiying.wang@freescale.com>
76824 Date: Tue Aug 15 15:13:15 2006 -0400
76825
76826 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
76827
76828 commit 86c8e17f25e972a7e272950a0735fad84e082b88
76829 Author: Matthew McClintock <msm@freescale.com>
76830 Date: Wed Aug 16 13:59:47 2006 -0500
76831
76832 * Fix disable_of booting
76833
76834 Signed-off-by: Matthew McClintock <msm@freescale.com>
76835
76836 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
76837 Author: Matthew McClintock <msm@freescale.com>
76838 Date: Wed Aug 16 10:54:09 2006 -0500
76839
76840 * Support for FDT in uImage format, error when using FDT from flash
76841
76842 Signed-off-by: Matthew McClintock <msm@freescale.com>
76843
76844 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
76845 Author: Stefan Roese <sr@denx.de>
76846 Date: Tue Aug 15 14:22:35 2006 +0200
76847
76848 Add initial support for the ALPR board from Prodrive
76849 NAND needs some additional testing
76850 Patch by Heiko Schocher, 15 Aug 2006
76851
76852 commit f0ff4692ff3372dec55074a8eb444943ab095abb
76853 Author: Stefan Roese <sr@denx.de>
76854 Date: Tue Aug 15 14:15:51 2006 +0200
76855
76856 Add FPGA Altera Cyclone 2 support
76857 Patch by Heiko Schocher, 15 Aug 2006
76858
76859 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
76860 Author: Jon Loeliger <jdl@freescale.com>
76861 Date: Mon Aug 14 15:33:38 2006 -0500
76862
76863 Fix BAT0 to actually be cacheable, non-guarded as documented.
76864
76865 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76866
76867 commit 40bc83559db5745681909fd7382ae509567e116d
76868 Author: Jon Loeliger <jdl@freescale.com>
76869 Date: Wed Aug 9 15:32:16 2006 -0500
76870
76871 Removed MPC8641HPCN DTS source file from build.
76872 It is no longer linked into U-Boot; its sources are
76873 now located in the kernel tree.
76874
76875 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76876
76877 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
76878 Author: Matthew McClintock <msm@freescale.com>
76879 Date: Wed Jun 28 10:47:03 2006 -0500
76880
76881 * Switched default PCI speed for 8540 ADS back to 33MHz
76882
76883 * Added comments and a printf to warn that PCI-X won't
76884 work at 33MHz
76885 Patch by Andy Fleming 17-Mar-2006
76886
76887 Signed-off-by: Andy Fleming <afleming@freescale.com>
76888
76889 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
76890 Author: Matthew McClintock <msm@freescale.com>
76891 Date: Wed Jun 28 10:46:35 2006 -0500
76892
76893 * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
76894
76895 Signed-off-by: Andy Fleming <afleming@freescale.com>
76896
76897 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
76898 Author: Matthew McClintock <msm@freescale.com>
76899 Date: Wed Jun 28 10:46:13 2006 -0500
76900
76901 * Added VIA configuration table
76902
76903 * Added support for PCI2 on CDS
76904 Patch by Andy Fleming 17-Mar-2006
76905
76906 Signed-off-by: Andy Fleming <afleming@freescale.com>
76907
76908 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
76909 Author: Matthew McClintock <msm@freescale.com>
76910 Date: Wed Jun 28 10:45:41 2006 -0500
76911
76912 * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
76913
76914 Signed-off-by: Andy Fleming <afleming@freescale.com>
76915
76916 commit 97074ed9655309b64231bc2cee69fe85399f8055
76917 Author: Matthew McClintock <msm@freescale.com>
76918 Date: Wed Jun 28 10:45:17 2006 -0500
76919
76920 * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
76921
76922 Signed-off-by: Andy Fleming <afleming@freescale.com>
76923
76924 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
76925 Author: Matthew McClintock <msm@freescale.com>
76926 Date: Wed Jun 28 10:44:49 2006 -0500
76927
76928 * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
76929
76930 Signed-off-by: Andy Fleming <afleming@freescale.com>
76931
76932 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
76933 Author: Matthew McClintock <msm@freescale.com>
76934 Date: Wed Jun 28 10:44:23 2006 -0500
76935
76936 * 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
76937
76938 Signed-off-by: Andy Fleming <afleming@freescale.com>
76939
76940 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
76941 Author: Matthew McClintock <msm@freescale.com>
76942 Date: Wed Jun 28 10:43:36 2006 -0500
76943
76944 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
76945
76946 Signed-off-by: Jon Loeliger <jdl@freescale.com>
76947
76948 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
76949 Author: Matthew McClintock <msm@freescale.com>
76950 Date: Wed Jun 28 10:43:00 2006 -0500
76951
76952 * 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
76953
76954 commit 5498d90312aad9f6bdbf047986027c35b03cd163
76955 Author: Matthew McClintock <msm@freescale.com>
76956 Date: Wed Jun 28 10:42:24 2006 -0500
76957
76958 * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
76959
76960 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
76961 Author: Matthew McClintock <msm@freescale.com>
76962 Date: Wed Jun 28 10:41:37 2006 -0500
76963
76964 * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
76965
76966 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
76967 Author: John Traill <john.traill@freescale.com>
76968 Date: Wed Aug 9 14:33:50 2006 +0100
76969
76970 Add Rapidio support for the MPC8641HPCN
76971
76972 Signed-off-by: John Traill <john.traill@freescale.com>
76973
76974 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
76975 Author: John Traill <john.traill@freescale.com>
76976 Date: Tue Aug 8 11:32:43 2006 +0100
76977
76978 Fix caslat calculation
76979
76980 Signed-off-by: John Traill <john.traill@freescale.com>
76981
76982 commit 709d3073e74153278e7904a70819bbef7df50e1a
76983 Author: Jon Loeliger <jdl@freescale.com>
76984 Date: Thu Aug 3 16:17:56 2006 -0500
76985
76986 Convert to mac-address in ethernet nodes.
76987
76988 commit 71748af833ca1017edf1415be376366ff2937d17
76989 Author: Haiying Wang <haiying.wang@freescale.com>
76990 Date: Fri Jul 28 12:41:35 2006 -0400
76991
76992 Correct the irq value of DUART2
76993
76994 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
76995 Author: Haiying Wang <haiying.wang@freescale.com>
76996 Date: Fri Jul 28 12:41:41 2006 -0400
76997
76998 Change the space size of PEX IO in README
76999
77000 commit 239db37c94f7a92941c4465feceb867c609241c5
77001 Author: Haiying Wang <haiying.wang@freescale.com>
77002 Date: Fri Jul 28 12:41:18 2006 -0400
77003
77004 Move get_board_sys_clk to board directory
77005
77006 commit 492900b985439fbce1a118afde1e35def870db03
77007 Author: John Traill <john.traill@freescale.com>
77008 Date: Fri Jul 28 09:03:54 2006 +0100
77009
77010 Fix 8641HPCN pollution
77011
77012 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
77013 Author: John Traill <john.traill@freescale.com>
77014 Date: Fri Jul 28 08:16:06 2006 +0100
77015
77016 Fix 8641HPCN timebase
77017
77018 commit c86360b830f1eecd7a72208575dde4f57879faea
77019 Author: Zhang Wei <wei.zhang@freescale.com>
77020 Date: Fri Jul 28 00:01:34 2006 +0800
77021
77022 Fixed OF device tree of mpc86xxhpcn board.
77023
77024 The changes works in with kernel irq mapping rework.
77025
77026 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
77027
77028 commit bea3f28d285942bf3f7ab339ce85178ded544225
77029 Author: Haiying Wang <haiying.wang@freescale.com>
77030 Date: Wed Jul 12 10:48:05 2006 -0400
77031
77032 Add support for reading and writing mac addresses to or from ID EEPROM.
77033
77034 Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
77035 With attached patch, we can use command "mac/mac read/mac save/"
77036 to read and write EEPROM under u-boot prompt.
77037
77038 U-boot will calculate the checksum of EEPROM while bootup,
77039 if it is right, then u-boot will check whether the mac address
77040 of eTSEC0/1/2/3 is availalbe (non-zero).
77041
77042 If there is mac address availabe in EEPROM, u-boot will use it,
77043 otherewise, u-boot will use the mac address defined in
77044 MPC8641HPCN.h. This matches the requirement to set unique mac address
77045 for each TSEC port.
77046
77047 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
77048 Signed-off-by: York Sun <yorksun@freescale.com>
77049
77050 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
77051 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
77052 Date: Thu Jul 13 10:35:10 2006 -0500
77053
77054 Fixed initrd issue by define big RAM
77055
77056 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
77057
77058 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
77059 Author: Jason Jin <Jason.jin@freescale.com>
77060 Date: Fri Jul 7 10:01:45 2006 -0500
77061
77062 We made a u-boot patch to fix the hang up issue
77063 when booting filesystem from ramdisk.
77064
77065 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
77066
77067 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
77068 Author: Matthew McClintock <msm@freescale.com>
77069 Date: Wed Jun 28 10:47:03 2006 -0500
77070
77071 * Switched default PCI speed for 8540 ADS back to 33MHz
77072 * Added comments and a printf to warn that PCI-X won't
77073 work at 33MHz
77074 Patch by Andy Fleming 17-Mar-2006
77075
77076 Signed-off-by: Andy Fleming <afleming@freescale.com>
77077
77078 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
77079 Author: Matthew McClintock <msm@freescale.com>
77080 Date: Wed Jun 28 10:46:35 2006 -0500
77081
77082 * Fixed a bug where 8555 PCI code used the old variable and
77083 function names
77084 Patch by Andy Fleming 17-Mar-2006
77085
77086 Signed-off-by: Andy Fleming <afleming@freescale.com>
77087
77088 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
77089 Author: Matthew McClintock <msm@freescale.com>
77090 Date: Wed Jun 28 10:46:13 2006 -0500
77091
77092 * Added VIA configuration table
77093 * Added support for PCI2 on CDS
77094 Patch by Andy Fleming 17-Mar-2006
77095
77096 Signed-off-by: Andy Fleming <afleming@freescale.com>
77097
77098 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
77099 Author: Matthew McClintock <msm@freescale.com>
77100 Date: Wed Jun 28 10:45:41 2006 -0500
77101
77102 * Fixed PCI memory definitions
77103 Patch by Andy Fleming 17-Mar-2006
77104
77105 Signed-off-by: Andy Fleming <afleming@freescale.com>
77106
77107 commit 087454609e47295443af793a282cddcd91a5f49c
77108 Author: Matthew McClintock <msm@freescale.com>
77109 Date: Wed Jun 28 10:45:17 2006 -0500
77110
77111 * Added support for initializing second PCI bus on 85xx
77112 Patch by Andy Fleming 17-Mar-2006
77113
77114 Signed-off-by: Andy Fleming <afleming@freescale.com>
77115
77116 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
77117 Author: Matthew McClintock <msm@freescale.com>
77118 Date: Wed Jun 28 10:44:49 2006 -0500
77119
77120 * Added PCI-X #defines for PCI-X initialization
77121 Patch by Andy Fleming on 17-Mar-2006
77122
77123 Signed-off-by: Andy Fleming <afleming@freescale.com>
77124
77125 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
77126 Author: Matthew McClintock <msm@freescale.com>
77127 Date: Wed Jun 28 10:44:23 2006 -0500
77128
77129 * Made sure the code which disables prefetch for PCI devices
77130 sets the size of the prefetch region to 0
77131 Patch by Andy Fleming on 17-Mar-2006
77132
77133 Signed-off-by: Andy Fleming <afleming@freescale.com>
77134
77135 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
77136 Author: Matthew McClintock <msm@freescale.com>
77137 Date: Wed Jun 28 10:43:36 2006 -0500
77138
77139 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
77140 Patch by Jon Loeliger 17-Jan-2006
77141
77142 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77143
77144 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
77145 Author: Matthew McClintock <msm@freescale.com>
77146 Date: Wed Jun 28 10:43:00 2006 -0500
77147
77148 * Removed the oftree.dts for stxxtx in light of the changes
77149 to the flat device tree handling code
77150 Patch by Matthew McClintock 26-June-2006
77151
77152 commit 1b380ec225665e73959677f3893dc658c5925e05
77153 Author: Matthew McClintock <msm@freescale.com>
77154 Date: Wed Jun 28 10:42:24 2006 -0500
77155
77156 * Patch to modify ft_build.c to update flat device trees in place
77157 Patch by Matthew McClintock 26-June-2006
77158
77159 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
77160 Author: Matthew McClintock <msm@freescale.com>
77161 Date: Wed Jun 28 10:41:37 2006 -0500
77162
77163 * Modify bootm command to support booting with flat device trees
77164 Patch by Matthew McClintock 26-June-2006
77165
77166 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
77167 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
77168 Date: Wed Jun 28 08:43:56 2006 -0500
77169
77170 Change Id to symbolic name for RTL8139
77171
77172 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
77173
77174 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
77175 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
77176 Date: Tue Jun 27 18:12:10 2006 +0800
77177
77178 Fix RTL8139 in big endian
77179
77180 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
77181 signed-off-by: Wei Zhang <wei.zhang@freescale.com>
77182
77183 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
77184 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
77185 Date: Tue Jun 27 18:12:23 2006 +0800
77186
77187 Fix Tsec bug when no link
77188
77189 When tftp a non-exist file from the tftp server, u-boot will check
77190 the link of all eth port. The original file will return wrong link
77191 state on the no link ports.
77192
77193 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
77194
77195 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
77196 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
77197 Date: Tue Jun 27 18:12:02 2006 +0800
77198
77199 Fix bug for io_bar size during pci scan
77200
77201 During the pci scan process, Some devices return bar_reponse with the
77202 highest bytes 0, such as the pci bridge in uli1575 return bar_response
77203 with 0xffffff, So the bar_size should be manually set under 64K.
77204
77205 Signed-off-by: Jason Jin <jason.jin@freescale.com>
77206
77207 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
77208 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
77209 Date: Tue Jun 27 18:11:54 2006 +0800
77210
77211 Enable PCIE1 for MPC8641HPCN board
77212
77213 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
77214
77215 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
77216 Author: Wolfgang Denk <wd@pollux.denx.de>
77217 Date: Mon Jun 26 11:06:00 2006 +0200
77218
77219 More code cleanup
77220
77221 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
77222 Author: Jon Loeliger <jdl@freescale.com>
77223 Date: Thu Jun 22 08:51:46 2006 -0500
77224
77225 Fix bug in 8641hpcn reset command with no args.
77226
77227 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
77228 Acked-by: Jon Loeliger <jdl@freescale.com>
77229
77230 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
77231 Author: Zhang Wei <wei.zhang@freescale.com>
77232 Date: Tue Jun 20 17:47:15 2006 +0800
77233
77234 Reworked IRQ mapping in OF-tree.
77235
77236 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
77237 Author: Jon Loeliger <jdl@freescale.com>
77238 Date: Thu Jun 15 21:33:37 2006 -0500
77239
77240 Do not enable address translation on secondary CPUs.
77241 Do not set up BATs on secondary CPUs. Let Linux do the nasty.
77242
77243 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77244
77245 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
77246 Author: Wolfgang Denk <wd@pollux.denx.de>
77247 Date: Wed Jun 14 18:14:56 2006 +0200
77248
77249 Code cleanup
77250
77251 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
77252 Author: Wolfgang Denk <wd@pollux.denx.de>
77253 Date: Wed Jun 14 17:45:53 2006 +0200
77254
77255 Various USB related patches
77256 - Add support for mpc8xx USB device.
77257 - Add support for Common Device Class - Abstract Control Model USB console.
77258 - Add support for flow control in USB slave devices.
77259 - Add support for switching between gserial and cdc_acm using environment.
77260 - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
77261 - Update usbcore slightly to ease host enumeration.
77262 - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
77263 - Add AdderUSB_config as a defconfig to enable usage of the USB console
77264 by default with the Adder87x U-Boot port.
77265 Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
77266
77267 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
77268 Author: Jon Loeliger <jdl@jdl.com>
77269 Date: Wed Jun 7 10:53:55 2006 -0500
77270
77271 Fix a get_board_sys_clk() use-before-def warning.
77272
77273 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77274
77275 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
77276 Author: Jon Loeliger <jdl@jdl.com>
77277 Date: Wed Jun 7 10:52:49 2006 -0500
77278
77279 Allow DTC path to be passed in.
77280
77281 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77282
77283 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
77284 Author: Haiying Wang <haiying.wang@freescale.com>
77285 Date: Tue Jun 6 16:54:29 2006 -0400
77286
77287 Modify the IRQ of DUART2
77288
77289 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
77290 Author: Jon Loeliger <jdl@jdl.com>
77291 Date: Wed May 31 13:55:35 2006 -0500
77292
77293 Review cleanups.
77294
77295 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77296
77297 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
77298 Author: Jon Loeliger <jdl@jdl.com>
77299 Date: Wed May 31 12:44:44 2006 -0500
77300
77301 White space cleanup.
77302 Some 80-column cleanups.
77303 Convert printf() to puts() where possible.
77304 Use #include "spd_sdram.h" as needed.
77305 Enhanced reset command usage message a bit.
77306
77307 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77308
77309 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
77310 Author: Jon Loeliger <jdl@jdl.com>
77311 Date: Wed May 31 11:39:34 2006 -0500
77312
77313 Removed unneeded local_bus_init() from 8641HPCN board.
77314
77315 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77316
77317 commit 4d3d729c16c392d2982d3266b659d333c927697d
77318 Author: Jon Loeliger <jdl@jdl.com>
77319 Date: Wed May 31 11:24:28 2006 -0500
77320
77321 Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
77322
77323 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77324
77325 commit b2a941de060350ad15878d8219825f4950e9bb8e
77326 Author: Jon Loeliger <jdl@jdl.com>
77327 Date: Wed May 31 10:07:28 2006 -0500
77328
77329 Remove dead debug code.
77330
77331 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77332
77333 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
77334 Author: Jon Loeliger <jdl@freescale.com>
77335 Date: Tue May 30 17:47:00 2006 -0500
77336
77337 Move mpc86xx PIXIS code to board directory
77338
77339 First cut at moving the PIXIS platform code out of
77340 the 86xx cpu directory and into board/mpc8641hpcn
77341 where it belongs.
77342
77343 Signed-off-by: Jon Loeliger <jdl@freescale.com>
77344
77345 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
77346 Author: Markus Klotzbuecher <mk@denx.de>
77347 Date: Tue May 30 16:56:14 2006 +0200
77348
77349 Support generic OHCI support for the s3c24x0 cpu.
77350
77351 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
77352 Author: Haiying Wang <Haiying.Wang@freescale.com>
77353 Date: Tue May 30 09:10:32 2006 -0500
77354
77355 Improve "reset" command's interaction with watchdog.
77356
77357 "reset altbank" will reset another bank WITHOUT watch dog timer enabled
77358 "reset altbank wd" will reset another bank WITH watch dog enabled
77359 "diswd" will disable watch dog after u-boot boots up successfully
77360
77361 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
77362
77363 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
77364 Author: Haiying Wang <Haiying.Wang@freescale.com>
77365 Date: Tue May 30 08:51:19 2006 -0500
77366
77367 Fix two SDRAM setup bugs.
77368
77369 Fix ECC setup bug.
77370 Enable 1T/2T based on number of DIMMs present.
77371
77372 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
77373
77374 commit d11fec5015334deb2010e36ce00bb118cc5429a5
77375 Author: Haiying Wang <Haiying.Wang@freescale.com>
77376 Date: Fri May 26 10:24:48 2006 -0500
77377
77378 Add first draft of the MPC8641HPCN doc/README.
77379
77380 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77381
77382 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
77383 Author: Haiying Wang <Haiying.Wang@freescale.com>
77384 Date: Fri May 26 10:13:04 2006 -0500
77385
77386 Added pci@8000 block.
77387 Updated ethernet interrupt mappings (moved up 48).
77388 Cleaned up a few comments.
77389
77390 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77391
77392 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
77393 Author: Haiying Wang <Haiying.Wang@freescale.com>
77394 Date: Fri May 26 10:01:16 2006 -0500
77395
77396 Allow args on reset command.
77397
77398 Signed-off-by: Jon Loeliger <jdl@jdl.com>
77399
77400 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
77401 Author: Markus Klotzbuecher <mk@denx.de>
77402 Date: Tue May 23 13:38:35 2006 +0200
77403
77404 Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
77405 fixes to the latter.
77406
77407 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
77408 Author: Markus Klotzbuecher <mk@denx.de>
77409 Date: Tue May 23 10:33:11 2006 +0200
77410
77411 More cleanup for the delta board and the generic usb_ohci driver. Added
77412 CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
77413 initialization and cleanup hooks respectively.
77414
77415 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
77416 Author: Markus Klotzbuecher <mk@denx.de>
77417 Date: Mon May 22 16:33:54 2006 +0200
77418
77419 This patch adds USB storage support for the delta board. This is the first
77420 board to make use of a generic OHCI driver, that calls hooks for board
77421 dependant initialization.
77422
77423 commit 14e37081ff3cac7ebe6e93836523429853b6b292
77424 Author: Jon Loeliger <jdl@jdl.com>
77425 Date: Fri May 19 13:28:39 2006 -0500
77426
77427 Change arbitration to round-robin for SMP linux.
77428
77429 commit 9a655876e5995be80f49054e2509500e871e4d3a
77430 Author: Jon Loeliger <jdl@jdl.com>
77431 Date: Fri May 19 13:26:34 2006 -0500
77432
77433 Enable dual DDR controllers and interleaving.
77434
77435 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
77436 Author: Jon Loeliger <jdl@jdl.com>
77437 Date: Fri May 19 13:22:44 2006 -0500
77438
77439 Update 86xx address map and LAWBARs.
77440
77441 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
77442 Author: Jon Loeliger <jdl@jdl.com>
77443 Date: Fri May 19 13:14:15 2006 -0500
77444
77445 Remove L2 Cache invalidate polling.
77446
77447 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
77448 Author: Jon Loeliger <jdl@jdl.com>
77449 Date: Fri May 19 12:33:09 2006 -0500
77450
77451 Enable 2nd CPU and I2C.
77452
77453 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
77454 Author: Jon Loeliger <jdl@freescale.com>
77455 Date: Mon May 15 07:26:56 2006 -0500
77456
77457 Update interrupt mapping.
77458
77459 commit 6cfea33477b04b63ed47386ed1629529484c33ba
77460 Author: Haiying Wang <Haiying.Wang@freescale.com>
77461 Date: Wed May 10 09:38:06 2006 -0500
77462
77463 Remove unneeded INIT_RAM_LOCK cache twiddling.
77464 Correctly tracks r29 as global data pointer now.
77465
77466 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
77467
77468 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
77469 Author: Jon Loeliger <jdl@freescale.com>
77470 Date: Wed May 10 09:33:07 2006 -0500
77471
77472 Remove unnecessary flash.c file.
77473
77474 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
77475 Author: Jon Loeliger <jdl@freescale.com>
77476 Date: Tue May 9 08:23:49 2006 -0500
77477
77478 Get MPC8641HPCN flash images working.
77479
77480 Enable the CFI driver.
77481 Remove bogus LAWBAR7 cruft.
77482 Use correct TEXT_BASE, Fixup load script.
77483 Enable SPD EEPROM during DDR setup.
77484 Use generic RFC 1918 IP addresses by default.
77485
77486 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
77487 Author: Jon Loeliger <jdl@freescale.com>
77488 Date: Thu Apr 27 10:15:16 2006 -0500
77489
77490 Cleanup whitespaces and style issues.
77491 Removed //-style comments.
77492 Use 80-column lines.
77493 Remove trailing whitespace.
77494 Remove dead code and debug cruft.
77495
77496 commit a2320a6bf8113a09544c42d160d10ac69d049a03
77497 Author: Jon Loeliger <jdl@freescale.com>
77498 Date: Thu Apr 27 08:22:39 2006 -0500
77499
77500 Revert bad PCI prefetch limit change.
77501
77502 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
77503 Author: Jon Loeliger <jdl@freescale.com>
77504 Date: Wed Apr 26 17:58:56 2006 -0500
77505
77506 Initial support for MPC8641 HPCN board.