]> git.ipfire.org Git - people/ms/u-boot.git/blame - CHANGELOG
Merge branch 'cleanups' into next
[people/ms/u-boot.git] / CHANGELOG
CommitLineData
32688e57
WD
1commit 80b827c2b78329c6503b271e43d9eb693d644710
2Author: Wolfgang Denk <wd@denx.de>
3Date: Sun Feb 22 23:45:40 2009 +0100
4
5 ARM: synchronize mach-types.h with linux v2.6.29-rc5-315-g683fdc5
6
7 The file was generated from building versatile_defconfig.
8
9 Signed-off-by: Wolfgang Denk <wd@denx.de>
10
11commit 14209ac13ff631e36c9a9dd426c59c2e2f5dab00
12Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13Date: Sun Feb 22 14:24:11 2009 +0900
14
15 MIPS: Fix GCC-4.2 'discards qualifiers from pointer target type' warnings
16
17 Compiling dbau1x00 and gth2 boards with GCC-4.2, you would see new warnings
18 like this:
19
20 skuribay@ubuntu:u-boot.git$ ./MAKEALL dbau1000
21 Configuring for dbau1x00 board...
22 au1x00_eth.c: In function 'au1x00_send':
23 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
24 au1x00_eth.c: In function 'au1x00_recv':
25 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
26 au1x00_eth.c: In function 'au1x00_init':
27 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
28 au1x00_eth.c: In function 'au1x00_recv':
29 au1x00_eth.c:211: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
30 au1x00_eth.c: In function 'au1x00_init':
31 au1x00_eth.c:252: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
32 au1x00_eth.c: In function 'au1x00_send':
33 au1x00_eth.c:158: warning: passing argument 1 of 'virt_to_phys' discards qualifiers from pointer target type
34
35 We're passing a volatile pointer to a function which is expecting a non-
36 volatile pointer. That's potentially dangerous, so gcc warns about it.
37 Confirmed with ELDK 4.2 (GCC 4.2.2) and Sourcey G++ 4.2 (GCC 4.2.3).
38
39 To fix this, we add a volatile attribute to the argument in question.
40 The virt_to_phys function in Linux kernel also does the same thing.
41
42 Signed-off-by: Stefan Roese <sr@denx.de>
43 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
44
45commit aba45c85b22f8c57fc2fedba8e948e06c2e2f5b3
46Author: Dirk Behme <dirk.behme@googlemail.com>
47Date: Fri Feb 20 17:51:28 2009 +0100
48
49 OMAP3: Clean up MMC code
50
51 Clean up OMAP3 MMC code:
52
53 * Convert register access to struct & readx/writex style
54 * Replace hardcode values by macros
55 * Remove macro defined twice
56
57 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
58
59commit cfcdf4a9b361d015c0debac73fbf7c511df4a934
60Author: Dirk Behme <dirk.behme@googlemail.com>
61Date: Thu Feb 12 18:55:43 2009 +0100
62
63 OMAP3: Pandora: Update pin mux
64
65 Clock pin must have input enabled for MMC3 to work.
66 Also enable pull-ups for cmd/data lines to be consistent
67 with remaining MMC host pin setup.
68
69 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
70
71commit 6530a8bf8a0274b9419141e4c2c5a235cce5380f
72Author: Dirk Behme <dirk.behme@googlemail.com>
73Date: Thu Feb 12 18:55:42 2009 +0100
74
75 OMAP3: Add OMAP3 auto detection
76
77 This patch adds OMAP3 cpu type auto detection based on OMAP3 register
78 and removes hardcoded values.
79
80 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
81 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
82
83commit f956fd0338f4990793a10f767929ba4963665261
84Author: Dirk Behme <dirk.behme@googlemail.com>
85Date: Thu Feb 12 18:55:41 2009 +0100
86
87 OMAP3: Beagle: Add board revision detection
88
89 With BeagleBoard revision C some HW changes are introduced (e.g. PinMUX)
90 which might need different software handling. For this, GPIO pin 171 (GPIO
91 module 6, offset 11) can be used to check for board revision. If this pin
92 is low, we have a rev C board. Else it must be a revision Ax or Bx board.
93
94 To handle board differences you can call function beagle_get_revision().
95 E.g.:
96
97 if (beagle_get_revision()) {
98
99 /* do special revision C stuff here */
100
101 }
102
103 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
104
105commit 288f3cd912918b97919d13b6f7fb13fbddf74d68
106Author: Dirk Behme <dirk.behme@googlemail.com>
107Date: Thu Feb 12 18:55:40 2009 +0100
108
109 OMAP3: Overo: Clean up pin mux and GPIO configuration
110
111 * Make Overo GPIO114 an input for touchscreen PENDOWN
112 * Make Overo GPIO144-147 readable
113 * Make Overo EHCI pinmux match beagle rev c setup
114 * Adjust pinmux for SMSC911X network chip support
115 * Remove unnecessary GPIO setup
116 * Fix merge error in Makefile
117
118 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
119 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
120
121commit 2579019b8248e5f166e60e37065766efc8a49dbc
122Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
123Date: Sun Feb 22 17:08:41 2009 +0100
124
125 nmdk8815: fix onenand support
126
127 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
128
129commit 0176c03a2469676df5bf19cf93a1a6f582f6a120
130Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
131Date: Sun Feb 22 17:56:50 2009 +0100
132
133 nomadik/nand: fix 'ecc512' discards qualifiers from pointer target type
134
135 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
136
137commit 9751a456f702ba2fcdfd1bdbc0138927ef007858
138Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
139Date: Sun Feb 22 17:49:43 2009 +0100
140
141 davinci: fix implicit declaration of function 'davinci_errata_workarounds'
142
143 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
144
145commit 4f5728987f4f9f7845688482aa2b7f2127768165
146Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
147Date: Sun Feb 22 15:49:28 2009 +0100
148
149 arm: add uart dcc support
150
151 Serial driver via the EmbeddedICE macrocell's DCC channel using
152 co-processor 14.
153
154 It does include a timeout to ensure that the system does not
155 totally freeze when there is nothing connected to read.
156
157 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
158
159commit 0cd18fa982f9a8c1a90ce971379a7d6408976d48
160Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
161Date: Fri Nov 21 14:35:56 2008 -0500
162
163 ARM DaVinci: Add common peripherals and modules enable functions.
164
165 Taken all the duplicated code for enabling common modules and apply
166 software workarounds from the board specific code into common
167 functions. Also added comments explaining the workarounds
168 (from TI errata documents) and replaced some numerical bit numbers
169 with more meaningful defines.
170
171 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
172
173commit d3be1bcae7a8207e0a79ffd035d0e90f80378295
174Author: Alessandro Rubini <rubini@unipv.it>
175Date: Mon Feb 9 15:53:33 2009 +0100
176
177 Enable Ethernet for Nomadik 8815 Evaluation Kit
178
179 This trivially enables Ethernet support in the debug board
180 by setting up the proper chip select.
181
182 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
183 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
184
185commit 0d8c6eab2481046e9446264bfe9402bb98ddf433
186Author: Alessandro Rubini <rubini@unipv.it>
187Date: Mon Feb 9 15:53:31 2009 +0100
188
189 Nand driver for Nomadik SoC
190
191 This driver implements the ECC algorithm described in
192 the CPU data sheet and uses the OOB layout chosen in
193 already-released development systems (shipped with a custom-made
194 u-boot 1.3.1).
195
196 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
197 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
198
199commit ef339cc2b68e4cbef3f9376a45315e1b974bbd8d
200Author: Alessandro Rubini <rubini@unipv.it>
201Date: Mon Feb 9 15:53:31 2009 +0100
202
203 Added nomadik.h header
204
205 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
206 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
207
208commit 60ece6d8043d1dd80f5dd32c541213716d624b19
209Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
210Date: Wed Oct 29 20:05:18 2008 +0900
211
212 r8a66597-hcd: fix cannot use external hub
213
214 Fix the problem that cannot use external hub, because this driver
215 did not control correctly a DEVADDx register.
216
217 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
218 Signed-off-by: Remy Bohmer <linux@bohmer.net>
219
220commit e1ffaee728190e76a4596a3579d94e730143585f
221Author: Mike Frysinger <vapier@gentoo.org>
222Date: Thu Feb 19 01:20:27 2009 -0500
223
224 Blackfin: disable syscontrol code for now
225
226 Looks like the initcode updates fell out of order during my merges. The
227 patch that really fixes up this code is part of power-on overhaul and so
228 is too large for merging at this point. Instead, we can disable the code
229 as no currently in-tree board depends on it. The next merge window will
230 fix things up properly.
231
232 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
233
234commit 1b228d68f54832edd867ef98520f760f68192ab7
235Author: Mike Frysinger <vapier@gentoo.org>
236Date: Thu Feb 19 01:19:49 2009 -0500
237
238 Blackfin: bf537-stamp: fix I2C board defines
239
240 The previous merge for cleaning up the I2C driver incorrectly reverted the
241 CFG_xxx rename for some of the I2C defines.
242
243 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
244 Signed-off-by: Heiko Schocher <hs@denx.de>
245
246commit 09fee8e8677a6265e89144ccc163bf00e321769e
247Author: Wolfgang Denk <wd@denx.de>
248Date: Sun Feb 22 01:19:52 2009 +0100
249
250 Coding Style cleanup; update CHANGELOG
251
252 Signed-off-by: Wolfgang Denk <wd@denx.de>
253
254commit 1dcb50afbb63a439320a985380a0af2dca079d1e
255Author: Wolfgang Denk <wd@denx.de>
256Date: Sun Feb 22 01:17:47 2009 +0100
257
258 Makefile: fix cleanup
259
260 Commit e4943ec5 moved the ARM boards to a vendor directory but forgot
261 to adapt the cleanup rules in the Makefile
262
263 Signed-off-by: Wolfgang Denk <wd@denx.de>
264
09fee8e8
WD
265commit edff7bcc4d5540df8b416274652ff02e94c38b9e
266Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
267Date: Fri Feb 20 13:01:56 2009 -0500
268
269 Cleanup the comment for m68k linux boot argument passing.
270
271 This patch clarifies the way m68k passes linux boot argument.
272 The one gotcha here is that the assembly instruction that
273 the compiler uses to jump to the kernel is 'jsr' which pushes the
274 program counter for the instruction after the jsr into the stack pointer.
275
276 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
277 Signed-off-by: Wolfgang Denk <wd@denx.de>
278
279commit 4d41650eec959668280a612467bd95c7b8398513
280Author: Peter Griffin <pgriffin@mpc-data.co.uk>
281Date: Tue Feb 10 16:44:45 2009 +0000
282
283 sh: Fix rsk7203 in tree build
284
285 Signed-off-by: Peter Griffin <pgriffin@mpc-data.co.uk>
286
287commit fca0cecff73db99d99ad094cca7980472b8a11b5
288Author: Minkyu Kang <mk7.kang@samsung.com>
289Date: Wed Feb 18 09:05:52 2009 +0900
290
291 bootm: Reduce the unnecessary memmove
292
293 Although load address and image start address are same address,
294 bootm command always does memmove.
295 That is unnecessary memmove and can be taken few milliseconds
296 (about 500 msec to 1000 msec).
297 If skip this memmove, we can reduce the boot time.
298
299 Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
300
301commit 670cbde8da83690fed1064c3358f54ae1d693ed2
302Author: Matthias Fuchs <matthias.fuchs@esd.eu>
303Date: Sun Feb 15 22:29:15 2009 +0100
304
305 fpga: Fix Spartan III FPGA booting
306
307 This patch does some minor fixing of the Xilinx Spartan III
308 FPGA boot code:
309
310 - Fixed call order of post configuration callback and
311 success message printing (result of copy-paste?)
312 - remove obsolete comment
313 - minor coding style cleanup
314
315 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
316
317commit 3818b677641038d27b2663fbd6771ad38c932f86
318Author: Matthias Fuchs <matthias.fuchs@esd.eu>
319Date: Sun Feb 15 22:28:36 2009 +0100
320
321 fpga: Fix Spartan II FPGA booting
322
323 This patch does some minor fixing of the Xilinx Spartan II
324 FPGA boot code:
325
326 - Fixed call order of post configuration callback and
327 success message printing (result of copy-paste?)
328 - relocate post configuration callback only when it
329 is implemented
330 - remove obsolete comment
331 - minor coding style cleanup
332
333 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
334
335commit b4746d8bf9f4ed6dc8a76c5d52db669604aff84b
336Author: Mike Frysinger <vapier@gentoo.org>
337Date: Wed Feb 11 20:26:52 2009 -0500
338
339 drivers/serial/ns16550: move ifdef into Makefile COBJS-$(...)
340
341 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
342
343commit 6bcb4b806cef8a5dd08fac9a4a672b96d9ee804e
344Author: Derek Ou <dou@siconix.com>
345Date: Tue Feb 3 16:00:07 2009 -0700
346
347 lcd_putc bug fix for tab.
348
349 Signed-off-by: Derek Ou <dou@siconix.com>
350
351commit 35c9e14d8096e519fe76c953a43d52a09617345c
352Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
353Date: Mon Feb 2 09:46:21 2009 +0900
354
355 MIPS: cpu/mips/Makefile: Add a missing START line
356
357 In the commit 79b51ff8205f0354d5300570614c1d2db499679c ([MIPS] cpu/mips/
358 Makefile: Split [CS]OBJS onto separate lines), I wrongly deleted a START
359 line. This patch puts it back.
360
361 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
362
363commit 9a63b7f4f8f3c99cf017e0d3d4a152dfcd913b5a
364Author: Wolfgang Denk <wd@denx.de>
365Date: Sat Feb 21 21:51:21 2009 +0100
366
367 Enable ext2 support for TQM8xxL/M based boards
368
369 Signed-off-by: Wolfgang Denk <wd@denx.de>
370
371commit e3ba7f137c7c454ad626cd0bd2e84d73c7a8644f
372Author: Tom Rix <Tom.Rix@windriver.com>
373Date: Fri Feb 20 03:47:50 2009 +0100
374
375 ARM:PXA Use new definitions in mmc.h
376
377 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
378 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
379
380commit 682beeac34dc9ab18fab58b26973d2e29d113717
381Author: Andy Fleming <afleming@freescale.com>
382Date: Fri Feb 20 03:47:50 2009 +0100
383
384 Reduce the scope of PXA's mmc_read/mmc_write/mmc_bread functions
385
386 These names are being taken over by the new MMC framework. Hopefuly
387 the PXA can be easily ported, and these functions will go away entirely.
388
389 Signed-off-by: Andy Fleming <afleming@freescale.com>
390 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
391
392commit b03d92e5584935886ff91d5aa0755dc8888b7187
393Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
394Date: Fri Feb 20 03:47:50 2009 +0100
395
396 pxa: move mmc drivers to drivers/mmc
397
398 introduce new macro CONFIG_PXA_MMC to activate it
399
400 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
401
402commit 9490f465642c80c054854689a2ef1a77d65cf1f3
403Author: Tom Rix <Tom.Rix@windriver.com>
404Date: Thu Feb 19 19:27:22 2009 -0600
405
406 ARM:PXA Remove redefinition of mmc_cid and mmc_csd.
407
408 These structures are defined in the common mmc.h
409
410 This was compile checked on cerf250.
411
412commit 94a3312920b6f9b5da27309549fb73650718c10a
413Author: Micha Kalfon <smichak.uv@gmail.com>
414Date: Wed Feb 11 19:50:11 2009 +0200
415
416 pxa: fixing get_timer to return time in miliseconds.
417
418 Fixing the get_timer function to return time in miliseconds instead of
419 ticks. Also fixed PXA boards to use the conventional value of 1000 for
420 CONFIG_SYS_HZ.
421
422 Signed-off-by: Micha Kalfon <smichak.uv@gmail.com>
423
424commit e5e88c3614b79b54719905f66aefb51f9494bc1f
425Author: Tom Rix <Tom.Rix@windriver.com>
426Date: Thu Feb 19 16:45:43 2009 -0600
427
428 ARM:OMAP3 Change mmc_init to mmc_legacy_init
429
430 omap3_mmc.c was changed to define mmc_legacy_init.
431 Remove unused functions.
432
433 Compile tested on all arm
434 Runtime tested on Zoom1.
435
436 Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
437
438commit 9e80bb21629988063574f88ca0d28baadff4d963
439Author: Heiko Schocher <hs@denx.de>
440Date: Thu Feb 19 17:23:58 2009 +0100
441
442 82xx, mgcoge: updates for 2009.03
443
444 - activate CS4 for accessing the FPGA
445 - activate Rx buf len > 1 on SMC
446 - pram activated
447 - MTDPARTS_DEFAULT defined
448 - update the size of the flashes in the DTS
449 before booting Linux
450 - MONITOR_LEN updated to 384k
451 - added CONFIG_HOSTNAME
452 - added CONFIG_ENV_BUFFER_PRINT
453 - Environment size reduced to 16k
454
455 Signed-off-by: Heiko Schocher <hs@denx.de>
456
457commit df909554e2401f307925e1bd45d576e4176d9de9
458Author: Heiko Schocher <hs@denx.de>
459Date: Thu Feb 19 17:24:01 2009 +0100
460
461 8xx, mgsuvd: updates for 2009.03
462
463 - activate Rx buf len > 1 on SMC
464 - pram activated
465 - MTDPARTS_DEFAULT defined
466 - update the size of the flash in the DTS
467 before booting Linux
468 - MONITOR_LEN updated to 384k
469 - added CONFIG_HOSTNAME
470 - added CONFIG_ENV_BUFFER_PRINT
471 - Environment size reduced to 16k
472
473 Signed-off-by: Heiko Schocher <hs@denx.de>
474
475commit 3511b4e208e12be85b532866f1c660aa2e021557
476Author: Dirk Behme <dirk.behme@googlemail.com>
477Date: Wed Feb 18 19:59:39 2009 +0100
478
479 MMC: Don't use new framework code if not enabled
480
481 Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC
482 isn't enabled.
483
484 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
485
486commit 32482be67775e00b4cbc49fba62347c1ecc6229c
487Author: Wolfgang Denk <wd@denx.de>
488Date: Thu Feb 19 13:53:29 2009 +0100
489
490 TQM8xxL: make some room in low memory for future needs
491
492 THe TQM8xxL use a ahnd-optimized linker script to efficiently use the
493 small boot sectors in the flash. This patch makes some room in the
494 first sector to prepare for a size increase of lib_generic/vsprintf.o
495 by a future patch.
496
497 Signed-off-by: Wolfgang Denk <wd@denx.de>
498
499commit c157cec3c3f6dfc194532b3a3ca87f85b642962a
500Author: Kim Phillips <kim.phillips@freescale.com>
501Date: Wed Feb 18 18:06:18 2009 -0600
502
503 README: remove duplicate entry
504
505 it's been around since the original commit (2ad6b513) that added two
506 identical entries.
507
508 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
509
510commit 1bba30efe1717bea13026e15c7c7d906419fac69
511Author: Wolfgang Denk <wd@denx.de>
512Date: Thu Feb 19 00:41:08 2009 +0100
513
514 Coding style cleanup, update CHANGELOG
515
516 Signed-off-by: Wolfgang Denk <wd@denx.de>
517
1bba30ef
WD
518commit 369d0aa9674b65c83f8553b9bcf9d207dc369223
519Author: Kim Phillips <kim.phillips@freescale.com>
520Date: Wed Feb 18 17:43:59 2009 -0600
521
522 sata_sil3114: fix compiler warning
523
524 judging from other printfs in the same file, it seems ata should be
525 postpended with the interface number, not the address of the global
526 port variable. Fixes this for current u-boot-mpc83xx tree:
527
528 Configuring for MPC8349ITX board...
529 sata_sil3114.c: In function 'sata_bus_softreset':
530 sata_sil3114.c:99: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
531 sata_sil3114.c:108: warning: format '%u' expects type 'unsigned int', but argument 2 has type 'struct sata_port *'
532
533 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
534
535commit f5675aa5ceeef30740970ab8ca0c8cbc324945cd
536Author: Ron Madrid <ron_madrid@sbcglobal.net>
537Date: Wed Feb 18 14:30:44 2009 -0800
538
539 Create configuration option for restricted ns16550 functions
540
541 This patch will create a configuration option for a minimum configuration for
542 the ns16550 serial driver at drivers/serial/ns16550.c and will apply this new
543 configuration option to the SIMPC8313.h config file in order to fix the NAND
544 bootstrap build error. This option will exclude all functions with exception of
545 NS16550_putc and NS16550_init. This will be used primarily to save space and
546 remove unused code from builds in which space is limited.
547
548 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
549
550commit 7b0bc0219db8981613259473cf19699ac259b4fb
551Author: Kim Phillips <kim.phillips@freescale.com>
552Date: Wed Feb 18 16:14:29 2009 -0600
553
554 mkconfig: include board config.h before asm/config.h
555
556 swapping the include order suppresses warnings for board configs
557 that define their own CONFIG_MAX_MEM_MAPPED:
558
559 In file included from /home/r1aaha/git/u-boot/include/config.h:5,
560 from /home/r1aaha/git/u-boot/include/common.h:35,
561 from simpc8313.c:26:
562 /home/r1aaha/git/u-boot/include/configs/SIMPC8313.h:81:1: warning:
563 "CONFIG_MAX_MEM_MAPPED" redefined
564 In file included from /home/r1aaha/git/u-boot/include/config.h:4,
565 from /home/r1aaha/git/u-boot/include/common.h:35,
566 from simpc8313.c:26:
567 /home/r1aaha/git/u-boot/include/asm/config.h:28:1: warning: this is
568 the location of the previous definition
569
570 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
571
572commit b8845abdc0dcf20d0944e965153f5ae7a9c3077c
573Author: Wolfgang Denk <wd@denx.de>
574Date: Wed Feb 18 21:35:38 2009 +0100
575
576 Fix build errors after making flash_get_info() non-static
577
578 Fix for these build problems:
579 error: static declaration of 'flash_get_info' follows non-static declaration
580
581 Signed-off-by: Wolfgang Denk <wd@denx.de>
582
09fee8e8
WD
583commit b4996d6b2140e5da7f1c346f37a67b19907b307a
584Author: Stefan Roese <sr@denx.de>
585Date: Wed Feb 18 13:18:00 2009 +0100
586
587 ppc4xx: PCIe: Change 16GB inbound memory to 4GB
588
589 This patch fixes a problem recently seen on some 4xx platforms. For
590 example on Kilauea PCIe slot #0.
591
592 Signed-off-by: Stefan Roese <sr@denx.de>
593
594commit f50fe4bd613c6d35a2c34055f02e9501dd6a9ad5
595Author: Stefan Roese <sr@denx.de>
596Date: Wed Feb 18 14:05:37 2009 +0100
597
598 ppc4xx: Some more PMC405 coding-style cleanup
599
600 Signed-off-by: Stefan Roese <sr@denx.de>
601
602commit 2f6eb9170bf91b72ea51dcea2a8b9c11b0e20bc5
603Author: Matthias Fuchs <matthias.fuchs@esd.eu>
604Date: Sun Feb 15 22:27:47 2009 +0100
605
606 ppc4xx: Update PMC405 board support
607
608 This patch prepares the good old PMC405 board support for
609 upcoming PMC405V2 patches.
610
611 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
612 Signed-off-by: Stefan Roese <sr@denx.de>
613
614commit c553b5f4a0c77fc76e1d25e71c8aaa47657e2d6f
615Author: Matthias Fuchs <matthias.fuchs@esd.eu>
616Date: Sun Feb 15 22:26:54 2009 +0100
617
618 ppc4xx: Cleanup PMC405 board support
619
620 This patch fixes coding style for PMC405 board support.
621 Also some unneeded features/code is removed.
622
623 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
624 Signed-off-by: Stefan Roese <sr@denx.de>
625
626commit b4e85d0f37b5b924fbf834867ad6d0b31b86f667
627Author: Ilya Yanok <yanok@emcraft.com>
628Date: Thu Feb 5 04:08:20 2009 +0100
629
630 qong: changes to Dave/DENX Qong configuration
631
632 1. Changes to the default environment:
633 - "bootcmd" defined as "run flash_self"
634 - "saveenv" command removed from "update"
635 - "uboot" changed to "u-boot" (also in "load")
636 - "addmtd" variable defined (and added to all boot commands)
637 2. CONFIG_CMD_JFFS2 defined to enable "mtdparts" command
638 3. MTDIDS_DEFAULT and MTDPARTS_DEFAULT defined
639 4. CONFIG_SYS_CBSIZE changed from 256 to 512. That solves the problem
640 with truncated "bootargs" environment variable.
641
642 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
643
1bba30ef
WD
644commit 5f0320108870e5d62983d1d5c13a2a087dddf686
645Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
646Date: Sun Feb 1 17:07:52 2009 +0100
647
648 common/console: avoid ifdef CONFIG_CONSOLE_MUX when it's possible
649
650 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
651
652commit ec6f14994602276660f7264c6ab3b91ef1f7614d
653Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
654Date: Sun Feb 1 17:07:51 2009 +0100
655
656 common/console: coding style cleanup
657
658 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
659
660commit daaf74f176b548dfd34a9990231f4189201d57ba
661Author: Mike Frysinger <vapier@gentoo.org>
662Date: Thu Jan 29 20:02:23 2009 -0500
663
664 mpc8xx_pcmcia: move CONFIG_8xx out of .c file and into Makefile
665
666 Move the CONFIG_8xx mpc8xx_pcmcia.c protection out of the C file and
667 into the Makefile so we avoid pointless compiling of the file.
668
669 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
670
671commit 7bd2722e890bc877a3c057d7ccddc80451c99939
672Author: Mike Frysinger <vapier@gentoo.org>
673Date: Thu Jan 29 20:02:07 2009 -0500
674
675 disk: convert part_* files to COBJ-$(CONFIG_XXX) style
676
677 Move the CONFIG_XXX out of the part_XXX.c file and into Makefile to
678 avoid pointless compiles.
679
680 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
681
682commit f05fa9205e04986176dc7ab8b710bcb5fbe9f338
683Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
684Date: Thu Jan 29 10:35:40 2009 +0200
685
686 include/image.h: Ease grepping of image_* functions
687
688 Because the functions have been defined using macros, grepping for
689 their definitions is not possible. This patch adds the real function
690 names in comments.
691
692 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
693 Acked-by: Mike Frysinger <vapier@gentoo.org>
694
695commit bdab39d358e63aa47f400a8a76b8d5f283842df3
696Author: Mike Frysinger <vapier@gentoo.org>
697Date: Wed Jan 28 19:08:14 2009 -0500
698
699 rename CONFIG_CMD_ENV to CONFIG_CMD_SAVEENV
700
701 The CONFIG_CMD_ENV option controls enablement of the `saveenv` command
702 rather than a generic "env" command, or anything else related to the
703 environment. So, let's make sure the define is named accordingly.
704
705 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
706
707commit 8b0592b89e0f9f81c9e150c81d96f8a43e4d6101
708Author: Valeriy Glushkov <gvv@lstec.com>
709Date: Fri Jan 23 20:02:17 2009 +0200
710
711 disable imls command if no flash is defined
712
713 Default CONFIG_CMD_IMLS must be disabled when CONFIG_SYS_NO_FLASH is defined
714
715 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
716
717commit 923aa48126259c13de95131203f1d28bfa5cb889
718Author: Rafal Jaworowski <raj@semihalf.com>
719Date: Fri Jan 23 13:27:18 2009 +0100
720
721 API: Improve glue mid-layer of the API demo application.
722
723 - Extend ub_dev_read() and ub_dev_recv() so they return the length actually
724 read, which allows for better control and error handling (this introduces
725 additional error code API_ESYSC returned by the glue mid-layer).
726
727 - Clean up definitions naming and usage.
728
729 - Other minor cosmetics.
730
731 Note these changes do not touch the API proper, so the interface between
732 U-Boot and standalone applications remains unchanged.
733
734 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
735
736commit 44a94e596ba0f6d0951b165403c520bf55b1c56f
737Author: Rafal Jaworowski <raj@semihalf.com>
738Date: Fri Jan 23 13:27:17 2009 +0100
739
740 API: Only output test data when reading was successful.
741
742 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
743
744commit 7fb6c4f9b06c5539043c8bfc6565710b8090841d
745Author: Rafal Jaworowski <raj@semihalf.com>
746Date: Fri Jan 23 13:27:16 2009 +0100
747
748 API: Provide syscall entry point for the ARM architecture.
749
750 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
751 Acked-by: Rafal Jaworowski <raj@semihalf.com>
752
753commit b84d7d8f1e1066f810866304a16a3583f88e7c98
754Author: Rafal Jaworowski <raj@semihalf.com>
755Date: Fri Jan 23 13:27:15 2009 +0100
756
757 API: Use stack pointer as API signature search hint in the glue layer.
758
759 De-hardcode range in RAM we search for the API signature. Instead use the stack
760 pointer as a hint to narrow down the range in which the signature could reside
761 (it is malloc'ed on the U-Boot heap, and is hoped to remain in some proximity
762 from stack area). Adjust PowerPC code in API demo to the new scheme.
763
764 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
765 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
766
767commit 86b4bafdfaf669ede8fd99044abc7e27ea29b4f5
768Author: Wolfgang Denk <wd@denx.de>
769Date: Tue Feb 17 10:26:38 2009 +0100
770
771 TQM8260: fix locations of kernel and ramdisk images in flash
772
773 After introducing redundant environment the kernel images was
774 overlapping with environment.
775
776 Signed-off-by: Wolfgang Denk <wd@denx.de>
777
778commit e1ac387f4645499746856adc1aeaa9787da2eca6
779Author: Andy Fleming <afleming@freescale.com>
780Date: Thu Oct 30 16:50:14 2008 -0500
781
782 83xx: Add eSDHC support on 8379 EMDS board
783
784 Signed-off-by: Andy Fleming <afleming@freescale.com>
785
786commit 80522dc8369a89938369fbcee572e662373bc9a3
787Author: Andy Fleming <afleming@freescale.com>
788Date: Thu Oct 30 16:51:33 2008 -0500
789
790 85xx: Add eSDHC support for 8536 DS
791
792 Signed-off-by: Andy Fleming <afleming@freescale.com>
793
794commit 50586ef24ed5caf6ce5591df76f355009da2cd79
795Author: Andy Fleming <afleming@freescale.com>
796Date: Thu Oct 30 16:47:16 2008 -0500
797
798 Add support for the Freescale eSDHC found on 8379 and 8536 SoCs
799
800 This uses the new MMC framework
801
802 Some contributions by Dave Liu <daveliu@freescale.com>
803
804 Signed-off-by: Andy Fleming <afleming@freescale.com>
805
806commit 272cc70b211e945e4413122aa73868f6ada732a5
807Author: Andy Fleming <afleming@freescale.com>
808Date: Thu Oct 30 16:41:01 2008 -0500
809
810 Add MMC Framework
811
812 Here's a new framework (based roughly off the linux one) for managing
813 MMC controllers. It handles all of the standard SD/MMC transactions,
814 leaving the host drivers to implement only what is necessary to
815 deal with their specific hardware.
816
817 This also hooks the infrastructure into the PowerPC board code
818 (similar to how the ethernet infrastructure now hooks in)
819
820 Some of this code was contributed by Dave Liu <daveliu@freescale.com>
821
822 Signed-off-by: Andy Fleming <afleming@freescale.com>
823
824commit 1de97f9856f697380cc504126ab92561ed238803
825Author: Andy Fleming <afleming@freescale.com>
826Date: Thu Oct 30 16:31:39 2008 -0500
827
828 Eliminated arch-specific mmc header requirement
829
830 The current MMC infrastructure relies on the existence of an
831 arch-specific header file. This isn't necessary, and a couple
832 drivers were forced to implement dummy files to meet this requirement.
833 Instead, we move the stuff in those header files into a more appropriate
834 place, and eliminate the stubs and the #include of asm/arch/mmc.h
835
836 Signed-off-by: Andy Fleming <afleming@freescale.com>
837
838commit abb5466ccf4ce50f412d459586f4f4b81cb73ac3
839Author: Andy Fleming <afleming@freescale.com>
840Date: Thu Oct 30 16:21:00 2008 -0500
841
842 Convert mmc_init to mmc_legacy_init
843
844 This is to get it out of the way of incoming MMC framework
845
846 Signed-off-by: Andy Fleming <afleming@freescale.com>
847
848commit b2e2ed0233a5ef299361abec4fbdaefb63456eff
849Author: Andy Fleming <afleming@freescale.com>
850Date: Thu Oct 30 16:19:25 2008 -0500
851
852 Eliminate support for using MMC as memory
853
854 MMC cards are not memory, so we stop treating them that way.
855
856 Signed-off-by: Andy Fleming <afleming@freescale.com>
857
858commit e1be0d25ecf494ae81245ca438738ba839d6329b
859Author: Poonam_Aggrwal-b10812 <b10812@freescale.com>
860Date: Sun Jan 4 08:46:38 2009 +0530
861
862 32bit BUg fix for DDR2 on 8572
863
864 This errata fix is required for 32 bit DDR2 controller on 8572.
865 May also be required for P10XX20XX platforms
866
867 Signed-off-by: Poonam_Agarwal-b10812 <b10812@lc1106.zin33.ap.freescale.net>
868
869commit e0c4fac79d4d74572ddd43f75e7189cecca8d0ad
870Author: Andy Fleming <afleming@freescale.com>
871Date: Mon Feb 16 09:40:20 2009 -0600
872
873 TQM85xx: Fix a couple warnings in TQM8548 build
874
875 The ecm variable in sdram.c was being declared for all 8548, but only
876 used by specific 8548 boards, so we make that variable require those
877 specific boards, too
878
879 The nand code was using an index "i" into a table, and then re-using "i"
880 to set addresses for each upm. However, then it relied on the old value
881 of i still being there to enable things. Changed the second "i" to "j"
882
883 Signed-off-by: Andy Fleming <afleming@freescale.com>
884
885commit cf07a5baece0ecfc5284cfda8a4e68eaf92782f8
886Author: Wolfgang Grandegger <wg@grandegger.com>
887Date: Wed Feb 11 18:38:26 2009 +0100
888
889 MPC85xx: TQM8548: workaround for erratum DDR 19 and 20
890
891 This patch adds the workaround for erratum DDR20 according to MPC8548
892 Device Errata document, Rev. 1: "CKE signal may not function correctly
893 after assertion of HRESET". Furthermore, the bug DDR19 is fixed in
894 processor version 2.1 and the work-around must be removed.
895
896 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
897
898commit 080408fdc71706adcb883d22125637c54f6010b1
899Author: Wolfgang Grandegger <wg@grandegger.com>
900Date: Wed Feb 11 18:38:25 2009 +0100
901
902 MPC85xx: TQM8548: use cache for AG and BE variants
903
904 This patch makes accesses to the system memory cachable by removing the
905 caching-inhibited and guarded flags from the relevant TLB entries for
906 the TQM8548_BE and TQM8548_AG modules. FYI, the Freescale MPC85* boards
907 are configured similarly.
908
909 This results in a big averall performace improvement. TFTP downloads,
910 NAND Flash accesses, kernel boots, etc. are much faster.
911
912 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
913
914commit dc5f55d636d7bf21ba17758fac4b929ec4c059f2
915Author: Wolfgang Grandegger <wg@grandegger.com>
916Date: Wed Feb 11 18:38:24 2009 +0100
917
918 MPC85xx: TQM8548_AG: add 1 GiB DDR2-SDRAM configuration
919
920 This patch add support for the 1 GiB DDR2-SDRAM on the TQM8548_AG
921 module.
922
923 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
924 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
925
926commit 88b0e88d186479349e5a2b771e82775109e10fb4
927Author: Wolfgang Grandegger <wg@grandegger.com>
928Date: Wed Feb 11 18:38:23 2009 +0100
929
930 MPC85xx: TQM8548: fix SDRAM timing for 533 MHz
931
932 According to new TQM8548 timing specification:
933 Refresh Recovery: 34 -> 53 clocks
934 CKE pulse width: 1 -> 3 cycles
935 Window for four activities: 13 -> 14 cycles
936
937 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
938 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
939
940commit a865bcdac89278cac4dfc07dec8299403110499d
941Author: Wolfgang Grandegger <wg@grandegger.com>
942Date: Wed Feb 11 18:38:22 2009 +0100
943
944 MPC85xx: TQM8548: add support for the TQM8548_AG module
945
946 The TQM8548_AG is a variant of the TQM8548 module with 1 GiB memory,
947 CAN and without PCI/PCI-X and RTC. U-Boot can be built for this module
948 with "$ make TQM8548_AG_config".
949
950 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
951
952commit ad7ee5d43b0db94079d56521dabca25674f28747
953Author: Wolfgang Grandegger <wg@grandegger.com>
954Date: Wed Feb 11 18:38:21 2009 +0100
955
956 MPC85xx: TQM8548: add support for the TQM8548_BE module
957
958 The TQM8548_BE is a variant of the TQM8548 module with NAND and CAN
959 interface. With NAND support, the image is significantly larger and
960 TEXT_BASE is adjusted accordingly. U-Boot can be built for this
961 module with "$ make TQM8548_BE_config".
962
963 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
964
965commit a318234878c346e673b2ef8dc4b14b338fe7fc2b
966Author: Wolfgang Grandegger <wg@grandegger.com>
967Date: Wed Feb 11 18:38:20 2009 +0100
968
969 MPC85xx: TQM85xx: make standard PCI/PCI-X configurable
970
971 The TQM8548_AG module does not have the standard PCI/PCI-X interface
972 connected but just the PCI Express interface . So far it was not
973 possible to disable it without disabling the complete PCI interface
974 (CONFIG_PCI) including PCI Express.
975
976 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
977
978commit 31ca9119c3186cec579b54d2a7a2b361b4d2b7bf
979Author: Wolfgang Grandegger <wg@grandegger.com>
980Date: Wed Feb 11 18:38:19 2009 +0100
981
982 MPC85xx: TQM85xx: fix flash protection for boot loader
983
984 As the reset vector is located at 0xfffffffc, all flash sectors from the
985 beginning of the U-Boot binary to 0xffffffff must be protected. On the
986 TQM8548-AG having small sectors at the end of the flash it happened that
987 the last two sector were not protected and an "erase all" left an
988 un-bootable system behind:
989
990 Bank # 2: CFI conformant FLASH (32 x 16) Size: 32 MB in 270 Sectors
991 AMD Standard command set, Manufacturer ID: 0xEC, Device ID: 0x257E
992 Erase timeout: 8192 ms, write timeout: 1 ms
993
994 FFFA0000 E RO FFFC0000 RO FFFE0000 RO FFFE4000 RO FFFE8000 RO
995 FFFEC000 RO FFFF0000 RO FFFF4000 RO FFFF8000 E FFFFC000
996
997 The same bug seems to be in drivers/mtd/cfi_flash.c:flash_init() and many
998 board BSPs as well.
999
1000 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
1001
1002commit a1c8a719262151f97119e76166043ee3da3f97b2
1003Author: Peter Tyser <ptyser@xes-inc.com>
1004Date: Fri Feb 6 14:30:40 2009 -0600
1005
1006 86xx: Update CPU info output on bootup
1007
1008 - Update style of 86xx CPU information on boot to more closely
1009 match 85xx boards
1010 - Fix detection of 8641/8641D
1011 - Use strmhz() to display frequencies
1012 - Display L1 information
1013 - Display L2 cache size
1014 - Fixed CPU/SVR version output
1015
1016 == Before ==
1017 Freescale PowerPC
1018 CPU:
1019 Core: E600 Core 0, Version: 0.2, (0x80040202)
1020 System: Unknown, Version: 2.1, (0x80900121)
1021 Clocks: CPU:1066 MHz, MPX: 533 MHz, DDR: 266 MHz, LBC: 133 MHz
1022 L2: Enabled
1023 Board: X-ES XPedite5170 3U VPX SBC
1024
1025 == After ==
1026 CPU: 8641D, Version: 2.1, (0x80900121)
1027 Core: E600 Core 0, Version: 2.2, (0x80040202)
1028 Clock Configuration:
1029 CPU:1066.667 MHz, MPX:533.333 MHz
1030 DDR:266.667 MHz (533.333 MT/s data rate), LBC:133.333 MHz
1031 L1: D-cache 32 KB enabled
1032 I-cache 32 KB enabled
1033 L2: 512 KB enabled
1034 Board: X-ES XPedite5170 3U VPX SBC
1035
1036 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1037
1038commit 22c00f8d7d454d77e759df58415d2d3f3d7e154c
1039Author: Peter Tyser <ptyser@xes-inc.com>
1040Date: Thu Feb 5 11:25:24 2009 -0600
1041
1042 86xx: Update Global Utilities structure
1043
1044 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1045
1046commit 4ef630df773e45806d701bf5d25c328778bb4cde
1047Author: Peter Tyser <ptyser@xes-inc.com>
1048Date: Thu Feb 5 11:25:25 2009 -0600
1049
1050 86xx: Reset update
1051
1052 Update the 86xx reset sequence to try executing a board-specific reset
1053 function. If the board-specific reset is not implemented or does not
1054 succeed, then assert #HRESET_REQ. Using #HRESET_REQ is a more standard
1055 reset procedure than the previous method and allows all board
1056 peripherals to be reset if needed.
1057
1058 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1059
1060commit edf0e2524a8c6a3e91c009c496a0aa0ae89cd8ab
1061Author: Kumar Gala <galak@kernel.crashing.org>
1062Date: Tue Feb 10 23:53:40 2009 -0600
1063
1064 fsl-ddr: Allow system to boot if we have more than 4G of memory
1065
1066 Previously if we >=4G of memory and !CONFIG_PHYS_64BIT we'd report
1067 an error and hang. Instead of doing that since DDR is mapped in the
1068 lowest priority LAWs we setup the DDR controller and the max amount
1069 of memory we report back is what we can map (CONFIG_MAX_MEM_MAPPED)
1070
1071 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1072 Acked-by: Becky Bruce <beckyb@kernel.crashing.org>
1073
1074commit 8d949aff38cfb4388cbd73876e77bcd06d601f20
1075Author: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
1076Date: Wed Jan 21 17:17:33 2009 -0600
1077
1078 mpc85xx: Add support for the P2020
1079
1080 Added various p2020 processor specific details:
1081 * SVR for p2020, p2020E
1082 * immap updates for LAWs and DDR on p2020
1083 * LAW defines related to p2020
1084
1085 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
1086 Signed-off-by: Travis Wheatley <Travis.Wheatley@freescale.com>
1087 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1088
1089commit cb69e4de8702e108324e1c40363f30ef6f2e2918
1090Author: Kumar Gala <galak@kernel.crashing.org>
1091Date: Tue Feb 10 17:36:15 2009 -0600
1092
1093 85xx: print boot header info to distinquish 36-bit addr map on MPC8572 DS
1094
1095 Added some info that is printed out when we boot to distiquish if we
1096 built MPC8572DS_config vs MPC8572DS_36BIT_config since they have
1097 different address maps.
1098
1099 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1100
1101commit feede8b07013b33fca8dd2a916b3ac86bf4d4c0a
1102Author: Andy Fleming <afleming@freescale.com>
1103Date: Fri Dec 5 20:10:22 2008 -0600
1104
1105 Fixup SGMII PHY ids in the device tree
1106
1107 The device tree's PHY addresses need to be fixed up if we're using the
1108 SGMII Riser Card.
1109
1110 The 8572, 8536, and 8544 DS boards were modified to call this function.
1111
1112 Code idea taken from Liu Yu <yu.liu@freescale.com>
1113
1114 Signed-off-by: Andy Fleming <afleming@freescale.com>
1115
1116commit 5dc0cf68f8f101042997d75188081d8526d705ea
1117Author: Andy Fleming <afleming@freescale.com>
1118Date: Wed Feb 11 15:10:31 2009 -0600
1119
1120 Make some minor whitespace changes to eliminate line-wrapping
1121
1122 Signed-off-by: Andy Fleming <afleming@freescale.com>
1123
1124commit 9e56986a2b74d197f51eca70fad7b836b1900c4d
1125Author: Andy Fleming <afleming@freescale.com>
1126Date: Wed Feb 11 15:07:24 2009 -0600
1127
1128 Add eth_get_dev_by_index
1129
1130 This allows code to iterate through the ethernet devices
1131
1132 Signed-off-by: Andy Fleming <afleming@freescale.com>
1133
1134commit b67305120aaf268a6140125346678166d14f1f47
1135Author: Kumar Gala <galak@kernel.crashing.org>
1136Date: Mon Feb 9 22:03:04 2009 -0600
1137
1138 85xx: Fix bug in device tree setup in 36-bit physical confg
1139
1140 In the 36-bit physical config for MPC8572DS when need the start address
1141 of memory and it size to be kept in phys_*_t instead of a ulong since
1142 we support >4G of memory in the config and ulong cant represent that.
1143 Otherwise we end up seeing the memory node in the device tree reporting
1144 back we have memory starting @ 0 and of size 0.
1145
1146 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1147
1148commit ad97dce18445ff05bf326094e691a01aa95aa8dc
1149Author: Kumar Gala <galak@kernel.crashing.org>
1150Date: Mon Feb 9 22:03:05 2009 -0600
1151
1152 85xx: Fix address map for 36-bit config of MPC8572DS
1153
1154 When we introduced the 36-bit config of the MPC8572DS board we had the
1155 wrong PCI MEM bus address map. Additionally, the change to the address
1156 map exposes a small issue in our dummy read on the ULI bus. We need
1157 to use the new mapping functions to handle that read properly in the
1158 36-bit config.
1159
1160 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1161
1162commit f8523cb0815b2d3d2d780b7d49ca614105555f58
1163Author: Kumar Gala <galak@kernel.crashing.org>
1164Date: Fri Feb 6 09:56:35 2009 -0600
1165
1166 85xx: Fix how we map DDR memory
1167
1168 Previously we only allowed power-of-two memory sizes and didnt
1169 handle >2G of memory. Now we will map up to CONFIG_MAX_MEM_MAPPED
1170 and should properly handle any size that we can make in the TLBs
1171 we have available to us
1172
1173 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1174
1175commit 1542fbdeec0d1e2a6df13189df8dcb1ce8802be3
1176Author: Kumar Gala <galak@kernel.crashing.org>
1177Date: Fri Feb 6 09:56:34 2009 -0600
1178
1179 fsl-ddr: ignore memctl_intlv_ctl setting if only one DDR controller
1180
1181 If we only have one controller we can completely ignore how
1182 memctl_intlv_ctl is set. Otherwise other levels of code get confused
1183 and think we have twice as much memory.
1184
1185 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1186
1187commit b29dee3c906e9daaf6baf7772d2e15e26b8636b8
1188Author: Kumar Gala <galak@kernel.crashing.org>
1189Date: Wed Feb 4 09:35:57 2009 -0600
1190
1191 85xx: Format cpu freq printing to handle 8 cores
1192
1193 Only print 4 cpu freq per line. This way when we have 8 cores its a
1194 bit more readable.
1195
1196 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1197
1198commit 9704f9caf53f5cae547d8c5e1ae94aa4e57b160f
1199Author: Abraham, Thomas <t-abraham@ti.com>
1200Date: Tue Oct 28 16:51:31 2008 +0530
1201
1202 USB: Remove LUN number from CDB
1203
1204 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.
1205
1206 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
1207 Signed-off-by: Remy Bohmer <linux@bohmer.net>
1208
1209commit f3c0de636252f3a18654c8f9c6370a9574a7e755
1210Author: Atin Malaviya <atin.malaviya@gmail.com>
1211Date: Tue Feb 3 15:17:10 2009 -0500
1212
1213 Added usbtty_configured() check. Fixed attribute(packed) warnings.
1214
1215 V3: Fixed line-wrap problem due to user error in mail!
1216
1217 Added usb_configured() checks in usbtty_puts() and usbtty_putc() to get around a hang
1218 when usb is not connected and the user has set up multi-io (setenv stdout serial,usbtty etc).
1219 Got rid of redundant __attribute__((packed)) directives that were causing warnings from gcc.
1220
1221 Signed-off-by: Atin Malaviya <atin.malaviya@gmail.com>
1222 Signed-off-by: Remy Bohmer <linux@bohmer.net>
1223
1224commit e7de18afe8ecf96a51ef981d06066eeb6b1254e7
1225Author: Guennadi Liakhovetski <lg@denx.de>
1226Date: Fri Feb 13 09:23:36 2009 +0100
1227
1228 i.MX31: Start the I2C clock on driver initialisation
1229
1230 i.MX31 powers on with most clocks running, so, after a power on this explicit
1231 clock start up is not required. However, as Linux boots it disables most clocks
1232 to save power. This includes the I2C clock. If we then soft reboot from Linux
1233 the I2C clock stays off. This breaks the phycore, which has its environment in
1234 I2C EEPROM. Fix the problem by explicitly starting the clock in I2C driver
1235 initialisation routine.
1236
1237 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
1238 Ack-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1239
1240commit 15208ac9eae1c340c4bc11f70cbf5c9da78a57ba
1241Author: Mike Frysinger <vapier@gentoo.org>
1242Date: Wed Feb 11 20:36:14 2009 -0500
1243
1244 i2c.h: drop i2c_reg_{read, write} hack for Blackfin parts
1245
1246 The Blackfin i2c driver has been rewritten thus the special ifdefs in the
1247 common code are no longer needed.
1248
1249 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1250
1251commit c2d9befa0b4695b89476fb5d259742c09afe243f
1252Author: Heiko Schocher <hs@denx.de>
1253Date: Thu Feb 12 08:08:54 2009 +0100
1254
1255 82xx, mgcoge: fix compile error
1256
1257 With actual u-boot compiling the mgcoge port fails, because
1258 since commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56 it is
1259 necessary to define CONFIG_NET_MULTI.
1260
1261 Seems to me the mgcoge port is the only actual existing 8260
1262 port who uses CONFIG_ETHER_ON_SCC, so no other 8260 port needed
1263 to be fixed.
1264
1265 Signed-off-by: Heiko Schocher <hs@denx.de>
1266
1267commit 9cacf4fc4035eabe9d9ae2a9a188c51a8027c91e
1268Author: Dirk Eibach <eibach@gdsys.de>
1269Date: Mon Feb 9 08:18:34 2009 +0100
1270
1271 ppc4xx: Add README entry for CONFIG_PCI_DISABLE_PCIE
1272
1273 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
1274 Signed-off-by: Stefan Roese <sr@denx.de>
1275
1276commit 7369f0e384e2a831be13a7773a58242c9173fa9c
1277Author: Carolyn Smith <carolyn.smith@tektronix.com>
1278Date: Thu Feb 12 06:13:44 2009 +0100
1279
1280 ppc4xx: Fix initialization of the SDRAM_CODT register
1281
1282 This fixes the initialization of the SDRAM_CODT register in the ppc4xx DDR2
1283 initialization code. It also removes use of the SDRAM_CODT_FEEDBACK_RCV_SINGLE_END
1284 and SDRAM_CODT_FEEDBACK_DRV_SINGLE_END #define's since they are reserved bits.
1285
1286 Signed-off-by: Carolyn Smith <carolyn.smith@tektronix.com>
1287 Signed-off-by: Stefan Roese <sr@denx.de>
1288
1289commit cef0efaf2fa55d1f25066cfb02bd984c27f9ca31
1290Author: Stefan Roese <sr@denx.de>
1291Date: Wed Feb 11 09:29:33 2009 +0100
1292
1293 ppc4xx: Fix problem with board_eth_init() vs cpu_eth_init() on AMCC boards
1294
1295 Some AMCC eval boards do have a board_eth_init() function calling
1296 pci_eth_init(). These boards need to call cpu_eth_init() explicitly now
1297 with the new eth_init rework.
1298
1299 Signed-off-by: Stefan Roese <sr@denx.de>
1300
1301commit c645012aefebb301e6907d148c6c8efacac049d4
1302Author: Adam Graham <agraham@amcc.com>
1303Date: Mon Feb 9 13:18:12 2009 -0800
1304
1305 ppc4xx: Autocalibration can set RDCC to over aggressive value.
1306
1307 The criteria of the AMCC SDRAM Controller DDR autocalibration
1308 U-Boot code is to pick the largest passing write/read/compare
1309 window that also has the smallest SDRAM_RDCC.[RDSS] Read Sample
1310 Cycle Select value.
1311
1312 On some Kilauea boards the DDR autocalibration algorithm can
1313 find a large passing write/read/compare window with a small
1314 SDRAM_RDCC.[RDSS] aggressive value of Read Sample Cycle Select
1315 value "T1 Sample".
1316
1317 This SDRAM_RDCC.[RDSS] Read Sample Cycle Select value of
1318 "T1 Sample" proves to be to aggressive when later on U-Boot
1319 relocates into DDR memory and executes.
1320
1321 The memory traces on the Kilauea board are short so on some
1322 Kilauea boards the SDRAM_RDCC.[RDSS] Read Sample Cycle Select
1323 value of "T1 Sample" shows up as a potentially valid value for
1324 the DDR autocalibratiion algorithm.
1325
1326 The fix is to define a weak default function which provides
1327 the minimum SDRAM_RDCC.[RDSS] Read Sample Cycle Select value
1328 to accept for DDR autocalibration. The default will be the
1329 "T2 Sample" value. A board developer who has a well defined
1330 board and chooses to be more aggressive can always provide
1331 their own board specific string function with the more
1332 aggressive "T1 Sample" value or stick with the default
1333 minimum SDRAM_RDCC.[RDSS] value of "T2".
1334
1335 Also put in a autocalibration loop fix for case where current
1336 write/read/compare passing window size is the same as a prior
1337 window size, then in this case choose the write/read/compare
1338 result that has the associated smallest RDCC T-Sample value.
1339
1340 Signed-off-by: Adam Graham <agraham@amcc.com>
1341 Signed-off-by: Stefan Roese <sr@denx.de>
1342
1343commit 2ede879fcb67470524847bb4fc8972651bb46184
1344Author: Stefan Roese <sr@denx.de>
1345Date: Wed Feb 11 09:37:12 2009 +0100
1346
1347 ppc4xx: Fix problem with CONFIG_MAX_MEM_MAPPED in include/asm-ppc/config.h
1348
1349 CONFIG_SDRAM_PPC4xx_IBM_DDR2 is not set when include/asm-ppc/config.h is
1350 included. So for katmai, CONFIG_MAX_MEM_MAPPED will get set to 256MB.
1351
1352 It makes perfect sense to set CONFIG_MAX_MEM_MAPPED to 2GB for all PPC4xx
1353 boards right now.
1354
1355 Signed-off-by: Stefan Roese <sr@denx.de>
1356
1357commit f15c6515fc23f83c51f3de272ca23d86b80e81b1
1358Author: Wolfgang Denk <wd@denx.de>
1359Date: Thu Feb 12 00:08:39 2009 +0100
1360
1361 Coding style cleanup; update CHANGELOG
1362
1363 Signed-off-by: Wolfgang Denk <wd@denx.de>
1364
f15c6515
WD
1365commit 5fc56b907d993260b9ebdb137af66fe69635ae9e
1366Author: Peter Tyser <ptyser@xes-inc.com>
1367Date: Fri Jan 30 16:36:40 2009 -0600
1368
1369 Add feature-removal-schedule.txt
1370
1371 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1372
1373commit 255d28e1642e8fc32a6753226be1a96b481ce111
1374Author: Heiko Schocher <hs@denx.de>
1375Date: Tue Feb 10 09:32:38 2009 +0100
1376
1377 8xx serial, smc: Coding-Style cleanup serial SMC driver
1378
1379 Signed-off-by: Heiko Schocher <hs@denx.de>
1380
1381commit 2b3f12c214346508cae3f1245808c1ca54c81fdd
1382Author: Heiko Schocher <hs@denx.de>
1383Date: Tue Feb 10 09:31:47 2009 +0100
1384
1385 8xx serial, smc: add configurable SMC Rx buffer len
1386
1387 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
1388 With this option it is possible to allow the receive
1389 buffer for the SMC on 8xx to be greater then 1. In case
1390 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
1391 old version.
1392
1393 When defining CONFIG_SYS_SMC_RXBUFLEN also
1394 CONFIG_SYS_MAXIDLE must be defined to setup the maximum
1395 idle timeout for the SMC.
1396
1397 Signed-off-by: Heiko Schocher <hs@denx.de>
1398
1399commit e915f8bb73d74178bc21d3a457959883b1afd1c0
1400Author: Mike Frysinger <vapier@gentoo.org>
1401Date: Thu Feb 5 21:04:36 2009 -0500
1402
1403 common/{hush, kgdb, serial}.c: build by COBJS-$(...) in Makefile
1404
1405 Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into
1406 the COBJS-$(CONFIG_xxx) in the Makefile. Also delete unused var in kgdb
1407 code in the process.
1408
1409 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1410
1411commit ab76e9848a1f4db64d14233741d739a3b3360c93
1412Author: Mike Frysinger <vapier@gentoo.org>
1413Date: Thu Feb 5 21:04:50 2009 -0500
1414
1415 bzip2: move ifdef handling to Makefile COBJS-$(...)
1416
1417 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1418
1419commit ae0b05df04e1cc65c5ad19ccd362f4be82df7316
1420Author: Jerry Van Baren <gvb.uboot@gmail.com>
1421Date: Thu Feb 5 22:18:02 2009 -0500
1422
1423 Fix whitespace damage: double space changed to a tab
1424
1425 At some point an intentional double space at the end of the sentence
1426 got changed into a tab in the GPL header line:
1427 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1428
1429 This patch fixes the damage.
1430
1431 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
1432
1433commit 4f975678de995b55749d5e84590c268972a7c835
1434Author: Heiko Schocher <hs@denx.de>
1435Date: Tue Feb 10 09:53:29 2009 +0100
1436
1437 cfi: make flash_get_info() non static
1438
1439 If on your board is more than one flash, you must know
1440 the size of every single flash, for example, for updating
1441 the DTS before booting Linux. So make this function
1442 flash_get_info() extern, and you can have all info
1443 about your flashes.
1444
1445 Signed-off-by: Heiko Schocher <hs@denx.de>
1446 Signed-off-by: Stefan Roese <sr@denx.de>
1447
1448commit 86321fc1128c93a10ac4afb9d317b0df8ece0f9e
1449Author: Ben Warren <biggerbadderben@gmail.com>
1450Date: Thu Feb 5 23:58:25 2009 -0800
1451
1452 net: removed board-specific CONFIGs from MPC5xxx FEC driver
1453
1454 Added new CONFIG options for the three type of MAC-PHY interconnect and
1455 applied them all relevant board config files
1456
1457 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1458
1459commit 638ed3e296e70fab286d157b7adedaaa4a09a474
1460Author: Mike Frysinger <vapier@gentoo.org>
1461Date: Thu Feb 5 21:04:47 2009 -0500
1462
1463 net/sntp.c: move ifdef into Makefile COBJS-$(...)
1464
1465 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1466 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1467
1468commit 9e5be8214ba751436e57c3be044bf6dccb9a6687
1469Author: Andy Fleming <afleming@freescale.com>
1470Date: Tue Feb 3 18:26:41 2009 -0600
1471
1472 tsec: Fix a bug in soft-resetting
1473
1474 SOFT_RESET must be asserted for at least 3 TX clocks. Usually, that's about 30
1475 clock cycles, so it's been mostly working. But we had no guarantee, and at
1476 slower bitrates, it's just over a microsecond (over 1000 clock cycles). This
1477 enforces a 2 microsecond gap between assertion and deassertion.
1478
1479 Signed-off-by: Andy Fleming <afleming@freescale.com>
1480 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1481
1482commit 09fcc8b5d86903b76e7e4d1d879d6f4bca25c27b
1483Author: Simon Munton <simon@nidoran.m5data.com>
1484Date: Mon Feb 2 09:44:08 2009 +0000
1485
1486 Fix 100Mbs ethernet operation on sh7763 based boards
1487
1488 100Mbs ethernet does not work on sh7763 chips due to the wrong value being
1489 used in the GECMR register. Following diff fixes the problem
1490
1491 Signed-off-by: Simon Munton <simon@nidoran.m5data.com>
1492 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1493
1494commit 2bc2a8f6dc9fdda465317da59474e65c24a398a2
1495Author: ksi@koi8.net <ksi@koi8.net>
1496Date: Fri Feb 6 16:27:55 2009 -0800
1497
1498 Fix MPC8260 with ethernet on SCC
1499
1500 This fixes MPC8260 compilation with ethernet on SCC. Probably was a
1501 typo or something...
1502
1503 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
1504 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
1505
1506commit ae5d8f613cec1a6af7bf1fc9c42a3b856f021023
1507Author: Heiko Schocher <hs@denx.de>
1508Date: Fri Jan 30 12:56:15 2009 +0100
1509
1510 82xx serial, smc: Coding-Style cleanup serial SMC driver
1511
1512 Signed-off-by: Heiko Schocher <hs@denx.de>
1513
1514commit c92fac91a06c60f874c605e3ca80dd407c1caaa7
1515Author: Heiko Schocher <hs@denx.de>
1516Date: Fri Jan 30 12:55:38 2009 +0100
1517
1518 82xx serial, smc: add configurable SMC Rx buffer len
1519
1520 This patch adds the configuration option CONFIG_SYS_SMC_RXBUFLEN.
1521 With this option it is possible to allow the receive
1522 buffer for the SMC on 82xx to be greater then 1. In case
1523 CONFIG_SYS_SMC_RXBUFLEN == 1 this driver works as the
1524 old version.
1525
1526 When defining CONFIG_SYS_SMC_RXBUFLEN also
1527 CONFIG_SYS_MAXIDLE must be defined to setup the maximum
1528 idle timeout for the SMC.
1529
1530 Signed-off-by: Heiko Schocher <hs@denx.de>
1531
1532commit bced7ccefa08512c54a6d146658ff7dbc33d5dfe
1533Author: Kumar Gala <galak@kernel.crashing.org>
1534Date: Fri Feb 6 08:08:06 2009 -0600
1535
1536 ppc: Fix roll over bug in flush_cache()
1537
1538 If we call flush_cache(0xfffff000, 0x1000) it would never
1539 terminate the loop since end = 0xffffffff and we'd roll over
1540 our counter from 0xfffffe0 to 0 (assuming a 32-byte cache line)
1541
1542 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1543
1544commit 87c9063963561d3d01064be34d0c30855a56587b
1545Author: Kumar Gala <galak@kernel.crashing.org>
1546Date: Thu Feb 5 20:40:58 2009 -0600
1547
1548 ppc: Move CONFIG_MAX_MEM_MAPPED to common config.h
1549
1550 Moved CONFIG_MAX_MEM_MAPPED to the asm/config.h so its kept consistent
1551 between the two current users (lib_ppc/board.c, 44x SPD DDR2).
1552
1553 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1554 Acked-by: Stefan Roese <sr@denx.de>
1555
1556commit 47d41cc3a11a03c6d56146d056145df73f47eb50
1557Author: Kumar Gala <galak@kernel.crashing.org>
1558Date: Thu Feb 5 20:40:57 2009 -0600
1559
1560 Add an architecture specific config.h for common defines
1561
1562 We have common defines that we duplicate in various ways. Having an
1563 arch specific config.h gives us a common location for those defines.
1564
1565 Eventually we should be able to replace this when we have proper
1566 Kconfig support.
1567
1568 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1569
1570commit 4c78d4a6c01621721b732418e1c6da684a56bbb1
1571Author: Becky Bruce <beckyb@kernel.crashing.org>
1572Date: Tue Feb 3 18:10:56 2009 -0600
1573
1574 mpc8641hpcn: Change PCI MEM pci bus address
1575
1576 Now that the rest of u-boot can support it, change the PCI bus
1577 address of the PCI MEM regions from 0x80000000 to 0xc0000000,
1578 and use the same bus address for both PCI1 and PCI2. This will
1579 maximize the amount of PCI address space left over to map RAM
1580 on systems with large amounts of memory.
1581
1582 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1583
1584commit 1785dbeed43599eed1d8875673c96912cd770141
1585Author: Becky Bruce <beckyb@kernel.crashing.org>
1586Date: Tue Feb 3 18:10:55 2009 -0600
1587
1588 drivers/block/ahci: Fix pci mapping bug
1589
1590 The code assumes that the pci bus address and the virtual
1591 address used to access a region are the same, but they might
1592 not be. Fix this assumption.
1593
1594 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1595
1596commit d591a80e74091e7a0658d165721e6c7de2ef0bcd
1597Author: Becky Bruce <beckyb@kernel.crashing.org>
1598Date: Tue Feb 3 18:10:54 2009 -0600
1599
1600 MPC8641HPCN: Enable CONFIG_ADDR_MAP
1601
1602 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1603
1604commit 49f46f3bf08aaf7b1db131a1082f1e603bb7a94b
1605Author: Becky Bruce <beckyb@kernel.crashing.org>
1606Date: Tue Feb 3 18:10:53 2009 -0600
1607
1608 mpc8641hpcn: Clean up PCI mapping concepts
1609
1610 Clean up PCI mapping concepts in the 8641 config - rename _BASE
1611 to _BUS, as it's actually a PCI bus address, separate virtual
1612 and physical addresses into _VIRT and _PHYS, and use each
1613 appopriately.
1614
1615 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1616
1617commit c9315e6b4f244981de0b2eaaa29a7838a165b494
1618Author: Becky Bruce <beckyb@kernel.crashing.org>
1619Date: Tue Feb 3 18:10:52 2009 -0600
1620
1621 mpc86xx: Add support to populate addr map based on BATs
1622
1623 If CONFIG_ADDR_MAP is enabled, update the address map
1624 whenever we write a bat.
1625
1626 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1627
1628commit d35ae5a938679bd7e18167faf79d0fb3c6639b51
1629Author: Becky Bruce <beckyb@kernel.crashing.org>
1630Date: Tue Feb 3 18:10:51 2009 -0600
1631
1632 powerpc: Move duplicated BAT defines to mmu.h
1633
1634 The BAT fields are architected; there's no need for these to be in
1635 cpu-specific files. Drop the duplication and move these to
1636 include/asm-ppc/mmu.h. Also, remove the BL_xxx defines that were only
1637 used by the alaska board, and switch to using the BATU_BL_xxx defines
1638 used by all the other boards. The BL_ defines previously in use
1639 had to be shifted into the proper position for use, which was inefficient.
1640
1641 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1642
1643commit 6e61fae4d360a1380b63e7d007b31477e366bcce
1644Author: Becky Bruce <beckyb@kernel.crashing.org>
1645Date: Tue Feb 3 18:10:50 2009 -0600
1646
1647 drivers/pci: Create pci_map_bar function
1648
1649 It is no longer always true that the pci bus address can be
1650 used as the virtual address for pci accesses. pci_map_bar()
1651 is created to return the virtual address for a pci region.
1652
1653 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1654
1655commit 2ecca3401775b125c3b9ff65766befb23989414b
1656Author: Becky Bruce <beckyb@kernel.crashing.org>
1657Date: Tue Feb 3 18:10:49 2009 -0600
1658
1659 mpc8641hpcn: Set up outbound pci windows before inbound
1660
1661 Because the inbound pci windows are mapped generously, set up
1662 the more specific outbound windows first. This way, when we
1663 search the pci regions for something, we will hit on the more
1664 specific region. This can actually be a problem on systems
1665 with large amounts of RAM.
1666
1667 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1668
1669commit b81b773ead0687114dc8a800f99ea6e504447739
1670Author: Becky Bruce <beckyb@kernel.crashing.org>
1671Date: Mon Feb 2 16:34:52 2009 -0600
1672
1673 mpc8641hpcn: Use physical address in flash banks defintion
1674
1675 If the VA and PA of the flash aren't the same, the banks list
1676 should be initialized to hold the physical address. Correct this.
1677
1678 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
1679
09fee8e8
WD
1680commit 0d19f6c8cbe71b9e6d8c6bd6742ed2551e918870
1681Author: Ilya Yanok <yanok@emcraft.com>
1682Date: Tue Feb 10 00:22:31 2009 +0100
1683
1684 qong: support for Dave/DENX QongEVB-LITE board
1685
1686 This patch adds support for Dave/DENX QongEVB-LITE i.MX31-based board.
1687
1688 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
1689 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1690
1691commit 62cbc408f52fc9a5eb849e0b882c504780c9d183
1692Author: Ilya Yanok <yanok@emcraft.com>
1693Date: Mon Feb 9 18:45:28 2009 +0100
1694
1695 dnet: driver for Dave DNET ethernet controller
1696
1697 Driver for Dave DNET ethernet controller (used on Dave/DENX
1698 QongEVB-LITE board).
1699
1700 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
1701 Acked-by: Ben Warren <biggerbadderben@gmail.com>
1702
f15c6515
WD
1703commit 2d43e873a29ca4959ba6a30fc7fb396d3fd0dccf
1704Author: Kumar Gala <galak@kernel.crashing.org>
1705Date: Fri Feb 6 09:49:32 2009 -0600
1706
1707 pci: give preference to non-PCI_REGION_SYS_MEMORY regions when matching
1708
1709 When we search for an address match in pci_hose_{phys_to_bus,bus_to_phys}
1710 we should give preference to memory regions that aren't system memory.
1711
1712 Its possible that we have over mapped system memory in the regions and
1713 we want to avoid depending on the order of the regions.
1714
1715 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1716
1717commit ff4e66e93c1ad47644be3b4ffd6a46e1ce9b6612
1718Author: Kumar Gala <galak@kernel.crashing.org>
1719Date: Fri Feb 6 09:49:31 2009 -0600
1720
1721 pci: Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY for clarity
1722
1723 The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and
1724 can be confusing when reading the code.
1725
1726 Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used
1727 for system memory mapping purposes.
1728
1729 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1730
09fee8e8
WD
1731commit 54dc517328709c204a9cbf7a253d9f8e6c4b26ec
1732Author: Ilya Yanok <yanok@emcraft.com>
1733Date: Sun Feb 8 00:59:43 2009 +0300
1734
1735 mx31: add GPIO registers definitions
1736
1737 Added definitions for i.MX31 processor GPIO registers.
1738
1739 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
1740
f15c6515
WD
1741commit 8da601280a8acbc3385784780ed35130e53812f1
1742Author: Peter Tyser <ptyser@xes-inc.com>
1743Date: Wed Feb 4 13:47:22 2009 -0600
1744
1745 NAND: Add timeout for reset command
1746
1747 Without the timeout present an infinite loop can occur if the
1748 NAND device is broken or not present.
1749
1750 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1751 Signed-off-by: Scott Wood <scottwood@freescale.com>
1752
1753commit 10dc6a9bef73d7d4cb25b3fde27ee91f8484b126
1754Author: Peter Tyser <ptyser@xes-inc.com>
1755Date: Wed Feb 4 13:39:40 2009 -0600
1756
1757 NAND: Silence warning when CONFIG_SYS_NAND_QUIET_TEST
1758
1759 Commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b removed support
1760 for disabling the "No NAND device found!!!" warning when
1761 CONFIG_SYS_NAND_QUIET_TEST was defined. This re-adds support
1762 for silencing the warning.
1763
1764 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
1765 Signed-off-by: Scott Wood <scottwood@freescale.com>
1766
1767commit ad09ab2e3ac28f304372eceb4a5cb4d24e102a13
1768Author: Valeriy Glushkov <gvv@lstec.com>
1769Date: Mon Jan 19 16:32:59 2009 +0200
1770
1771 NAND: Fixed invalid pointers to static relocated chip names
1772
1773 Dear Wolfgang,
1774
1775 You are right, the patch was ugly.
1776 The new one seems to be better.
1777
1778 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
1779 Signed-off-by: Scott Wood <scottwood@freescale.com>
1780
09fee8e8
WD
1781commit e7deec1bf6fa3b3a21cd8d14fe2a909a42efc9d8
1782Author: Nishanth Menon <nm@ti.com>
1783Date: Mon Feb 2 18:20:12 2009 -0600
1784
1785 ARM:OMAP3:Zoom1: Add nand unlock option
1786
1787 Enable NAND_UNLOCK option for unlocking nand for
1788 erase/write operations
1789
1790 Signed-off-by: Nishanth Menon <nm@ti.com>
1791
f15c6515
WD
1792commit 5a9427dc9b8438759db3f67a1e547062f76eb18d
1793Author: derek@siconix.com <derek@siconix.com>
1794Date: Mon Jan 26 14:08:17 2009 -0700
1795
1796 env_nand: fix env memory release
1797
1798 This fixes a bug that tmp environment memory not being released.
1799
1800 Signed-off-by: Derek Ou <dou@siconix.com>
1801 Signed-off-by: Scott Wood <scottwood@freescale.com>
1802
09fee8e8
WD
1803commit 05fd88776419df59e7f37bac063a209409dd801d
1804Author: Guennadi Liakhovetski <lg@denx.de>
1805Date: Fri Feb 6 10:37:45 2009 +0100
1806
1807 ARM: remove unused variable
1808
1809 The "size" variable in start_armboot() in lib_arm/board.c is only really
1810 used in "#ifndef CONFIG_SYS_NO_FLASH" case, and even there it can be
1811 eliminated (thanks to Jean-Christophe PLAGNIOL-VILLARD for a suggestion.)
1812
1813 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
1814
f15c6515
WD
1815commit 6989e4f546d960a407dd5425f800dff9751c8132
1816Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1817Date: Thu Feb 5 09:33:50 2009 -0500
1818
1819 Coldfire: M527x: Add missing GPIO register address defines
1820
1821 Add missing GPIO registers address definition for Coldfire M5271.
1822
1823 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1824
1825commit c4ff77f5e6c3a01610ce97434c0d59acb1476f95
1826Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1827Date: Fri Jan 23 14:42:58 2009 -0500
1828
1829 Coldfire: mcfmii: Allow non-autonegotiating PHYs to use mii command
1830
1831 Modified mii_init to support boards with PHYs that are not set to
1832 autonegotiate, but still want to use u-boot's mii commands to probe
1833 the smi bus. Such PHYs will not set the Autonegotiate-done bit.
1834
1835 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1836
1837commit 92d3e6e0ffcbb7224c83104f8d87b5b4bf39a38f
1838Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1839Date: Fri Jan 23 11:44:30 2009 -0500
1840
1841 Coldfire: Applied baudrate formula of serial_init to serial_setbrg
1842
1843 Applied the patch for baudrate divider value truncation for
1844 serial_init to serial_setbrg as well.
1845
1846 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1847
1848commit 8706ef378f2db1ef65b9c2f909561f23e3dc2148
1849Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1850Date: Fri Jan 23 14:07:05 2009 -0500
1851
1852 Coldfire: M5271EVB: Board header update (dependencies)
1853
1854 Cleanup for M5271EVB:
1855 Added clarification on the use of CONFIG_SYS_CLOCK.
1856 Modified to use u-boot's HUSH parser.
1857 Cleanup on environment settings.
1858 Removed compiler warning by defining CONFIG_SYS_CS0_*
1859
1860 Dependencies:
1861 Added the use of CONFIG_SYS_MCF_SYNCR for clock multiplier.
1862 This depends on a patch to include/asm-m68k/m5271.h
1863 that defines the multiplier and divider ratios.
1864
1865 Removed the definition of CONFIG_SYS_FECI2C.
1866 This depends on a patch that removes the use of it in
1867 cpu/mcf52x2/cpu_init.c
1868
1869 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1870
1871commit e0db344fabfeb4f9649846f94838f51172f6a1f6
1872Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1873Date: Thu Jan 29 14:36:06 2009 -0500
1874
1875 Coldfire: M5271: Allow board header file to specify clock multiplier
1876
1877 M5271 dynamic clock multiplier. It is currently fixed at 100MHz.
1878
1879 Allow the board header file to set their own multiplier and divider.
1880 Added the #define for the multiplier and divider to the cpu header file.
1881
1882 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1883
1884commit d1ef25dd81c79dcfad5c2ff0162b1bea21d04bc3
1885Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1886Date: Fri Jan 23 10:47:13 2009 -0500
1887
1888 Coldfire: M5271EVB: Remove usage of CONFIG_SYS_FECI2C
1889
1890 Discontinue the use of CONFIG_SYS_FECI2C (only used by M5271EVB).
1891 Use read-modify-write to activate the FEC pins without disabling I2C.
1892
1893 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1894
1895commit ee73cc59ab904976af3c33b454fc84f78618b2d1
1896Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1897Date: Fri Jan 23 09:45:34 2009 -0500
1898
1899 Coldfire: cmd_bdinfo cleanup
1900
1901 CONFIG_M68K bdinfo cleanup:
1902
1903 Fixed compiler warning about baudrate printing.
1904 format '%d' expects type 'int', but argument 2 has type 'long unsigned int'.
1905
1906 Added printing of "cpufreq"
1907
1908 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1909
1910commit 4ffc39050aa46ed8a3d29732293dff769e54fffa
1911Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1912Date: Fri Jan 23 09:27:00 2009 -0500
1913
1914 Coldfire: Fix half-baud UART by adding M5271 to Coldfire v2 core list
1915
1916 Added the CONFIG_M5271 to the list of Coldfire V2 processor. This
1917 was causing the bus clock (not CPU clock) to be declared twice as
1918 fast as it actually is. This causes UARTS to operate at half the
1919 specified baudrate.
1920
1921 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1922
1923commit 59d1bda7f92c8a28c3aba94e48063749d425949f
1924Author: Dirk Eibach <eibach@gdsys.de>
1925Date: Tue Feb 3 15:15:21 2009 +0100
1926
1927 ppc4xx: Make PCIE support selectable
1928
1929 On some platforms PCIE support is not required, but would be included
1930 because the cpu supports it. To reduce fooprint it is now configurable
1931 via CONFIG_PCI_DISABLE_PCIE.
1932
1933 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
1934 Signed-off-by: Stefan Roese <sr@denx.de>
1935
1936commit b129eff5ede394cc1faeb6dbf6a987e91abce552
1937Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1938Date: Tue Feb 3 22:13:16 2009 +0100
1939
1940 ppc4xx: Only fixup opb attached UARTs
1941
1942 This patch updates the fdt UART clock fixup code to
1943 only touch CPU internal UARTs on 4xx systems.
1944 Only these UARTs are definitely clocked by gd->uart_clk.
1945
1946 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
1947 Signed-off-by: Stefan Roese <sr@denx.de>
1948
1949commit 4b7e3d045cc82f7f7b6f3a19b54a814da36ac52c
1950Author: Mike Frysinger <vapier@gentoo.org>
1951Date: Tue Jan 13 11:00:29 2009 -0500
1952
1953 Blackfin: move default boot SPI CS to common code
1954
1955 Move the default SPI CS that we boot from into common code so that it can
1956 be used in other SPI drivers and environment settings.
1957
1958 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1959
1960commit f790ef6ff12381cb0e43de54fb2b0f1204ad8ed6
1961Author: Mike Frysinger <vapier@gentoo.org>
1962Date: Wed Dec 10 12:33:54 2008 -0500
1963
1964 Blackfin: dynamically update UART speed when initializing
1965
1966 Previously, booting over the UART required the baud rate to be known ahead
1967 of time. Using a bit of tricky simple math, we can calculate the new board
1968 rate based on the old divisors.
1969
1970 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1971 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
1972
1973commit 97f265f14f23050f3cb997f617f3a6917b843ea2
1974Author: Mike Frysinger <vapier@gentoo.org>
1975Date: Tue Dec 9 17:21:08 2008 -0500
1976
1977 Blackfin: add support for fast SPI reads with Boot ROM
1978
1979 Newer Blackfin boot roms support using the fast SPI read command rather than
1980 just the slow one. If the functionality is available, then use it.
1981
1982 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1983
1984commit 67619982bfc5cd62710a48e3cbffc304cb78c341
1985Author: Mike Frysinger <vapier@gentoo.org>
1986Date: Sat Oct 11 21:46:52 2008 -0400
1987
1988 Blackfin: check for reserved settings in DDR MMRs
1989
1990 Some bits of the DDR MMRs should not be set. If they do, bad things may
1991 happen (like random failures or hardware destruction).
1992
1993 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1994
1995commit 622a8dc0958dd599743348ea94eb10b9d0be8ae6
1996Author: Mike Frysinger <vapier@gentoo.org>
1997Date: Sat Oct 11 21:54:00 2008 -0400
1998
1999 Blackfin: set default voltage levels for BF538/BF539 parts
2000
2001 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2002
2003commit 09dc6b0bbd1d5e39cdddeebc059f9a75630e4f6f
2004Author: Mike Frysinger <vapier@gentoo.org>
2005Date: Sun Jun 1 01:29:57 2008 -0400
2006
2007 Blackfin: use on-chip syscontrol() rom function when available
2008
2009 Newer Blackfin's have an on-chip rom with a syscontrol() function that needs
2010 to be used to properly program the memory and voltage settings as it will
2011 include (possibly critical) factory tested bias values.
2012
2013 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2014
2015commit e1fb6d0d52fbe3fbc1a4c651dacf11e9c1417f63
2016Author: Stefan Roese <sr@denx.de>
2017Date: Thu Feb 5 11:44:52 2009 +0100
2018
2019 cfi_flash: Fix typo in cfi_flash.c
2020
2021 Patch "flash/cfi_flash: Use virtual sector start address, not phys"
2022 introduced a small typo and compilation warning for systems with CFI
2023 legacy support (e.g. hcu4). This patch fixes it.
2024
2025 Signed-off-by: Stefan Roese <sr@denx.de>
2026
2027commit 28745db969b72693754991c838f68a7fb4a8b1ab
2028Author: Stefan Roese <sr@denx.de>
2029Date: Thu Jan 29 11:21:38 2009 +0100
2030
2031 jedec_flash: Only use manufacturer defines from common flash.h
2032
2033 This patch removes the double defined manufacturer defines from
2034 jedec_flash.c. Since the common defines in flash.h are 32bit
2035 we now need the (16) cast. This patch also removes the compilation
2036 warning (e.g. seen on hcu5):
2037
2038 ./MAKEALL hcu5
2039 Configuring for hcu5 board...
2040 jedec_flash.c:219: warning: large integer implicitly truncated to unsigned type
2041
2042 Signed-off-by: Stefan Roese <sr@denx.de>
2043
2044commit ec21d5cfcb6b4e7fcdd5c6e926e1a824900706f2
2045Author: Stefan Roese <sr@denx.de>
2046Date: Thu Feb 5 11:25:57 2009 +0100
2047
2048 cfi_flash: Silence compilation warning
2049
2050 Patch "flash/cfi_flash: Use virtual sector start address, not phys"
2051 introduced a small compilation warning. This patch fixes it.
2052
2053 Signed-off-by: Stefan Roese <sr@denx.de>
2054
2055commit 09ce9921a7d8b1ce764656b14b42217bbf4faa38
2056Author: Becky Bruce <beckyb@kernel.crashing.org>
2057Date: Mon Feb 2 16:34:51 2009 -0600
2058
2059 flash/cfi_flash: Use virtual sector start address, not phys
2060
2061 include/flash.h was commented to say that the address in
2062 flash_info->start was a physical address. However, from u-boot's
2063 point of view, and looking at most flash code, it makes more
2064 sense for this to be a virtual address. So I corrected the
2065 comment to indicate that this was a virtual address.
2066
2067 The only flash driver that was actually treating the address
2068 as physical was the mtd/cfi_flash driver. However, this code
2069 was using it inconsistently as it actually directly dereferenced
2070 the "start" element, while it used map_physmem to get a
2071 virtual address in other places. I changed this driver so
2072 that the code which initializes the info->start field calls
2073 map_physmem to get a virtual address, eliminating the need for
2074 further map_physmem calls. The code is now consistent.
2075
2076 The *only* place a physical address should be used is when defining the
2077 flash banks list that is used to initialize the flash_info struct,
2078 usually found in the board config file.
2079
2080 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
2081 Signed-off-by: Stefan Roese <sr@denx.de>
2082
2083commit 657f2062d8e17ebf4a55f52c9e71c07c0c94c779
2084Author: Wolfgang Denk <wd@denx.de>
2085Date: Wed Feb 4 09:42:20 2009 +0100
2086
2087 Fix compiler warning
2088
2089 (shows up only when DEBUG is enabled)
2090
2091 Signed-off-by: Wolfgang Denk <wd@denx.de>
2092
2093commit 47832cd15ae02fb6fde8ebed5b272f85775f2ceb
2094Author: Mike Frysinger <vapier@gentoo.org>
2095Date: Mon Oct 6 03:45:55 2008 -0400
2096
2097 Blackfin: update anomaly lists
2098
2099 Update the anomaly lists to match latest anomaly sheets.
2100
2101 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2102
2103commit 70a4da45e16b72e8e5b0baaecdaee9be8619647d
2104Author: Ralph Kondziella <rk@argos-messtechnik.de>
2105Date: Mon Jan 26 12:34:36 2009 -0700
2106
2107 ADS5121 Add PATA support
2108
2109 Original patch from Ralph Kondziella
2110 plus clean up by Wolfgang Denk
2111 plus changes by John Rigby
2112 use ips clock not lpc
2113 port forward to current u-boot release
2114
2115 Signed-off-by: Ralph Kondziella <rk@argos-messtechnik.de>
2116 Signed-off-by: Wolfgang Denk <wd@denx.de>
2117 Signed-off-by: John Rigby <jrigby@freescale.com>
2118
2119commit abfbd0ae4967df18102345db4f4b529a13da107b
2120Author: Martha Marx <mmarx@silicontkx.com>
2121Date: Mon Jan 26 10:45:07 2009 -0700
2122
2123 ADS5121 Add IC Ident Module (IIM) support
2124
2125 IIM (IC Identification Module) is the fusebox for the mpc5121.
2126 Use #define CONFIG_IIM to turn on the clock for this module
2127 use #define CONFIG_CMD_FUSE to add fusebox commands.
2128 Fusebox commands include the ability to read
2129 the status, read the register cache, override the register cache,
2130 program the fuses and sense them.
2131
2132 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
2133 Signed-off-by: John Rigby <jrigby@freescale.com>
2134
2135commit 14d19cd1bce9a24b1335598f1568140f4950e4d9
2136Author: John Rigby <jrigby@freescale.com>
2137Date: Fri Jan 23 10:33:15 2009 -0700
2138
2139 ADS5121 Fix rev2 silicon pci iopad config
2140
2141 Reset config is not correct
2142
2143 Signed-off-by: John Rigby <jrigby@freescale.com>
2144
2145commit 4c154252c480b13f69ce1b71a9530b0515da76a6
2146Author: John Rigby <jrigby@freescale.com>
2147Date: Wed Nov 19 13:57:34 2008 -0700
2148
2149 ADS5121 DIU Add diu_bmp_addr env
2150
2151 Add support for using a bmp other than
2152 FSL_Logo_BMP for the DIU splash screen.
2153
2154 Can now set the env var "diu_bmp_addr" to
2155 the address of a BMP in flash to use instead
2156 of the default FSL_Logo_BMP.
2157
2158 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
2159 Signed-off-by: John Rigby <jrigby@freescale.com>
2160
2161commit 92c20fbd3a7788c1a154f50a3f44f28a7763f99a
2162Author: John Rigby <jrigby@freescale.com>
2163Date: Thu Oct 30 16:39:35 2008 -0600
2164
2165 ADS5121 DIU Make inclusion of FSL logo optional
2166
2167 Make inclusion of FSL logo optional and
2168 turn it off by default.
2169
2170 Signed-off-by: John Rigby <jrigby@freescale.com>
2171
2172commit bd99ec149abe94e7f6b2bda4766d701b4005053f
2173Author: Remy Bohmer <linux@bohmer.net>
2174Date: Sun Feb 1 12:27:53 2009 +0100
2175
2176 Compile warning fix in onenand_uboot.h
2177
2178 Regression since merge window after 2009.01
2179
2180 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2181
2182commit a270d1e7295c3d829f42c0480117941dfc1c6477
2183Author: Stefan Roese <sr@denx.de>
2184Date: Thu Jan 29 06:33:55 2009 +0100
2185
2186 USB: Add EHCI support for VCT EHCI controller (really with driver now)
2187
2188 Somehow I missed the real driver part in my last patch version. This patch
2189 now adds the driver.
2190
2191 Signed-off-by: Stefan Roese <sr@denx.de>
2192 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2193
2194commit 716ebf436c9e43df6740e0172f6b2a81ddbf1b8e
2195Author: Cliff Cai <cliff.cai@analog.com>
2196Date: Sat Nov 29 18:22:38 2008 -0500
2197
2198 Blackfin: add driver for on-chip MMC/SD controller
2199
2200 This is a port of the Linux Blackfin on-chip SDH driver to U-Boot.
2201
2202 Signed-off-by: Cliff Cai <cliff.cai@analog.com>
2203 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2204
2205commit 6e87ea0ca951465eba144ab2e6dba6fb507737a2
2206Author: Mike Frysinger <vapier@gentoo.org>
2207Date: Sat Oct 11 22:47:34 2008 -0400
2208
2209 Blackfin: add port muxing for BF51x SPI
2210
2211 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2212
2213commit fc68f9f85959664d528daea2aef5ef54974331ce
2214Author: Mike Frysinger <vapier@gentoo.org>
2215Date: Tue Jan 6 06:16:19 2009 -0500
2216
2217 Blackfin: output booting source when booting
2218
2219 Knowing the booting source of the part is useful, especially when the part
2220 can switch dynamically between sources.
2221
2222 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2223
2224commit 8df3ce0f49c37947800ac7c84e751499882619fc
2225Author: Mike Frysinger <vapier@gentoo.org>
2226Date: Thu Dec 11 06:30:46 2008 -0500
2227
2228 Blackfin: set default CONFIG_ENV_SPI_CS based on bootrom
2229
2230 Set the default CONFIG_ENV_SPI_CS value to match the SPI CS that is used by
2231 the Blackfin on-chip bootrom to boot out of SPI flash.
2232
2233 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2234
2235commit 2b4a486e6fac502d8b883e344cc4012283945b3d
2236Author: Mike Frysinger <vapier@gentoo.org>
2237Date: Thu Dec 11 04:06:26 2008 -0500
2238
2239 Blackfin: update asm-blackfin/posix_types.h to latest Linux version
2240
2241 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2242
2243commit e5eb93e77391bcc308697116c544ea1340aaae8a
2244Author: Mike Frysinger <vapier@gentoo.org>
2245Date: Sat Dec 6 02:54:52 2008 -0500
2246
2247 Blackfin: add port I bits
2248
2249 Some people need to access port I, so make sure the pins are defined.
2250
2251 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2252
2253commit 8a6b272596d43de0db4943eac7af58c3534c4026
2254Author: Sonic Zhang <Sonic.Zhang@analog.com>
2255Date: Wed Nov 26 22:16:45 2008 -0500
2256
2257 Blackfin: add driver for on-chip ATAPI controller
2258
2259 This is a port of the Linux Blackfin on-chip ATAPI driver to U-Boot.
2260
2261 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
2262 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2263
2264commit be9d8c780e6831cb84b7d4590ceae03dca8fc10b
2265Author: Mike Frysinger <vapier@gentoo.org>
2266Date: Wed Nov 26 21:43:06 2008 -0500
2267
2268 Blackfin: add driver for on-chip NAND controller
2269
2270 This is a port of the Linux Blackfin on-chip NFC driver to U-Boot.
2271
2272 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2273
2274commit 4148e02abae9a099f4444b5e168ebc2b911d2295
2275Author: Mike Frysinger <vapier@gentoo.org>
2276Date: Wed Nov 12 07:18:15 2008 -0500
2277
2278 Blackfin: build with -mno-fdpic
2279
2280 Use the -mno-fdpic flag so that any Blackfin toolchain can be used to build
2281 up u-boot, including ones that output FDPIC ELF by default.
2282
2283 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2284
2285commit 70e95589a24a2d83ad00317e4a9611d0211ecb58
2286Author: Mike Frysinger <vapier@gentoo.org>
2287Date: Tue Nov 11 05:43:57 2008 -0500
2288
2289 Blackfin: fix up EBIU defines
2290
2291 The EBIU defines for EBSZ 256/512 were incorrect.
2292
2293 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2294
2295commit 961954ea0ec8dc4341034c1a1ff3107ec0527809
2296Author: Mike Frysinger <vapier@gentoo.org>
2297Date: Wed Nov 5 12:45:24 2008 -0500
2298
2299 Blackfin: use 8/16/32 bit transfer widths in dma_memcpy()
2300
2301 Rather than using 8bit transfers for everything, use 8/16/32 bit transfers
2302 as usable with the source/destination addresses and the count size.
2303
2304 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2305
2306commit b93c68648426f906d63b98117496b6415f505f39
2307Author: Mike Frysinger <vapier@gentoo.org>
2308Date: Wed Nov 5 08:50:23 2008 -0500
2309
2310 Blackfin: only flag L1 instruction for DMA memcpy
2311
2312 The performance difference from doing an 8 bit DMA memcpy vs an optimized
2313 core memcpy can be pretty big when you add in the overhead of setting up the
2314 MDMA registers, cache flushes, etc... So only use dma_memcpy() when we
2315 actually require it.
2316
2317 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2318
2319commit e347c092a3b3a2ce1e72f25f4829163634d09fbe
2320Author: Mike Frysinger <vapier@gentoo.org>
2321Date: Wed Nov 5 07:20:37 2008 -0500
2322
2323 Blackfin: dma_memcpy(): fix random failures
2324
2325 We have to make sure the DMA channel is actually disabled in hardware before
2326 attempting to reprogram it. Otherwise the new settings are ignored and we
2327 end up with random hangs/failures.
2328
2329 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2330
2331commit fdce83c108846d6f0d5b1774e1cc29f2573a6ad3
2332Author: Mike Frysinger <vapier@gentoo.org>
2333Date: Tue Nov 4 00:04:03 2008 -0500
2334
2335 Blackfin: rewrite cache handling functions
2336
2337 Take the cache flush functions from the kernel as they use hardware loops in
2338 order to get optimal performance.
2339
2340 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2341
2342commit 84c5f0dc47d17593fd81206614891bdc94f6d51c
2343Author: Mike Frysinger <vapier@gentoo.org>
2344Date: Mon Nov 3 22:30:05 2008 -0500
2345
2346 Blackfin: setup bi_enetaddr for single nets
2347
2348 For systems with CONFIG_NET_MULTI disabled, bi_enetaddr does not get setup
2349 based on $ethaddr, so set it up.
2350
2351 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2352
2353commit 40599239e7875b39e2a5c12e6545992041c72c52
2354Author: Mike Frysinger <vapier@gentoo.org>
2355Date: Fri Oct 24 22:48:47 2008 -0400
2356
2357 Blackfin: cache core/system clock values
2358
2359 Calculating the clocks requires a bit of calls to gcc math functions, so
2360 cache the values after the first run since they'll most likely never
2361 change once U-Boot is up and running.
2362
2363 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2364
2365commit 6957a6209b02f6b69607fc47425f13731cc477f1
2366Author: Mike Frysinger <vapier@gentoo.org>
2367Date: Fri Oct 24 18:18:16 2008 -0400
2368
2369 Blackfin: enable --gc-sections
2370
2371 Start building all Blackfin boards with -ffunction-sections/-fdata-sections
2372 and linking with --gc-sections.
2373
2374 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2375
2376commit ee1d2001ea7fbabb2b9256026dc5468f057337f8
2377Author: Mike Frysinger <vapier@gentoo.org>
2378Date: Mon Oct 20 21:08:54 2008 -0400
2379
2380 Blackfin: dont check baud if it wont actually get used
2381
2382 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2383
2384commit 400f5778f375bc99c73c8488c555def261ccfab7
2385Author: Mike Frysinger <vapier@gentoo.org>
2386Date: Tue Oct 14 07:54:09 2008 -0400
2387
2388 Blackfin: add driver for on-chip SPI controller
2389
2390 This fills out the SPI backend for the Blackfin on-chip SPI peripheral.
2391
2392 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2393
2394commit 7a1e87b1062e6eac0704c6fc2f7c661caf8814cd
2395Author: Mike Frysinger <vapier@gentoo.org>
2396Date: Sat Oct 18 05:33:51 2008 -0400
2397
2398 Blackfin: only build post code when CONFIG_POST
2399
2400 Save some time by using CONFIG_POST in the Makefile rather than C files.
2401
2402 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2403
2404commit 6d7d4803c74bb86e1b401b1199e63381a62b9382
2405Author: Mike Frysinger <vapier@gentoo.org>
2406Date: Thu Jan 8 11:57:57 2009 -0500
2407
2408 Blackfin: bfin_mac: cleanup pointer/casts for aliasing issues
2409
2410 Redo how pointers are managed to get rid of ugly casts and strict pointer
2411 aliasing issues that are highlighted by gcc 4.3.
2412
2413 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2414 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2415
2416commit 092d2487baf7c29343c165e3ae82ea8a7f9e679b
2417Author: Mike Frysinger <vapier@gentoo.org>
2418Date: Tue Dec 9 17:46:21 2008 -0500
2419
2420 Blackfin: bfin_mac: convert CONFIG_BFIN_MAC_RMII to CONFIG_RMII
2421
2422 No point in having a Blackfin-specific define "CONFIG_BFIN_MAC_RMII" that
2423 does exactly the same thing as common "CONFIG_RMII".
2424
2425 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2426 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2427
2428commit 8eed6ca51e50fade6887e8bdb1ff6a44116b42b5
2429Author: Mike Frysinger <vapier@gentoo.org>
2430Date: Wed Nov 5 06:36:15 2008 -0500
2431
2432 Blackfin: bfin_mac: use common debug()
2433
2434 Rather then defining our own DEBUGF(), just use the common debug().
2435
2436 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2437 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2438
2439commit a7ec6ac8b2c6dce6fc670a2a855deb6eee340e04
2440Author: Mike Frysinger <vapier@gentoo.org>
2441Date: Mon Oct 20 13:59:51 2008 -0400
2442
2443 Blackfin: bfin_mac: respect CONFIG_PHY_{ADDR,CLOCK_FREQ}
2444
2445 Rather than having the on-chip MAC hardcoded to phy address 1 and a speed
2446 of 2.5mhz, use these as defaults if the board doesn't specify otherwise.
2447
2448 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2449 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2450
2451commit ac45af4e63ea925f4accc98453aab1a1166c196d
2452Author: Mike Frysinger <vapier@gentoo.org>
2453Date: Tue Oct 14 04:52:00 2008 -0400
2454
2455 Blackfin: bfin_mac: cleanup MII/PHY functions
2456
2457 Cleanup and rewrite the MII/PHY related functions so that we can reuse the
2458 existing common linux/miiphy.h code and hook into the `mii` command.
2459
2460 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2461 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2462
2463commit 6b310a05f0d10c751f22468040932139f71c71d3
2464Author: Mike Frysinger <vapier@gentoo.org>
2465Date: Tue Oct 14 00:31:30 2008 -0400
2466
2467 Blackfin: bfin_mac: set MDCDIV based on SCLK
2468
2469 Rather than hardcoding MDCDIV to 24 (which is correct for ~125mhz SCLK),
2470 use the real algorithm so it gets set correctly regardless of SCLK.
2471
2472 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2473 Acked-by: Ben Warren <biggerbadderben@gmail.com>
2474
2475commit 930590f3e49c8f32256edf2e5861e1535a329c6c
2476Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2477Date: Sat Jan 31 09:10:48 2009 +0100
2478
2479 ixp: move serial to drivers/serial
2480
2481 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2482
2483commit f90c8022f448bc5e93090e4b714368e52e912f0f
2484Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2485Date: Sat Jan 31 09:04:58 2009 +0100
2486
2487 ixp: move pci init in arm/board instead of cpu
2488
2489 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2490
2491commit 8cb79b5f275f1888ccb278a2d2197140444a84b7
2492Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2493Date: Sat Jan 31 08:56:49 2009 +0100
2494
2495 ixp: move pci drivers to drivers/pci
2496
2497 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2498
2499commit 012d5bab09a534e4800b02f50cf508e6837202ea
2500Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2501Date: Sat Jan 31 08:53:44 2009 +0100
2502
2503 ixp: Move conditional compilation to Makefile
2504
2505 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2506
2507commit f693f501d67434df1f815fd1824a71973ae08207
2508Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2509Date: Sat Jan 31 08:53:44 2009 +0100
2510
2511 ixp: add missing os define
2512
2513 need by arm-elf toolchains and no impact on the arm-linux one
2514
2515 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2516
2517commit b4e2f89dfcb206a22d34fa6b34878d85b498b39f
2518Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2519Date: Sat Jan 31 09:53:39 2009 +0100
2520
2521 ixp: remove the option to include the Microcode
2522
2523 instead the board will have to load it from flash or ram
2524 which will be specified by npe_ucode env var
2525
2526 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2527
2528commit 1b017baf2071d8daf643bce87250db898c606c66
2529Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2530Date: Fri Jan 30 09:45:23 2009 +0100
2531
2532 ixp/npe: Move conditional compilation to Makefile
2533
2534 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2535
2536commit 4e69087a1d6ef2eca6f46026cf5e7399b6c9e7c0
2537Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2538Date: Wed Jan 28 21:58:04 2009 +0100
2539
2540 SX1: add hardware V2 support
2541
2542 In the V2 the 2 flash has been replace by one 32MB flash
2543
2544 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2545
2546commit f877f2233dbcd7417c2f0babe6a849099b167f3c
2547Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2548Date: Wed Jan 28 21:58:03 2009 +0100
2549
2550 SX1: Fix second flash mapping
2551
2552 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2553
2554commit 47fd3bffed6430c91eb2660f859574ed98be5bd8
2555Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2556Date: Wed Jan 28 21:58:03 2009 +0100
2557
2558 SX1: add CONFIG_STDOUT_USBTTY to enable preboot stdout redirect to usbtty
2559
2560 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2561
2562commit cfca33837ec83829c6a49c3bcc86c31bc2495ff6
2563Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2564Date: Wed Jan 28 21:57:59 2009 +0100
2565
2566 move Samsung's board to board/samsung
2567
2568 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2569
2570commit e4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e
2571Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2572Date: Thu Jan 29 12:07:21 2009 +0100
2573
2574 move ARM Ltd. to vendor dir
2575
2576 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2577
2578commit a87fb1b308a2a375cb9ca74ca0dd3e2c5793d3bf
2579Author: Larry Johnson <lrj@acm.org>
2580Date: Wed Jan 28 15:30:37 2009 -0500
2581
2582 ppc4xx: Clean up configuration file for Korat board
2583
2584 This patch updates the default environmental variables for the
2585 Korat PPC 440EPx board, and makes additional minor fixes.
2586
2587 Signed-off-by: Larry Johnson <lrj@acm.org>
2588 Signed-off-by: Stefan Roese <sr@denx.de>
2589
2590commit f20405e31680efc36293c59b4963db57c9d93df4
2591Author: Larry Johnson <lrj@acm.org>
2592Date: Wed Jan 28 15:30:02 2009 -0500
2593
2594 ppc4xx: Add variable "korat_usbcf" for Korat board
2595
2596 The new environment variable "korat_usbcf" selects the USB
2597 port used by the Korat board's CompactFlash controller.
2598
2599 Signed-off-by: Larry Johnson <lrj@acm.org>
2600 Signed-off-by: Stefan Roese <sr@denx.de>
2601
2602commit fc01ea1e27d5b124f0a1868d0ce569f156d58dfe
2603Author: Gunnar Rangoy <gunnar@rangoy.com>
2604Date: Fri Jan 23 12:56:31 2009 +0100
2605
2606 AVR32: macb - Search for PHY id
2607
2608 This patch adds support for searching through available PHY-addresses in
2609 the macb-driver. This is needed for the ATEVK1100 evaluation board,
2610 where the PHY-address will be initialized to either 1 or 7.
2611
2612 This patch adds a config option, CONFIG_MACB_SEARCH_PHY, which when
2613 enabled tells the driver to search for the PHY address.
2614
2615 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
2616 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
2617 Signed-off-by: Olav Morken <olavmrk@gmail.com>
2618 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2619
2620commit af8626e0c08a780d9ded1d9c4883a89355f60e75
2621Author: Olav Morken <olavmrk@gmail.com>
2622Date: Fri Jan 23 12:56:26 2009 +0100
2623
2624 Fix IP alignment problem
2625
2626 This patch removes volatile from:
2627 volatile IP_t *ip = (IP_t *)xip;
2628
2629 Due to a bug, avr32-gcc will assume that ip is aligned on a word boundary when
2630 using volatile, which causes an exception since xip isn't aligned on a word
2631 boundary.
2632
2633 Signed-off-by: Gunnar Rangoy <gunnar@rangoy.com>
2634 Signed-off-by: Paul Driveklepp <pauldriveklepp@gmail.com>
2635 Signed-off-by: Olav Morken <olavmrk@gmail.com>
2636 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2637
2638commit 12a8b9db12f82a189ff143a58731007f5469da61
2639Author: Ron Madrid <ron_madrid@sbcglobal.net>
2640Date: Wed Jan 28 16:17:21 2009 -0800
2641
2642 Marvell 88E1118 interrupt fix
2643
2644 This patch adjusts the LED control so that interrupt lines are not reading LEDs
2645 and effectively causing indefinite interrupts to the controller.
2646
2647 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
2648 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2649
2650commit 9a37f2acc31a3296dddd3574ea9eaf7f319807b9
2651Author: Stefan Roese <sr@denx.de>
2652Date: Wed Jan 21 17:14:26 2009 +0100
2653
2654 net: smc911x.c: Add LAN9211 to chip_ids[] array
2655
2656 Signed-off-by: Stefan Roese <sr@denx.de>
2657 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2658
2659commit 75edebe3011c963a7cd84be0f4a987477f2aaf89
2660Author: Mike Frysinger <vapier@gentoo.org>
2661Date: Tue Jan 27 16:53:39 2009 -0500
2662
2663 Move is_valid_ether_addr() to include/net.h
2664
2665 Import the is_valid_ether_addr() function from the Linux kernel.
2666
2667 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2668 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2669
2670commit 268859338c0188eab1d0d3b867b7dad3c5cc734a
2671Author: Michal Simek <monstr@monstr.eu>
2672Date: Mon Jan 5 12:25:13 2009 +0100
2673
2674 net: Sort Makefile labels
2675
2676 Signed-off-by: Michal Simek <monstr@monstr.eu>
2677 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2678
2679commit 1fbcbe9a95f39afb2df6ab8cba25b284b47ebfb2
2680Author: Wolfgang Denk <wd@denx.de>
2681Date: Wed Jan 28 23:06:42 2009 +0100
2682
2683 85xx: Fix compile breakage with sbc8540 and sbc8560
2684
2685 This fixes an error which raises just a warning:
2686 sbc8560.c:250: warning: passing argument 2 of 'strmhz' makes integer from pointer without a cast
2687
2688 Signed-off-by: Wolfgang Denk <wd@denx.de>
2689
2690commit 62625c0b081bd4019cecab14e9fc2e05e48d2a58
2691Author: Mike Frysinger <vapier@gentoo.org>
2692Date: Wed Jan 28 13:48:55 2009 -0500
2693
2694 SPD823TS: do not define CONFIG_CMD_ENV
2695
2696 Since the SPD823TS board does not actually have any writable flash to save
2697 its environment, undefine CONFIG_CMD_ENV so the "saveenv" command is
2698 disabled.
2699
2700 This fixes the build error:
2701 common/libcommon.a(cmd_nvedit.o): In function `do_saveenv':
2702 common/cmd_nvedit.c:557: undefined reference to `saveenv'
2703 make: *** [u-boot] Error 1
2704
2705 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2706
2707commit 7379f45a7bc71941c3920c2f6b3c3faa4d7fd315
2708Author: Dirk Behme <dirk.behme@googlemail.com>
2709Date: Wed Jan 28 21:40:16 2009 +0100
2710
2711 OMAP3: Add Zoom1 board support
2712
2713 Support for Zoom MDK with OMAP3430. Details of Zoom MDK available here:
2714 http://www.logicpd.com/products/devkit/ti/zoom_mobile_development_kit
2715
2716 Signed-off-by: Nishanth Menon <nm@ti.com>
2717 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
2718
2719commit 2be2c6cc674e26237962f5cf4c0d311e139e4241
2720Author: Dirk Behme <dirk.behme@googlemail.com>
2721Date: Wed Jan 28 21:39:58 2009 +0100
2722
2723 OMAP3: Add Pandora support
2724
2725 Add Pandora support.
2726
2727 Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
2728 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
2729 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
2730
2731commit ad9bc8e52d174d699d1367be0b90089e4fdeb933
2732Author: Dirk Behme <dirk.behme@googlemail.com>
2733Date: Wed Jan 28 21:39:58 2009 +0100
2734
2735 OMAP3: Add EVM board
2736
2737 Add EVM board support.
2738
2739 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
2740 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
2741 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
2742
2743commit 9d0fc8110e7e755239329c26f300d5fc9946d3ec
2744Author: Dirk Behme <dirk.behme@googlemail.com>
2745Date: Wed Jan 28 21:39:57 2009 +0100
2746
2747 OMAP3: Add Overo board
2748
2749 Add Overo board support.
2750
2751 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
2752 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
2753 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
2754
2755commit f904cdbb68167c647887f19929ad295dbaac8862
2756Author: Dirk Behme <dirk.behme@googlemail.com>
2757Date: Tue Jan 27 18:19:12 2009 +0100
2758
2759 OMAP3: Add common power code, README, and BeagleBoard
2760
2761 Add BeagleBoard support, common power code and README.
2762
2763 Signed-off-by: Jason Kridner <jkridner@beagleboard.org>
2764 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
2765
2766commit 9cda4f104b5313fadc21b75aa781c7a6aaf6ea60
2767Author: Kumar Gala <galak@kernel.crashing.org>
2768Date: Wed Jan 28 08:31:10 2009 -0600
2769
2770 85xx: Fix compile breakage with MPC8540EVAL
2771
2772 Configuring for MPC8540EVAL board...
2773 mpc8540eval.c: In function 'checkboard':
2774 mpc8540eval.c:53: error: invalid operands to binary /
2775 make[1]: *** [mpc8540eval.o] Error 1
2776
2777 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2778
2779commit 1a448db77b10153703bc5e4ad13dd55d88beb1d6
2780Author: Bryan Wu <bryan.wu@analog.com>
2781Date: Sun Jan 18 23:04:27 2009 -0500
2782
2783 usb_scan_devices: fix output with no devices
2784
2785 We should check the return of usb_new_device() so that if no USB device is
2786 found, we print out the right message rather than always saying "new usb
2787 device found".
2788
2789 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
2790 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2791 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2792
2793commit f1c1f540243438246aefb703fdcf16957e3a72e1
2794Author: Stefan Roese <sr@denx.de>
2795Date: Thu Jan 22 10:11:21 2009 +0100
2796
2797 USB: Add high-speed (480Mb/s) to all USB related outputs
2798
2799 With this patch the USB related connection speed output ("usb tree" command and
2800 debug output) is now high-speed enabled.
2801
2802 This patch also fixes a compilation warning when debugging is enabled.
2803
2804 Signed-off-by: Stefan Roese <sr@denx.de>
2805 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2806
2807commit daa2dafb450a8073a4e42fd46cd4e995b208e4cb
2808Author: Stefan Roese <sr@denx.de>
2809Date: Wed Jan 21 17:12:19 2009 +0100
2810
2811 USB: Add dcache support to the EHCI driver
2812
2813 This patch adds routines to handle (flush/invalidate) the dcache for the
2814 QH and qTD structures and data buffers. This is needed on platforms using
2815 this EHCI support with dcache enabled (like the MIPS VCT board port).
2816
2817 Signed-off-by: Stefan Roese <sr@denx.de>
2818 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2819
2820commit 4e0ea0efc1e501186aca8577a4042fc6fa641602
2821Author: Stefan Roese <sr@denx.de>
2822Date: Wed Jan 21 17:12:28 2009 +0100
2823
2824 USB: Add EHCI support for VCT EHCI controller
2825
2826 Signed-off-by: Stefan Roese <sr@denx.de>
2827 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2828
2829commit 832e61418eedfea172bd2fdfd0ea0d199cc70a9d
2830Author: Stefan Roese <sr@denx.de>
2831Date: Wed Jan 21 17:12:10 2009 +0100
2832
2833 USB: Add config option to call ehci_hcd_init() again after EHCI reset
2834
2835 This patch adds the config option CONFIG_EHCI_HCD_INIT_AFTER_RESET
2836 to call ehci_hcd_init() again after ehci_reset() is executed. This
2837 is needed for the upcoming VCT EHCI support which needs to re-init
2838 the hcd part again after the EHCI CMD_RESET is executed.
2839
2840 Signed-off-by: Stefan Roese <sr@denx.de>
2841 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2842
2843commit 597eb28bd9691266b7b804364cda577cdb51d106
2844Author: Stefan Roese <sr@denx.de>
2845Date: Wed Jan 21 17:12:01 2009 +0100
2846
2847 USB: Fix speed detection on EHCI cntr with root hub transaction translators
2848
2849 This patch fixes an issue that the speed of USB devices was not detected
2850 correctly on some EHCI controllers. This will be used on the upcoming VCT
2851 EHCI support.
2852
2853 Signed-off-by: Stefan Roese <sr@denx.de>
2854 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2855
2856commit 20cc06611ea33fc0a67a5e56e6476379d2de3091
2857Author: Thomas Abraham <t-abraham@ti.com>
2858Date: Sun Jan 4 09:41:20 2009 +0530
2859
2860 usb : musb : Enabling USB MSC support for DM6446 (TI DaVinci) platform
2861
2862 Enabling USB MSC support for DM6446 (TI DaVinci) platform in the
2863 configuration file.
2864
2865 Signed-off-by: Ravi Babu <ravibabu@ti.com>
2866 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
2867 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
2868 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
2869 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2870
2871commit 538ef967715322f64ee08efa2296d9682111b014
2872Author: Thomas Abraham <t-abraham@ti.com>
2873Date: Sun Jan 4 09:41:16 2009 +0530
2874
2875 usb : musb : Enabling DM6446 (TI DaVinci) USB module power
2876
2877 Enabling DM6446 (TI DaVinci) USB module power and MUSB low-level
2878 controller hook up to USB core layer.
2879
2880 Signed-off-by: Ravi Babu <ravibabu@ti.com>
2881 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
2882 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
2883 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
2884 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2885
2886commit e142e9f35f8ec61e74bf8019428b003f5070c33b
2887Author: Thomas Abraham <t-abraham@ti.com>
2888Date: Sun Jan 4 09:41:13 2009 +0530
2889
2890 usb : musb : Adding DM6446 (TI DaVinci) platform specific USB support
2891
2892 Adding DM6446 (TI DaVinci) platform specific USB functionality for
2893 USB Phy and VBUS initialization.
2894
2895 Signed-off-by: Ravi Babu <ravibabu@ti.com>
2896 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
2897 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
2898 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
2899 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2900
2901commit a9d39ebe91ecdd5ac0a0cf56ea162a19773db8da
2902Author: Thomas Abraham <t-abraham@ti.com>
2903Date: Sun Jan 4 09:41:09 2009 +0530
2904
2905 usb : musb : Adding USB VBUS enable functionality for DM644x DVEVM
2906
2907 Adding USB VBUS enable functionality for DM644x DVEVM (TI DaVinci)
2908 platform.
2909
2910 Signed-off-by: Ravi Babu <ravibabu@ti.com>
2911 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
2912 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
2913 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
2914 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2915
2916commit a142896934c755e679ba87e227a8e449f39b0012
2917Author: Thomas Abraham <t-abraham@ti.com>
2918Date: Sun Jan 4 09:41:03 2009 +0530
2919
2920 usb : musb : Adding host controller driver for Mentor USB controller
2921
2922 Adding Mentor USB core functionality and Mentor USB Host controller
2923 functionality for Mentor USB OTG controller (musbhdrc).
2924
2925 Signed-off-by: Ravi Babu <ravibabu@ti.com>
2926 Signed-off-by: Swaminathan S <swami.iyer@ti.com>
2927 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
2928 Signed-off-by: Ajay Kumar Gupta <ajay.gupta@ti.com>
2929 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2930
2931commit c7d703f3f3c3d6b020bda4cf633f8a6167c3cd2a
2932Author: Mike Frysinger <vapier@gentoo.org>
2933Date: Thu Jan 1 18:27:27 2009 -0500
2934
2935 usb.h: use standard __LITTLE_ENDIAN from Linux headers
2936
2937 Rather than forcing people to define a custom "LITTLEENDIAN", just use the
2938 __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is
2939 already setting up.
2940
2941 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2942 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2943
2944commit 7b6e31eb17e3ff76238a60803fc531517d516223
2945Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
2946Date: Wed Dec 31 10:33:56 2008 +0100
2947
2948 USB ehci ixp4xx support
2949
2950 Add USB ehci ixp4xx host controller. Test on ixdp465 board.
2951
2952 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
2953 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2954
2955commit 1ed9f9adc88218841dfeb60b9094a5a548bff009
2956Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
2957Date: Wed Dec 31 10:33:22 2008 +0100
2958
2959 USB ehci remove infinite loop and use handshake function
2960
2961 USB ehci code cleanup. Use handshake instead of infinite while loop
2962 to check the STD_ASS status
2963
2964 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
2965 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2966
2967commit 8fea2914ac974029b65926ef8247d908f84d202d
2968Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
2969Date: Wed Dec 31 10:32:41 2008 +0100
2970
2971 Add initial support for USB ehci pci
2972
2973 Add USB ehci pci support. This patch doesn't include any
2974 pci_ids and it is not tested on real hardware.
2975
2976 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
2977 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2978
2979commit 14e4111cdab7e7738ff6a203d445e4d8377f058f
2980Author: Bryan Wu <Bryan.Wu@analog.com>
2981Date: Thu Jan 1 19:48:07 2009 -0500
2982
2983 usb_storage: do not reset SanDisk Corporation U3 Cruzer Micro USB thumb drive
2984
2985 The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4
2986 does not like to be reset, so check for it.
2987
2988 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
2989 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2990 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2991
2992commit 1eb734fed3b79a5e6106dad16e88041894fdab30
2993Author: Thomas Abraham <t-abraham@ti.com>
2994Date: Sun Jan 4 12:15:35 2009 +0530
2995
2996 usb : usb_kbd : Populating 'priv' member of USB keyboard device_t structure
2997
2998 This patch populates the 'priv' field of the USB keyboard device_t
2999 structure. The 'priv' field is populated with the address of the
3000 'struct usb_device' structure that represents the USB device.
3001
3002 The 'priv' field can then be used in the 'usb_event_poll' function to
3003 determine the USB device that requires to be polled. An
3004 example of its usage in 'usb_event_poll' function is as below.
3005
3006 device_t *dev;
3007 struct usb_device *usb_kbd_dev;
3008
3009 <snip>
3010
3011 dev = device_get_by_name("usbkbd");
3012 usb_kbd_dev = (struct usb_device *)dev->priv;
3013 iface = &usb_kbd_dev->config.if_desc[0];
3014
3015 Signed-off-by: Thomas Abraham <t-abraham@ti.com>
3016 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3017
3018commit 366523c26b6320af171459b19e6e0e9e3baa83ca
3019Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3020Date: Thu Dec 18 10:05:37 2008 +0100
3021
3022 USB change speed
3023
3024 USB changes the speed according to the port status
3025
3026 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
3027 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3028
3029commit c0d722fe7ee1cb452dfd9246419188b3f6d9c4df
3030Author: Remy Böhmer <linux@bohmer.net>
3031Date: Sat Dec 13 22:51:58 2008 +0100
3032
3033 EHCI fix code and ixp4xx test.
3034 USB ehci configuration parameter:
3035
3036 #define CONFIG_CMD_USB 1
3037 #define CONFIG_USB_STORAGE 1
3038 #define CONFIG_USB_EHCI
3039 #define CONFIG_USB_EHCI_IXP4XX 1
3040 #define CONFIG_EHCI_IS_TDI 1
3041 #define CONFIG_EHCI_DESC_BIG_ENDIAN 1
3042 #define CONFIG_EHCI_MMIO_BIG_ENDIAN 1
3043 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
3044 #define CONFIG_LEGACY_USB_INIT_SEQ 1
3045
3046 2 USB Device(s) found
3047 scanning bus for storage devices... 0 Storage Device(s) found
3048 => usb tree
3049
3050 Device Tree:
3051 1 Hub (1.5MBit/s, 0mA)
3052 | u-boot EHCI Host Controller
3053 |
3054 |+-2 Mass Storage (12MBit/s, 100mA)
3055 Sony Storage Media 0C07040930296
3056
3057 =>
3058
3059 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
3060 Signed-off-by: Remy Böhmer <linux@bohmer.net>
3061
3062commit 51ab142b8b546d5e627b2c8c36d0adae222565f7
3063Author: michael <michael@panicking.retis>
3064Date: Thu Dec 11 13:43:55 2008 +0100
3065
3066 [PATCH] This patch add varius fix to the ehci.
3067 - fix ehci_readl, ehci_writel
3068 - introduce new define in ehci.h
3069 - introduce the handshake function for waiting on a register
3070 - fix usb_ehci_fsl with the new HC_LENGTH macro
3071
3072 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
3073 Signed-off-by: Remy Böhmer <linux@bohmer.net>
3074
3075commit db63299b1dd2894ade542278210bccd046de6435
3076Author: michael <michael@panicking.retis>
3077Date: Wed Dec 10 17:55:19 2008 +0100
3078
3079 [PATCH] Fix EHCI usb. I start to test on a
3080 IXP465 board and I find some errors in the code. This
3081 patch fix:
3082 - descriptor initizialization (config, interface and endpoint
3083 must be one next-to the other when the USB_DT_CONFIG message
3084 is send.
3085 - FIX little/endian bigendian (introduce the CONFIG_EHCI_DESC_BIG_ENDIAN
3086 and the CONFIG_EHCI_MMIO_BIG_ENDIAN)
3087 - Introduce the linux version of the usb_config_descriptor and
3088 usb_interface descriptor. This descriptor does't contains
3089 u-boot extension.
3090
3091 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
3092 Signed-off-by: Remy Böhmer <linux@bohmer.net>
3093
3094commit 6b92487dcf9afe83a3570153d66940fdb293be76
3095Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3096Date: Fri Nov 28 13:22:09 2008 +0100
3097
3098 USB ehci freescale support
3099
3100 Add USB ehci freescale support
3101
3102 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3103 Signed-off-by: Remy Böhmer <linux@bohmer.net>
3104
3105commit aaf098cfeed04595d4c5100ffd39095d79edbf90
3106Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3107Date: Fri Nov 28 13:20:46 2008 +0100
3108
3109 USB ehci core support
3110
3111 Add USB ehci core support
3112
3113 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3114 Signed-off-by: Remy Böhmer <linux@bohmer.net>
3115
3116commit 3e126484df7868e341545cce740b24b62b0cd3b7
3117Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3118Date: Fri Nov 28 13:19:19 2008 +0100
3119
3120 Prepare USB layer for ehci
3121
3122 Prepare USB layer for ehci support
3123
3124 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3125 Signed-off-by: Remy Böhmer <linux@bohmer.net>
3126
3127commit a0cb3fc31e58996a1c5732715ac04159d4d284fd
3128Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
3129Date: Wed Dec 10 15:52:06 2008 +0100
3130
3131 USB storage cleanup patch
3132
3133 Cleanup usb storage
3134
3135 Signed-off-by: Michael Trimarchi <trimarchimichael@yahoo.it>
3136 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3137
3138commit fe033ad6d0883063fe857237abb9436fab03208c
3139Author: Mike Frysinger <vapier@gentoo.org>
3140Date: Sun Oct 12 06:02:55 2008 -0400
3141
3142 Blackfin: fixup misc warnings such as printf's and missing casts
3143
3144 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3145
3146commit 1f4a3bb50343719c434d7e2541a2f86480a6d25c
3147Author: Mike Frysinger <vapier@gentoo.org>
3148Date: Sun Oct 12 22:09:26 2008 -0400
3149
3150 Blackfin: convert old boards to use COBJS-y Makefile style
3151
3152 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3153
3154commit 1f75d6f0ff005762d3e6ad92ae4ce2ab366b3bb5
3155Author: Mike Frysinger <vapier@gentoo.org>
3156Date: Sat Oct 11 22:38:37 2008 -0400
3157
3158 Blackfin: bf533-stamp: rewrite resource swap logic
3159
3160 The old swap function tended to clobber unrelated pins and screw up masks.
3161 Rewrite the thing from scratch so it only uses the resources it needs.
3162
3163 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3164
3165commit 29d4ea0a9073c82469184331010136f52edf8db6
3166Author: Mike Frysinger <vapier@gentoo.org>
3167Date: Sat Oct 11 22:08:42 2008 -0400
3168
3169 Blackfin: bootldr: implement BF53x/BF56x LDR loader
3170
3171 The BF53x/BF56x parts do not have an on-chip ROM to boot LDRs out of
3172 arbitrary memory locations, so implement a basic one in software.
3173
3174 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3175
3176commit 8b35e3aeff6c2d747c37697997b3f8a808432329
3177Author: Mike Frysinger <vapier@gentoo.org>
3178Date: Sat Oct 11 22:05:42 2008 -0400
3179
3180 Blackfin: implement real write support for OTP
3181
3182 Now that real documentation has been released for the OTP interface and
3183 the on-chip ROM wrt writing/timings, implement support for reading/writing
3184 as well as dumping/locking.
3185
3186 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3187
3188commit 9372c3214808fab545227d8d0f76b3bfcc6760ec
3189Author: Mike Frysinger <vapier@gentoo.org>
3190Date: Sat Oct 11 22:04:05 2008 -0400
3191
3192 Blackfin: update on-chip ROM API
3193
3194 This brings the API for the on-chip ROM in line with the toolchain and
3195 hardware documentation.
3196
3197 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3198
3199commit 7633903bff432ec7b27905dce7396958553f2be6
3200Author: Mike Frysinger <vapier@gentoo.org>
3201Date: Sat Oct 11 21:52:17 2008 -0400
3202
3203 Blackfin: allow serial console to be disabled
3204
3205 Some devices have no UART device pulled out, so allow people to disable the
3206 driver completely in favor of other methods (like JTAG-console).
3207
3208 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3209
3210commit 36ea8e9ad1107af12d244bba8c73e85b9f655e45
3211Author: Mike Frysinger <vapier@gentoo.org>
3212Date: Sat Oct 11 21:51:20 2008 -0400
3213
3214 Blackfin: support console-over-JTAG
3215
3216 The Blackfin JTAG has the ability to pass data via a back-channel without
3217 halting the processor. Utilize that channel to emulate a console.
3218
3219 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3220
3221commit cf8f2efb5f39c5225da92391c14a07eecbeca881
3222Author: Mike Frysinger <vapier@gentoo.org>
3223Date: Sat Oct 11 21:49:06 2008 -0400
3224
3225 Blackfin: handle new anomalies with reset
3226
3227 Workaround fun new anomalies related to software reset of the processor.
3228
3229 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3230
3231commit b1e9435b643043dd8fbd1fcc47309c6acb7b3c8e
3232Author: Mike Frysinger <vapier@gentoo.org>
3233Date: Sat Oct 11 21:44:00 2008 -0400
3234
3235 Blackfin: pass RETX to Linux
3236
3237 Make sure we save the value of RETX at power on and then pass it on to the
3238 kernel so that it can nicely debug a "double-fault-caused-a-reset" crash.
3239
3240 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3241
3242commit b5eba3fafcccd1979380f12a256bd0e19be3d61e
3243Author: Mike Frysinger <vapier@gentoo.org>
3244Date: Sat Oct 11 21:40:26 2008 -0400
3245
3246 Blackfin: clarify relocation comment during init
3247
3248 People often ask questions about the init process and when things go
3249 from flash to relocated base, so clarify the comments a bit.
3250
3251 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3252
3253commit 95433f6d43ede6b40c1d900f3f704c839aa074f1
3254Author: Mike Frysinger <vapier@gentoo.org>
3255Date: Sat Oct 11 21:23:41 2008 -0400
3256
3257 Blackfin: just set SP register directly during init
3258
3259 No need to set the SP register indirectly to the configured value when it
3260 can be set directly.
3261
3262 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3263
3264commit 51230e6e356ccf4c932e0c4ff54f1e49da02285c
3265Author: Mike Frysinger <vapier@gentoo.org>
3266Date: Sat Oct 11 21:15:53 2008 -0400
3267
3268 Blackfin: add portmuxing for UARTs on the BF51x
3269
3270 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3271
3272commit 4f6a313240c531042f16909a3a170ab047b95779
3273Author: Mike Frysinger <vapier@gentoo.org>
3274Date: Sun Jun 1 01:26:29 2008 -0400
3275
3276 Blackfin: respect CONFIG_CLKIN_HALF
3277
3278 As pointed out by Ivan Koryakovskiy, the initialization code was not
3279 actually respecting the CONFIG_CLKIN_HALF option when configuring the
3280 PLL_CTL register.
3281
3282 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3283
3284commit dc2bfb0b58d7462b9eba68f3ae38e38cada0ad33
3285Author: Mike Frysinger <vapier@gentoo.org>
3286Date: Sun Jun 1 01:21:34 2008 -0400
3287
3288 Blackfin: use common memcpy routine during init
3289
3290 Rather than using a local custom memcpy function, just call the existing
3291 optimized Blackfin version.
3292
3293 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3294
3295commit 362c943347364e9373af4c5530778491ab56ec2e
3296Author: Mike Frysinger <vapier@gentoo.org>
3297Date: Wed Apr 9 02:27:06 2008 -0400
3298
3299 Blackfin: set default boot SPI CS for BF538/BF539
3300
3301 The BF538/BF539 use CS2 for booting off of rather than CS1 like newer
3302 Blackfin parts.
3303
3304 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3305
3306commit 74dde80bd5d55bc146630853ca191aaeea7c30f4
3307Author: Mike Frysinger <vapier@gentoo.org>
3308Date: Wed Apr 9 02:20:59 2008 -0400
3309
3310 Blackfin: punt unused BF533-STAMP definitions
3311
3312 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3313
3314commit fee531eeefc3b5f2c63c7fe27b9f55d924c59c26
3315Author: Mike Frysinger <vapier@gentoo.org>
3316Date: Fri Apr 18 20:44:11 2008 -0400
3317
3318 Blackfin: resurrect BF533-STAMP video splash driver
3319
3320 This video driver used to live in the Blackfin cpu directory, but it was
3321 lost during the unification process. This brings it back.
3322
3323 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3324
3325commit a750d038f2548d846ea1e046d873dc932d041319
3326Author: Mike Frysinger <vapier@gentoo.org>
3327Date: Wed Apr 9 02:31:29 2008 -0400
3328
3329 Blackfin: tighten up post memory coding style
3330
3331 No functional changes here; just cleanup code style a bit.
3332
3333 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3334
3335commit 0649908f92c9bd214dd139aa3d4698c1654a45c6
3336Author: Mike Frysinger <vapier@gentoo.org>
3337Date: Wed Apr 9 02:29:18 2008 -0400
3338
3339 Blackfin: bf537-stamp nand: fix more style errors in previous commit
3340
3341 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3342
3343commit 41f3325ae9add641036d7cb362e884b698e53f07
3344Author: Mike Frysinger <vapier@gentoo.org>
3345Date: Sat Oct 11 20:31:17 2008 -0400
3346
3347 Blackfin: drop dead/wrong debug code in initdram()
3348
3349 The DEBUG code in initdram() is quite old and was never really useful, so
3350 just drop it altogether. Common Blackfin debug code does a better job.
3351
3352 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3353
3354commit 65ba1abd3b90e0b2585745809b78e2651bd3bacb
3355Author: Mike Frysinger <vapier@gentoo.org>
3356Date: Sat Oct 11 20:30:28 2008 -0400
3357
3358 Blackfin: bf533-ezkit: shuffle flash defines a little
3359
3360 Some of the flash defines weren't in the correct location and caused build
3361 problems in some configurations, so let's move types and defines to better
3362 local locations.
3363
3364 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3365
3366commit be853bf86b41e91f4c422f0f56fdf87ea3191266
3367Author: Mike Frysinger <vapier@gentoo.org>
3368Date: Mon Oct 6 04:16:47 2008 -0400
3369
3370 Blackfin: overhaul i2c driver
3371
3372 The current Blackfin i2c driver does not work properly with certain devices
3373 due to it breaking up transfers incorrectly. This is a rewrite of the
3374 driver and relocates it to the newer place in the source tree.
3375
3376 Also remove duplicated I2C speed defines in Blackfin board configs and
3377 disable I2C slave address usage since it isn't implemented.
3378
3379 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3380
3381commit b6edc719a106ab7fa6e6950b4d97bc39c1368e45
3382Author: Mike Frysinger <vapier@gentoo.org>
3383Date: Mon Oct 6 04:00:07 2008 -0400
3384
3385 Blackfin: respect CONFIG_SYS_MONITOR_LEN for default flash protection
3386
3387 Respect the CONFIG_SYS_MONITOR_LEN define rather than assuming a size of
3388 128kB when setting up the default flash protection region for U-Boot
3389 itself.
3390
3391 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3392
3393commit 78a0ba7dc24c9682371f6ee8549b569fb573a329
3394Author: Mike Frysinger <vapier@gentoo.org>
3395Date: Mon Oct 6 03:57:39 2008 -0400
3396
3397 Blackfin: respect/check CONFIG_SYS_GBL_DATA_SIZE
3398
3399 When setting up the global data, rather than relying on sizeof(), use the
3400 common CONFIG_SYS_GBL_DATA_SIZE define.
3401
3402 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3403
3404commit 01815c2d06c5b838f2cd536703e47bd2c9148194
3405Author: Mike Frysinger <vapier@gentoo.org>
3406Date: Mon Oct 6 03:52:24 2008 -0400
3407
3408 Blackfin: implement general support for CONFIG_STATUS_LED
3409
3410 Here are the Blackfin-specific and board-independent pieces for status leds.
3411
3412 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3413
3414commit 6882b5a79a3247494b62c05015fa672557f1bfaa
3415Author: Mike Frysinger <vapier@gentoo.org>
3416Date: Mon Oct 6 03:49:32 2008 -0400
3417
3418 Blackfin: do not init i2c in Blackfin board init
3419
3420 The common code takes care of calling i2c_init() when needed, so no point
3421 in us doing it as well.
3422
3423 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3424
3425commit 1118ea73698eee6e72ef5cbfc00e41746040304f
3426Author: Mike Frysinger <vapier@gentoo.org>
3427Date: Mon Oct 6 03:42:20 2008 -0400
3428
3429 Blackfin: bfin_mac: update port muxing
3430
3431 Adds support more Blackfin parts and fixes broken muxing for older ones.
3432
3433 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3434
3435commit 05b75e48832fc4afeecf8e76d704349557dffa35
3436Author: Mike Frysinger <vapier@gentoo.org>
3437Date: Mon Oct 6 03:35:44 2008 -0400
3438
3439 Blackfin: fix dcache handling when doing dma memcpy's
3440
3441 Our dcache invalidate function doesn't just invalidate, it also flushes.
3442 So rename the function accordingly and fix the dma_memcpy() function so it
3443 doesn't inadvertently corrupt the data destination.
3444
3445 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3446
3447commit 68e5632494168095d75f120af70043b68afd2476
3448Author: Mike Frysinger <vapier@gentoo.org>
3449Date: Thu Aug 7 18:56:56 2008 -0400
3450
3451 Blackfin: dont generate ldrs with --force
3452
3453 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3454
3455commit 746290dfd86a70b41fc5fdd3df1424a647d5c5e8
3456Author: Mike Frysinger <vapier@gentoo.org>
3457Date: Thu Aug 7 18:55:30 2008 -0400
3458
3459 Blackfin: pass --bmode/--initcode when creating ldr
3460
3461 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3462
3463commit 0332e4df71fccf9a96c5a4393e3c5d5daa50880a
3464Author: Mike Frysinger <vapier@gentoo.org>
3465Date: Thu Aug 7 18:39:27 2008 -0400
3466
3467 Blackfin: minimize time cache is turned off when replacing cplb entries
3468
3469 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3470
3471commit 21d631360430cf0ae9099612273cd4de28911ba9
3472Author: Mike Frysinger <vapier@gentoo.org>
3473Date: Thu Aug 7 15:31:13 2008 -0400
3474
3475 Blackfin: split cache handling out of dma_memcpy()
3476
3477 Creating a new dma_memcpy() function that skips all cache checks allows us
3478 to use the function in very early init where the cache is not yet setup.
3479
3480 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3481
3482commit d31eb38512bed377d5d4b3c696662e52120a2e4c
3483Author: Mike Frysinger <vapier@gentoo.org>
3484Date: Thu Aug 7 15:30:49 2008 -0400
3485
3486 Blackfin: abort dma_memcpy() for L1 scratchpad
3487
3488 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3489
3490commit 81b799add709177e838466461f7b9989488b0fd5
3491Author: Mike Frysinger <vapier@gentoo.org>
3492Date: Thu Aug 7 15:27:52 2008 -0400
3493
3494 Blackfin: rename bootm.c to boot.c
3495
3496 The boot file contains functions for more than just "bootm", so rename it
3497 accordingly.
3498
3499 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3500
3501commit d7ca7dd5bfc418ac173e9d2712f6cc2d8147a091
3502Author: Mike Frysinger <vapier@gentoo.org>
3503Date: Thu Aug 7 13:22:37 2008 -0400
3504
3505 Blackfin: set more sane default board config values
3506
3507 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3508
3509commit 36cd52a00794fb15ffab05d640acca92d7482993
3510Author: Mike Frysinger <vapier@gentoo.org>
3511Date: Thu Aug 7 15:24:59 2008 -0400
3512
3513 Blackfin: convert CMD_LINE_ADDR to CONFIG_LINUX_CMDLINE_{ADDR,SIZE}
3514
3515 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3516
3517commit c8054bc12e00669bd7588f2b30fef48aa94babac
3518Author: Mike Frysinger <vapier@gentoo.org>
3519Date: Thu Aug 7 13:21:27 2008 -0400
3520
3521 Blackfin: add bit defines for DDR parts
3522
3523 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3524
3525commit 154502fe0796f3b7a4698378c5d2080ae28a9782
3526Author: Mike Frysinger <vapier@gentoo.org>
3527Date: Thu Aug 7 13:21:11 2008 -0400
3528
3529 Blackfin: add defines to describe active bootrom behavior
3530
3531 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3532
3533commit 2b6fd5c77db9c6ed3cea9799c86ff922cf0107b2
3534Author: Kim Phillips <kim.phillips@freescale.com>
3535Date: Tue Jan 27 16:03:53 2009 -0600
3536
3537 mpc83xx: fix undefined reference to `flush_cache' error in simpc8313 build
3538
3539 extend commit c70564e6b1bd08f3230182392238907f3531a87e
3540 "NAND: Fix cache and memory inconsistency issue" to add the cache.o dependency
3541 to the simpc8313 build and fix this:
3542
3543 ...Large Page NAND...Configuring for SIMPC8313 board...
3544 nand_boot_fsl_elbc.o: In function `nand_boot':
3545 nand_spl/board/sheldon/simpc8313/nand_boot_fsl_elbc.c:150: undefined reference to `flush_cache'
3546 make[1]: *** [/home/r1aaha/git/u-boot-mpc83xx/nand_spl/u-boot-spl] Error 1
3547 make: *** [nand_spl] Error 2
3548
3549 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3550
3551commit 54a7cc4912feefa45be961cc47cc159563725d2f
3552Author: Wolfgang Denk <wd@denx.de>
3553Date: Wed Jan 28 09:25:31 2009 +0100
3554
3555 mpc8536ds.c: include sata.h to for needed function prototypes
3556
3557 Signed-off-by: Wolfgang Denk <wd@denx.de>
3558
3559commit 2fb2604d5c20beb061b0a94282b7f6eb14d00cb8
3560Author: Peter Tyser <ptyser@xes-inc.com>
3561Date: Tue Jan 27 18:03:12 2009 -0600
3562
3563 Command usage cleanup
3564
3565 Remove command name from all command "usage" fields and update
3566 common/command.c to display "name - usage" instead of
3567 just "usage". Also remove newlines from command usage fields.
3568
3569 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3570
3571commit 79621bc10ba8b8c45d348994aba5b9e4923cb77b
3572Author: Peter Tyser <ptyser@xes-inc.com>
3573Date: Tue Jan 27 18:03:11 2009 -0600
3574
3575 amcc: Clean up command usage output
3576
3577 Update taihu and taishan commands to use cmd_usage() function
3578 to display usage messages.
3579
3580 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3581
3582commit 62c3ae7c6ef215b1afa614abdf61acf077752207
3583Author: Peter Tyser <ptyser@xes-inc.com>
3584Date: Tue Jan 27 18:03:10 2009 -0600
3585
3586 Standardize command usage messages with cmd_usage()
3587
3588 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3589
3590commit 84cde2bb409c07c6ef36a192d194359d4e9ccd70
3591Author: Peter Tyser <ptyser@xes-inc.com>
3592Date: Tue Jan 27 18:03:09 2009 -0600
3593
3594 pcs440ep: Clean up led command definition
3595
3596 The pcs440ep's led command usage formatting is non-standard. It
3597 was made standard in preparation for larger command usage updates.
3598
3599 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3600
3601commit 9507e7867e04dc48c80ee333c2a9a5e70e887f62
3602Author: Peter Tyser <ptyser@xes-inc.com>
3603Date: Tue Jan 27 18:03:08 2009 -0600
3604
3605 Clean up diufb command definitions
3606
3607 The diufb command usage formatting is non-standard. It was
3608 made standard in preparation for larger command usage updates.
3609
3610 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3611
3612commit 6450a8485836fc80615ae6de6a864c33369b44f5
3613Author: Wolfgang Denk <wd@denx.de>
3614Date: Wed Jan 28 00:29:26 2009 +0100
3615
3616 Update CHANGELOG, tiny coding style cleanup.
3617
3618 Signed-off-by: Wolfgang Denk <wd@denx.de>
3619
6450a848
WD
3620commit cf7e399fb35b3aea90a27d1df72f45f5d6156204
3621Author: Mike Frysinger <vapier@gentoo.org>
3622Date: Tue Jan 27 16:12:21 2009 -0500
3623
3624 SATA: do not auto-initialize during boot
3625
3626 Rather than have the board code initialize SATA automatically during boot,
3627 make the user manually run "sata init". This brings the SATA subsystem in
3628 line with common U-Boot policy.
3629
3630 Rather than having a dedicated weak function "is_sata_supported", people
3631 can override sata_initialize() to do their weird board stuff. Then they
3632 can call the actual __sata_initialize().
3633
3634 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3635
3636commit 50970839712dda35399e2fa83fe818df9354d618
3637Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3638Date: Mon Jan 26 08:45:14 2009 -0500
3639
3640 part_efi: Fix partition size calculation due to inclusive ending LBA.
3641
3642 The ending LBA is inclusive. Hence, the partition size should be
3643 ((ending-LBA + 1) - starting-LBA) to get the proper partition size.
3644
3645 This is confirmed against the results from the parted tool.
3646 (e.g. use parted /dev/sda -s unit S print) and observe the size.
3647
3648 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3649
3650commit b5b004ad8a0ac6f98bd5708ec8b22fbddd1c1042
3651Author: Tomasz Figa <tomasz.figa@gmail.com>
3652Date: Tue Dec 30 18:35:57 2008 +0100
3653
3654 jffs2: Fix zero sector_size when not using CONFIG_JFFS2_CMDLINE
3655
3656 This patch fixes a bug (?) introduced after inclusion of the new
3657 JFFS2 code.
3658
3659 When not using CONFIG_JFFS2_CMDLINE, the code in cmd_jffs2.c doesn't
3660 fill in part->sector_size (keeping it as 0), but a correct value is
3661 needed by the code in jffs2_1pass.c. This causes all JFFS2 accesses
3662 to be in the same place of the memory, what obviously means
3663 impossibility to use the JFFS2 partition.
3664
3665 This problem is fixed in this patch by including sector size
3666 calculation in non-CONFIG_JFFS2_CMDLINE mtdparts_init variant.
3667
3668 Signed-off-by: Tomasz Figa <tomasz.figa_at_gmail.com>
3669
3670commit ba69dc26a5fd606da49573bb2f15e756a34f3f98
3671Author: Mike Frysinger <vapier@gentoo.org>
3672Date: Tue Dec 30 02:59:25 2008 -0500
3673
3674 saveenv: standardize enablement
3675
3676 Rather than special casing each environment type for enabling the saveenv
3677 command, have them all behave the same. This avoids bitrot as new env
3678 sources are added/removed.
3679
3680 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
3681
3682commit 2ac6985a7466a1c8a7aa8b2fa24d360925a82764
3683Author: Andrew Dyer <adyer@righthandtech.com>
3684Date: Mon Dec 29 17:36:01 2008 -0600
3685
3686 soft_i2c.c add option for repeated start in i2c_read()
3687
3688 This patch adds a #define to optionally change the behaviour of
3689 i2c_read() in soft_i2c.c to send an I2C repeated start instead of a
3690 stop-start between sending the device address pointer write and
3691 reading back the data. The current behaviour is retained as the
3692 default.
3693
3694 While most devices will work either way, I have a smart battery(*)
3695 that requires repeated start, and someone at some point found a
3696 device that required a stop-start.
3697
3698 (*) http://www.inspired-energy.com/Standard_Products/NL2054/NL2054%20Rev1.0%20Data%20Sheet.pdf
3699
3700 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
3701
3702commit 3429071700963ca2f944c51d695a7481af0cee33
3703Author: Wolfgang Denk <wd@denx.de>
3704Date: Tue Jan 27 22:07:14 2009 +0100
3705
3706 {delta,zylonite}/lowlevel_init.S: fix typo
3707
3708 Commit 9d803d8c mistakenly changed some constants
3709 from 0x300 into 300 - this patch fixes it.
3710
3711 Pointed out by Tom Evans <tom@ceos.com.au>, see
3712 http://article.gmane.org/gmane.comp.boot-loaders.u-boot/51992 for
3713 details.
3714
3715 Signed-off-by: Wolfgang Denk <wd@denx.de>
3716
3717commit 1bc434373013af241835c14011ac3f291dccbf53
3718Author: Stefan Althoefer <stefan.althoefer@web.de>
3719Date: Sat Dec 20 19:40:41 2008 +0100
3720
3721 drivers/net/e1000.c: missing terminator for supported devices
3722
3723 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
3724
3725commit 65f7d41031a70b1649b35020995c505edca91533
3726Author: Wolfgang Denk <wd@denx.de>
3727Date: Tue Jan 27 21:36:28 2009 +0100
3728
3729 fat.c: fix warning: array subscript is above array bounds
3730
3731 Fix based on suggestion by David Hawkins <dwh@ovro.caltech.edu>.
3732
3733 Signed-off-by: Wolfgang Denk <wd@denx.de>
3734
3735commit 107b801cf3fe39612d69d70581ebc3bf5e215554
3736Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3737Date: Fri Jan 2 15:11:41 2009 +0100
3738
3739 Fix gunzip in case of insufficient output buffer
3740
3741 U-Boot's gunzip() function does not handle the return code
3742 of zlib's inflate() function correctly. gunzip() is implemented
3743 to uncompress all input data in one run. So the correct return
3744 code for the good case is Z_STREAM_END. In case of insufficient
3745 output buffer memory inflate returns Z_OK. For gunzip() this
3746 is an error.
3747
3748 It also makes sense to me to call inflateEnd() also in case
3749 of an error.
3750
3751 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3752
3753commit 2a61eff6a82f0d6e2335d968799b3fbeb3ff4d8e
3754Author: Stefan Roese <sr@denx.de>
3755Date: Wed Jan 21 17:25:01 2009 +0100
3756
3757 MIPS: Add VCT board series support (Part 3/3)
3758
3759 Signed-off-by: Stefan Roese <sr@denx.de>
3760
3761commit ae691e5719c48f1d2826cb72722497d1d162765b
3762Author: Stefan Roese <sr@denx.de>
3763Date: Wed Jan 21 17:24:49 2009 +0100
3764
3765 MIPS: Add VCT board series support (Part 2/3)
3766
3767 Signed-off-by: Stefan Roese <sr@denx.de>
3768
3769commit 50752790bc9285c0c1c5235e88f3a4ef2eec1e72
3770Author: Stefan Roese <sr@denx.de>
3771Date: Wed Jan 21 17:24:39 2009 +0100
3772
3773 MIPS: Add VCT board series support (Part 1/3)
3774
3775 Signed-off-by: Stefan Roese <sr@denx.de>
3776
3777commit 03d3bfb00806b5441f1871c7408c1749863e0fdc
3778Author: Stefan Roese <sr@denx.de>
3779Date: Wed Jan 21 17:20:20 2009 +0100
3780
3781 MIPS: Add flush_dcache_range() and invalidate_dcache_range()
3782
3783 This patch adds flush_/invalidate_dcache_range() to the MIPS architecture.
3784 Those functions are needed for the upcoming dcache support for the USB
3785 EHCI driver. I chose this API because those cache handling functions are
3786 already present in the PPC architecture.
3787
3788 Signed-off-by: Stefan Roese <sr@denx.de>
3789 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
3790
f15c6515
WD
3791commit de832a99414ff06a4b2cdc9f5280b387da039834
3792Author: Stefan Roese <sr@denx.de>
3793Date: Mon Jan 26 10:05:20 2009 +0100
3794
3795 nand_spl: Fix compile problem with board_nand_init() prototype
3796
3797 This patch removes the now obsolete and additionally wrongly defined
3798 board_nand_init() prototype from nand_spl/nand_boot.c.
3799
3800 Signed-off-by: Stefan Roese <sr@denx.de>
3801 Signed-off-by: Scott Wood <scottwood@freescale.com>
3802
6450a848
WD
3803commit e8eac437189430d8e04a5d254ed92c58bc534a79
3804Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3805Date: Wed Jan 14 08:44:26 2009 -0500
3806
3807 CFI: Add geometry reversal for STMicro M29W320ET
3808
3809 Added flash_fixup_stm to fix geometry reversal on STMicro M29W320ET flash chip.
3810
3811 Modeled after flash_fixup_amd, this patch handles the geometry reversal
3812 or erase sectors that exist for ST Micro (now Numonyx) M29W320ET flash.
3813 Since I cannot test all STM's chips, the detection is implemented as
3814 narrow as possible for now.
3815
3816 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
3817 Signed-off-by: Stefan Roese <sr@denx.de>
3818
3819commit 0f8e851e897b535959a0781171910cd97f33c30c
3820Author: Jens Gehrlein <sew_s@tqs.de>
3821Date: Tue Dec 16 17:25:55 2008 +0100
3822
3823 CFI: increase performance of function find_sector()
3824
3825 Tested on TQM5200S-BD with Samsung K8P2815UQB
3826
3827 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
3828 Signed-off-by: Stefan Roese <sr@denx.de>
3829
3830commit a7292871a79cc48d98e3a708dd3c3b81580db6ef
3831Author: Jens Gehrlein <sew_s@tqs.de>
3832Date: Tue Dec 16 17:25:54 2008 +0100
3833
3834 CFI: avoid redundant function call in single word programming mode
3835
3836 The function find_sector() doesn't need to be called twice in
3837 the case of AMD command set.
3838 Tested on TQM5200S-BD with Samsung K8P2815UQB.
3839
3840 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
3841 Signed-off-by: Stefan Roese <sr@denx.de>
3842
3843commit c8901f46a71ec16e084e604596a09e23bfb0f6ac
3844Author: Stefan Roese <sr@denx.de>
3845Date: Mon Jan 26 10:15:23 2009 +0100
3846
3847 ppc4xx: Remove compilation warning in gdppc440etc.c
3848
3849 Signed-off-by: Stefan Roese <sr@denx.de>
3850
3851commit 91f33534728e6416d332ad2b53ad1d6fde57f7fc
3852Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3853Date: Fri Jan 2 12:19:47 2009 +0100
3854
3855 ppc4xx: Remove CONFIG_SYS_IGNORE_405_UART_ERRATA_59 from config files
3856
3857 Lot's of 405 board config files use CONFIG_SYS_IGNORE_405_UART_ERRATA_59.
3858 Either they define or undef it. Because it's not used in any source
3859 files this patch removes any references to it.
3860
3861 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
3862 Signed-off-by: Stefan Roese <sr@denx.de>
3863
3864commit 89b8619aaeafc922ca0c3bb249872591050c8dcc
3865Author: Dirk Eibach <eibach@gdsys.de>
3866Date: Tue Dec 9 13:12:40 2008 +0100
3867
3868 ppc4xx: Add GDsys PowerPC 440 ETX board support.
3869
3870 Board support for the Guntermann & Drunck PowerPC 440 ETX module.
3871 Based on the AMCC Yosemite board support by Stefan Roese.
3872
3873 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
3874 Signed-off-by: Stefan Roese <sr@denx.de>
3875
3876commit 3943d2ff6cc40dd601a9feeb39eb6d3d5090ea6d
3877Author: Dirk Eibach <eibach@gdsys.de>
3878Date: Tue Dec 9 11:00:07 2008 +0100
3879
3880 ppc4xx: Improve DDR autodetect
3881
3882 Added support for a second memory bank to DDR autodetection for 440
3883 platforms.
3884 Made hardcoded values configurable.
3885
3886 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
3887 Signed-off-by: Stefan Roese <sr@denx.de>
3888
f15c6515
WD
3889commit 71a040f4f556cca4d30f06805d82e717b3ef1020
3890Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3891Date: Fri Nov 21 12:06:26 2008 +0900
3892
3893 sh: sh7763rdp: Update sh7763rdp config
3894
3895 Add CONFIG_NET_MULTI in config file, because sh_eth changed new newwork API.
3896
3897 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3898 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3899
3900commit ba705b5b1a97b47388ed48858bef6bf7b6bfcd56
3901Author: Gary Jennejohn <garyj@denx.de>
3902Date: Thu Nov 20 12:28:38 2008 +0100
3903
3904 mgcoge make ether_scc.c work with CONFIG_NET_MULTI
3905
3906 This change is needed for mgcoge because it uses two ethernet drivers.
3907
3908 Add a check for the presence of the PIGGY board on mgcoge. Without this
3909 board networking cannot work and the initialization must be aborted.
3910
3911 Only allocate rtx once to prevent DPRAM exhaustion.
3912
3913 Initialize ether_scc.c and the keymile-specific HDLC driver (to be added
3914 soon) in eth.c.
3915
3916 Signed-off-by: Gary Jennejohn <garyj@denx.de>
3917 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3918
3919commit bd3980cc095af1728b994cdd8bf1ac430b6289e6
3920Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3921Date: Fri Nov 21 12:04:18 2008 +0900
3922
3923 sh: sh_eth: Change new network API
3924
3925 sh_eth used old network API. This patch changed new API.
3926
3927 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3928 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3929
3930commit 890a02e8ee6b8c26a6e3e505e1a2d29cd73aa6f6
3931Author: Stefan Roese <sr@denx.de>
3932Date: Wed Nov 12 13:31:02 2008 +0100
3933
3934 net: smc911x: Make register read/write functions weak
3935
3936 This patch changes the reg_read/_write to smc911x_reg_read/_write
3937 and defines then as weak so that they can be overridden by board
3938 specific version.
3939
3940 This will be used by the upcoming VCTH board support.
3941
3942 Signed-off-by: Stefan Roese <sr@denx.de>
3943 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3944
3945commit 8b69b563039989885969d24465c56f8ac4c07c4c
3946Author: Heiko Schocher <hs@denx.de>
3947Date: Thu Nov 20 09:57:14 2008 +0100
3948
3949 powerpc: net: support for the SMSC LAN8700 PHY
3950
3951 Signed-off-by: Heiko Schocher <hs@denx.de>
3952 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
3953
3954commit d5254f149da9e6cd649d887b042ce577ef3ba78d
3955Author: Alessandro Rubini <rubini@unipv.it>
3956Date: Sat Jan 24 18:10:37 2009 +0100
3957
3958 Initial support for Nomadik 8815 development board
3959
3960 The NMDK8815 board is distributed by ST Microelectornics.
3961 Other (proprietary) code must be run to unlock the CPU before
3962 U-Boot runs. doc/README.nmdk8815 outlines the boot sequence.
3963
3964 This is the initial port, with basic infrastructure and
3965 a working serial port.
3966
3967 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
3968 Acked-by: Andrea Gallo <andrea.gallo@stnwireless.com>
3969 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3970
3971commit 7d264c1ef267cfc8d928bc8577a7cc907f2f5e47
3972Author: Dirk Behme <dirk.behme@googlemail.com>
3973Date: Sun Dec 14 09:47:18 2008 +0100
3974
3975 OMAP3: Add I2C support
3976
3977 Add I2C support.
3978
3979 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
3980
3981commit b1c3bf99fb477675d464aeadb5dd69d2cbc9dc7b
3982Author: Dirk Behme <dirk.behme@googlemail.com>
3983Date: Sun Dec 14 09:47:17 2008 +0100
3984
3985 OMAP3: Add MMC support
3986
3987 Add MMC support.
3988
3989 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
3990
3991commit 12201a13547ec22ddcdae278e74465e54a3be60c
3992Author: Dirk Behme <dirk.behme@googlemail.com>
3993Date: Sun Dec 14 09:47:16 2008 +0100
3994
3995 OMAP3: Add NAND support
3996
3997 Add NAND support.
3998
3999 Signed-off-by: Nishanth Menon <nm@ti.com>
4000 Signed-off-by: Syed Mohammed Khasim <khasim@ti.com>
4001 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4002
4003commit 91eee546737ae21d930af479530997174c342b13
4004Author: Dirk Behme <dirk.behme@googlemail.com>
4005Date: Sun Dec 14 09:47:15 2008 +0100
4006
4007 OMAP3: Add common board, interrupt and system info
4008
4009 Add common board, interrupt and system info code.
4010
4011 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4012
4013commit 5ed3e8659e5373f6a229877ac506c0b00a054fb8
4014Author: Dirk Behme <dirk.behme@googlemail.com>
4015Date: Sun Dec 14 09:47:14 2008 +0100
4016
4017 OMAP3: Add common clock, memory and low level code
4018
4019 Add common clock, memory and low level code
4020
4021 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4022
4023commit 0b02b184003e6a5023e05d5f31de54db279b1431
4024Author: Dirk Behme <dirk.behme@googlemail.com>
4025Date: Sun Dec 14 09:47:13 2008 +0100
4026
4027 OMAP3: Add common cpu and start code
4028
4029 Add common cpu and start code.
4030
4031 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4032
4033commit a8b6450546cd507d331b8fde384791d84bde5651
4034Author: Dirk Behme <dirk.behme@googlemail.com>
4035Date: Sun Dec 14 09:47:12 2008 +0100
4036
4037 OMAP3: Add OMAP3, memory and function prototype headers
4038
4039 Add OMAP3, memory and function prototype header files for OMAP3.
4040
4041 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4042
4043commit 2c803210a464abbac35752ca1c737514360b4c32
4044Author: Dirk Behme <dirk.behme@googlemail.com>
4045Date: Sun Dec 14 09:47:11 2008 +0100
4046
4047 OMAP3: Add pin mux, clock and cpu headers
4048
4049 Add pin mux, clock and cpu header files for OMAP3.
4050
4051 Signed-off-by: Dirk Behme <dirk.behme@googlemail.com>
4052
4053commit 685533646f4ff17a84ec9265cabb60af325b6e1f
4054Author: Maxim Artamonov <scn1874@yandex.ru>
4055Date: Wed Dec 3 05:38:17 2008 +0300
4056
4057 bugfix for i.mx31 CCM_UPCTL reg
4058
4059 Signed-off-by: Maxim Artamonov <scn1874 at yandex.ru>
4060
6450a848
WD
4061commit 24113a44ed5cd3257a0237c3961e121812fca6db
4062Author: Mike Frysinger <vapier@gentoo.org>
4063Date: Tue Dec 30 03:15:38 2008 -0500
4064
4065 easylogo: add optional gzip support
4066
4067 Some images can be quite large, so add an option to compress the
4068 image data with gzip in the U-Boot image. Then at runtime, the
4069 board can decompress it with the normal zlib functions.
4070
4071 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4072
4073commit 7e4b9b4f6f43838fad3ad72c029a3d7fc7c7d48c
4074Author: Bryan Wu <bryan.wu@analog.com>
4075Date: Fri Jan 2 20:47:45 2009 -0500
4076
4077 fat: fix unaligned errors
4078
4079 A couple of buffers in the fat code are declared as an array of bytes.
4080 But it is then cast up to a structure with 16bit and 32bit members.
4081 Since GCC assumes structure alignment here, we have to force the
4082 buffers to be aligned according to the structure usage.
4083
4084 Signed-off-by: Bryan Wu <bryan.wu@analog.com>
4085 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4086
4087commit 68f8718df2ed4c2f43031407ccf6cfa81125dddc
4088Author: Brad Bozarth <bflinux@yumbrad.com>
4089Date: Thu Jan 1 22:45:47 2009 -0500
4090
4091 spi flash: fix crash due to spi flash miscommunication
4092
4093 Higher spi flash layers expect to be given back a pointer that was
4094 malloced so that it can free the result, but the lower layers return
4095 a pointer that is in the middle of the malloced memory. Reorder the
4096 members of the lower spi structures so that things work out.
4097
4098 Signed-off-by: Brad Bozarth <bflinux@yumbrad.com>
4099 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4100 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
4101
4102commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c
4103Author: Yuri Tikhonov <yur@emcraft.com>
4104Date: Sat Dec 20 14:54:21 2008 +0300
4105
4106 FPU POST: fix warnings when building with 2.18 binutils
4107
4108 When compile u-boot with the 2.18 binutils the following
4109 warning messages for each object file in post/lib_ppc/fpu/ is
4110 produced at the linking stage:
4111
4112 post/libpost.a(acc1.o) uses hard float, u-boot uses soft-float
4113 ...
4114
4115 This is because of the fact that, in general, the soft-float and
4116 hard-float ABIs are incompatible; the 2.18 binutils do checking
4117 of the Tag_GNU_Power_ABI_FP attribute of the files to be linked, and
4118 produce the worning like above if these are not compatible.
4119
4120 The incompatibility of ABIs is concerned only the float values:
4121 e.g. the soft-float ABI assumes the float argument passing in the
4122 pair of rX registers, and the hard-float ABI assumes passing of
4123 the float argument in the fX register. When we don't pass the float
4124 arguments between the functions compiled with different floatness,
4125 then such an application will work correctly.
4126 This is the case for the FPU POST: u-boot (compiled with soft-float)
4127 doesn't pass to (and doesn't get from) the FPU POST functions any
4128 floats; there are no functions exported from the post/lib_ppc/fpu/
4129 objects which would work with float parameters/returns too. So, we
4130 can reassure the linker not to worry about the difference in ABI
4131 attributes of linking files just by setting the 'soft-float'
4132 attribute for the objects in post/lib_ppc/fpu. And this patch does
4133 this.
4134
4135 Also, to avoid passing both soft- and hard-float options in CFLAGS
4136 when compiling the files from post/lib_ppc/fpu (which is OK, but
4137 looks rather dirty) this patch removes the soft-float string from
4138 CFLAGS in post/lib_ppc/fpu/Makefile.
4139
4140 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
4141
4142commit a7c9310457e85b4598abe5b304108edf11332e2f
4143Author: Peter Tyser <ptyser@xes-inc.com>
4144Date: Wed Dec 17 16:36:22 2008 -0600
4145
4146 Add support for Maxim's DS4510 I2C device
4147
4148 Initial support for the DS4510, a CPU supervisor with
4149 integrated EEPROM, SRAM, and 4 programmable non-volatile
4150 GPIO pins. The CONFIG_DS4510 define enables support
4151 for the device while the CONFIG_CMD_DS4510 define
4152 enables the ds4510 command. The additional
4153 CONFIG_DS4510_INFO, CONFIG_DS4510_MEM, and
4154 CONFIG_DS4510_RST defines add additional sub-commands
4155 to the ds4510 command when defined.
4156
4157 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4158
4159commit b6fc6fd49a84543e1324e1620b9f301ff7c1f27f
4160Author: Dirk Eibach <eibach@gdsys.de>
4161Date: Tue Dec 16 14:51:56 2008 +0100
4162
4163 common: Iteration limit for memory test.
4164
4165 The iteration limit is passed to mtest as a fourth parameter:
4166 [start [end [pattern [iterations]]]]
4167 If no fourth parameter is supplied, there is no iteration limit and the
4168 test will loop forever.
4169
4170 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
4171
4172commit 97cae3a4c68d856374ccc70fd2c5f8714cc94f7d
4173Author: Stefan Roese <sr@denx.de>
4174Date: Mon Dec 15 15:40:12 2008 +0100
4175
4176 serial: Rename driver vcth to vct to support other board variants
4177
4178 Moved driver vcth.c to vct.c to better reflect the VCT board series.
4179 This driver is now used by the VCT platforms:
4180
4181 vct_premium
4182 vct_platinum
4183 vct_platinumsvc
4184
4185 Signed-off-by: Stefan Roese <sr@denx.de>
4186
4187commit 36ede4d63e59c9277ec180b09c39b8bf46425ba2
4188Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4189Date: Fri Dec 12 00:45:27 2008 +0900
4190
4191 nios: Move README.nios_CONFIG_SYS_NIOS_CPU to doc/ dir
4192
4193 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4194
4195commit c3284b030b1cd492b4f46c576aea01bef258599d
4196Author: Peter Korsgaard <jacmet@sunsite.dk>
4197Date: Wed Dec 10 16:24:16 2008 +0100
4198
4199 common/main: support bootdelay=0 for CONFIG_AUTOBOOT_KEYED
4200
4201 Support bootdelay=0 in abortboot for the CONFIG_AUTOBOOT_KEYED case
4202 similar to the CONFIG_ZERO_BOOTDELAY_CHECK support for the
4203 !CONFIG_AUTOBOOT_KEYED case.
4204
4205 Do this by reversing the loop so we do at least one iteration before
4206 checking for timeout.
4207
4208 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
4209
4210commit 94f9279f7bbdc01bbc7cf85aedf9b545943b94c3
4211Author: Niklaus Giger <niklaus.giger@netstal.com>
4212Date: Mon Dec 8 17:24:08 2008 +0100
4213
4214 Added legacy flash ST Micro M29W040B
4215
4216commit 626d07348e5f9f302f4ea182161a89f7362a0488
4217Author: Graeme Russ <graeme.russ@gmail.com>
4218Date: Mon Dec 8 20:04:51 2008 +1100
4219
4220 Fixed off-by-one errors in lib_m68k/interrupts.c
4221
4222 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4223
4224commit a5989c42ae5e295f274a795c426c47819bbdbfda
4225Author: Graeme Russ <graeme.russ@gmail.com>
4226Date: Sun Dec 7 10:29:05 2008 +1100
4227
4228 Removed all references to CONFIG_SYS_RESET_GENERIC
4229
4230 Generic i386 reset - #define made redundant by weak function
4231
4232 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4233
4234commit 2b5360eb2bc0b741ae5cb3c84d35ccdd17667c8a
4235Author: Graeme Russ <graeme.russ@gmail.com>
4236Date: Sun Dec 7 10:29:04 2008 +1100
4237
4238 Remove #ifdef CONFIG_SC520 in source code
4239
4240 CONFIG_SC520 is now used for conditional compile
4241
4242 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4243
4244commit ead056bc206f6b7ee6dc98766678b64635ea20b8
4245Author: Graeme Russ <graeme.russ@gmail.com>
4246Date: Sun Dec 7 10:29:03 2008 +1100
4247
4248 Added MMCR reset functionality
4249
4250 Reset function specific to AMD SC520 microcontroller - Is more of a
4251 'hard reset' that the triple fault.
4252
4253 Requires CONFIG_SYS_RESET_SC520 to be defined in config
4254
4255 I would have liked to add this to a new file (cpu/i386/sc520/reset.c)
4256 but ld requires that a object file in a library arhive MUST contain
4257 at least one function which does not override a weak function (and is
4258 called from outside the object file) in order for that object file to
4259 be extracted from the archive. This would be the only function on the
4260 new file, and hence, will never get linked in.
4261
4262 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4263
4264commit 3f5f18d12d32ee0661bf51dfc55752c005230d6e
4265Author: Graeme Russ <graeme.russ@gmail.com>
4266Date: Sun Dec 7 10:29:02 2008 +1100
4267
4268 Moved generic (triple fault) reset code
4269
4270 Moved from interrupts.c to cpu.c and made into a weak function to
4271 allow vendor specific override
4272
4273 Vendor specific CPU reset (like the AMD SC520 MMCR reset) can now be
4274 added to the vendor specific code without the need to remember to
4275 #undef usage of the generic method and if you forget to include your
4276 custom reset method, you will always get the default.
4277
4278 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4279
4280commit 9933d609020c297788f53f334c8465fa7a99b10c
4281Author: Graeme Russ <graeme.russ@gmail.com>
4282Date: Sun Dec 7 10:29:01 2008 +1100
4283
4284 Moved definition of set_vector() to new header file
4285
4286 This allows for future tidy ups and functionality that will require
4287 set_vector ()
4288
4289 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4290
4291commit 407976185e0dda2c90e89027121a1071b9c77bfb
4292Author: Graeme Russ <graeme.russ@gmail.com>
4293Date: Sun Dec 7 10:29:00 2008 +1100
4294
4295 Moved sc520 specific code into new cpu/i386/sc520 folder
4296
4297 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4298 Signed-off-by: Wolfgang Denk <wd@denx.de>
4299
4300commit 85ffbbd51914925a542d8528be7f072e5ab02157
4301Author: Graeme Russ <graeme.russ@gmail.com>
4302Date: Sun Dec 7 10:28:58 2008 +1100
4303
4304 Renamed cpu/i386/reset.S to resetvec.S
4305
4306 Brings i386 in line with other CPUs with a reset vector and frees up reset.c
4307 for CPU reset functions
4308
4309 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4310
4311commit a3f4c123f569474e80ea012b8db0de46afdb6443
4312Author: Wolfgang Denk <wd@denx.de>
4313Date: Sat Jan 24 01:01:49 2009 +0100
4314
4315 Makefile: keep lists sorted.
4316
4317 Signed-off-by: Wolfgang Denk <wd@denx.de>
4318
4319commit c620c01e96814558470698ed5cab1bf2f504d1b5
4320Author: Graeme Russ <graeme.russ@gmail.com>
4321Date: Sun Dec 7 10:28:57 2008 +1100
4322
4323 Added initial eNET board support
4324
4325 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4326
4327commit 0c0ccf401ee03a5008fc2c19b05a662bce1a1086
4328Author: Gary Jennejohn <garyj@denx.de>
4329Date: Thu Nov 20 11:37:26 2008 +0100
4330
4331 POWERPC 82xx: add the SCC as an HDLC controller
4332
4333 Right now this is only used by keymile.
4334
4335 Signed-off-by: Gary Jennejohn <garyj@denx.de>
4336
4337commit 1e8f4e78ca393b3d8e86bd8055758dd465d9113f
4338Author: Heiko Schocher <hs@denx.de>
4339Date: Thu Nov 20 09:59:09 2008 +0100
4340
4341 powerpc, keymile boards: extract identical config options
4342
4343 This patch extracts the identical config options for the
4344 keymile boards mgcoge, mgsuvd and kmeter1 in a new
4345 common config file keymile-common.h.
4346
4347 Signed-off-by: Heiko Schocher <hs@denx.de>
4348
4349commit 210c8c00aad3328145204adab434bb7d70b06b75
4350Author: Heiko Schocher <hs@denx.de>
4351Date: Fri Nov 21 08:29:40 2008 +0100
4352
4353 powerpc: keymile: Add a check for the PIGGY debug board
4354
4355 Check the presence of the PIGGY on the keymile boards mgcoge,
4356 mgsuvd and kmeter1. If the PIGGY is not present, dont register
4357 this Ethernet device.
4358
4359 Signed-off-by: Heiko Schocher <hs@denx.de>
4360 Acked-by: Ben Warren <biggerbadderben@gmail.com>
4361
4362commit de0443614af4d16675ab436665aeb11ddc9f7214
4363Author: Heiko Schocher <hs@denx.de>
4364Date: Thu Nov 20 09:57:47 2008 +0100
4365
4366 powerpc: 83xx: add support for the kmeter1 board
4367
4368 This patch adds support for the kmeter1 board from Keymile,
4369 based on a Freescale MPC8360 CPU.
4370
4371 - serial console on UART 1
4372 - 256 MB DDR2 RAM
4373 - 64 MB NOR Flash
4374 - Ethernet RMII Mode over UCC4
4375 - PHY SMSC LAN8700
4376
4377 Signed-off-by: Heiko Schocher <hs@denx.de>
4378
4379commit 3feb647f3fd0881382c7a29f4cf280b66473ae0a
4380Author: Sergei Poselenov <sposelenov@emcraft.com>
4381Date: Tue Nov 4 13:51:18 2008 +0100
4382
4383 Add a do_div() wrapper macro, lldiv().
4384
4385 Add a do_div() wrapper, lldiv(). The new inline function doesn't modify
4386 the dividend and returns the result of division, so it is useful
4387 in complex expressions, i.e. "return(a/b)" -> "return(lldiv(a,b))"
4388
4389 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
4390
4391commit 18af1c5f0f7402dc0d6a71b012c68025dd97cf72
4392Author: Kumar Gala <galak@kernel.crashing.org>
4393Date: Fri Jan 23 14:22:14 2009 -0600
4394
4395 85xx: Add a 36-bit physical configuration for MPC8572DS
4396
4397 We move all IO addressed (CCSR, localbus, PCI) above the 4G boundary
4398 to allow for larger memory sizes.
4399
4400 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4401
4402commit c51fc5d53c4560abc4d0a6126c06fc68133d1528
4403Author: Kumar Gala <galak@kernel.crashing.org>
4404Date: Fri Jan 23 14:22:13 2009 -0600
4405
4406 85xx: Handle eLBC difference w/36-bit physical
4407
4408 The eLBC only handles 32-bit physical address in systems with 36-bit
4409 physical. The previos generation of LBC handled 34-bit physical
4410 address in 36-bit systems. Added a new CONFIG option to convey
4411 the difference between the LBC and eLBC.
4412
4413 Also added defines for XAM bits used in LBC for the extended 34-bit
4414 support.
4415
4416 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4417
4418commit 72a9414a8e21e9536822c7353bc08d21ce5ad53d
4419Author: Kumar Gala <galak@kernel.crashing.org>
4420Date: Fri Jan 23 14:22:12 2009 -0600
4421
4422 85xx: Use BR_ADDR macro for NAND chipselects
4423
4424 Use the new BR_ADDR macro to properly setup the address field of the
4425 localbus chipselects used by NAND.
4426
4427 This allows us to deal with 36-bit phys on these boards in the future.
4428
4429 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4430
4431commit 2fc7eb0cfc608c9369001d57a0411af5e6a58f7c
4432Author: Haiying Wang <Haiying.Wang@freescale.com>
4433Date: Thu Jan 15 11:58:35 2009 -0500
4434
4435 Add secondary CPUs processor frequency for e500 core
4436
4437 This patch updates e500 freqProcessor to array based on CONFIG_NUM_CPUS,
4438 and prints each CPU's frequency separately. It also fixes up each CPU's
4439 frequency in "clock-frequency" of fdt blob.
4440
4441 Signed-off-by: James Yang <James.Yang@freescale.com>
4442 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4443
4444commit bf5b1f0c0d28ce062e1d368680632dfb099de692
4445Author: Dave Liu <daveliu@freescale.com>
4446Date: Fri Nov 21 16:31:53 2008 +0800
4447
4448 85xx: enable the auto self refresh for wake up ARP
4449
4450 The wake up ARP feature need use the memory to process
4451 wake up packet, we enable auto self refresh to support it.
4452
4453 Signed-off-by: Dave Liu <daveliu@freescale.com>
4454 Acked-by: Andy Fleming <afleming@freescale.com>
4455
4456commit b4983e16d150ab7d039704c310aacbd2f4dc1e0f
4457Author: Dave Liu <daveliu@freescale.com>
4458Date: Fri Nov 21 16:31:43 2008 +0800
4459
4460 fsl-ddr: use the 1T timing as default configuration
4461
4462 For light loaded system, we use the 1T timing to gain better
4463 memory performance, but for some heavily loaded system,
4464 you have to add the 2T timing options to board files.
4465
4466 Signed-off-by: Dave Liu <daveliu@freescale.com>
4467 Acked-by: Andy Fleming <afleming@freescale.com>
4468
4469commit 22cca7e1cd54590e967c73558b07ffbdccd39504
4470Author: Dave Liu <daveliu@freescale.com>
4471Date: Fri Nov 21 16:31:35 2008 +0800
4472
4473 fsl-ddr: make the self refresh idle threshold configurable
4474
4475 Some 85xx processors have the advanced power management feature,
4476 such as wake up ARP, that needs enable the automatic self refresh.
4477
4478 If the DDR controller pass the SR_IT (self refresh idle threshold)
4479 idle cycles, it will automatically enter self refresh. However,
4480 anytime one transaction is issued to the DDR controller, it will
4481 reset the counter and exit self refresh state.
4482
4483 Signed-off-by: Dave Liu <daveliu@freescale.com>
4484 Acked-by: Andy Fleming <afleming@freescale.com>
4485
4486commit 22ff3d01348e0a2dc369b7efcbac30e4ce86d178
4487Author: Dave Liu <daveliu@freescale.com>
4488Date: Fri Nov 21 16:31:29 2008 +0800
4489
4490 fsl-ddr: clean up the ddr code for DDR3 controller
4491
4492 - The DDR3 controller is expanding the bits for timing config
4493 - Add the DDR3 32-bit bus mode support
4494
4495 Signed-off-by: Dave Liu <daveliu@freescale.com>
4496 Acked-by: Andy Fleming <afleming@freescale.com>
4497
4498commit 80ee3ce6d7fe9441b4352d7cfaf6afc2507b1106
4499Author: Dave Liu <daveliu@freescale.com>
4500Date: Fri Nov 21 16:31:22 2008 +0800
4501
4502 fsl-ddr: update the bit mask for DDR3 controller
4503
4504 According to the latest 8572 UM, the DDR3 controller
4505 is expanding the bit mask, and we use the extend ACTTOPRE
4506 mode when tRAS more than 19 MCLK.
4507
4508 Signed-off-by: Dave Liu <daveliu@freescale.com>
4509
4510commit aca5f018a8386b85469482ed9867e3e29a2437d0
4511Author: Kumar Gala <galak@kernel.crashing.org>
4512Date: Tue Dec 2 16:08:40 2008 -0600
4513
4514 85xx: Introduce CONFIG_SYS_PCI*_IO_VIRT for FSL boards
4515
4516 Introduce a new define to seperate out the virtual address that PCI
4517 IO space is at from the physical address. In most situations these are
4518 mapped 1:1. However any code accessing the bus should use VIRT.
4519
4520 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4521 Acked-by: Andy Fleming <afleming@freescale.com>
4522
4523commit 5af0fdd81c3370c3a51421208fda568bdcbbec23
4524Author: Kumar Gala <galak@kernel.crashing.org>
4525Date: Tue Dec 2 16:08:39 2008 -0600
4526
4527 85xx: Introduce CONFIG_SYS_PCI*_MEM_VIRT for FSL boards
4528
4529 Introduce a new define to seperate out the virtual address that PCI
4530 memory is at from the physical address. In most situations these are
4531 mapped 1:1. However any code accessing the bus should use VIRT.
4532
4533 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4534 Acked-by: Andy Fleming <afleming@freescale.com>
4535
4536commit a6e04c344ad1eefd47a75484441b385da815b8df
4537Author: Kumar Gala <galak@kernel.crashing.org>
4538Date: Tue Dec 2 16:08:38 2008 -0600
4539
4540 85xx: Use CONFIG_SYS_{PCI*,RIO*}_MEM_PHYS for physical address on FSL boards
4541
4542 Use the _MEM_PHYS defines instead of _MEM_BUS for LAW and real address fields
4543 of TLBs. This is what we should have always been using from the start.
4544
4545 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4546 Acked-by: Andy Fleming <afleming@freescale.com>
4547
4548commit 5f91ef6acdbadec33e0192049e2b24a1d9692f1d
4549Author: Kumar Gala <galak@kernel.crashing.org>
4550Date: Tue Dec 2 16:08:37 2008 -0600
4551
4552 85xx: Convert CONFIG_SYS_PCI*_IO_BASE to _IO_BUS for FSL boards
4553
4554 Use CONFIG_SYS_PCI*_IO_BUS for the bus relative address instead
4555 of _IO_BASE so we are more explicit.
4556
4557 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4558
4559commit 10795f42cb94e71bcb262b615084f69dd886399a
4560Author: Kumar Gala <galak@kernel.crashing.org>
4561Date: Tue Dec 2 16:08:36 2008 -0600
4562
4563 85xx: Convert CONFIG_SYS_{PCI*,RIO*}_MEM_BASE to _MEM_BUS for FSL boards
4564
4565 Use CONFIG_SYS_{PCI,RIO}_MEM_BUS for the bus relative address instead
4566 of _MEM_BASE so we are more explicit.
4567
4568 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4569 Acked-by: Andy Fleming <afleming@freescale.com>
4570
4571commit c953ddfd56b3ae3f28910fe3aed6de6968d1c9aa
4572Author: Kumar Gala <galak@kernel.crashing.org>
4573Date: Tue Dec 2 14:19:34 2008 -0600
4574
4575 85xx: separate FLASH BASE virtual from physical address
4576
4577 Added a CONFIG_SYS_FLASH_BASE_PHYS for use as the physical address and
4578 maintain CONFIG_SYS_FLASH_BASE as the virtual address of the flash.
4579
4580 This allows us to deal with 36-bit phys on these boards in the future.
4581
4582 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4583 Acked-by: Andy Fleming <afleming@freescale.com>
4584
4585commit 52b565f5ad23b682489055b187767d8bf1c2e444
4586Author: Kumar Gala <galak@kernel.crashing.org>
4587Date: Tue Dec 2 14:19:33 2008 -0600
4588
4589 85xx: separate PIXIS virtual from physical address
4590
4591 Added a PIXIS_BASE_PHYS for use as the physical address and maintain
4592 PIXIS_BASE as the virtual address of the PIXIS fpga registers.
4593
4594 This allows us to deal with 36-bit phys on these boards in the future.
4595
4596 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4597 Acked-by: Andy Fleming <afleming@freescale.com>
4598
4599commit 30837e5b21d5a742983581ab9ee3fac085311d19
4600Author: Haiying Wang <Haiying.Wang@freescale.com>
4601Date: Tue Nov 11 08:52:09 2008 -0500
4602
4603 Add README file for MPC8572DS board
4604
4605 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
4606 Acked-by: Andy Fleming <afleming@freescale.com>
4607
4608commit 6dadc9195ad642cc662632f4d92f92d3d71e8bf2
4609Author: Mike Frysinger <vapier@gentoo.org>
4610Date: Mon Oct 20 16:15:04 2008 -0400
4611
4612 Blackfin: use common strmhz() in system output
4613
4614 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4615
4616commit 5bb907a4925397789c90d074f4f7e92ce6b39402
4617Author: Ron Madrid <ron_madrid@sbcglobal.net>
4618Date: Thu Jan 22 15:05:24 2009 -0800
4619
4620 mpc83xx: New board support for SIMPC8313
4621
4622 This patch will create a new board, SIMPC8313, from Sheldon Instruments. This
4623 board boots from NAND devices and is configureable for either large or small
4624 page devices. The board supports non-soldered DDR2, one ethernet port, a
4625 Marvell 88E1118 PHY, and PCI host support. The board also has a FPGA connected
4626 to the eLBC providing glue logic to a TMS320C67xx DSP.
4627
4628 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
4629 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4630
4631commit d4bade8d77aa20e2846fa4accff0e7fa7961a134
4632Author: Mike Frysinger <vapier@gentoo.org>
4633Date: Sun Jan 18 19:46:06 2009 -0500
4634
4635 nand: fixup printf modifiers to match types used
4636
4637 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4638 Signed-off-by: Scott Wood <scottwood@freescale.com>
4639
4640commit 389e6620e2271096df3316917528003627db4021
4641Author: Schlaegl Manfred jun <manfred.schlaegl@gmx.at>
4642Date: Tue Jan 20 16:57:55 2009 +0100
4643
4644 nand read.jffs2 (nand_legacy) in common/cmd_nand.c
4645
4646 Error with CONFIG_NAND_LEGACY in common/cmd_nand.c:
4647 With current code "nand read.jffs2s" (read and skip bad blocks) is always interpreted as
4648 "nand read.jffs2" (read and fill bad blocks with 0xff). This is because ".jffs2" is
4649 tested before ".jffs2s" and only the first two characters are compared.
4650
4651 Correction:
4652 Test for ".jffs2s" first and compare the first 7 characters.
4653
4654 Signed-off-by: Scott Wood <scottwood@freescale.com>
4655
4656commit 6c869637fef31e66380f0ea1d49690a2e26ec0d7
4657Author: Wolfgang Grandegger <wg@grandegger.com>
4658Date: Fri Jan 16 18:55:54 2009 +0100
4659
4660 NAND: rename NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS
4661
4662 This patch renames NAND_MAX_CHIPS to CONFIG_SYS_NAND_MAX_CHIPS and
4663 changes the default from 8 to 1 for the legacy and the new MTD
4664 NAND layer. This allows to remove all NAND_MAX_CHIPS definitions
4665 in the board config files because none of the boards use multi
4666 chip support (NAND_MAX_CHIPS > 1) so far. The bamboo and the DU440
4667 define
4668
4669 #define NAND_MAX_CHIPS CONFIG_SYS_MAX_NAND_DEVICE
4670
4671 but that's bogus and did not work anyhow.
4672
4673 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
4674 Signed-off-by: Scott Wood <scottwood@freescale.com>
4675
4676commit c70564e6b1bd08f3230182392238907f3531a87e
4677Author: Dave Liu <daveliu@freescale.com>
4678Date: Tue Dec 2 11:48:51 2008 +0800
4679
4680 NAND: Fix cache and memory inconsistency issue
4681
4682 We load the secondary stage u-boot image from NAND to
4683 system memory by nand_load, but we did not flush d-cache
4684 to memory, nor invalidate i-cache before we jump to RAM.
4685 When the system has cache enabled and the TLB/page attribute
4686 of system memory is cacheable, it will cause issues.
4687
4688 - 83xx family is using the d-cache lock, so all of d-cache
4689 access is cache-inhibited. so you can't see the issue.
4690 - 85xx family is using d-cache, i-cache enable, partial
4691 cache lock. you will see the issue.
4692
4693 This patch fixes the cache issue.
4694
4695 Signed-off-by: Dave Liu <daveliu@freescale.com>
4696 Signed-off-by: Scott Wood <scottwood@freescale.com>
4697
4698commit 50657c273278f74378e1ac39b41d612b92fdffa0
4699Author: Nishanth Menon <menon.nishanth@gmail.com>
4700Date: Sat Dec 13 09:43:06 2008 -0600
4701
4702 NAND: Enable nand lock, unlock feature
4703
4704 Enable nand lock, unlock and status of lock feature.
4705 Not every device and platform requires this, hence,
4706 it is under define for CONFIG_CMD_NAND_LOCK_UNLOCK
4707
4708 Nand unlock and status operate on block boundary instead
4709 of page boundary. Details in:
4710 http://www.micron.com/products/partdetail?part=MT29C2G24MAKLAJG-6%20IT
4711
4712 Intial solution provided by Vikram Pandita <vikram.pandita@ti.com>
4713 Includes preliminary suggestions from Scott Wood
4714
4715 Signed-off-by: Nishanth Menon <nm@ti.com>
4716 Signed-off-by: Scott Wood <scottwood@freescale.com>
4717
4718commit 69fb8be4fc07162fdf6edf04bdc7233b0e9a920e
4719Author: Mike Frysinger <vapier@gentoo.org>
4720Date: Sat Dec 6 02:40:55 2008 -0500
4721
4722 NAND: move board_nand_init to nand.h
4723
4724 Rather than putting the function prototype for board_nand_init() in the one
4725 place where it gets called, put it into nand.h so that every place that also
4726 defines it gets the prototype. Otherwise, errors can go silently unnoticed
4727 such as using the wrong return value (void rather than int) when defining
4728 the function.
4729
4730 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4731 Signed-off-by: Scott Wood <scottwood@freescale.com>
4732
4733commit 1ae39862044ebb1e682234b51f94421e3f871d6a
4734Author: Stefan Roese <sr@denx.de>
4735Date: Tue Dec 2 11:06:47 2008 +0100
4736
4737 OneNAND: Additional sync with 2.6.27
4738
4739 - Add subpage write support
4740 - Add onenand_oob_64/32 ecclayout
4741
4742 This has been missing and without it UBI has some incompatibilies issues
4743 with the current (>= 2.6.27) Linux kernel version. vid_hdr_offset is
4744 placed differently (2048 instead of 512) without this fix.
4745
4746 Signed-off-by: Stefan Roese <sr@denx.de>
4747 Signed-off-by: Scott Wood <scottwood@freescale.com>
4748
4749commit 1714f51a2009baaecf3d4f6e3bd8c4e93a8d3f23
4750Author: Kyungmin Park <kmpark@infradead.org>
4751Date: Thu Nov 13 15:14:33 2008 +0900
4752
4753 Add markbad function
4754
4755 Add missing markbad function
4756 If not, it's hang when it entered the mtd->mark_bad().
4757
4758 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4759
4760commit c438ea175d8d002c1063b7a94b0c0e26668d1ac9
4761Author: Stefan Roese <sr@denx.de>
4762Date: Wed Nov 12 13:47:24 2008 +0100
4763
4764 OneNAND: Bad block aware read/write command support
4765
4766 Update OneNAND command to support bad block awareness.
4767 Also change the OneNAND command style to better match the
4768 NAND version.
4769
4770 Signed-off-by: Stefan Roese <sr@denx.de>
4771 Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
4772
4773commit 8cf11f3aa78673730e9ecbbe4b75213b53f212c8
4774Author: Stefan Roese <sr@denx.de>
4775Date: Tue Nov 11 10:29:09 2008 +0100
4776
4777 OneNAND: Save version_id in onenand_chip struct
4778
4779 The version (ver_id) was not stored in the onenand_chip structure and
4780 because of this the continuous locking scheme could be enabled on some
4781 chips.
4782
4783 Signed-off-by: Stefan Roese <sr@denx.de>
4784
4785commit 4fca3310d611cc0f51d7295ef3557afbdbd91dc3
4786Author: Stefan Roese <sr@denx.de>
4787Date: Tue Nov 11 10:28:53 2008 +0100
4788
4789 OneNAND: Fix compiler warnings
4790
4791 Signed-off-by: Stefan Roese <sr@denx.de>
4792
4793commit 1ac5744e33ee0aa6d6ddab3b99f9e70953156e69
4794Author: Dave Liu <daveliu@freescale.com>
4795Date: Tue Nov 4 14:55:06 2008 +0800
4796
4797 mpc83xx: enable eLBC NAND support for MPC8315ERDB board
4798
4799 Signed-off-by: Dave Liu <daveliu@freescale.com>
4800
4801commit ef0921d6b05aeb9034158f9bef5323d6da9c925e
4802Author: Kyungmin Park <kmpark@infradead.org>
4803Date: Tue Nov 4 09:24:07 2008 +0900
4804
4805 Sync with 2.6.27
4806
4807 Sync with OneNAND kernel codes
4808
4809 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4810
4811commit e7f325be9edeb84bb457301776bbac1f7257dafc
4812Author: Michal Simek <monstr@monstr.eu>
4813Date: Mon Jan 5 13:35:31 2009 +0100
4814
4815 microblaze: Use cache functions (especially cache status)
4816 in systems which are configured without flash
4817
4818commit e9b737deb2c30125362d20e24170617476026e94
4819Author: Michal Simek <monstr@monstr.eu>
4820Date: Mon Jan 5 13:29:32 2009 +0100
4821
4822 microblaze: Add cache flush
4823
4824commit b4f8dda35bfad447b4106828232705b2e878d168
4825Author: Michal Simek <monstr@monstr.eu>
4826Date: Mon Jan 5 13:28:40 2009 +0100
4827
4828 microblaze: Add bootup messages to board.c
4829
4830commit 330e55459bc9983341da6c1d5c7fe00a664436fe
4831Author: Michal Simek <monstr@monstr.eu>
4832Date: Fri Dec 19 13:25:55 2008 +0100
4833
4834 microblaze: Change microblaze-generic config file
4835
4836 Signed-off-by: Michal Simek <monstr@monstr.eu>
4837
4838commit 52a822ed9c37a2ea0ed112a26d8ff5a6cb1c6f10
4839Author: Michal Simek <monstr@monstr.eu>
4840Date: Fri Dec 19 13:14:05 2008 +0100
4841
4842 microblaze: Rename ml401 to microblaze-generic
4843
4844 Signed-off-by: Michal Simek <monstr@monstr.eu>
4845
4846commit 6677876181cc8772bca8a372479a500d160f3993
4847Author: Scott Wood <scottwood@freescale.com>
4848Date: Tue Jan 20 11:56:11 2009 -0600
4849
4850 83xx: Use the proper sequence for updating IMMR.
4851
4852 This ensures that subsequent accesses properly hit the new window.
4853
4854 The dcbi during the NAND loop was accidentally working around this;
4855 it's no longer necessary, as the cache is not enabled.
4856
4857 Reported-by: Suchit Lepcha <Suchit.Lepcha@freescale.com>
4858 Signed-off-by: Scott Wood <scottwood@freescale.com>
4859 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4860
4861commit 8b34557c546e5e9f34ebf83c93413dad973d93df
4862Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4863Date: Thu Jan 8 04:26:19 2009 +0300
4864
4865 mpc83xx: Add PCI-E support for MPC837XEMDS boards
4866
4867 MPC837XEMDS boards can support PCI-E via "PCI-E riser card". The card
4868 provides two PCI-E (x2) ports. Though, only one port can be used in x2
4869 mode. Two ports can function simultaneously in x1 mode.
4870
4871 PCI-E x1/x2 modes can be switched via "pex_x2" environment variable.
4872
4873 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4874 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4875
4876commit 8f11e34b31a7be124a3239653f33af9510502045
4877Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4878Date: Thu Jan 8 04:26:17 2009 +0300
4879
4880 mpc83xx: Add PCI-E support for MPC8315ERDB boards
4881
4882 MPC8315ERDB boards features PCI-E x1 and Mini PCI-E x1 ports. Let's
4883 support them.
4884
4885 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4886 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4887
4888commit fd6646c0b9ebe7e5afc4ae4c78097d9cd317a5e8
4889Author: Anton Vorontsov <avorontsov@ru.mvista.com>
4890Date: Thu Jan 8 04:26:12 2009 +0300
4891
4892 mpc83xx: Add support for MPC83xx PCI-E controllers
4893
4894 This patch adds support for MPC83xx PCI-E controllers in Root Complex
4895 mode.
4896
4897 The patch is based on Tony Li and Dave Liu work[1].
4898
4899 Though unlike the original patch, by default we don't register PCI-E
4900 buses for use in U-Boot, we only configure the controllers for future
4901 use in other OSes (Linux). This is done because we don't have enough
4902 of spare BATs to map all the PCI-E regions.
4903
4904 To actually use PCI-E in U-Boot, users should explicitly define
4905 CONFIG_83XX_GENERIC_PCIE_REGISTER_HOSES symbol in the board file. And
4906 only then U-Boot will able to access PCI-E, but at the cost of disabled
4907 address translation.
4908
4909 [1] http://lists.denx.de/pipermail/u-boot/2008-January/027630.html
4910
4911 Signed-off-by: Tony Li <tony.li@freescale.com>
4912 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
4913 Acked-by: Dave Liu <daveliu@freescale.com>
4914 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4915
4916commit 88ecf55cabd7aea28fe8093720e208f53ccfdcf5
4917Author: Ira Snyder <iws@ovro.caltech.edu>
4918Date: Mon Jan 12 13:33:17 2009 -0800
4919
4920 MPC8349EMDS: do not setup unused PCI clock outputs in PCI agent mode
4921
4922 When running in PCI agent mode, the PCI_CLK_OUT signals are not used, so do
4923 not enable them. See the MPC8349EA Reference Manual, Section 4.4.2
4924 "Clocking in PCI Agent Mode".
4925
4926 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
4927 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4928
4929commit 75f35209f702bb26826855ed8c8e4d108ab5f412
4930Author: Ira Snyder <iws@ovro.caltech.edu>
4931Date: Mon Jan 12 13:32:26 2009 -0800
4932
4933 83xx: PCI agent mode fixes for multi-board systems
4934
4935 When running a system with 2 or more MPC8349EMDS boards in PCI agent mode,
4936 the boards will lock up the PCI bus by scanning against each other.
4937
4938 The boards lock against each other by trying to access the PCI bus before
4939 clearing their configuration lock bit. Both boards end up in a loop,
4940 sending and receiving "Target Not Ready" messages forever.
4941
4942 When running in PCI agent mode, the scanning now takes place after the
4943 boards have cleared their configuration lock bit.
4944
4945 Also, add a missing declaration to the mpc83xx.h header file, fixing a
4946 build warning.
4947
4948 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
4949 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4950
4951commit 455a46915b82896cc2070eb326d075555c2bc580
4952Author: Ron Madrid <ron_madrid@sbcglobal.net>
4953Date: Fri Dec 12 13:12:45 2008 -0800
4954
4955 mpc83xx: Size optimization of start.S
4956
4957 Currently there are in excess of 100 bytes located at the beginning of the image
4958 built by start.S that are not being utilized. This patch moves a few functions
4959 into this part of the image. This will create a greater number of *available*
4960 bytes that can be used by board specific code in NAND builds and will decrease
4961 the size of the assembled code in other builds.
4962
4963 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
4964 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
4965
4966commit 72d15e705bc3983884105cb7755c7ba80e74a0a5
4967Author: Wolfgang Denk <wd@denx.de>
4968Date: Wed Jan 21 23:08:12 2009 +0100
4969
4970 Prepare v2009.01
4971
4972 Signed-off-by: Wolfgang Denk <wd@denx.de>
4973
72d15e70
WD
4974commit 635e5f8fc82365e6e9734b3132bc95135a6de679
4975Author: Wolfgang Denk <wd@denx.de>
4976Date: Sun Jan 18 21:37:48 2009 +0100
4977
4978 Prepare 2009.01-rc3
4979
4980 Update CHANGELOG
4981
4982 Signed-off-by: Wolfgang Denk <wd@denx.de>
4983
635e5f8f
WD
4984commit 4cda437898f7873752f0201757cd33f12196ce87
4985Author: Mike Frysinger <vapier@gentoo.org>
4986Date: Sat Jan 17 13:32:42 2009 -0500
4987
4988 build system: treat all Darwin's alike
4989
4990 The x86 based version of Darwin behaves the same quirky way as the powerpc
4991 Darwin, so only check HOSTOS when setting up Darwin workarounds.
4992
4993 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
4994
4995commit c088a108c75db565e07292fd668dfa5491e85bc2
4996Author: Peter Korsgaard <jacmet@sunsite.dk>
4997Date: Wed Jan 14 13:52:24 2009 +0100
4998
4999 fdt_resize(): fix actualsize calculations with unaligned blobs
5000
5001 The code in fdt_resize() to extend the fdt size to end on a page boundary
5002 is wrong for fdt's not located at an address aligned on a page boundary.
5003 What's even worse, the code would make actualsize shrink rather than grow
5004 if (blob & 0xfff) was bigger than the amount of padding added by ALIGN(),
5005 causing fdt_add_mem_rsv to fail.
5006
5007 Fix it by aligning end address (blob + size) to a page boundary instead.
5008 For aligned fdt's this is equivalent to what we had before.
5009
5010 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
5011
5012commit fadad1573fb16c90025f08a2861d6047d093cba7
5013Author: Mike Frysinger <vapier@gentoo.org>
5014Date: Fri Jan 9 04:38:17 2009 -0500
5015
5016 ncb: use socklen_t
5017
5018 The recvfrom() function takes a socklen_t, not an int.
5019
5020 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5021
5022commit fc83c9273cec6e6e542f4a0ea3b653b7d0513ffa
5023Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5024Date: Sun Jan 11 16:35:16 2009 +0100
5025
5026 sh: serial: use readx/writex accessors
5027
5028 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5029 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5030
5031commit 9e1fa628bdb64745811cdd26c4f953846c076180
5032Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5033Date: Sun Jan 11 16:35:15 2009 +0100
5034
5035 sh: serial: coding style cleanup
5036
5037 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5038 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5039
5040commit c9935c992575922b7ef13eec0656ed8665d324e3
5041Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5042Date: Sun Jan 11 17:48:56 2009 +0900
5043
5044 sh: Fix compile error on lowlevel_init file
5045
5046 lowlevel_init of SH was corrected to use the write/readXX macro.
5047 However, there was a problem that was not able to be compiled partially.
5048 This patch corrected this.
5049
5050 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5051
5052commit a5b04d00bfeb940c62232972ce644d50b45797f9
5053Author: Kieran Bingham <kieranbingham@gmail.com>
5054Date: Tue Dec 30 01:16:03 2008 +0000
5055
5056 sh: Fix up rsk7203 target for out of tree build
5057
5058 Fix up rsk7203 target to build successfully using out-of-tree build.
5059
5060 Signed-off-by: Kieran Bingham <kbingham@mpc-data.co.uk>
5061 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5062
5063commit f7e78f3b74aae9caca2997bad865a72338326c0a
5064Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5065Date: Sat Dec 20 19:29:49 2008 +0100
5066
5067 sh: use write{8,16,32} in all lowlevel_init
5068
5069 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5070 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5071
5072commit e4430779623af500de1cee7892c379f07ef59813
5073Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5074Date: Sat Dec 20 19:29:48 2008 +0100
5075
5076 sh: lowlevel_init coding style cleanup
5077
5078 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5079 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5080
5081commit 85cb052ee41675ca361e6a4c69455dc715c8f2d9
5082Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5083Date: Sat Dec 20 15:27:45 2008 +0100
5084
5085 sh: update sh2/sh2a timer coding style
5086
5087 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5088 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5089
5090commit 1e15ff999322e81af4c0c0c548908f38944ba39c
5091Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5092Date: Sat Dec 20 15:25:22 2008 +0100
5093
5094 sh: update sh timer coding style
5095
5096 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5097 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5098
5099commit 0e3ece33801e377be67ffa29f083421ad820f28b
5100Author: Wolfgang Denk <wd@denx.de>
5101Date: Wed Jan 14 23:26:05 2009 +0100
5102
5103 Prepare 2009.01-rc2
5104
5105 Update CHANGELOG.
5106
5107 Signed-off-by: Wolfgang Denk <wd@denx.de>
5108
0e3ece33
WD
5109commit e92c9a860e44c14513c8909ce4299e253a775eeb
5110Author: Wolfgang Denk <wd@denx.de>
5111Date: Wed Jan 14 22:35:30 2009 +0100
5112
5113 cpu/mpc824x/Makefile: fix warning with parallel builds
5114
5115 Parallel builds would occasionally issue this build warning:
5116
5117 ln: creating symbolic link `cpu/mpc824x/bedbug_603e.c': File exists
5118
5119 Use "ln -sf" as quick work around for the issue.
5120
5121 Signed-off-by: Wolfgang Denk <wd@denx.de>
5122
635e5f8f
WD
5123commit 3ba605d4beec649438539e7df97b5fedb26592fb
5124Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5125Date: Fri Jan 2 12:18:49 2009 +0100
5126
5127 ppc4xx: Add loadpci command to esd's CPCI4052 and CPCI405AB boards
5128
5129 This patch adds esd's loadpci BSP command to CPCI4052 and
5130 CPCI405AB board. This requires CONFIG_CMD_BSP and CONFIG_PRAM.
5131
5132 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5133 Signed-off-by: Stefan Roese <sr@denx.de>
5134
5135commit 600fe46fb3dab7f07604f9009904f31584415114
5136Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5137Date: Fri Jan 2 12:18:12 2009 +0100
5138
5139 ppc4xx: Disable pci node in device tree on CPCI405 pci adapters
5140
5141 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5142 Signed-off-by: Stefan Roese <sr@denx.de>
5143
5144commit f6a1f490d224c600a09137e58d1026d150b8e679
5145Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5146Date: Fri Jan 2 12:17:36 2009 +0100
5147
5148 ppc4xx: Cleanup CPCI405 board code
5149
5150 This patch cleans up CPCI405 board support:
5151 - wrap long lines
5152 - unification of spaces in function calls
5153 - remove dead code
5154
5155 Use correct io accessors on peripherals.
5156
5157 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5158 Signed-off-by: Stefan Roese <sr@denx.de>
5159
5160commit fceebb45a0b97e92f9889861f8c3b9cb885e706f
5161Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5162Date: Fri Jan 2 12:16:35 2009 +0100
5163
5164 ppc4xx: Enable auto RS485 mode on PLU405 boards
5165
5166 This patch turns on the auto RS485 mode in the 2nd external
5167 uart on PLU405 boards. This is a special mode of the used
5168 Exar XR16C2850 uart. Because these boards only have a 485 physical
5169 layer connected it's a good idea to turn it on by default.
5170
5171 Signed-off-by: Matthias Fuchs <mf@esd.eu>
5172 Signed-off-by: Stefan Roese <sr@denx.de>
5173
0e3ece33
WD
5174commit b5f65dfa9aa8e068e62aba4733dc4fd97b1d9bf6
5175Author: Haiying Wang <Haiying.Wang@freescale.com>
5176Date: Tue Jan 13 16:29:28 2009 -0500
5177
5178 Some changes of TLB entry setting for MPC8572DS
5179
5180 - Move the TLB entry of PIXIS_BASE from TLB0 to TLB1[8], because in CAMP mode,
5181 all the TLB0 entries will be invalidated after cpu1 brings up kernel, thus cpu0
5182 can not access PIXIS_BASE anymore (any access will cause DataTLBError exception)
5183
5184 - Set CONFIG_SYS_DDR_TLB_START to 9 for MPC8572DS board.
5185
5186 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5187
5188commit 950264317eb9594b2b5ee2fb65206200a1c6007a
5189Author: Haiying Wang <Haiying.Wang@freescale.com>
5190Date: Tue Jan 13 16:29:22 2009 -0500
5191
5192 Change DDR tlb start entry to CONFIG param for 85xx
5193
5194 So that we can locate the DDR tlb start entry to the value other than 8. By
5195 default, it is still 8.
5196
5197 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5198
5199commit 6d3a10f73ece7ffb736890c10e023222612a4aa0
5200Author: Roy Zang <tie-fei.zang@freescale.com>
5201Date: Fri Jan 9 16:02:35 2009 +0800
5202
5203 Change PCIE1&2 deciide logic on MPC8544DS board more readable
5204
5205 The IO port selection for MPC8544DS board:
5206 Port cfg_io_ports
5207 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
5208 PCIE2 0x4, 0x5, 0x6, 0x7
5209 PCIE3 0x6, 0x7
5210 This patch changes the PCIE12 and PCIE2 logic more readable.
5211 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
5212
5213commit 028e116811d28a031660f1ad9e20ac1293b3c5c7
5214Author: Roy Zang <tie-fei.zang@freescale.com>
5215Date: Fri Jan 9 16:01:52 2009 +0800
5216
5217 PCIE2 and PCIE3 are decided by corresponing bit in devdisr instead of PCIE1 bit
5218
5219 PCIE2 and PCIE3 should be decided by corresponing bit in devdisr instead of
5220 PCIE1 bit.
5221 On MPC8572DS board, PCIE refers to PCIE1.
5222 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
5223
5224commit 9afc2ef0307aecf52482df67c31b75d5f9e66b47
5225Author: Roy Zang <tie-fei.zang@freescale.com>
5226Date: Fri Jan 9 16:00:55 2009 +0800
5227
5228 Fix IO port selection issue on MPC8544DS and MPC8572DS boards
5229
5230 The IO port selection is not correct on MPC8572DS and MPC8544DS board.
5231 This patch fixes this issue.
5232 For MPC8572
5233 Port cfg_io_ports
5234 PCIE1 0x2, 0x3, 0x7, 0xb, 0xc, 0xf
5235 PCIE2 0x3, 0x7
5236 PCIE3 0x7
5237
5238 For MPC8544
5239 Port cfg_io_ports
5240 PCIE1 0x2, 0x3, 0x4, 0x5, 0x6, 0x7
5241 PCIE2 0x4, 0x5, 0x6, 0x7
5242 PCIE3 0x6, 0x7
5243 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
5244
5245commit 3e3fffe3baf3befde287fec1fcbfe55052fb8946
5246Author: Becky Bruce <beckyb@kernel.crashing.org>
5247Date: Wed Dec 3 22:36:44 2008 -0600
5248
5249 mpc8610hpcd: Fix PCI mapping concepts
5250
5251 Rename _BASE to _BUS, as it's actually a PCI bus address,
5252 separate virtual and physical addresses into _VIRT and _PHYS,
5253 and use each appopriately. This makes the code easier to read
5254 and understand, and facilitates mapping changes going forward.
5255
5256 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
5257
5258commit 79e436cad3b4a7db88408c3f05175028f30d700d
5259Author: Becky Bruce <beckyb@kernel.crashing.org>
5260Date: Wed Dec 3 22:36:26 2008 -0600
5261
5262 sbc8641d: Fix PCI mapping concepts
5263
5264 Rename _BASE to _BUS, as it's actually a PCI bus address,
5265 separate virtual and physical addresses into _VIRT and _PHYS,
5266 and use each appopriately. This makes the code easier to read
5267 and understand, and facilitates mapping changes going forward.
5268
5269 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
5270
5271commit a9f3acbcd07da72b5446ce557531a3ed8b8beff0
5272Author: Wolfgang Denk <wd@denx.de>
5273Date: Mon Jan 12 14:50:35 2009 +0100
5274
5275 MPC86xx: fix build warnings
5276
5277 Signed-off-by: Wolfgang Denk <wd@denx.de>
5278
5279commit 032a1c934ef4dc003281f57302b6e693062c1868
5280Author: Mike Frysinger <vapier@gentoo.org>
5281Date: Mon Jan 5 16:09:44 2009 -0500
5282
5283 bf537-stamp/nand: fix board_nand_init prototype
5284
5285 The board_nand_init() function should return an int, not void.
5286
5287 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5288
5289commit 687f952e4119594ab913be11c90f7f018c2a7a79
5290Author: Mike Frysinger <vapier@gentoo.org>
5291Date: Thu Dec 11 07:04:48 2008 -0500
5292
5293 Blackfin: drop CONFIG_SPI handling in board init
5294
5295 The eeprom SPI init functions are duplicated as the common code already
5296 executes these for us.
5297
5298 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5299
5300commit e7e684b10d73a303902208594c7c3e7e0d753282
5301Author: Mike Frysinger <vapier@gentoo.org>
5302Date: Fri Oct 24 17:51:57 2008 -0400
5303
5304 Blackfin: fix out-of-tree building with ldscripts
5305
5306 Many of the Blackfin board linker scripts are preprocessed, so make sure we
5307 output the linker script into the build tree rather than the source tree.
5308
5309 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5310
5311commit b9eecc342f767b50e1476fbc1aad7d88dd4ce5eb
5312Author: Mike Frysinger <vapier@gentoo.org>
5313Date: Fri Oct 24 17:48:54 2008 -0400
5314
5315 Blackfin: fix linker scripts to work with --gc-sections
5316
5317 Make sure all .text sections get pulled in and the entry point is properly
5318 referenced so they don't get discarded when linking with --gc-sections.
5319
5320 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5321
5322commit 509fc553bc6087a6f705b3bf52f3950d7d1eaa58
5323Author: Mike Frysinger <vapier@gentoo.org>
5324Date: Sat Oct 11 20:45:44 2008 -0400
5325
5326 Blackfin: set proper LDRFLAGS for parallel booting LDRs
5327
5328 In order to boot an LDR out of parallel flash, the ldr utility needs a few
5329 flags to tell it to generate the right header.
5330
5331 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5332
5333commit 3dd9395a0d7ce69a335d0e743c04b9caedd681d3
5334Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5335Date: Tue Jan 6 21:41:59 2009 +0100
5336
5337 at91rm9200: move define from lowlevel_init to header
5338
5339 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5340
5341commit 8a48686fac2030287765f1970ea046bd5734b733
5342Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5343Date: Sat Jan 3 17:22:26 2009 +0100
5344
5345 m501sk: move to the common memory setup
5346
5347 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5348
5349commit d481c80d78f954133c035dae6c7d22de3625795d
5350Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5351Date: Sat Jan 3 17:22:25 2009 +0100
5352
5353 at91rm9200: rename lowlevel init value to CONFIG_SYS_
5354
5355 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5356
5357commit 4e170b16625291aa10d0d9abc3f34e8a5945d157
5358Author: Nicolas Ferre <nicolas.ferre@atmel.com>
5359Date: Tue Jan 6 21:13:14 2009 +0100
5360
5361 at91: add at91sam9xeek board support
5362
5363 At91sam9xe is basically an at91sam9260 with embedded flash. We can manage
5364 it as another entry for at91sam9260 in the Makefile.
5365
5366 Check documentation at :
5367 http://www.atmel.com/dyn/products/product_card.asp?part_id=4263
5368
5369 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
5370 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5371
5372commit 9ffd53db870a7da134f9a1ae76894a6b31237be5
5373Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5374Date: Tue Jan 6 21:15:57 2009 +0100
5375
5376 fix bmp_logo.h make dependencies to allow parallel build
5377
5378 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5379
5380commit e12d9a8fb48d24176efffccc072b445e60a3afe4
5381Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5382Date: Sat Jan 3 17:22:24 2009 +0100
5383
5384 at91: Fix Atmel's at91sam9 boards out of tree build
5385
5386 introduced in commit 89a7a87f084c
5387
5388 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5389
5390commit 0668236bafaa1c11c521652a2facebc74beecbf0
5391Author: Wolfgang Denk <wd@denx.de>
5392Date: Tue Dec 30 22:56:11 2008 +0100
5393
5394 README: update mailing list name and hits to patch submission.
5395
5396 Signed-off-by: Wolfgang Denk <wd@denx.de>
5397
5398commit d9011f9b75561a0bd9254934c2bb2bc799d4f645
5399Author: Peter Tyser <ptyser@xes-inc.com>
5400Date: Tue Dec 23 16:32:01 2008 -0600
5401
5402 85xx: Enable inbound PCI config cycles for X-ES boards cleanup
5403
5404 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5405
5406commit 1f03cbfae221b24ba1341a0a3f62ff01c5c874df
5407Author: Peter Tyser <ptyser@xes-inc.com>
5408Date: Tue Dec 23 16:32:00 2008 -0600
5409
5410 XPedite5200 board support cleanup
5411
5412 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5413
5414commit fea91edee8ae0295e3c30b1ff544df51f4d668e1
5415Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5416Date: Tue Dec 2 21:58:04 2008 +0100
5417
5418 usb_kbd: fix usb_kbd_deregister when DEVICE_DEREGISTER not enable
5419
5420 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5421 Signed-off-by: Remy Böhmer <linux@bohmer.net>
5422
5423commit ada591d2a0ecff5f9bc5ed1ebf310f439c3d0a28
5424Author: Trent Piepho <tpiepho@freescale.com>
5425Date: Wed Dec 3 15:16:37 2008 -0800
5426
5427 mpc8[56]xx: Put localbus clock in sysinfo and gd
5428
5429 Currently MPC85xx and MPC86xx boards just calculate the localbus frequency
5430 and print it out, but don't save it.
5431
5432 This changes where its calculated and stored to be more consistent with the
5433 CPU, CCB, TB, and DDR frequencies and the MPC83xx localbus clock.
5434
5435 The localbus frequency is added to sysinfo and calculated when sysinfo is
5436 set up, in cpu/mpc8[56]xx/speed.c, the same as the other frequencies are.
5437
5438 get_clocks() copies the frequency into the global data, as the other
5439 frequencies are, into a new field that is only enabled for MPC85xx and
5440 MPC86xx.
5441
5442 checkcpu() in cpu/mpc8[56]xx/cpu.c will print out the local bus frequency
5443 from sysinfo, like the other frequencies, instead of calculating it on the
5444 spot.
5445
5446 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
5447 Acked-by: Kumar Gala <galak@kernel.crashing.org>
5448 Acked-by: Jon Loeliger <jdl@freescale.com>
5449
5450commit 9863d6aca11405e1e0d8aba2045d78aeec4d4ee7
5451Author: Trent Piepho <tpiepho@freescale.com>
5452Date: Wed Dec 3 15:16:36 2008 -0800
5453
5454 mpc86xx: Double local bus clock divider
5455
5456 The local bus clock divider should be doubled for both 8610 and 8641.
5457
5458 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
5459 Acked-by: Kumar Gala <galak@kernel.crashing.org>
5460 Acked-by: Jon Loeliger <jdl@freescale.com>
5461
5462commit 446c381e3e16f19857b72ea0d06241267b8b9d58
5463Author: Trent Piepho <tpiepho@freescale.com>
5464Date: Wed Dec 3 15:16:35 2008 -0800
5465
5466 mpc8568: Double local bus clock divider
5467
5468 The clock divider for the MPC8568 local bus should be doubled, like the
5469 other newer MPC85xx chips.
5470
5471 Since there are now more chips with a 2x divider than a 1x, and any new
5472 85xx chips will probably be 2x, invert the sense of the #if so that it
5473 lists the 1x chips instead of the 2x ones.
5474
5475 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
5476 Acked-by: Kumar Gala <galak@kernel.crashing.org>
5477 Acked-by: Jon Loeliger <jdl@freescale.com>
5478
5479commit f51f07eb58fad12de9294ba4ee6c09a0ddeaee03
5480Author: Dave Liu <daveliu@freescale.com>
5481Date: Tue Dec 16 12:09:27 2008 +0800
5482
5483 85xx: Fix the boot window issue
5484
5485 If one custom board is using the 8MB flash, it is set
5486 as FLASH_BASE = 0xef000000, TEXT_BASE = 0xef780000.
5487 The current start.S code will be broken at switch_as.
5488
5489 It is because the TLB1[15] is set as 16MB page size,
5490 EPN = TEXT_BASE & 0xff000000, RPN = 0xff000000.
5491
5492 For the 8MB flash case, the EPN = 0xefxxxxxx,
5493 RPN = 0xffxxxxxx. Assume the virt address of switch_as
5494 is 0xef7ff18c, the real address of the instruction at
5495 switch_as should be 0xff7ff18c. the 0xff7ff18c is out
5496 of the range of the default 8MB boot LAW window
5497 0xff800000 - 0xffffffff.
5498
5499 So when we switch to AS1 address space at switch_as,
5500 the core can't fetch the instruction at switch_as any
5501 more. It will cause broken issue.
5502
5503 Signed-off-by: Dave Liu <daveliu@freescale.com>
5504
5505commit 58da8890d5fbd074746037722a423de9ac408616
5506Author: Paul Gortmaker <paul.gortmaker@windriver.com>
5507Date: Thu Dec 11 15:47:50 2008 -0500
5508
5509 sbc8548: use proper PHY address
5510
5511 The values given for the PHY address were wrong, so the code
5512 read no valid PHY ID, and fell through to the generic PHY
5513 support, which would work on 1000M but would not auto negotiate
5514 down to 100M or 10M.
5515
5516 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
5517
5518commit ad22f9273c6f24fbfa917e867680e9688e0c59c5
5519Author: Paul Gortmaker <paul.gortmaker@windriver.com>
5520Date: Thu Dec 11 15:47:51 2008 -0500
5521
5522 sbc8548: enable command line editing by default.
5523
5524 Lets make things a bit more user friendly. It isn't 1985 anymore.
5525
5526 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
5527
5528commit bd93105fa171184a71ca8b22be03dc2705cfbd3f
5529Author: Paul Gortmaker <paul.gortmaker@windriver.com>
5530Date: Thu Dec 11 15:47:49 2008 -0500
5531
5532 sbc8548: don't enable the 3rd and 4th eTSEC
5533
5534 These interfaces don't have usable connectors on the board, so don't
5535 bother enumerating or configuring them.
5536
5537 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
5538
5539commit 181a3650113883728927928b3ac81ad6dade4b2c
5540Author: Haiying Wang <Haiying.Wang@freescale.com>
5541Date: Wed Dec 3 10:08:19 2008 -0500
5542
5543 Set IVPR to kenrel entry point in second core boot page
5544
5545 Assuming the OSes exception vectors start from the base of kernel address, and
5546 the kernel physical starting address can be relocated to an non-zero address.
5547 This patch enables the second core to have a valid IVPR for debugger before
5548 kernel setting IVPR in CAMP mode. Otherwise, IVPR is 0x0 and it is not a valid
5549 value for second core which runs kernel at different physical address other
5550 than 0x0.
5551
5552 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
5553
5554commit a5d212a263c58cc746481bf1fc878510533ce7d6
5555Author: Trent Piepho <tpiepho@freescale.com>
5556Date: Wed Dec 3 15:16:34 2008 -0800
5557
5558 mpc8xxx: LCRR[CLKDIV] is sometimes five bits
5559
5560 On newer CPUs, 8536, 8572, and 8610, the CLKDIV field of LCRR is five bits
5561 instead of four.
5562
5563 In order to avoid an ifdef, LCRR_CLKDIV is set to 0x1f on all systems. It
5564 should be safe as the fifth bit was defined as reserved and set to 0.
5565
5566 Code that was using a hard coded 0x0f is changed to use LCRR_CLKDIV.
5567
5568 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
5569 Acked-by: Kumar Gala <galak@kernel.crashing.org>
5570 Acked-by: Jon Loeliger <jdl@freescale.com>
5571
5572commit 58ec4866ed916c7e422f5107bb27b0822084728e
5573Author: Trent Piepho <tpiepho@freescale.com>
5574Date: Wed Dec 3 15:16:38 2008 -0800
5575
5576 mpc8[56]xx: Put localbus clock in device tree
5577
5578 Export the localbus frequency in the device tree, the same way the CPU, TB,
5579 CCB, and various other frequencies are exported in their respective device
5580 tree nodes.
5581
5582 Some localbus devices need this information to be programed correctly, so
5583 it makes sense to export it along with the other frequencies.
5584
5585 Unfortunately, when someone wrote the localbus dts bindings, they didn't
5586 bother to define what the "compatible" property should be. So it seems no
5587 one was quite sure what to put in their dts files.
5588
5589 Based on current existing dts files in the kernel source, I've used
5590 "fsl,pq3-localbus" and "fsl,elbc" for MPC85xx, which are used by almost all
5591 of the 85xx devices, and are looked for by the Linux code. The eLBC is
5592 apparently not entirely backward compatible with the pq3 LBC and so eLBC
5593 equipped platforms like 8572 won't use pq3-localbus.
5594
5595 For MPC86xx, I've used "fsl,elbc" which is used by some of the 86xx systems
5596 and is also looked for by the Linux code. On MPC8641, I've also used
5597 "fsl,mpc8641-localbus" as it is also commonly used in dts files, some of
5598 which don't use "fsl,elbc" or any other acceptable name to match on.
5599
5600 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
5601 Acked-by: Kumar Gala <galak@kernel.crashing.org>
5602 Acked-by: Jon Loeliger <jdl@freescale.com>
5603
5604commit 9d94aff699eed38b286814fcbb335f3eb8516a0e
5605Author: Kumar Gala <galak@kernel.crashing.org>
5606Date: Tue Dec 16 14:59:22 2008 -0600
5607
5608 NAND FSL elbc: Use virt_to_phys to determine which bank is in use
5609
5610 The current code that determines which bank/chipselect is used for a
5611 given NAND instance only worked for 32-bit addresses and assumed
5612 a 1:1 mapping. This breaks in 36-bit physical configs.
5613
5614 The proper way to handle this is to use the virt_to_phys() and
5615 BR_PHYS_ADDR() routinues to match the 34-bit lbc bus address
5616 with the the virtual address the NAND code uses.
5617
5618 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5619 Acked-by: Scott Wood <scottwood@freescale.com>
5620
5621commit 77c8115b1f1871811633eae77a5a700fac1f0e50
5622Author: Kumar Gala <galak@kernel.crashing.org>
5623Date: Tue Dec 16 14:59:21 2008 -0600
5624
5625 ppc: Use addrmap in virt_to_phys and map_physmem.
5626
5627 If we have addr map support enabled use the mapping functions to
5628 implement virt_to_phys() and map_physmem().
5629
5630 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5631
5632commit ecf5b98c7a6a2e2256dfddd48fab26678dcd6b90
5633Author: Kumar Gala <galak@kernel.crashing.org>
5634Date: Tue Dec 16 14:59:20 2008 -0600
5635
5636 85xx: Add support to populate addr map based on TLB settings
5637
5638 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5639
5640commit 78bbc5ce151c5a484bb51bf1866b4a993ffc16ec
5641Author: Peter Tyser <ptyser@xes-inc.com>
5642Date: Mon Dec 1 13:47:13 2008 -0600
5643
5644 XPedite5200 board support
5645
5646 Initial support for Extreme Engineering Solutions XPedite5200 -
5647 a MPC8548-based PMC single board computer.
5648
5649 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5650
5651commit 487dcb4fb89be0992bc06ec1341090017bd9cf2f
5652Author: Peter Tyser <ptyser@xes-inc.com>
5653Date: Wed Oct 29 12:39:27 2008 -0500
5654
5655 85xx: Enable inbound PCI config cycles for X-ES boards
5656
5657 Update X-ES Freescale boards to allow inbound PCI configuration
5658 cycles when configured as agent/endpoint.
5659
5660 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5661
5662commit ccf0fdd02b97323f8caae18d06cc9daeac2f192f
5663Author: Peter Tyser <ptyser@xes-inc.com>
5664Date: Wed Dec 17 16:36:23 2008 -0600
5665
5666 XPedite5370 board support
5667
5668 Initial support for Extreme Engineering Solutions XPedite5370 -
5669 a MPC8572-based 3U VPX single board computer with a PMC/XMC
5670 site.
5671
5672 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5673
5674commit e92739d34e2d6b6aca93b2598248210710897ce8
5675Author: Peter Tyser <ptyser@xes-inc.com>
5676Date: Wed Dec 17 16:36:21 2008 -0600
5677
5678 Add support for PCA953x I2C gpio devices
5679
5680 Initial support for NXP's 4 and 8 bit I2C gpio expanders
5681 (eg pca9537, pca9557, etc). The CONFIG_PCA953X define
5682 enables support for the devices while the CONFIG_CMD_PCA953X
5683 define enables the pca953x command. The CONFIG_CMD_PCA953X_INFO
5684 define enables an 'info' sub-command which provides summary
5685 information for the given pca953x device.
5686
5687 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5688
5689commit 7a8979591171676417ab36852d8811a8c46accd8
5690Author: Peter Tyser <ptyser@xes-inc.com>
5691Date: Wed Oct 29 12:39:26 2008 -0500
5692
5693 pci/fsl_pci_init: Enable inbound PCI config cycles
5694
5695 Add fsl_pci_config_unlock() function to enable a
5696 PCI/PCIe interface configured in agent/endpoint mode to
5697 respond to inbound PCI configuration cycles.
5698
5699 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5700
6450a848
WD
5701commit 92c78a3bbcb2ce508b4bf1c4a1e0940406a024bb
5702Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5703Date: Wed Dec 17 16:43:18 2008 +0100
5704
5705 avr32: Remove second definition of virt_to_phys()
5706
5707 The second definition introduced by 65e43a1063 conflicts with the
5708 existing one.
5709
5710 Also, convert the existing definition to use phys_addr_t. The volatile
5711 qualifier is still needed due to brain damage elsewhere.
5712
5713 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5714
0e3ece33
WD
5715commit b616f2b545f73757669b37386f0b37bb61fc6797
5716Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5717Date: Mon Sep 8 22:27:18 2008 +0200
5718
5719 MIPS: qemu_mips: update doc to generate and to use qemu flash, ide file
5720
5721 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5722 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
5723
5724commit 16cdf816779f5b602a9b3b4d2ea4dea05095c35b
5725Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5726Date: Tue Dec 16 22:10:31 2008 +0100
5727
5728 MIPS: qemu_mips: update doc to use all disk and boot linux kernel
5729
5730 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5731 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
5732
5733commit 13095b2f07dacb1f863772266c1789d47a523a8a
5734Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5735Date: Tue Dec 16 22:10:30 2008 +0100
5736
5737 MIPS: qemu_mips: move env storage just after u-boot
5738
5739 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5740 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
5741
5742commit aced78d852d0b009e8aaa1445af8cb40861ee549
5743Author: Wolfgang Denk <wd@denx.de>
5744Date: Tue Dec 16 23:48:27 2008 +0100
5745
5746 Prepare 2009.01-rc1
5747
5748 Signed-off-by: Wolfgang Denk <wd@denx.de>
5749
aced78d8
WD
5750commit 9e2a79b4c585ad31138fb90b68fd0234d64a8da8
5751Author: Wolfgang Denk <wd@denx.de>
5752Date: Tue Dec 16 23:13:46 2008 +0100
5753
5754 include/configs/at91cap9adk.h: fix typo.
5755
5756 Signed-off-by: Wolfgang Denk <wd@denx.de>
5757
5758commit 45ca04f2377361593151d2d4da51f8ba4832d233
5759Author: Wolfgang Denk <wd@denx.de>
5760Date: Tue Dec 16 22:32:25 2008 +0100
5761
5762 board/trab/memory.c: Fix compile problems.
5763
5764 Apply changes from commit 44b4dbed to board/trab/memory.c, too.
5765
5766 Actually we'd need a major cleanup here - as it turns out,
5767 board/trab/memory.c is more or less a verbatim copy of
5768 post/drivers/memory.c ... but then, trab is EOL anyway,r
5769 so this is not worth the effort.
5770
5771 Signed-off-by: Wolfgang Denk <wd@denx.de>
5772
0e3ece33
WD
5773commit ff49ea8977b56916edd5b1766d9939010e30b181
5774Author: Scott Wood <scottwood@freescale.com>
5775Date: Tue Dec 16 14:24:16 2008 -0600
5776
5777 NAND: Mark the BBT as scanned prior to calling scan_bbt.
5778
5779 Otherwise, recursion can occur if scan_bbt does not find a bad block
5780 table, and tries to write one, and the attempt to erase the BBT area
5781 causes a bad block check.
5782
5783 Signed-off-by: Scott Wood <scottwood@freescale.com>
5784
aced78d8
WD
5785commit 584eedab66d0828f2d571a24b10526c4e65f547b
5786Author: Ilya Yanok <yanok@emcraft.com>
5787Date: Thu Dec 11 05:51:57 2008 +0300
5788
5789 jffs2: include <linux/mtd/compat.h> instead of defining own min_t
5790
5791 Include <linux/mtd/compat.h> header for min_t definition instead of
5792 providing our own one. Removes warnings in case of OneNAND support
5793 enabled.
5794
5795 Although I thinks it's a bit silly to include <linux/mtd/compat.h>
5796 just for min_t...
5797
5798 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
5799 Acked-by: Stefan Roese <sr@denx.de>
5800
5801commit b1ffecec37b57a59c139042267faac458e5324e9
5802Author: Becky Bruce <beckyb@kernel.crashing.org>
5803Date: Wed Dec 3 23:04:37 2008 -0600
5804
5805 powerpc: fix io.h build warning with CONFIG_PHYS_64BIT
5806
5807 Casting a pointer to a phys_addr_t when it's an unsigned long long
5808 on a 32-bit system without first casting to a non-pointer type
5809 generates a compiler warning. Fix this.
5810
5811 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
5812
5813commit 6cdadcb3f1b6eac4a1c4256acaa1438413f95351
5814Author: Wolfgang Denk <wd@denx.de>
5815Date: Tue Dec 16 16:22:50 2008 +0100
5816
5817 trab: make trab_fkt standalone code independent of libgcc
5818
5819 Use our own local functions in lib_arm/ instead.
5820
5821 Signed-off-by: Wolfgang Denk <wd@denx.de>
5822
5823commit aa1bcca3d2e22af4dea9f02132f9b56a30378ded
5824Author: Wolfgang Denk <wd@denx.de>
5825Date: Tue Dec 16 14:44:06 2008 +0100
5826
5827 post/Makefile: fix dependency problem with parallel builds
5828
5829 Parallel builds (using "make -jN") would occasionally fail with error
5830 messages like
5831 ppc_4xxFP-objdump: string.o: File format not recognized
5832 or
5833 post/libpost.a(cpu.o): In function `cpu_post_test':
5834 /home/wd/git/u-boot/work/post/lib_ppc/cpu.c:130: undefined reference to `cpu_post_test_string'
5835 or similar. We now make sure to run the 'postdeps" step before
5836 attempting to build the specific POST libraries.
5837
5838 Signed-off-by: Wolfgang Denk <wd@denx.de>
5839
5840commit 4a0f7538c5c0805fd9a791967bbabacc41deadd9
5841Author: Wolfgang Denk <wd@denx.de>
5842Date: Tue Dec 16 14:41:02 2008 +0100
5843
5844 Makefile: fix dependency problem with parallel builds
5845
5846 Parallel builds (using "make -jN") would occasionally fail with error
5847 messages like
5848 include/autoconf.mk:212: *** missing separator. Stop.
5849 Line numbers and affected boards were changing. Obviously some
5850 Makefiles included autoconf.mk while it was still being written to.
5851 As a fix, we now write to a temporary file first and then rename it,
5852 so that it is really ready to use as soon as it appears.
5853
5854 Signed-off-by: Wolfgang Denk <wd@denx.de>
5855
5856commit 455ae7e87f67c44e6aea68865c83acadd3fcd36c
5857Author: Wolfgang Denk <wd@denx.de>
5858Date: Tue Dec 16 01:02:17 2008 +0100
5859
5860 Coding style cleanup, update CHANGELOG.
5861
5862 Signed-off-by: Wolfgang Denk <wd@denx.de>
5863
455ae7e8
WD
5864commit 84bc72d90c505fec3ef4b693995407a0bd4064e5
5865Author: Mike Frysinger <vapier@gentoo.org>
5866Date: Thu Dec 11 18:39:08 2008 -0500
5867
5868 spi/stmicro: fix debug() display of cmd
5869
5870 The stmicro_wait_ready() func tries to show the actual opcode that was sent
5871 to the device, but instead it displays the array pointer. Fix it to pull
5872 out the opcode from the start of the array.
5873
5874 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5875
5876commit 5b3375ac8c36c29c87abb132fede0509eb21e5c9
5877Author: Mike Frysinger <vapier@gentoo.org>
5878Date: Thu Dec 11 06:23:37 2008 -0500
5879
5880 env_sf: support embedded environments
5881
5882 If both CONFIG_ENV_SECT_SIZE and CONFIG_ENV_SIZE are defined, and the sect
5883 size is larger than the env size, then it means the env is embedded in a
5884 block. So we have to save/restore the part of the sector which is not the
5885 environment. Previously, saving the environment in SPI flash in this
5886 setup would probably brick the board as the rest of the sector tends to
5887 contain actual U-Boot data/code.
5888
5889 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
5890 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
5891
5892commit ecf5f077c8e77454f532eaac3e3afb7cfc48c62d
5893Author: Timur Tabi <timur@freescale.com>
5894Date: Wed Dec 3 11:28:30 2008 -0600
5895
5896 i2c: merge all i2c_reg_read() and i2c_reg_write() into inline functions
5897
5898 All implementations of the functions i2c_reg_read() and
5899 i2c_reg_write() are identical. We can save space and simplify the
5900 code by converting these functions into inlines and putting them in
5901 i2c.h.
5902
5903 Signed-off-by: Timur Tabi <timur@freescale.com>
5904 Acked-By: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5905
5906commit e39cd81c44740d7355d277ed3d38536cbe1e003d
5907Author: Dave Liu <daveliu@freescale.com>
5908Date: Fri Dec 5 15:36:14 2008 +0800
5909
5910 lib_ppc: rework the flush_cache
5911
5912 - It is possible to miss flush/invalidate the last
5913 cache line, we fix it at here.
5914 - add the volatile and memory clobber.
5915
5916 They are pointed by Scott Wood.
5917
5918 Signed-off-by: Dave Liu <daveliu@freescale.com>
5919
5920commit 63240ba88cd6a220057a0f28e5bf97f5b17ac84b
5921Author: Kumar Gala <galak@kernel.crashing.org>
5922Date: Sat Dec 13 17:20:28 2008 -0600
5923
5924 Introduce addr_map library
5925
5926 Add a library that helps in translating between virtual and physical
5927 addresses. This library can be useful as a simple means to implement
5928 map_physmem() and virt_to_phys() for platforms that need functionality
5929 beyond the simple 1:1 mapping.
5930
5931 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5932
5933commit 65e43a10631537dcb92c302d36301a12308216c3
5934Author: Kumar Gala <galak@kernel.crashing.org>
5935Date: Sat Dec 13 17:20:27 2008 -0600
5936
5937 Introduce virt_to_phys()
5938
5939 virt_to_phys() returns the physical address given a virtual. In most
5940 cases this will be just the input value as the vast majority of
5941 systems run in a 1:1 mode.
5942
5943 However in systems that are not running this way it should report the
5944 physical address or ~0 if no mapping exists for the given virtual
5945 address.
5946
5947 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
5948
5949commit 45845301af3de8675c1f7bbc815c6de35452605a
5950Author: Yuri Tikhonov <yur@emcraft.com>
5951Date: Sun Dec 7 22:12:50 2008 +0100
5952
5953 POST Make: fix the sub-dir dependencies missing.
5954
5955 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
5956
5957commit 22525779cb51f1bbe4e96fea7b778de1935a5a69
5958Author: Martin Michlmayr <tbm@cyrius.com>
5959Date: Wed Aug 6 14:44:05 2008 +0300
5960
5961 Fix a typo in fw_env.config
5962
5963 Reported-by: Martin Michlmayr <tbm@cyrius.com>
5964 Signed-off-by: Wolfgang Denk <wd@denx.de>
5965
5966commit ba490b7761c62b549c222a9723e532dc801a3899
5967Author: Peter Tyser <ptyser@xes-inc.com>
5968Date: Mon Dec 1 16:22:45 2008 -0600
5969
5970 Remove unused CONFIG_ADDR_STREAMING defines
5971
5972 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5973
5974commit d16da93430520d3e46c1ab52eedacf36ab7a2311
5975Author: Peter Tyser <ptyser@xes-inc.com>
5976Date: Mon Nov 24 11:54:47 2008 -0600
5977
5978 cmd_mem: Remove unused variable
5979
5980 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
5981
5982commit 3aed3aa2c128ce9fb39ca3f4e9385a7499e93dbf
5983Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5984Date: Sun Dec 14 10:29:39 2008 +0100
5985
5986 Fix new found CFG_
5987
5988 Also fix some minor typos.
5989
5990 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5991 Signed-off-by: Wolfgang Denk <wd@denx.de>
5992
5993commit 0e0c862efe7279e9609db74d758cd1b84c6c7209
5994Author: Sergei Poselenov <sposelenov@emcraft.com>
5995Date: Fri Sep 19 12:07:34 2008 +0200
5996
5997 Remove compiler warning: target CPU does not support interworking
5998
5999 This warning is issued by modern ARM-EABI GCC on non-thumb targets.
6000
6001 Signed-off-by: Vladimir Panfilov <pvr@emcraft.com>
6002 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
6003
6004commit cd6734510a9ff0f41c4a73567d4080ea0033d2c1
6005Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6006Date: Mon Nov 24 13:33:51 2008 +0100
6007
6008 Fix FIT and FDT support to have CONFIG_OF_LIBFDT and CONFIG_FIT independent
6009
6010 FDT support is used for both FIT style images and for architectures
6011 that can pass a fdt blob to an OS (ppc, m68k, sparc).
6012
6013 For other architectures and boards which do not pass a fdt blob to an
6014 OS but want to use the new uImage format, we just need FIT support.
6015
6016 Now we can have the 4 following configurations :
6017
6018 1) FIT only CONFIG_FIT
6019 2) fdt blob only CONFIG_OF_LIBFDT
6020 3) both CONFIG_OF_LIBFDT & CONFIG_FIT
6021 4) none none
6022
6023 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6024
6025commit 19ef4f7a6ef3b725aa9fe4b4f5fb676a84160172
6026Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6027Date: Wed Dec 10 15:13:32 2008 +0100
6028
6029 ppc4xx: Disable EEPROM write access on PMC440 boards
6030
6031 This patch disables EEPROM wrtie access by default on PMC440 board.
6032
6033 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6034
6035commit 5b67a1439a73ba6c34007d9ff60a2c6aa90265df
6036Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6037Date: Wed Dec 10 15:12:56 2008 +0100
6038
6039 ppc4xx: Fix Ethernet PHY LED configuration on PMC440 boards
6040
6041 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6042
6043commit 71fa0714fe5134bc8718c38d5261d267e88582ba
6044Author: Stefan Roese <sr@denx.de>
6045Date: Tue Nov 18 16:36:12 2008 +0100
6046
6047 MIPS: Flush data cache upon relocation
6048
6049 This patch now adds a flush to the data cache upon relocation. The
6050 current implementation is missing this. Only a comment states that it
6051 should be done. So let's really do it now.
6052
6053 Signed-off-by: Stefan Roese <sr@denx.de>
6054 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
6055
6056commit 44174343688dba32571a34550dba08971c65fef1
6057Author: Stefan Roese <sr@denx.de>
6058Date: Tue Nov 18 16:36:22 2008 +0100
6059
6060 MIPS: Add CONFIG_SKIP_LOWLEVEL_INIT
6061
6062 This patch adds the CONFIG_SKIP_LOWLEVEL_INIT option to start.S. This
6063 enables support for boards where the lowlevel initialization is
6064 already done when U-Boot runs (e.g. via OnChip ROM).
6065
6066 This will be used in the upcoming VCTH board support.
6067
6068 Signed-off-by: Stefan Roese <sr@denx.de>
6069 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
6070
6071commit db08ecaa6eb8176904b3bae103a85ee8f735dc40
6072Author: Stefan Roese <sr@denx.de>
6073Date: Wed Nov 12 13:18:02 2008 +0100
6074
6075 MIPS: Add board_early_init_f() to init_sequence
6076
6077 This patch adds the board_early_init_f() call to the MIPS init
6078 sequence. A weak dummy implementation is also added which can be
6079 overridden by a board specific version.
6080
6081 This will be used by the upcoming VCTH board support.
6082
6083 Signed-off-by: Stefan Roese <sr@denx.de>
6084 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
6085
6086commit 9d23fc584c4b7b8bb9ecbee48920b1b04b08fa1b
6087Author: Stefan Roese <sr@denx.de>
6088Date: Wed Nov 12 13:18:19 2008 +0100
6089
6090 MIPS: Add onenand_init() to board.c and move nand_init()
6091
6092 This patch adds a call to onenand_init() for OneNAND support and moves
6093 the nand_init() call to an earlier place, so that the environment can
6094 be used from NAND and OneNAND.
6095
6096 Signed-off-by: Stefan Roese <sr@denx.de>
6097 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
6098
6099commit d8bbc51c7ba9b737a20984333d19fe28a3526431
6100Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6101Date: Tue Dec 9 11:32:46 2008 +0900
6102
6103 sh: Update sh2/sh2a timer
6104
6105 Renesas SH2/SH2A timer broken.
6106 This patch fix timer function.
6107
6108 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6109 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6110
6111commit a319f1496210117b73198e3d889ffffaf6825d00
6112Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6113Date: Fri Dec 5 07:27:37 2008 +0100
6114
6115 sh: r2dplus fix register access
6116
6117 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6118 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6119
6120commit 4d4a96055f6917335a89dbdf2e5556fa5ac329f6
6121Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6122Date: Tue Dec 2 07:40:03 2008 +0100
6123
6124 sh: r2dplus/lowlevel_init: coding style fix
6125
6126 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6127 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6128
6129commit c54b9a42d8f5ab5b2a039b3a2e6fde8b427745e5
6130Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6131Date: Tue Nov 25 11:05:19 2008 +0900
6132
6133 sh: Changed value of CACHE_OC_NUM_ENTRIES and CACHE_OC_WAY_SHIFT
6134
6135 SH4 is different a value of CACHE_OC_NUM_ENTRIES and
6136 CACHE_OC_WAY_SHIFT every CPU.
6137 This patch corrects these values.
6138
6139 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6140 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6141
6142commit e9d5f35497885b3c65d494d09a525d443dcccd3b
6143Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6144Date: Thu Nov 20 16:44:42 2008 +0900
6145
6146 sh: Update sh timer function
6147
6148 Change to write/readX function and fix timer problem.
6149
6150 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6151 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6152
6153commit b81786cff476c41e332eaeb679158f6527cd67d4
6154Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6155Date: Tue Nov 4 11:58:58 2008 +0900
6156
6157 sh: Migo-R: Update BSC value
6158
6159 A value of BSC CS4 was wrong, Fixed it.
6160
6161 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6162 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6163
6164commit 5783758fd260a02f44566ad8f29f899565cd0403
6165Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6166Date: Mon Nov 17 16:52:09 2008 +0900
6167
6168 sh: Update ms7722se board config
6169
6170 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6171 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6172
6173commit 15e2697c9f7fb2ba672a1a70f07cd6d9d4e92b51
6174Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6175Date: Mon Nov 17 16:53:09 2008 +0900
6176
6177 sh: Update SuperH serial driver
6178
6179 The address of SCFSR register is wrong at SH7720/SH7721.
6180 This patch fix this.
6181
6182 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6183 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6184
6185commit 9a1d3557dcd47365c12eeab584b822e57d994352
6186Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6187Date: Tue Nov 11 22:20:15 2008 +0100
6188
6189 sh: fix rsk7203 and MigoR out of tree build
6190
6191 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6192 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
6193
6194commit 1951f847f0a851853871b613ad7cf21a5242226c
6195Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6196Date: Wed Dec 10 14:41:25 2008 +0100
6197
6198 ppc4xx: Update TEXT_BASE for CPCI405 boards
6199
6200 This patch fixes building U-Boot for CPCI405 boards.
6201
6202 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
6203 Signed-off-by: Stefan Roese <sr@denx.de>
6204
6205commit 8c92af7b2fbd60ae87379477f93c7ec9441b7452
6206Author: Stefan Roese <sr@denx.de>
6207Date: Tue Dec 9 20:08:01 2008 +0100
6208
6209 ppc4xx: Remove some features from ALPR to fit into 256k again
6210
6211 Signed-off-by: Stefan Roese <sr@denx.de>
6212
6213commit 3b089e4f889a2902449d55e081c886ae607cae89
6214Author: Stefan Roese <sr@denx.de>
6215Date: Wed Dec 10 10:32:59 2008 +0100
6216
6217 UBI: Set ubi_dev.type back to DEV_TYPE_NONE upon failing initialization
6218
6219 With this patch we set the type back to NONE upon failing UBI partition
6220 initialization. Otherwise further calls to the UBI subsystem would try
6221 to really access the non-existing UBI partition.
6222
6223 Thanks to Michael Lawnick for pointing this out.
6224
6225 Signed-off-by: Stefan Roese <sr@denx.de>
6226
6227commit 817329351639a8895cd9b87b33aeff043f3d5a44
6228Author: Stefan Roese <sr@denx.de>
6229Date: Wed Dec 10 10:28:33 2008 +0100
6230
6231 UBI: Return -ENOMEM upon failing malloc
6232
6233 Return with correct error code (-ENOMEM) from ubi_attach_mtd_dev() upon
6234 failing malloc().
6235
6236 Signed-off-by: Stefan Roese <sr@denx.de>
6237
6238commit 2145188bea2df8f2b47a87ec3071b55027e8d0ae
6239Author: Ben Warren <biggerbadderben@gmail.com>
6240Date: Tue Dec 9 23:34:15 2008 -0800
6241
6242 Fix compile error in building MBX860T.
6243
6244 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6245
6246commit 8fab49ea911fe925392fa5afcc9bc7373a3d0cee
6247Author: Michal Simek <monstr@monstr.eu>
6248Date: Tue Nov 25 11:42:20 2008 +0100
6249
6250 microblaze: Remove XUPV2P board
6251
6252 ---
6253
6254 Microblaze platforms use generic settings and to have
6255 many platforms is confusing that's why I decided to remove this
6256 platform from U-BOOT. ml401 tree is sufficient for covering
6257 all Microblaze platforms.
6258
6259 This change will go through microblaze custodian tree.
6260
6261commit 99ba6f353582720defff6e6e6761dc455a207d31
6262Author: Michal Simek <monstr@monstr.eu>
6263Date: Mon Nov 24 18:25:41 2008 +0100
6264
6265 microblaze: Remove CONFIG_LIBFDT due to error in common files
6266
6267commit e7d591e823a991513833af7030468409e25a3b13
6268Author: Michal Simek <monstr@monstr.eu>
6269Date: Mon Nov 24 11:43:00 2008 +0100
6270
6271 microblaze: Fix ml401 uart16550 setting
6272
6273 Signed-off-by: Michal Simek <monstr@monstr.eu>
6274
6275commit c85ff0553a8cfbcca51c15b947e1ed55d3810a39
6276Author: Michal Simek <monstr@monstr.eu>
6277Date: Mon Nov 24 11:38:22 2008 +0100
6278
6279 microblaze: Set up relocation is done
6280
6281commit bcb6dd9187d4b23c748704767bd12d20c829e996
6282Author: Mike Frysinger <vapier@gentoo.org>
6283Date: Tue Dec 9 23:20:31 2008 -0500
6284
6285 tools/netconsole: new script for working with netconsole over UDP
6286
6287 While the doc/README.NetConsole does have a snippet for people to
6288 create their own netcat script, it's a lot easier to make a simple
6289 dedicated script and tell people to use it.
6290
6291 Also spruce it up a bit to make it user friendly.
6292
6293 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6294
6295commit 8c5170a7d088601d5f30d85093388dab1f1e8ec0
6296Author: Sonic Zhang <Sonic.Zhang@analog.com>
6297Date: Tue Dec 9 23:20:18 2008 -0500
6298
6299 fs/fat: handle FAT on SATA
6300
6301 The FAT file system driver should also handle FAT on SATA devices.
6302
6303 Signed-off-by: Sonic Zhang <Sonic.Zhang@analog.com>
6304 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6305
f15c6515
WD
6306commit 4cd8ed40615a7d741ef2f09ee53779ec6907b8a6
6307Author: Ben Warren <biggerbadderben@gmail.com>
6308Date: Tue Dec 9 23:26:31 2008 -0800
6309
6310 Fix compile error in building MBX860T.
6311 Bug was introduced in 9eb79bd8856bcab896ed5e1f1bca159807a124dd
6312
6313 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6314
455ae7e8
WD
6315commit 97a24a78ee6f34b89b821cb70eda1cf34aa11d97
6316Author: Jerry Van Baren <gvb.uboot@gmail.com>
6317Date: Mon Nov 24 08:15:02 2008 -0500
6318
6319 libfdt: Fix redefined uintptr_t warning for USE_HOSTCC
6320
6321 Compiling U-Boot in an old OS environment (RedHat-7.3 :-) gives the
6322 following warnings from FDT:
6323
6324 include/libfdt_env.h:50: warning: redefinition of 'uintptr_t'
6325 /usr/include/stdint.h:129: warning: 'uintptr_t' previously declared here
6326
6327 Fix: Protect the definition of uintptr_t when compiling on the host
6328 system.
6329
6330 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
6331
6332commit 1fc2b165c51d6f40c8d505f1b3eaefdb6599b17b
6333Author: Graeme Russ <graeme.russ@gmail.com>
6334Date: Sat Nov 22 08:43:29 2008 +1100
6335
6336 Moved sc520 PCI definitions to stand-alone file
6337
6338 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
6339
6340commit 1f5070c0c18fa5684bfce09c8abdf10c04ed48fa
6341Author: Graeme Russ <graeme.russ@gmail.com>
6342Date: Sat Nov 22 08:43:21 2008 +1100
6343
6344 Fixed path to sc520 SSI include file
6345
6346 Signed Off By: Graeme Russ <graeme.russ@gmail.com>
6347
6348commit d4f70da544c33db3e4fce6473dea4ecca4322545
6349Author: Graeme Russ <graeme.russ@gmail.com>
6350Date: Fri Nov 21 06:28:05 2008 +1100
6351
6352 Fixed build error due to #define of _LINUX_STRING_H_ in 82559_eeprom.c
6353
6354 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
6355
6356commit c034075a713b60e654c64e88e87da29440f31bb4
6357Author: Stefan Roese <sr@denx.de>
6358Date: Wed Nov 12 13:30:10 2008 +0100
6359
6360 serial: Add vcth UART driver
6361
6362 This patch adds the UART driver for the upcoming VCTH board support.
6363
6364 Signed-off-by: Stefan Roese <sr@denx.de>
6365
6366commit 142a80ffc3b537a9c45acd2444a42a77f147c602
6367Author: Ilya Yanok <yanok@emcraft.com>
6368Date: Thu Nov 13 19:49:36 2008 +0300
6369
6370 jffs2: cache data_crc results
6371
6372 As we moved data_crc() invocation from jffs2_1pass_build_lists() to
6373 jffs2_1pass_read_inode() data_crc is going to be calculated on each
6374 inode access. This patch adds caching of data_crc() results. There
6375 is no significant improvement in speed (because of flash access
6376 caching added in previous patch I think, crc in RAM is really fast)
6377 but this patch impacts memory usage -- every b_node structure uses
6378 12 bytes instead of 8.
6379
6380 Signed-off-by: Alexey Neyman <avn@emcraft.com>
6381 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6382
6383commit 9b7076229ec6a958bd835ab70745f7676297ce82
6384Author: Ilya Yanok <yanok@emcraft.com>
6385Date: Thu Nov 13 19:49:35 2008 +0300
6386
6387 jffs2: summary support
6388
6389 This patch adds support for reading fs information from summary
6390 node instead of scanning full eraseblock.
6391
6392 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6393
6394commit 70741004dc28946cd82c7af6789c4ddb3fc94526
6395Author: Ilya Yanok <yanok@emcraft.com>
6396Date: Thu Nov 13 19:49:34 2008 +0300
6397
6398 jffs2: add buffer to cache flash accesses
6399
6400 With this patch JFFS2 code allocates memory buffer of max_totlen size
6401 (size of the largest node, calculated during scan time) and uses it to
6402 store entire node. Speeds up loading. If malloc fails we use old ways
6403 to do things.
6404
6405 Signed-off-by: Alexey Neyman <avn@emcraft.com>
6406 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6407
6408commit 8a36d31f72411144ac0412ee7e1880e801acd754
6409Author: Ilya Yanok <yanok@emcraft.com>
6410Date: Thu Nov 13 19:49:33 2008 +0300
6411
6412 jffs2: rewrite jffs2 scanning code based on Linux one
6413
6414 Rewrites jffs2_1pass_build_lists() function in style of Linux's
6415 jffs2_scan_medium() and jffs2_scan_eraseblock().
6416 This includes:
6417 - Caching flash acceses
6418 - Smart dealing with free space
6419
6420 Signed-off-by: Alexey Neyman <avn@emcraft.com>
6421 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6422
6423commit e0b5532579eda8b4629f1b4f6e49c3cc60f52237
6424Author: Ilya Yanok <yanok@emcraft.com>
6425Date: Thu Nov 13 19:49:32 2008 +0300
6426
6427 jffs2: add sector_size field to part_info structure
6428
6429 This patch adds sector_size field to part_info structure (used
6430 by new JFFS2 code).
6431
6432 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6433
6434commit f73846956778a7dfee83403ef9747aff77198848
6435Author: Ilya Yanok <yanok@emcraft.com>
6436Date: Thu Nov 13 19:49:31 2008 +0300
6437
6438 jffs2: fix searching for latest version in jffs2_1pass_list_inodes()
6439
6440 We need to update i_version inside cycle to find really latest version
6441 inside jffs2_1pass_list_inodes(). With that fixed we can use isize inside
6442 dump_inode() instead of calling expensive jffs2_1pass_read_inode().
6443
6444 Signed-off-by: Alexey Neyman <avn@emcraft.com>
6445 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
6446
6447commit 1113cb764b3da256ef8a1f9539f4efbe221ff3c4
6448Author: Wolfgang Denk <wd@denx.de>
6449Date: Tue Dec 9 23:13:51 2008 +0100
6450
6451 evb64260: fix "cast to pointer from integer of different size" warnings
6452
6453 Signed-off-by: Wolfgang Denk <wd@denx.de>
6454
6455commit d2776827315c3d469b8cb4cec14d58877798daa2
6456Author: Stefan Althoefer <stefan.althoefer@web.de>
6457Date: Sun Dec 7 19:39:11 2008 +0100
6458
6459 USB: descriptor handling
6460
6461 Hi,
6462
6463 I found a bug when working with the u-boot USB subsystem on IXP425 processor
6464 (big endian Xscale aka ARMv5).
6465 I recognized that the second usb_endpoint_descriptor of the attached memory
6466 stick was corrupted.
6467
6468 The reason for this are the packed structures below (either u-boot and
6469 u-boot-usb):
6470
6471 --------------
6472 /* Endpoint descriptor */
6473 struct usb_endpoint_descriptor {
6474 unsigned char bLength;
6475 unsigned char bDescriptorType;
6476 unsigned char bEndpointAddress;
6477 unsigned char bmAttributes;
6478 unsigned short wMaxPacketSize;
6479 unsigned char bInterval;
6480 unsigned char bRefresh;
6481 unsigned char bSynchAddress;
6482
6483 } __attribute__ ((packed));
6484 /* Interface descriptor */
6485 struct usb_interface_descriptor {
6486 unsigned char bLength;
6487 unsigned char bDescriptorType;
6488 unsigned char bInterfaceNumber;
6489 unsigned char bAlternateSetting;
6490 unsigned char bNumEndpoints;
6491 unsigned char bInterfaceClass;
6492 unsigned char bInterfaceSubClass;
6493 unsigned char bInterfaceProtocol;
6494 unsigned char iInterface;
6495
6496 unsigned char no_of_ep;
6497 unsigned char num_altsetting;
6498 unsigned char act_altsetting;
6499 struct usb_endpoint_descriptor ep_desc[USB_MAXENDPOINTS];
6500 } __attribute__ ((packed));
6501 ------------
6502
6503 As usb_endpoint_descriptor is only 7byte in length, the start of all
6504 odd ep_desc[] structures is not word aligned. This makes wMaxPacketSize
6505 of these structures also not word aligned.
6506
6507 ARMv5 Architecture however does not support non-aligned multibyte
6508 data type (see A2.8 of ARM Architecture Reference Manual).
6509
6510 Signed-off-by: Stefan Althoefer <stefan.althoefer@web.de>
6511 Signed-off-by: Remy Böhmer <linux@bohmer.net>
6512
6513commit 4c253fdb2a175ea3472c38a1455a16faa58e81f0
6514Author: Kumar Gala <galak@kernel.crashing.org>
6515Date: Tue Dec 9 10:27:33 2008 -0600
6516
6517 drivers/fsl_pci_init: Fix compile warning
6518
6519 fsl_pci_init.c: In function 'fsl_pci_setup_inbound_windows':
6520 fsl_pci_init.c:122: warning: comparison is always true due to limited range of data type
6521
6522 The check only makes sense if we are CONFIG_PHYS_64BIT
6523
6524 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6525
6526commit dedacc18a8c2b3951581eb721fa055a4e0ac4845
6527Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6528Date: Sun Dec 7 09:45:35 2008 +0100
6529
6530 usbtty/omap: update to current API
6531
6532 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6533 Signed-off-by: Remy Böhmer <linux@bohmer.net>
6534
6535commit ee2e9ba917a62cc2e3a484bb79c8da0e01cb93ed
6536Author: Anatolij Gustschin <agust@denx.de>
6537Date: Tue Dec 9 17:52:05 2008 +0100
6538
6539 video: fix FADS823 and RRvision compiling issues
6540
6541 Since commit 561858ee building for FADS823 and RRvision
6542 doesn't work. Let's include version.h and timestamp.h
6543 unconditionally to fix the problem.
6544
6545 Signed-off-by: Anatolij Gustschin <agust@denx.de>
6546
6547commit 2d2e05727fe4013f807ffa814dff0e75259a1db4
6548Author: Stefan Roese <sr@denx.de>
6549Date: Tue Dec 2 10:53:47 2008 +0100
6550
6551 UBI: Fix size parsing in "ubi create"
6552
6553 Signed-off-by: Stefan Roese <sr@denx.de>
6554
6555commit 2ee951ba2ac9874d2a93d52e7a187d3184be937e
6556Author: Stefan Roese <sr@denx.de>
6557Date: Thu Nov 27 14:07:09 2008 +0100
6558
6559 UBI: Enable re-initializing of the "ubi part" command
6560
6561 With this patch now, the user can call "ubi part" multiple times to
6562 re-connect the UBI device to another MTD partition.
6563
6564 Signed-off-by: Stefan Roese <sr@denx.de>
6565
6566commit 9def12cae33d2d3ea2dd56b197fd3dfb3ad60bf4
6567Author: Stefan Roese <sr@denx.de>
6568Date: Thu Nov 27 14:05:15 2008 +0100
6569
6570 MTD: Fix problem based on non-working relocation (list head mtd_partitions)
6571
6572 Don't use LIST_HEAD() but initialize the struct via INIT_LIST_HEAD() upon
6573 first call of add_mtd_partitions(). Otherwise this won't work on platforms
6574 where the relocation is broken (like MIPS or PPC).
6575
6576 Signed-off-by: Stefan Roese <sr@denx.de>
6577
6578commit 5e3ab68e9acf9edf304b8aa32ad7e005483a2c47
6579Author: Trent Piepho <tpiepho@freescale.com>
6580Date: Wed Nov 12 17:29:48 2008 -0800
6581
6582 Section name should be ".data", not "data"
6583
6584 Signed-off-by: Trent Piepho <tpiepho@freescale.com>
6585 Signed-off-by: Wolfgang Denk <wd@denx.de>
6586
6587commit 7fa6a2f3b66579dea8bc1a9177646e1141731b15
6588Author: Wolfgang Denk <wd@denx.de>
6589Date: Tue Dec 9 00:39:08 2008 +0100
6590
6591 MAKEALL: Automatically use parallel builds
6592
6593 Add logic to the MAKEALL script to determine the number of CPU cores
6594 on the system, and run a parallel build if there is more than one.
6595 Usually this significantrly accelerates builds.
6596
6597 Allow to manually adjust the number of parallel make jobs by using
6598 the "BUILD_NCPUS" environment variable.
6599
6600 Signed-off-by: Wolfgang Denk <wd@denx.de>
6601
6602commit 268405fa7c44156c5192a70779920c70906af8d6
6603Author: Wolfgang Denk <wd@denx.de>
6604Date: Tue Dec 9 00:24:30 2008 +0100
6605
6606 vxworks.h: Fix build problem introduced by commits 29a4c24d/e9084b23
6607
6608 Signed-off-by: Wolfgang Denk <wd@denx.de>
6609
6610commit 153176a9414120ca1736f3cc4951623d6e14e6af
6611Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6612Date: Tue Nov 11 06:08:59 2008 +0100
6613
6614 avr32/bootm: remove unused variable 'ret'
6615
6616 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6617 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
6618
6619commit 434c51a5e62f608a2a78ed5398ac43a1c77cc183
6620Author: Peter Tyser <ptyser@xes-inc.com>
6621Date: Wed Nov 12 13:06:48 2008 -0600
6622
6623 Remove unneeded CONFIG_SHELL references
6624
6625 Make should be using the bash shell by default which makes
6626 CONFIG_SHELL unnecessary
6627
6628 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6629
6630commit cf7a7b99794bac936899819b95539be1dbd71708
6631Author: Peter Tyser <ptyser@xes-inc.com>
6632Date: Wed Nov 12 12:33:20 2008 -0600
6633
6634 Use bash for default GNU Make shell application
6635
6636 Some Make script commands rely on bash-specific features like brace
6637 expansion, so default to bash for the SHELL variable with a fallback
6638 to the standard sh shell
6639
6640 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6641
6642commit 4b530018764934ad5689196e9aa5714a6f4d1a6c
6643Author: Heiko Schocher <hs@denx.de>
6644Date: Wed Nov 12 09:50:45 2008 +0100
6645
6646 jffs2: rename devices_init () in common/jffs2.c
6647
6648 rename devices_init () in common/jffs2.c to
6649 jffs2_devices_init (), because there is also a
6650 devices_init () in common/devices.c.
6651
6652 Signed-off-by: Heiko Schocher <hs@denx.de>
6653
6654commit af5eb847a10f1037590001355d88bab3fe7be48b
6655Author: Daniel Hellstrom <daniel@gaisler.com>
6656Date: Mon Nov 10 12:46:20 2008 +0000
6657
6658 SPARC: Fixed compiler error introduced by commit c160a9544743
6659
6660 This patch fixes a build error for the SPARC platform. It was
6661 introduced by commit c160a9544743e80e8889edb2275538e7764ce334.
6662
6663 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
6664
6665commit 4c60259899aa00f59db0d936b8807f9a26411c0f
6666Author: Gary Jennejohn <garyj@denx.de>
6667Date: Sun Nov 9 12:50:59 2008 +0100
6668
6669 mgsuvd add the board-specific part of the HDLC driver
6670
6671 Signed-off-by: Gary Jennejohn <garyj@denx.de>
6672
6673commit 534a4359666af48bd69a3743d8a8c2bdb1d3ec70
6674Author: Gary Jennejohn <garyj@denx.de>
6675Date: Sun Nov 9 12:45:03 2008 +0100
6676
6677 mgcoge add the board-specific part of the HDLC driver
6678
6679 Signed-off-by: Gary Jennejohn <garyj@denx.de>
6680
6681commit 135f5534538bb8ea4f38a7030da12187d22ef7e0
6682Author: Gary Jennejohn <garyj@denx.de>
6683Date: Sun Nov 9 12:36:15 2008 +0100
6684
6685 keymile add the common parts of the HDLC driver
6686
6687 This implements the ICN protocol used across the backplane and is
6688 needed by all the keymile boards.
6689
6690 Signed-off-by: Gary Jennejohn <garyj@denx.de>
6691
6692commit 1cb82a9207a550557399eabc7fe47f21bbd9ddf8
6693Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6694Date: Fri Nov 7 22:46:22 2008 +0100
6695
6696 drivers/bios_emulator: Move conditional compilation to Makefile
6697
6698 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6699
6700commit bcdf1d2cf6b24fb905fd7da80da4b3c65a7995b5
6701Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6702Date: Thu Nov 6 14:01:51 2008 -0500
6703
6704 common/cmd_ide.c: Corrected endian order printing for compact flash serial number.
6705
6706 Corrected endian order printing for compact flash serial number.
6707
6708 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
6709
6710commit 16a28ef219c27423a1ef502f19070c4d375079b8
6711Author: Gary Jennejohn <garyj@denx.de>
6712Date: Thu Nov 6 15:04:23 2008 +0100
6713
6714 IOMUX: Add console multiplexing support.
6715
6716 Modifications to support console multiplexing. This is controlled using
6717 CONFIG_SYS_CONSOLE_MUX in the board configuration file.
6718
6719 This allows a user to specify multiple console devices in the environment
6720 with a command like this: setenv stdin serial,nc. As a result, the user can
6721 enter text on both the serial and netconsole interfaces.
6722
6723 All devices - stdin, stdout and stderr - can be set in this manner.
6724
6725 1) common/iomux.c and include/iomux.h contain the environment setting
6726 implementation.
6727 2) doc/README.iomux contains a somewhat more detailed description.
6728 3) The implementation in (1) is called from common/cmd_nvedit.c to
6729 handle setenv and from common/console.c to handle initialization of
6730 input/output devices at boot time.
6731 4) common/console.c also contains the code needed to poll multiple console
6732 devices for input and send output to all devices registered for output.
6733 5) include/common.h includes iomux.h and common/Makefile generates iomux.o
6734 when CONFIG_SYS_CONSOLE_MUX is set.
6735
6736 Signed-off-by: Gary Jennejohn <garyj@denx.de>
6737
6738commit 774ce72026f74ac9641bcbbc588b20f2e13f7ab8
6739Author: Mike Frysinger <vapier@gentoo.org>
6740Date: Tue Nov 4 16:03:46 2008 -0500
6741
6742 strings: use puts() rather than printf()
6743
6744 When running `strings` on really long strings, the stack tends to get
6745 smashed due to printf(). Switch to puts() instead since we're only passing
6746 the data through.
6747
6748 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6749
6750commit b03150b52e3c491a86a3cc0945274f0e8f9872e7
6751Author: Niklaus Giger <niklaus.giger@member.fsf.org>
6752Date: Mon Nov 3 22:16:18 2008 +0100
6753
6754 Use new CONFIG_SYS_VXWORKS parameters for Netstal boards
6755
6756 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
6757
6758commit 29a4c24de99d8cb4ac32991c04cab87ed94ca1f9
6759Author: Niklaus Giger <niklaus.giger@member.fsf.org>
6760Date: Mon Nov 3 22:15:34 2008 +0100
6761
6762 cmd_elf.c: Cleanup bootvx and handle new CONFIG_SYS_VXWORKS parameters
6763
6764 - fix size too small by one in sprintf
6765 - changed old (pre 2004) device name ibmEmac to emac
6766 - boot device may be overriden in board config
6767 - servername may be defined in board config
6768 - additional parameters may be defined in board config
6769 - fixed some line wrappings
6770 - replaced redundant MAX define by max
6771
6772 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
6773
6774commit e9084b23d16102f44ace24379a1c0c352497ef80
6775Author: Niklaus Giger <niklaus.giger@member.fsf.org>
6776Date: Mon Nov 3 22:14:36 2008 +0100
6777
6778 Add vxworks.h to handle CONFIG_SYS_VXWORKS parameters
6779
6780 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
6781
6782commit 0b2f4ecad473d785959c7976f20d2a00bd0ee01f
6783Author: Niklaus Giger <niklaus.giger@member.fsf.org>
6784Date: Mon Nov 3 22:13:47 2008 +0100
6785
6786 README: Document CONFIG_SYS parameters for vxworks
6787
6788 Signed-off-by: Niklaus Giger <niklaus.giger@member.fsf.org>
6789
6790commit ace514837cac656e29c37a19569cb8ea83071126
6791Author: Peter Tyser <ptyser@xes-inc.com>
6792Date: Fri Oct 31 11:12:38 2008 -0500
6793
6794 lcd: Let the board code show board-specific info cleanup
6795
6796 remove unneeded version.h from lcd.c
6797
6798 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6799 Signed-off-by: Wolfgang Denk <wd@denx.de>
6800
6801commit 561858ee7d0274c3e89dc98d4d0698cb6fcf6fd9
6802Author: Peter Tyser <ptyser@xes-inc.com>
6803Date: Mon Nov 3 09:30:59 2008 -0600
6804
6805 Update U-Boot's build timestamp on every compile
6806
6807 Use the GNU 'date' command to auto-generate a new U-Boot
6808 timestamp on every compile.
6809
6810 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6811
6812commit 83ad179e2f0f625b88adb8ef5696709e46fb9077
6813Author: Remy Bohmer <linux@bohmer.net>
6814Date: Thu Dec 4 22:25:57 2008 +0100
6815
6816 Remove redundant armv4 flag from arm926ejs compile flags
6817
6818 Currently the arm926ejs tree has the armv4 option set during compilation.
6819 This flag does not belong here because a arm926 CPU is always a armv5 CPU.
6820
6821 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6822
6823commit 89a7a87f084c657f8e32b513a77b50eca07e17ec
6824Author: Nicolas Ferre <nicolas.ferre@atmel.com>
6825Date: Sat Dec 6 13:11:14 2008 +0100
6826
6827 at91: Choose environment variables location within make config target
6828
6829 This patch adds the possiblity to choose the media where the environment will
6830 be located. This allow to choose this fundamental configuration without editing
6831 config files.
6832
6833 Documentation file added.
6834
6835 Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
6836 Acked-by: Stelian Pop <stelian@popies.net>
6837 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6838
6839commit 1450c4a6682378567030414a9f1198c39b7730c7
6840Author: Anatolij Gustschin <agust@denx.de>
6841Date: Mon Nov 3 15:30:34 2008 +0100
6842
6843 lwmon, tqm8xx: Fix build errors
6844
6845 Commit 6b59e03e0237a40a2305ea385defdfd92000978b
6846 lcd: Let the board code show board-specific info
6847
6848 introduced some bugs which prevent U-Boot building
6849 for lwmon board if CONFIG_LCD_INFO_BELOW_LOGO will
6850 be defined in the board configuration.
6851
6852 Also "LCD enabled" building for TQM823L doesn't work
6853 since this commit.
6854
6855 This patch fixes above-mentioned issues.
6856
6857 Signed-off-by: Anatolij Gustschin <agust@denx.de>
6858
6859commit bfa0af6b22ff25b0719a8910f9b6d1f975aa6fb0
6860Author: Mike Frysinger <vapier@gentoo.org>
6861Date: Sun Nov 2 01:18:18 2008 -0400
6862
6863 ignore .gdb_history files
6864
6865 When using gdb, history files will often get generated. So ignore them.
6866
6867 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
6868
6869commit c8aa7dfc18f7cc90d0aea6c7becbb67dfc5bba4b
6870Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6871Date: Fri Oct 31 12:26:55 2008 +0100
6872
6873 FPGA: move fpga drivers to drivers/fpga
6874
6875 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6876
6877commit 6a86bb6c25376f0358478219fa28d7c84dd01ed0
6878Author: Peter Tyser <ptyser@xes-inc.com>
6879Date: Mon Dec 1 16:29:38 2008 -0600
6880
6881 net: Fix TftpStart() ip:filename bug
6882
6883 The TftpStart() function modifies the 'BootFile'
6884 string when 'BootFile' contains both an IP address
6885 and filename (eg 1.2.3.4:/path/file). This causes
6886 subsequent calls to TftpStart to incorrectly parse
6887 the TFTP filename and server IP address to use.
6888 For example:
6889
6890 => tftp 0x100000 10.52.0.62:/home/ptyser/non_existant
6891 Speed: 100, half duplex
6892 Using eTSEC1 device
6893 TFTP from server 10.52.0.62; our IP address is 10.52.253.79
6894 ^^^^^^^^^^ CORRECT
6895 Filename '/home/ptyser/non_existant'.
6896 ^^^^^^^^^^^^^^^^^^^^^^^^^ CORRECT
6897 Load address: 0x100000
6898 Loading: *
6899 TFTP error: 'File not found' (1)
6900 Starting again
6901
6902 eTSEC2: No link.
6903 Speed: 100, half duplex
6904 Using eTSEC1 device
6905 TFTP from server 10.52.0.33; our IP address is 10.52.253.79
6906 ^^^^^^^^^^ WRONG
6907 Filename '10.52.0.62'.
6908 ^^^^^^^^^^ WRONG
6909 Load address: 0x100000
6910 Loading: *
6911 TFTP error: 'File not found' (1)
6912 Starting again
6913
6914 TftpStart() was modified to not modify the 'BootFile' string.
6915
6916 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6917 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6918
6919commit d32c5be50bf0600bfdc54223ef341ee9c63db445
6920Author: Peter Tyser <ptyser@xes-inc.com>
6921Date: Mon Dec 1 16:26:21 2008 -0600
6922
6923 net: Add additional IP fragmentation check
6924
6925 Ignore IP packets which have the "more fragments" flag bit
6926 set. This flag indicates the IP packet is fragmented and
6927 must be ignored by U-Boot.
6928
6929 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6930 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6931
6932commit e0c07b868cab405ab4b5335a0247899bfc5ea0b6
6933Author: Peter Tyser <ptyser@xes-inc.com>
6934Date: Mon Dec 1 16:26:20 2008 -0600
6935
6936 net: Define IP flag field values
6937
6938 These defines were pulled from the "Add simple
6939 IP/UDP fragmentation support" patch from Frank
6940 Haverkamp <haver@vnet.ibm.com>.
6941
6942 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6943 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6944
6945commit 23afaba65ec5206757e589ef334a8b38168c045f
6946Author: Anatolij Gustschin <agust@denx.de>
6947Date: Tue Dec 2 10:31:04 2008 +0100
6948
6949 net: tsec: Fix Marvell 88E1121R phy init
6950
6951 This patch tries to ensure that phy interrupt pin
6952 won't be asserted after booting. We experienced
6953 following issues with current 88E1121R phy init:
6954
6955 Marvell 88E1121R phy can be hardware-configured
6956 to share MDC/MDIO and interrupt pins for both ports
6957 P0 and P1 (e.g. as configured on socrates board).
6958 Port 0 interrupt pin will be shared by both ports
6959 in such configuration. After booting Linux and
6960 configuring eth0 interface, port 0 phy interrupts
6961 are enabled. After rebooting without proper eth0
6962 interface shutdown port 0 phy interrupts remain
6963 enabled so any change on port 0 (link status, etc.)
6964 cause assertion of the interrupt. Now booting Linux
6965 and configuring eth1 interface will cause permanent
6966 phy interrupt storm as the registered phy 1 interrupt
6967 handler doesn't acknowledge phy 0 interrupts. This
6968 of course should be fixed in Linux driver too.
6969
6970 Signed-off-by: Anatolij Gustschin <agust@denx.de>
6971 Acked-by: Andy Fleming <afleming@freescale.com>
6972 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6973
6974commit 2e4970d8109d690adcf615d9e3cac7b5b2e8eaed
6975Author: Peter Tyser <ptyser@xes-inc.com>
6976Date: Tue Dec 2 12:59:51 2008 -0600
6977
6978 net: Fix download command parsing
6979
6980 When CONFIG_SYS_HUSH_PARSER is defined network download
6981 commands with 1 argument in the format 'tftp "/path/file"'
6982 do not work as expected. The hush command parser strips
6983 the quotes from "/path/file" which causes the network
6984 commands to interpret "/path/file" as an address
6985 instead of the intended filename.
6986
6987 The previous check for a leading quote in netboot_common()
6988 was replaced with a check which ensures only valid
6989 numbers are treated as addresses.
6990
6991 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6992 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6993
6994commit 3c2c2f427905040c1513d0c51d637689cba48346
6995Author: Remy Bohmer <linux@bohmer.net>
6996Date: Thu Nov 27 22:30:27 2008 +0100
6997
6998 Remove non-ascii characters from fat code
6999
7000 This code contains some non-ascii characters in comment lines and code.
7001 Most editors do not display those characters properly and editing those
7002 files results always in diffs at these places which are usually not required
7003 to be changed at all. This is error prone.
7004
7005 So, remove those weird characters and replace them by normal C-style
7006 equivalents for which the proper defines were already in the header.
7007
7008 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7009
7010commit dc889e865356497d3e495570118c2245ebce2631
7011Author: Dave Liu <daveliu@freescale.com>
7012Date: Fri Nov 28 20:16:58 2008 +0800
7013
7014 85xx: fix the wrong DDR settings for MPC8572DS
7015
7016 The default DDR freq is 400MHz or 800M data rate,
7017 the old settings is pure wrong for the default case.
7018
7019 Signed-off-by: Dave Liu <daveliu@freescale.com>
7020 Acked-by: Andy Fleming <afleming@freescale.com>
7021
7022commit 9df59533f77de2829b4b66e5b7620e04edaa391c
7023Author: Kumar Gala <galak@kernel.crashing.org>
7024Date: Mon Nov 24 10:29:26 2008 -0600
7025
7026 85xx: init gd as early as possible
7027
7028 Moved up the initialization of GD so C code like set_tlb() can use
7029 gd->flags to determine if we've relocated or not in the future.
7030
7031 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7032 Acked-by: Andy Fleming <afleming@freescale.com>
7033
7034commit aed461af81012a398a205e9be67ab37667491838
7035Author: Kumar Gala <galak@kernel.crashing.org>
7036Date: Mon Nov 24 10:29:25 2008 -0600
7037
7038 85xx: Fix relocation of CCSRBAR
7039
7040 If the virtual address for CCSRBAR is the same after relocation but
7041 the physical address is changing we'd end up having two TLB entries with
7042 the same VA. Instead we new us the new CCSRBAR virt address + 4k as a
7043 temp virt address to access the old CCSRBAR to relocate it.
7044
7045 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7046 Acked-by: Andy Fleming <afleming@freescale.com>
7047
7048commit ea154a1781135d822eedee7567cc156089eae93c
7049Author: Kumar Gala <galak@kernel.crashing.org>
7050Date: Mon Nov 24 10:25:14 2008 -0600
7051
7052 FSL: Moved BR_PHYS_ADDR for localbus to common header
7053
7054 The BR_PHYS_ADDR macro is useful on all machines that have local bus
7055 which is pretty much all 83xx/85xx/86xx chips.
7056
7057 Additionally most 85xx & 86xx will need it if they want to support
7058 36-bit physical addresses.
7059
7060 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7061 Acked-by: Andy Fleming <afleming@freescale.com>
7062
7063commit 9427ccde0355a2ebf47454e8e1be59f5b9864e08
7064Author: Peter Tyser <ptyser@xes-inc.com>
7065Date: Mon Dec 1 13:47:12 2008 -0600
7066
7067 85xx: Add PORDEVSR_PCI1 define
7068
7069 Add define used to determine if PCI1 interface is in PCI or PCIX mode.
7070
7071 Convert users of the old PORDEVSR_PCI constant to use MPC85xx_PORDEVSR_PCI1
7072
7073 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7074 Signed-off-by: Andy Fleming <afleming@freescale.com>
7075
7076commit 35db1c6d34b57ae15e99cf03c8e8f8a6148d74f3
7077Author: Becky Bruce <becky.bruce@freescale.com>
7078Date: Fri Nov 21 19:24:22 2008 -0600
7079
7080 drivers/fsl_pci_init: Fix inbound window mapping bug
7081
7082 The current code will cause the creation of a 4GB window
7083 starting at 0 if we have more than 4GB of RAM installed,
7084 which overlaps with PCI_MEM space and causes pci_bus_to_phys()
7085 to return erroneous information. Limit the size to 4GB - 1;
7086 which causes the code to create one 2GB and one 1GB window
7087 instead.
7088
7089 Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
7090 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7091 Acked-by: Andy Fleming <afleming@freescale.com>
7092
7093commit 5a105a333dab6a23e92d763ce76d6f31d57f45df
7094Author: Jon Loeliger <jdl@freescale.com>
7095Date: Thu Nov 20 15:36:48 2008 -0600
7096
7097 Removed unused CONFIG_L1_INIT_RAM symbol.
7098
7099 Prevent further viral propogation of the unused
7100 symbol CONFIG_L1_INIT_RAM by just removing it.
7101
7102 Signed-off-by: Jon Loeliger <jdl@freescale.com>
7103 Acked-by: Andy Fleming <afleming@freescale.com>
7104
7105commit 7008d26a40a76f90cae5824c812cfed449fb97b8
7106Author: Ed Swarthout <Ed.Swarthout@freescale.com>
7107Date: Wed Oct 29 09:21:44 2008 -0500
7108
7109 fsl ddr skip interleaving if not supported.
7110
7111 Removed while(1) hang if memctl_intlv_ctl is set wrong.
7112 Remove embedded tabs from strings.
7113
7114 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
7115 Acked-by: Kumar Gala <galak@kernel.crashing.org>
7116 Acked-by: Andy Fleming <afleming@freescale.com>
7117
7118commit dd332e18d082de75eca3fc2c7c778f5d4571a096
7119Author: Anatolij Gustschin <agust@denx.de>
7120Date: Thu Nov 13 18:08:57 2008 +0100
7121
7122 85xx: socrates: fix DDR SDRAM tlb entry configuration
7123
7124 since commit be0bd8234b9777ecd63c4c686f72af070d886517
7125 tlb entry for socrates DDR SDRAM will be reconfigured
7126 by setup_ddr_tlbs() from initdram() causing an
7127 inconsistency with previously configured DDR SDRAM tlb
7128 entry from tlb_table:
7129
7130 socrates>l2cam 7 9
7131 IDX PID EPN SIZE V TS RPN U0-U3 WIMGE UUUSSS
7132 7 : 00 00000000 256MB V 0 -> 0_00000000 0000 -I-G- ---RWX
7133 8 : 00 00000000 256MB V 0 -> 0_00000000 0000 ----- ---RWX
7134 9 : 00 10000000 256MB V 0 -> 0_10000000 0000 ----- ---RWX
7135
7136 This patch makes the presence of the DDR SDRAM tlb entry in
7137 the tlb_table dependent on CONFIG_SPD_EEPROM to avoid this
7138 inconsistency.
7139
7140 Signed-off-by: Anatolij Gustschin <agust@denx.de>
7141 Acked-by: Andy Fleming <afleming@freescale.com>
7142
7143commit a2cd50ed6ef0ac6b127b3d6db756979a8336718d
7144Author: Peter Tyser <ptyser@xes-inc.com>
7145Date: Tue Nov 11 10:17:10 2008 -0600
7146
7147 85xx: Add CPU 2 errata workaround to all 8548 boards
7148
7149 All mpc8548-based boards should implement the suggested workaround
7150 to CPU 2 errata. Without the workaround, its possible for the
7151 8548's core to hang while executing a msync or mbar 0 instruction
7152 and a snoopable transaction from an I/O master tagged to make
7153 quick forward progress is present.
7154
7155 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7156 Acked-by: Andy Fleming <afleming@freescale.com>
7157
7158commit e57f0fa1333cdf3ca36110aac2900712a5f82976
7159Author: Dave Liu <daveliu@freescale.com>
7160Date: Tue Oct 28 17:53:45 2008 +0800
7161
7162 85xx: the DDR tlb is missed for the !CONFIG_SPD_EEPROM case
7163
7164 we need TLB entry for DDR at !SPD case.
7165
7166 Signed-off-by: Dave Liu <daveliu@freescale.com>
7167 Acked-by: Andy Fleming <afleming@freescale.com>
7168
7169commit 9b0ad1b1c7a15ff674978705c7c52264978dc5d8
7170Author: Dave Liu <daveliu@freescale.com>
7171Date: Tue Oct 28 17:53:38 2008 +0800
7172
7173 85xx: remove the unused ddr_enable_ecc in the board file
7174
7175 The DDR controller of 8548/8544/8568/8572/8536 processors
7176 have the ECC data init feature, and the new DDR code is
7177 using the feature, and we don't need the way with DMA to
7178 init memory any more.
7179
7180 Signed-off-by: Dave Liu <daveliu@freescale.com>
7181 Acked-by: Andy Fleming <afleming@freescale.com>
7182
7183commit 4a129a57d923f7c15aa1f567028a80a32d66a100
7184Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7185Date: Sun Nov 30 19:36:53 2008 +0100
7186
7187 at91rm9200dk: Fix typo
7188
7189 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7190
7191commit ed3b18e05c9a8ffa5fb643da9bcec7452e5d5e01
7192Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7193Date: Sun Nov 30 19:36:50 2008 +0100
7194
7195 AT91: remove non supported board AT91RM9200DF macro
7196
7197 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7198
7199commit bd876772ee04095e5dd943d97515a1f14bad4b1c
7200Author: Ilko Iliev <iliev@ronetix.at>
7201Date: Tue Dec 2 17:27:54 2008 +0100
7202
7203 mtd/dataflash.c: fix a problem with the last partition
7204
7205 This patch fix the problem that only the [NB_DATAFLASH_AREA - 1] dataflash
7206 partition can be defined to use the area to the end of dataflash size.
7207 Now it is possible to have only one dataflash partition from 0 to the end
7208 of of dataflash size.
7209
7210 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
7211
7212commit 03f797793b124dccaae145b977d15d6cb9e74504
7213Author: Ilko Iliev <iliev@ronetix.at>
7214Date: Tue Dec 2 17:20:17 2008 +0100
7215
7216 fix some coding style violations.
7217
7218 This patch fix some coding style violations.
7219
7220 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
7221
7222commit 5e46b1e54112f4b7fd5185665e571510132c12a7
7223Author: Stefan Roese <sr@denx.de>
7224Date: Thu Nov 27 14:11:37 2008 +0100
7225
7226 OneNAND: Add missing mtd info struct before calling onenand_erase()
7227
7228 Without this patch "saveenv" crashes when MTD partitions are enabled (e.g.
7229 for use in UBI) via CONFIG_MTD_PARTITIONS.
7230
7231 Signed-off-by: Stefan Roese <sr@denx.de>
7232 Signed-off-by: Scott Wood <scottwood@freescale.com>
7233
7234commit 29382d4064fbaff5daacff4c3209370fa5713966
7235Author: Becky Bruce <becky.bruce@freescale.com>
7236Date: Thu Nov 20 16:43:52 2008 -0600
7237
7238 mpc8641: Fix error in README
7239
7240 I made some updates to the code that didn't make it into the
7241 README - fix this
7242
7243 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
7244
7245commit 801a194616d95e6fc426a176d9615ccbf9876c7f
7246Author: Jon Loeliger <jdl@freescale.com>
7247Date: Thu Nov 20 12:01:02 2008 -0600
7248
7249 Removed unused CONFIG_L1_INIT_RAM symbol.
7250
7251 Prevent further viral propogation of the unused
7252 symbol CONFIG_L1_INIT_RAM by just removing it.
7253
7254 Signed-off-by: Jon Loeliger <jdl@freescale.com>
7255
7256commit f698738e46cb461e28c2d58228bb34a2fcf5a475
7257Author: Jon Loeliger <jdl@freescale.com>
7258Date: Thu Nov 20 14:02:56 2008 -0600
7259
7260 86xx: Fix non-64-bit compilation problems.
7261
7262 Introducing 64-bit (36-bit) support for the MPC8641HPCN
7263 failed to accomodate the other two 86xx boards.
7264 Introduce definitions for CONFIG_SYS_CCSRBAR_PHYS_{LOW,HIGH}
7265 CONFIG_SYS_CCSR_DEFAULT_DBAT{U,L} and CONFIG_SYS_CCSR_DEFAULT_IBAT{U,L}
7266 with nominal 32-bit values.
7267
7268 Signed-off-by: Jon Loeliger <jdl@freescale.com>
7269 Acked-by: Becky Bruce <becky.bruce@freescale.com>
7270
7271commit bebfc6ef3ec994c8e18783269b1d8d41f8e38afd
7272Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
7273Date: Wed Nov 26 17:40:37 2008 +0100
7274
7275 Remove obsolete command (apply afte USB style patch, 80 chars strict)
7276
7277 Remove USB obsolete commmand
7278
7279 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
7280 Signed-off-by: Remy Böhmer <linux@bohmer.net>
7281
7282commit de39f8c19d7c12017248c49d432dcb81db68f724
7283Author: Michael Trimarchi <trimarchi@gandalf.sssup.it>
7284Date: Wed Nov 26 17:41:34 2008 +0100
7285
7286 USB style patch, 80 chars strict
7287
7288 USB Code style patch
7289
7290 Signed-off-by: Michael Trimarchi <trimarchi@gandalf.sssup.it>
7291 Signed-off-by: Remy Böhmer <linux@bohmer.net>
7292
7293commit d10c5a87cb8affbb4d35a311370316d4383d598e
7294Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7295Date: Fri Nov 7 22:46:21 2008 +0100
7296
7297 drivers/usb: Move conditional compilation to Makefile
7298
7299 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7300 Signed-off-by: Remy Böhmer <linux@bohmer.net>
7301
7302commit 2077e348c2a84901022ad95311b47b70361e6daa
7303Author: Scott Wood <scottwood@freescale.com>
7304Date: Tue Nov 25 10:47:02 2008 -0600
7305
7306 NAND: Fix misplaced return statement in nand_{read,write}_skip_bad().
7307
7308 This caused the operation to be needlessly repeated if there were
7309 no bad blocks and no errors.
7310
7311 Signed-off-by: Valeriy Glushkov <gvv@lstec.com>
7312 Signed-off-by: Scott Wood <scottwood@freescale.com>
7313
7314commit 89295028e7d8f7a524f485328279d72fdb102385
7315Author: Michal Simek <monstr@monstr.eu>
7316Date: Mon Nov 24 12:09:50 2008 +0100
7317
7318 ppc4xx: ml300 remove Xilinx BSP from ml300 folder
7319
7320 This BSP should be outside u-boot source tree.
7321 The second reason is that xilinx ppc405 was moved to generic platform.
7322
7323 Signed-off-by: Michal Simek <monstr@monstr.eu>
7324 Signed-off-by: Stefan Roese <sr@denx.de>
7325
7326commit 24eea623d4974a169026a975ba12fb23d48154b1
7327Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7328Date: Mon Nov 24 15:11:10 2008 +0100
7329
7330 ppc4xx: Remove unused features
7331
7332 This patch disables some unused features from the PCI405 configuration
7333 to keep U-Boot image size below 192k.
7334
7335 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7336 Signed-off-by: Stefan Roese <sr@denx.de>
7337
7338commit 0c2385c3bb51f5d3911fce1ec4720db86b534c2b
7339Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7340Date: Mon Nov 24 15:11:09 2008 +0100
7341
7342 ppc4xx: Use correct io accessors for PCI405
7343
7344 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7345 Signed-off-by: Stefan Roese <sr@denx.de>
7346
7347commit 348c849d86a6f0785752b9bc497a34658713d1d1
7348Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7349Date: Mon Nov 24 15:11:08 2008 +0100
7350
7351 ppc4xx: Remove unused code from PCI405 code
7352
7353 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
7354 Signed-off-by: Stefan Roese <sr@denx.de>
7355
6450a848
WD
7356commit 633639587e3596f0dbf5e6247dd3faf80b1d9063
7357Author: Heiko Schocher <hs@denx.de>
7358Date: Thu Nov 20 09:59:09 2008 +0100
7359
7360 powerpc, keymile boards: extract identical config options
7361
7362 This patch extracts the identical config options for the
7363 keymile boards mgcoge, mgsuvd and kmeter1 in a new
7364 common config file keymile-common.h.
7365
7366 Signed-off-by: Heiko Schocher <hs@denx.de>
7367 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7368
7369commit 9482a8e3d6ac766d90e5059dce777b1e4c868a30
7370Author: Heiko Schocher <hs@denx.de>
7371Date: Fri Nov 21 08:29:40 2008 +0100
7372
7373 powerpc: keymile: Add a check for the PIGGY debug board
7374
7375 Check the presence of the PIGGY on the keymile boards mgcoge,
7376 mgsuvd and kmeter1. If the PIGGY is not present, dont register
7377 this Ethernet device.
7378
7379 Signed-off-by: Heiko Schocher <hs@denx.de>
7380 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7381
455ae7e8
WD
7382commit 58c696eed839af894e0265064669c402dc28b371
7383Author: Wolfgang Denk <wd@xpert.denx.de>
7384Date: Mon Nov 24 21:50:59 2008 +0100
7385
7386 AT91RM9200DK: fix broken boot from NOR flash
7387
7388 Signed-off-by: Wolfgang Denk <wd@denx.de>
7389
7390commit 8052352f20b33bef8f9872fc983eac73d4693c38
7391Author: Jens Scharsig <esw@bus-elektronik.de>
7392Date: Tue Nov 18 10:48:46 2008 +0100
7393
7394 at91rm9200: fix broken boot from nor flash
7395
7396 This patch fix the broken boot from NOR Flash on AT91RM9200 boards, if
7397 CONFIG_AT91RM9200 is defined and nor preloader is used.
7398
7399 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
7400
7401commit 25ea652e907516a283b38237e83712a918f125d7
7402Author: Piotr Ziecik <kosmo@semihalf.com>
7403Date: Mon Nov 17 15:58:00 2008 +0100
7404
7405 UBI: Add proof-of-concept CFI flash support
7406
7407 With this patch UBI can be used on CFI flash chips.
7408
7409 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
7410 Signed-off-by: Stefan Roese <sr@denx.de>
7411
7412commit e6a7edbc1778d27431ac663b40a71dafa5d20578
7413Author: Piotr Ziecik <kosmo@semihalf.com>
7414Date: Mon Nov 17 15:57:59 2008 +0100
7415
7416 mtd: Remove a printf() from add_mtd_device().
7417
7418 Remove a printf() from add_mtd_device(), which produces spurious output.
7419
7420 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
7421 Signed-off-by: Stefan Roese <sr@denx.de>
7422
7423commit 91809ed51d8327a8dbbf29aa98a091154c282171
7424Author: Piotr Ziecik <kosmo@semihalf.com>
7425Date: Mon Nov 17 15:57:58 2008 +0100
7426
7427 cfi-mtd: Add cfi-mtd driver.
7428
7429 Add cfi-mtd driver, which exports CFI flash to MTD layer.
7430 This allows CFI flash devices to be used from MTD layer.
7431
7432 Building of the new driver is controlled by CONFIG_FLASH_CFI_MTD
7433 option. Initialization is done by calling cfi_mtd_init() from
7434 flash_init().
7435
7436 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
7437 Signed-off-by: Stefan Roese <sr@denx.de>
7438
7439commit 6ea808efdf9aa5d9067fbfac32acde8539129ed2
7440Author: Piotr Ziecik <kosmo@semihalf.com>
7441Date: Mon Nov 17 15:49:32 2008 +0100
7442
7443 cfi_flash: Add interface for flash verbosity control
7444
7445 Add interface for flash verbosity control. It allows
7446 to disable output from low-level flash API. It is useful
7447 when calling these low-level functions from context other
7448 than flash commands (for example the MTD/CFI interface
7449 implmentation).
7450
7451 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
7452 Signed-off-by: Stefan Roese <sr@denx.de>
7453
7454commit ebc9784ce6528385bb8d2558e783622d4bbf20f8
7455Author: Piotr Ziecik <kosmo@semihalf.com>
7456Date: Thu Nov 20 15:17:38 2008 +0100
7457
7458 cfi_flash: Export flash_sector_size() function.
7459
7460 Export flash_sector_size() function from drivers/mtd/cfi_flash.c,
7461 so that it can be used in the upcoming cfi-mtd driver.
7462
7463 Signed-off-by: Piotr Ziecik <kosmo@semihalf.com>
7464 Signed-off-by: Stefan Roese <sr@denx.de>
7465
7466commit 45aa5a7f4d5bcb79927ddfc896c1d7c4326e235d
7467Author: Stefan Roese <sr@denx.de>
7468Date: Mon Nov 17 14:45:22 2008 +0100
7469
7470 cfi_flash: Make all flash access functions weak
7471
7472 This patch defines all flash access functions as weak so that
7473 they can be overridden by board specific versions.
7474
7475 This will be used by the upcoming VCTH board support where the NOR
7476 FLASH unfortunately can't be accessed memory-mapped. Special
7477 accessor functions are needed here.
7478
7479 To enable this weak functions you need to define
7480 CONFIG_CFI_FLASH_USE_WEAK_ACCESSORS in your board config header.
7481 Otherwise the "old" default functions will be used resulting
7482 in smaller code.
7483
7484 Signed-off-by: Stefan Roese <sr@denx.de>
7485 Acked-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7486
7487commit a5c4067017631d903e1afa6ad615f0ce19fea517
7488Author: Stefan Roese <sr@denx.de>
7489Date: Mon Nov 24 08:31:16 2008 +0100
7490
7491 UBI: Change parsing of size in commands to default to hex
7492
7493 Currently the size parameters of the UBI commands (e.g. "ubi write") are
7494 decoded as decimal instead of hex as default. This patch now interprets
7495 all these values consistantly as hex, as all other standard U-Boot commands
7496 do.
7497
7498 Signed-off-by: Stefan Roese <sr@denx.de>
7499
7500commit de01c76c3ccc4e6c5989228eed58e955a3a1a968
7501Author: Stefan Roese <sr@denx.de>
7502Date: Fri Nov 21 13:06:06 2008 +0100
7503
7504 ppc4xx: ML2 shouldn't include the 4xx EMAC driver
7505
7506 Signed-off-by: Stefan Roese <sr@denx.de>
7507
7508commit 1a6a00dcc5bdfc6e9b4b00f39c1f583a7f96fc7f
7509Author: Yuri Tikhonov <yur@emcraft.com>
7510Date: Fri Nov 14 16:19:19 2008 +0300
7511
7512 ppc4xx: katmai: Change default config
7513
7514 This patch enables support for EXT2, and increases the
7515 CONFIG_SYS_BOOTMAPSZ size for the default configuration
7516 of the katmai boards to use them as the RAID-reference
7517 AMCC setups.
7518
7519 EXT2 enabling allows one to boot kernels from the EXT2
7520 formatted Compact Flash cards.
7521
7522 CONFIG_SYS_BOOTMAPSZ increasing allows one to boot the
7523 Linux kernels, which use PAGE_SIZE of 256KB. Otherwise,
7524 the memory area with DTB file (which is placed at the
7525 end of the bootmap area) will turn out to be overlapped
7526 with the BSS segment of the 256KB kernel, and zeroed
7527 in early_init() of Linux.
7528
7529 Actually, increasing of the bootmap size could be done
7530 via setting of the bootm_size U-Boot variable, but it looks
7531 like the current U-Boot implementation have some bootm_size-
7532 related functionality lost. In many places through the U-Boot
7533 code the CONFIG_SYS_BOOTMAPSZ definition is used directly
7534 (instead of trying to read the corresponding value from the
7535 environment). The same is truth for the boot_jump_linux()
7536 function in lib_ppc/bootm.c, where U-Boot transfers control
7537 to Linux passing the CONFIG_SYS_BOOTMAPSZ (not bootm_size)
7538 value to the booting kernel.
7539
7540 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
7541 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
7542 Signed-off-by: Stefan Roese <sr@denx.de>
7543
7544commit ddf45cc758d394591fb9bcdcbe96530f733f2bce
7545Author: Dave Mitchell <dmitch71@gmail.com>
7546Date: Thu Nov 20 14:09:50 2008 -0600
7547
7548 ppc4xx: Changed 460EX/GT OCM TLB and internal SRAM initialization
7549
7550 Expanded OCM TLB to allow access to 64K OCM as well as 256K of
7551 internal SRAM.
7552
7553 Adjusted internal SRAM initialization to match updated user
7554 manual recommendation.
7555
7556 OCM & ISRAM are now mapped as follows:
7557 physical virtual size
7558 ISRAM 0x4_0000_0000 0xE300_0000 256k
7559 OCM 0x4_0004_0000 0xE304_0000 64k
7560
7561 A single TLB was used for this mapping.
7562
7563 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
7564 Signed-off-by: Stefan Roese <sr@denx.de>
7565
7566commit b14ca4b61a681f75f3125676e09d7ce6af66e927
7567Author: Dave Mitchell <dmitch71@gmail.com>
7568Date: Thu Nov 20 14:00:49 2008 -0600
7569
7570 ppc4xx: Added ppc4xx-isram.h for internal SRAM and L2 cache DCRs
7571
7572 Added include/asm-ppc/ppc4xx-isram.h and moved internal SRAM and
7573 L2 cache DCRs from ppc440.h to this new header.
7574
7575 Also converted these DCR defines from lowercase to uppercase and
7576 modified referencing modules to use them.
7577
7578 Signed-off-by: Dave Mitchell <dmitch71@gmail.com>
7579 Signed-off-by: Stefan Roese <sr@denx.de>
7580
7581commit 711e2b2af820d21d9931d4cf8057d3894600fd54
7582Author: Steven A. Falco <sfalco@harris.com>
7583Date: Thu Nov 20 14:37:57 2008 -0500
7584
7585 ppc4xx: Delete unused definitions for SDR0_DDRCFG from ppc4xx.h
7586
7587 The definitions of bits in SDR_CFG are incorrect, and not used within
7588 U-Boot. Therefore, they can be removed.
7589
7590 The naming of the sdr_ddrdl/sdr_cfg registers do not follow conventions,
7591 and are unused, so they can be removed too.
7592
7593 A definition for SDR0_DDRCFG is added.
7594
7595 Signed-off-by: Steven A. Falco <sfalco@harris.com>
7596 Signed-off-by: Stefan Roese <sr@denx.de>
7597
7598commit e23c7c95a96eb0f068efe5c532215a10a1512a95
7599Author: Dirk Behme <dirk.behme@gmail.com>
7600Date: Mon Nov 10 20:15:25 2008 +0100
7601
7602 ARM: OMAP: Convert IO macros
7603
7604 Convert IO macros to readx/writex.
7605
7606 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
7607
7608commit 263b749e2e25473a48776d317bd2a7e2ddcdd212
7609Author: Ilko Iliev <iliev@ronetix.at>
7610Date: Sun Nov 9 15:53:14 2008 +0100
7611
7612 lib_arm: do_bootm_linux() - correct a small mistake
7613
7614 This patch corrects a small bug in the "if" condition:
7615 the parameter "flag" is 0 and the "if" condition is always true.
7616 The result is - the boom command doesn't start the kernel.
7617 Affected targets: all arm based.
7618
7619 Signed-off-by: Ilko Iliev <iliev@ronetix.at>
7620
7621commit 3e0cda071a67cb5709e3fa4faf6b31a731859acc
7622Author: Stelian Pop <stelian@popies.net>
7623Date: Sun Nov 9 00:14:46 2008 +0100
7624
7625 AT91: Enable PLLB for USB
7626
7627 At least some (old ?) versions of the AT91Bootstrap do not set up the
7628 PLLB correctly to 48 MHz in order to make USB host function correctly.
7629
7630 This patch sets up the PLLB to the same values Linux uses, and makes USB
7631 work ok on the following CPUs:
7632 - AT91CAP9
7633 - AT91SAM9260
7634 - AT91SAM9263
7635
7636 This patch also defines CONFIG_USB_STORAGE and CONFIG_CMD_FAT for all
7637 the relevant AT91CAP9/AT91SAM9 atmel boards.
7638
7639 Signed-off-by: Stelian Pop <stelian@popies.net>
7640 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7641
7642commit ad229a44e162af0f65e57e4e3dc133d5f0364ecb
7643Author: Stelian Pop <stelian@popies.net>
7644Date: Fri Nov 7 13:55:14 2008 +0100
7645
7646 AT91: Use AT91_CPU_CLOCK in displays
7647
7648 Introduce AT91_CPU_CLOCK and use it for displaying the CPU
7649 speed in the LCD driver.
7650
7651 Also make AT91_MAIN_CLOCK and AT91_MASTER_CLOCK reflect the
7652 corresponding board clocks.
7653
7654 Signed-off-by: Stelian Pop <stelian@popies.net>
7655
6450a848
WD
7656commit fed36ac5ae613773b6cd90e61e292c45440e10c8
7657Author: Heiko Schocher <hs@denx.de>
7658Date: Thu Nov 20 09:57:47 2008 +0100
7659
7660 powerpc: 83xx: add support for the kmeter1 board
7661
7662 This patch adds support for the kmeter1 board from Keymile,
7663 based on a Freescale MPC8360 CPU.
7664
7665 - serial console on UART 1
7666 - 256 MB DDR2 RAM
7667 - 64 MB NOR Flash
7668 - Ethernet RMII Mode over UCC4
7669 - PHY SMSC LAN8700
7670
7671 Signed-off-by: Heiko Schocher <hs@denx.de>
7672 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7673
455ae7e8
WD
7674commit 25fb4eaaeab3f8866020818f4729d990dcc91cf0
7675Author: Stefan Roese <sr@denx.de>
7676Date: Thu Nov 20 11:46:20 2008 +0100
7677
7678 ppc4xx: Clear all potentially pending exceptions in MCSR
7679
7680 This is needed on Canyonlands which still has an exception pending
7681 while running relocate_code(). This leads to a failure after trap_init()
7682 is moved to the top of board_init_r().
7683
7684 Signed-off-by: Stefan Roese <sr@denx.de>
7685
7686commit facdad5f2602e899a01746916beddbf9e856b5ee
7687Author: Heiko Schocher <hs@denx.de>
7688Date: Wed Nov 19 10:10:30 2008 +0100
7689
7690 powerpc: 83xx: add missing TIMING_CFG1_CASLAT_* defines
7691
7692 Signed-off-by: Heiko Schocher <hs@denx.de>
7693 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7694
7695commit 2f2a5c3714d17f4ead18b713128b7226e0e822f4
7696Author: Howard Gregory <Greg.Howard@freescale.com>
7697Date: Tue Nov 4 14:55:33 2008 +0800
7698
7699 mpc83xx: Improve the performance of DDR memory
7700
7701 modify the CAS timings. my understanding is that these
7702 settings decrease various wait times in the DDR interface.
7703 Because these wait times are in clock cycles, and the DDR
7704 clock on the 8315 RDB runs slower than on some other 83xx
7705 platforms, we can dial down these values without a problem,
7706 thereby decreasing the latency of memory a little.
7707
7708 Signed-off-by: Howard Gregory <Greg.Howard@freescale.com>
7709 Signed-off-by: Dave Liu <daveliu@freescale.com>
7710 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7711
7712commit 8000b086b33a5a81f3f390f37e178db7956dc08b
7713Author: Kyungmin Park <kyungmin.park@samsung.com>
7714Date: Fri Oct 24 14:55:33 2008 +0200
7715
7716 ARM: Add Apollon UBI support
7717
7718 To enable UBI on Apollon you need to uncomment the CONFIG_SYS_USE_UBI
7719 macro.
7720
7721 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7722 Signed-off-by: Stefan Roese <sr@denx.de>
7723
7724commit 694a0b3f1c0accd0de94b89555155d69f8022824
7725Author: Kyungmin Park <kyungmin.park@samsung.com>
7726Date: Wed Nov 19 11:47:05 2008 +0100
7727
7728 UBI: Add UBI command support
7729
7730 This patch adds these UBI commands:
7731
7732 ubi part [nand|onenand] [part] - Show or set current partition
7733 ubi info [l[ayout]] -Display volume and UBI layout information
7734 ubi create[vol] volume [size] [type] - Create volume name with size
7735 ubi write[vol] address volume size - Write volume from address with size
7736 ubi read[vol] address volume [size] - Read volume to address with size
7737 ubi remove[vol] volume - Remove volume
7738
7739 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7740 Signed-off-by: Stefan Roese <sr@denx.de>
7741
7742commit 58be3a1056d88c6d05f3e914389282807e69923a
7743Author: Kyungmin Park <kyungmin.park@samsung.com>
7744Date: Wed Nov 19 16:38:24 2008 +0100
7745
7746 UBI: Add basic UBI support to U-Boot (Part 8/8)
7747
7748 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
7749 It's based on the Linux UBI version and basically has a "OS"
7750 translation wrapper that defines most Linux specific calls
7751 (spin_lock() etc.) into no-ops. Some source code parts have been
7752 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
7753 this version with the Linux version and simplifies future UBI
7754 ports/bug-fixes from the Linux version.
7755
7756 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7757 Signed-off-by: Stefan Roese <sr@denx.de>
7758
7759commit 47ae6693f54f80455ae32c2e0d995e0e4bdc15b9
7760Author: Kyungmin Park <kyungmin.park@samsung.com>
7761Date: Wed Nov 19 16:36:36 2008 +0100
7762
7763 UBI: Add basic UBI support to U-Boot (Part 7/8)
7764
7765 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
7766 It's based on the Linux UBI version and basically has a "OS"
7767 translation wrapper that defines most Linux specific calls
7768 (spin_lock() etc.) into no-ops. Some source code parts have been
7769 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
7770 this version with the Linux version and simplifies future UBI
7771 ports/bug-fixes from the Linux version.
7772
7773 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7774 Signed-off-by: Stefan Roese <sr@denx.de>
7775
7776commit 7e6ee7ad27de5216db1baef76f38c3429c8f4a2a
7777Author: Kyungmin Park <kyungmin.park@samsung.com>
7778Date: Wed Nov 19 16:32:36 2008 +0100
7779
7780 UBI: Add basic UBI support to U-Boot (Part 6/8)
7781
7782 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
7783 It's based on the Linux UBI version and basically has a "OS"
7784 translation wrapper that defines most Linux specific calls
7785 (spin_lock() etc.) into no-ops. Some source code parts have been
7786 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
7787 this version with the Linux version and simplifies future UBI
7788 ports/bug-fixes from the Linux version.
7789
7790 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7791 Signed-off-by: Stefan Roese <sr@denx.de>
7792
7793commit c91a719daa331b5856109313371e4ece5ec06d96
7794Author: Kyungmin Park <kyungmin.park@samsung.com>
7795Date: Wed Nov 19 16:28:06 2008 +0100
7796
7797 UBI: Add basic UBI support to U-Boot (Part 5/8)
7798
7799 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
7800 It's based on the Linux UBI version and basically has a "OS"
7801 translation wrapper that defines most Linux specific calls
7802 (spin_lock() etc.) into no-ops. Some source code parts have been
7803 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
7804 this version with the Linux version and simplifies future UBI
7805 ports/bug-fixes from the Linux version.
7806
7807 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7808 Signed-off-by: Stefan Roese <sr@denx.de>
7809
7810commit f412fefa079c6aa9a9763f6869bf787ea6bf6e1b
7811Author: Kyungmin Park <kyungmin.park@samsung.com>
7812Date: Wed Nov 19 16:27:23 2008 +0100
7813
7814 UBI: Add basic UBI support to U-Boot (Part 4/8)
7815
7816 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
7817 It's based on the Linux UBI version and basically has a "OS"
7818 translation wrapper that defines most Linux specific calls
7819 (spin_lock() etc.) into no-ops. Some source code parts have been
7820 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
7821 this version with the Linux version and simplifies future UBI
7822 ports/bug-fixes from the Linux version.
7823
7824 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7825 Signed-off-by: Stefan Roese <sr@denx.de>
7826
7827commit 2d262c4853cb5b6ddce1a28a9641f2de3688d7ea
7828Author: Kyungmin Park <kyungmin.park@samsung.com>
7829Date: Wed Nov 19 16:26:54 2008 +0100
7830
7831 UBI: Add basic UBI support to U-Boot (Part 3/8)
7832
7833 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
7834 It's based on the Linux UBI version and basically has a "OS"
7835 translation wrapper that defines most Linux specific calls
7836 (spin_lock() etc.) into no-ops. Some source code parts have been
7837 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
7838 this version with the Linux version and simplifies future UBI
7839 ports/bug-fixes from the Linux version.
7840
7841 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7842 Signed-off-by: Stefan Roese <sr@denx.de>
7843
7844commit 961df83361aff9a14f226214224eb8a06e05ba24
7845Author: Kyungmin Park <kyungmin.park@samsung.com>
7846Date: Wed Nov 19 16:25:44 2008 +0100
7847
7848 UBI: Add basic UBI support to U-Boot (Part 2/8)
7849
7850 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
7851 It's based on the Linux UBI version and basically has a "OS"
7852 translation wrapper that defines most Linux specific calls
7853 (spin_lock() etc.) into no-ops. Some source code parts have been
7854 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
7855 this version with the Linux version and simplifies future UBI
7856 ports/bug-fixes from the Linux version.
7857
7858 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7859 Signed-off-by: Stefan Roese <sr@denx.de>
7860
7861commit f399d4a281713d5ef2d764f05d545fe61e3bd569
7862Author: Kyungmin Park <kyungmin.park@samsung.com>
7863Date: Wed Nov 19 16:23:06 2008 +0100
7864
7865 UBI: Add basic UBI support to U-Boot (Part 1/8)
7866
7867 This patch adds basic UBI (Unsorted Block Image) support to U-Boot.
7868 It's based on the Linux UBI version and basically has a "OS"
7869 translation wrapper that defines most Linux specific calls
7870 (spin_lock() etc.) into no-ops. Some source code parts have been
7871 uncommented by "#ifdef UBI_LINUX". This makes it easier to compare
7872 this version with the Linux version and simplifies future UBI
7873 ports/bug-fixes from the Linux version.
7874
7875 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7876 Signed-off-by: Stefan Roese <sr@denx.de>
7877
7878commit e29c22f5abe6e0f4baa6251efed6074cdfc3db79
7879Author: Kyungmin Park <kyungmin.park@samsung.com>
7880Date: Wed Nov 19 16:20:36 2008 +0100
7881
7882 MTD: Add MTD paritioning infrastructure
7883
7884 This MTD part infrastructure will be used by the upcoming
7885 UBI support.
7886
7887 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7888 Signed-off-by: Stefan Roese <sr@denx.de>
7889
7890commit 9b827cf1720acda2473afa516956eab6f7cca9a1
7891Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
7892Date: Thu Oct 16 22:54:03 2008 +0530
7893
7894 Align end of bss by 4 bytes
7895
7896 Most of the bss initialization loop increments 4 bytes
7897 at a time. And the loop end is checked for an 'equal'
7898 condition. Make the bss end address aligned by 4, so
7899 that the loop will end as expected.
7900
7901 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
7902 Signed-off-by: Wolfgang Denk <wd@denx.de>
7903
7904commit 3f510db522d160179dff3ddcce9b18f6241c2c24
7905Author: Becky Bruce <becky.bruce@freescale.com>
7906Date: Mon Nov 10 19:45:35 2008 -0600
7907
7908 mpc8641: fix address-cells default in old .dts detection
7909
7910 address-cells defaults to 2, not 1; so in the unlikely
7911 event that it isn't specified, this patch is required
7912 for correct operation.
7913
7914 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
7915
7916commit d025aa4b20a0618a2bada0132a9a0a4afb717f1a
7917Author: Becky Bruce <becky.bruce@freescale.com>
7918Date: Fri Oct 31 17:14:39 2008 -0500
7919
7920 lib_ppc: Move trap_init to occur earlier
7921
7922 Doing trap_init immediately once we're running from RAM
7923 means we're no longer dependent on the physical location of
7924 the flash on non-BookE platforms. Before trap_init, those
7925 platforms switch to real mode and go to 0xfff00100 on exception.
7926 After the switch, they go to 0x00000100 This makes it easier to
7927 move the flash location.
7928
7929 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
7930
7931commit d52082b12c6e545705a19433a2f4142526536189
7932Author: Becky Bruce <becky.bruce@freescale.com>
7933Date: Fri Nov 7 13:46:19 2008 -0600
7934
7935 mpc8641: Try to detect old .dts files
7936
7937 Since we've changed the memory map of the board, be nice and
7938 add some checking to try to catch out-of-date .dts files. We do
7939 this by checking the CCSRBAR location in the .dts and comparing
7940 it to the CCSRBAR location in u-boot. If they don't match, a
7941 warning msg is printed. This isn't foolproof, but it's simple and
7942 will catch most of the cases where an out-of-date .dts is present,
7943 including all of the cases where a new u-boot is used with an old
7944 standard MPC8641 .dts file as supplied with Linux.
7945
7946 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
7947
7948commit 8db0400a27839f91c047dcb83f4a0f09e054a180
7949Author: Becky Bruce <becky.bruce@freescale.com>
7950Date: Thu Nov 6 13:04:09 2008 -0600
7951
7952 toplevel Makefile: Add MPC8641HPCN_36BIT target
7953
7954 This will enable CONFIG_PHYS_36BIT for MPC8641HPCN.
7955
7956 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
7957
7958commit 3111d32c494e8251b90917447796a7206b757e1e
7959Author: Becky Bruce <becky.bruce@freescale.com>
7960Date: Thu Nov 6 17:37:35 2008 -0600
7961
7962 mpc8641: Support 36-bit physical addressing
7963
7964 This patch creates a memory map with all the devices
7965 in 36-bit physical space, in addition to the 32-bit map.
7966 The CCSR relocation is moved (again, sorry) to
7967 allow for the physical address to be 36 bits - this
7968 requires translation to be enabled. With 36-bit physical
7969 addressing enabled, we are no longer running with VA=PA
7970 translations. This means we have to distinguish between
7971 the two in the config file. The existing region name is
7972 used to indicate the virtual address, and a _PHYS variety
7973 is created to represent the physical address.
7974
7975 Large physical addressing is not enabled by default.
7976 Set CONFIG_PHYS_64BIT in the config file to turn this on.
7977
7978 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
7979
7980commit c759a01a0022de9378a3a761f49786f87684c916
7981Author: Becky Bruce <becky.bruce@freescale.com>
7982Date: Thu Nov 6 17:36:04 2008 -0600
7983
7984 mpc8641: Change 32-bit memory map
7985
7986 The memory map on the 8641hpcn is modified to look more like
7987 the 85xx boards; this is a step towards a more standardized
7988 layout going forward. As part of this change, we now relocate
7989 the flash.
7990
7991 The regions for some of the mappings were far larger than they
7992 needed to be. I have reduced the mappings to match the
7993 actual sizes supported by the hardware.
7994
7995 In addition I have removed the comments at the head
7996 of the BAT blocks in the config file, rather than updating
7997 them. These get horribly out of date, and it's a simple
7998 matter to look at the defines to see what they are set to
7999 since everything is right here in the same file.
8000
8001 Documentation has been changed to reflect the new map, as this
8002 change is user visible, and affects the OS which runs post-uboot.
8003
8004 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8005
8006commit bf9a8c34309ed9276258295db9e9212aabb2531a
8007Author: Becky Bruce <becky.bruce@freescale.com>
8008Date: Wed Nov 5 14:55:35 2008 -0600
8009
8010 mpc86xx: Change early FLASH mapping to 1M at CONFIG_MONITOR_BASE_EARLY
8011
8012 We define CONFIG_MONITOR_BASE_EARLY to define the initial location
8013 of the bootpage in flash. Use this to create an early mapping
8014 definition for the FLASH, and change the early_bats code to use this.
8015
8016 This change facilitates the relocation of the flash since the early
8017 mappings are no longer tied to the final location of the flash.
8018
8019 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8020
8021commit c1e1cf69547b138173f87a7f81c42a5d8dbfde3d
8022Author: Becky Bruce <becky.bruce@freescale.com>
8023Date: Wed Nov 5 14:55:34 2008 -0600
8024
8025 mpc86xx: Use SRR0/1/rfi to enable address translation, not blr
8026
8027 Using a mtmsr/blr means that you have to be executing at the
8028 same virtual address once you enable translation. This is
8029 unnecessarily restrictive, and is not really how this is
8030 usually done. Change it to use the more common mtspr SRR0/SRR1
8031 and rfi method.
8032
8033 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8034
8035commit 6bf98b1362f0cb237620355ed3e6762fff82388d
8036Author: Becky Bruce <becky.bruce@freescale.com>
8037Date: Wed Nov 5 14:55:33 2008 -0600
8038
8039 mpc8641: make DIAG_ADDR == FLASH_BASE
8040
8041 Currently, that's what it is, but it's hardcoded.
8042
8043 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8044
8045commit 170deacb1ddc39164bdb68f3963e0c0456a5369b
8046Author: Becky Bruce <becky.bruce@freescale.com>
8047Date: Wed Nov 5 14:55:32 2008 -0600
8048
8049 mpc8641: Drop imaginary second flash bank, map 8MB
8050
8051 There's a lot of setup and foo for the second flash
8052 bank. The problem is, this board doesn't actually have one.
8053 Clean this up. Also, the flash is 8M in size. Get rid
8054 of the confusing aliased overmapping, and just map 8M.
8055
8056 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8057
8058commit 0f2d66027bfc60dc7eea2f096af8891988c5abe4
8059Author: Becky Bruce <becky.bruce@freescale.com>
8060Date: Wed Nov 5 14:55:31 2008 -0600
8061
8062 mpc8641: only define CONFIG_ENV_SIZE once
8063
8064 It's currently defined twice inside in an if/else block, but
8065 both halves set the same value. Move the define outside
8066 the if.
8067
8068 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8069
8070commit 24bfb48c35fed6ad1f047e3e4a27df302482cd93
8071Author: Becky Bruce <becky.bruce@freescale.com>
8072Date: Wed Nov 5 14:55:30 2008 -0600
8073
8074 mpc86xx: Move setup_bats into cpu_init_f
8075
8076 In order to later allow for a physical relocation of the
8077 flash, setup_bats, which sets up the final BAT mapping
8078 for the board, needs to happen *after* init_laws().
8079 Otherwise, there will be no window programmed for the flash
8080 at the new physical location at the point when we change
8081 the mmu translation.
8082
8083 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8084
8085commit 05df3e5a638be8c5b0899eae1766bbe8e4b92c17
8086Author: Becky Bruce <becky.bruce@freescale.com>
8087Date: Wed Nov 5 14:55:29 2008 -0600
8088
8089 mpc8641: Remove extra "0" from BR2 define
8090
8091 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8092
8093commit edf3fe7d39a1ee07353128af5221422ce9ccfad6
8094Author: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8095Date: Thu Oct 23 09:08:18 2008 -0400
8096
8097 drivers/qe/uec_phy.c: Added PHY-less (fixed PHY) driver.
8098
8099 Copied over the fixed PHY driver as used in pp4xx/4xx_enet.c.
8100 This adds support for PHY-less MAC connections to the UEC.
8101
8102 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
8103 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8104
8105commit 54bdcc9fb6670afde9c26dcf364f582879bf21d6
8106Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8107Date: Thu Oct 23 16:27:24 2008 +0000
8108
8109 ColdFire: Add mii driver in drivers/net
8110
8111 All CF platforms' mii.c are consolidated into one
8112
8113 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8114 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8115
8116commit 25a859066b3af1070eb69f12022113c0a91bd813
8117Author: Ben Warren <biggerbadderben@gmail.com>
8118Date: Mon Oct 27 23:53:17 2008 -0700
8119
8120 Moved initialization of PPC4xx EMAC to cpu_eth_init()
8121
8122 Removed initialization of the driver from net/eth.c
8123
8124 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8125 Acked-by: Stefan Roese <sr@denx.de>
8126
8127commit 4d03a4e20e58552cb96d61a0e8b56cdb6cc60126
8128Author: Ben Warren <biggerbadderben@gmail.com>
8129Date: Sun Nov 9 21:29:23 2008 -0800
8130
8131 Moved PPC4xx EMAC driver to drivers/net
8132
8133 Also changed path in all linker scripts that reference this driver
8134
8135 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8136 Acked-by: Stefan Roese <sr@denx.de>
8137
8138commit 96e21f86e8266ed40759e5495ee461265d7f6d28
8139Author: Ben Warren <biggerbadderben@gmail.com>
8140Date: Mon Oct 27 23:50:15 2008 -0700
8141
8142 Changed PPC4xx EMAC driver to require CONFIG_PPC4xx_EMAC
8143
8144 All in-tree IBM/AMCC PPC4xx boards using the EMAC get this new CONFIG
8145
8146 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8147 Acked-by: Stefan Roese <sr@denx.de>
8148
8149commit 9eb79bd8856bcab896ed5e1f1bca159807a124dd
8150Author: Ben Warren <biggerbadderben@gmail.com>
8151Date: Thu Oct 23 22:02:49 2008 -0700
8152
8153 Moved initialization of MPC8XX SCC to cpu_eth_init()
8154
8155 Removed initialization of the driver from net/eth.c
8156
8157 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8158
8159commit a9bec96d6359ac9f90a852962bf3040cad9e0256
8160Author: Ben Warren <biggerbadderben@gmail.com>
8161Date: Wed Oct 22 23:47:51 2008 -0700
8162
8163 Moved initialization of MPC8220 FEC to cpu_eth_init()
8164
8165 Removed initialization of the driver from net/eth.c
8166
8167 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8168
8169commit 0e8454e990385a58f708c2fc26d31ac041c7a6c5
8170Author: Ben Warren <biggerbadderben@gmail.com>
8171Date: Wed Oct 22 23:32:48 2008 -0700
8172
8173 Moved initialization of QE Ethernet controller to cpu_eth_init()
8174
8175 Removed initialization of the driver from net/eth.c
8176
8177 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8178
8179commit 3456a148276d5494b53ee40242efb6462d163504
8180Author: Ben Warren <biggerbadderben@gmail.com>
8181Date: Wed Oct 22 23:20:29 2008 -0700
8182
8183 Moved initialization of FCC Ethernet controller to cpu_eth_init
8184
8185 Affected boards:
8186 Several MPC8xx boards
8187 Several MPC8260/MPC8272 boards
8188 Several MPC85xx boards
8189
8190 Removed initialization of the driver from net/eth.c
8191
8192 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8193
8194commit 62e15b497f5c6334c059512678c8db7940ae4c61
8195Author: Ben Warren <biggerbadderben@gmail.com>
8196Date: Thu Oct 30 22:15:35 2008 -0700
8197
8198 Fix typo in cpu/mpc85xx/cpu.c
8199
8200 CONFIG_MPC85xx_FEC -> CONFIG_MPC85XX_FEC
8201
8202 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8203
8204commit 5dfb3ee3f54e2382a08d72906f0e79ecf944f6e3
8205Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
8206Date: Sun Oct 19 12:08:50 2008 +0900
8207
8208 net: Move initialization of Au1x00 SoC ethernet MAC to cpu_eth_init
8209
8210 This patch will move au1x00_eth_initialize from net/eth.c to cpu_eth_init
8211 as a part of ongoing eth_initialize cleanup work. The function ret value
8212 is also fixed as it should be negative on fail.
8213
8214 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
8215 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8216
8217commit cc94074ecac1885d18ddb683eb934b3c0268aa5b
8218Author: Ben Warren <biggerbadderben@gmail.com>
8219Date: Fri Sep 5 01:55:22 2008 -0400
8220
8221 Moved initialization of IXP4XX_NPE Ethernet controller to cpu_eth_init()
8222
8223 Also, removed the driver initialization from net/eth.c
8224
8225 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8226
8227commit f2a7806fc23e82d30c8548911369e0c530607354
8228Author: Clive Stubbings <uboot@xentech.co.uk>
8229Date: Mon Oct 27 15:05:00 2008 +0000
8230
8231 xilinx_emaclite buffer overrun
8232
8233 Patch to fix buffer allocation size and alignment. Buffer needs to be u32 aligned and
8234 PKTSIZE_ALIGN bytes long.
8235
8236 Acked-by: Michal Simek <monstr@monstr.eu>
8237
8238 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8239
8240commit 0115b1953718a2969f6469d3d5da51ba11e12d42
8241Author: richardretanubun <richardretanubun@ruggedcom.com>
8242Date: Fri Sep 26 08:59:12 2008 -0400
8243
8244 NET: QE: UEC: Make uec_miiphy_read() and uec_miiphy_write() use the devname arg.
8245
8246 The current uec_miiphy_read and uec_miiphy_write hardcode access devlist[0]
8247 This patch makes these function use the devname argument that is passed in to
8248 allow access to the phy registers of other devices in devlist[].
8249
8250 Signed-of-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
8251
8252 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8253
8254commit 44dcb7332033db8de2810f2fffcae3084f15c8d4
8255Author: richardretanubun <richardretanubun@ruggedcom.com>
8256Date: Mon Oct 6 15:31:43 2008 -0400
8257
8258 Adds two more ethernet interface to 83xx
8259
8260 Fixed compiler warning "declared but unused" eth5_uec_info and eth6_uec_info.
8261 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
8262 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8263
8264commit d8003fa03733901b73d6c4667b4d80fc8eb1ddd3
8265Author: Stelian Pop <stelian@popies.net>
8266Date: Fri Nov 7 13:54:31 2008 +0100
8267
8268 AT91: Replace AT91_BASE_EMAC by the board specific values.
8269
8270 AT91_BASE_EMAC is never used outside the board specific files,
8271 so replace its usage by the board specific AT91xxx_BASE_EMAC.
8272
8273 Signed-off-by: Stelian Pop <stelian@popies.net>
8274 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8275
8276commit c91e17affa175ce06afa89b04752301eb4a61666
8277Author: Stelian Pop <stelian@popies.net>
8278Date: Fri Nov 7 12:09:21 2008 +0100
8279
8280 AT91: Replace (undefined) AT91_ID_US* by the board specific values.
8281
8282 AT91_ID_US0 / AT91_ID_US1 / AT91_ID_US2 were used but never defined.
8283 Since they are never used outside the board specific files, they can
8284 be replaced by the board specific AT91xxx_ID_US0 / AT91xxx_ID_US1 /
8285 AT91xxx_ID_US2.
8286
8287 Bug spotted by Jesus Alvarez <jalvarez@micromint.com>.
8288
8289 Signed-off-by: Stelian Pop <stelian@popies.net>
8290 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8291
8292commit 28962f5a2de81bc0eed1c0b08c6bfaa1cc134ea2
8293Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8294Date: Sat Nov 1 10:47:59 2008 +0100
8295
8296 Makefile/at91sam9: move some at91sam9 to the correct subsection for arm926ejs
8297
8298 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8299
8300commit 1079432e04ccf71aa3684181186182cd63512f19
8301Author: Sergey Lapin <slapin@ossfans.org>
8302Date: Fri Oct 31 12:28:43 2008 +0100
8303
8304 Custom AFEB9260 board support
8305
8306 This patch provides support for AFEB9260 board, a product of
8307 OpenSource hardware and software. Some commertial projects
8308 are made with this design. A board is basically AT91SAM9260-EK
8309 with some modifications and different peripherals and different
8310 parts used. Main purpose of this project is to gain experience in
8311 hardware design.
8312 More info: http://groups.google.com/group/arm9fpga-evolution-board
8313 (In Russian only, sorry).
8314 Subversion repository: svn://194.85.238.22/home/users/george/svn/arm9eb
8315
8316 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
8317
8318commit 26eecd24f97130e56e9c2c2af0e714e05bce6e00
8319Author: Tomohiro Masubuchi <tomohiro_masubuchiattripeaks.co.jp>
8320Date: Tue Oct 21 13:17:16 2008 +0900
8321
8322 Change to use "do_div" macro
8323
8324 Signed-off-by: Tomohiro Masubuchi <tomohiro_masubuchi@tripeaks.co.jp>
8325
8326commit e352495318d8056a00faa21b633b3e4374bfbf52
8327Author: Roman Mashak <romez777@gmail.com>
8328Date: Wed Oct 22 16:00:26 2008 -0400
8329
8330 ARM926EJ-S: relocate OMAP specific 'cpuinfo.c' into OMAP directory
8331
8332 OMAP identification is implemented in 'cpuinfo.c' and located in ARM926EJ-S directory.
8333 It makes sense to place this file in OMAP specific subdirectory, i.e. cpu/arm926ejs/omap
8334
8335 Signed-off-by: Roman Mashak <romez777@gmail.com>
8336
8337commit 248b2c367210c06dbd5fbdecf27e97fbe9d05fdb
8338Author: Roman Mashak <romez777@gmail.com>
8339Date: Tue Oct 21 03:01:41 2008 -0700
8340
8341 ARM/Versatile port: Removed unused functions
8342
8343 Removal of never used functions.
8344
8345 Signed-off-by: Roman Mashak <romez777@gmail.com>
8346
8347commit 1266df887781c779deaf6d05eea2ef90a470cb34
8348Author: Becky Bruce <becky.bruce@freescale.com>
8349Date: Mon Nov 3 15:44:01 2008 -0600
8350
8351 powerpc: change 86xx SMP boot method
8352
8353 We put the bootpg for the secondary cpus into memory and use
8354 BPTR to get to it. This is a step towards converting to the
8355 ePAPR boot methodology. Also, the code is written to
8356 deal properly with more than 4GB of RAM.
8357
8358 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8359
8360commit b5431560682d8f318fbc49db87cfe13ab41d2ee4
8361Author: Becky Bruce <becky.bruce@freescale.com>
8362Date: Fri Oct 31 17:13:49 2008 -0500
8363
8364 8641HPCN: Config file cleanup
8365
8366 There are several items in the config file that were hardcoded
8367 but that should really be based on other config options, since
8368 the regions are contiguous and depend on being so. This cleans
8369 that up a bit. Also, add BR_PHYS_ADDR() macro to convert
8370 addresses into the proper format for BR registers.
8371
8372 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8373
8374commit 4c77de3f144ca088c3867bd6240718c10f5a9d69
8375Author: Becky Bruce <becky.bruce@freescale.com>
8376Date: Fri Oct 31 17:13:32 2008 -0500
8377
8378 86xx: Make dram_size a phys_size_t
8379
8380 It's currently a long and should be phys_size_t.
8381
8382 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8383
8384commit 104992fc541302a6bac74448e01e7fdad20abca0
8385Author: Becky Bruce <becky.bruce@freescale.com>
8386Date: Sun Nov 2 18:19:32 2008 -0600
8387
8388 powerpc 86xx: Handle CCSR relocation earlier
8389
8390 Currently, the CCSR gets relocated while translation is
8391 enabled, meaning we need 2 BAT translations to get to both the
8392 old location and the new location. Also, the DEFAULT
8393 CCSR location has a dependency on the BAT that maps the
8394 FLASH region. Moving the relocation removes this unnecessary
8395 dependency. This makes it easier and more intutive to
8396 modify the board's memory map.
8397
8398 Swap BATs 3 and 4 on 8610 so that all 86xx boards use the same
8399 BAT for CCSR space.
8400
8401 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8402
8403commit af5d100e8d5cd49d69d52d20f1181eb06ddb4ddf
8404Author: Becky Bruce <becky.bruce@freescale.com>
8405Date: Fri Oct 31 17:14:14 2008 -0500
8406
8407 mpc8641: Make PCI and RIO mutually exclusive, fix non-PCI build
8408
8409 You can't actually have both, and with some coming changes to
8410 change the memory map for the board and support 36-bit physical,
8411 we need the extra BAT that is being consumed by having both.
8412
8413 I also make non-PCI configs build cleanly, for the sake of sanity.
8414
8415 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8416
8417commit 98693b85d42ff438375dc6d6dcadc70eb7b050bb
8418Author: Becky Bruce <becky.bruce@freescale.com>
8419Date: Fri Oct 31 17:14:00 2008 -0500
8420
8421 mpc8641: Stop supporting non-PCI_PNP configs
8422
8423 We don't actually ever do this, remove the code so we
8424 can stop maintaining it.
8425
8426 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8427
8428commit e4f69d1bd21a12049744989d2dd6b5199c9b8f23
8429Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8430Date: Fri Oct 24 12:59:12 2008 +0000
8431
8432 ColdFire: Fix M5329EVB and M5373EVB nand issue
8433
8434 Fix compilation issue caused by a few mismatches.
8435 Provide proper nand chip select enable/disable in
8436 nand_hwcontrol() rather than in board_nand_init()
8437 just enable once. Remove redundant local nand driver
8438 functions - nand_read_byte(), nand_write_byte() and
8439 nand_dev_ready() to use common nand driver.
8440
8441 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8442
8443commit 1b2708442224a551a0b865b52710306333888932
8444Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8445Date: Wed Oct 22 11:55:30 2008 +0000
8446
8447 ColdFire: Fix compilation error
8448
8449 The error was caused by the change for strmhz() in cpu.c.
8450 A few of them were one extra close parenthesis.
8451
8452 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8453
8454commit 536e7dac16769954915a484e682a2efb28699133
8455Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8456Date: Wed Oct 22 11:38:21 2008 +0000
8457
8458 ColdFire: Add MCF5301x CPU and M53017EVB support
8459
8460 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8461
8462commit a21d0c2cc9add8894d971ab791f4032f077db817
8463Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8464Date: Tue Oct 21 15:37:02 2008 +0000
8465
8466 ColdFire: Add SBF support for M52277EVB
8467
8468 Add serial boot support
8469
8470 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8471
8472commit b202816c61042c183fe67d097a5893b0f2dafba0
8473Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8474Date: Tue Oct 21 14:19:26 2008 +0000
8475
8476 ColdFire: Use CFI driver for M5272C3
8477
8478 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8479
8480commit f3962d3f574e5a1cffacd4e9bc48713060a2a314
8481Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8482Date: Tue Oct 21 13:47:54 2008 +0000
8483
8484 ColdFire: Relocate FEC's GPIO and mii functions protocols
8485
8486 Place FEC pin assignments in cpu_init.c from platform's
8487 mii.c
8488
8489 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8490
8491commit 6e80f5aa09f8d41bac50b38dc7488ecd22107802
8492Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8493Date: Tue Oct 21 12:15:44 2008 +0000
8494
8495 ColdFire: Remove platforms mii.c file
8496
8497 Will use mcfmii.c driver in drivers/net rather than
8498 keep creating new mii.c for each future platform.
8499 Remove EB+MCF-EV123, cobra5272, idmr, M5235EVB,
8500 M5271EVB, M5272C3, M5275EVB, M5282EVB, M5329EVB,
8501 M5373EVB, M54451EVB, M54455EVB, M547xEVB, and M548xEVB's
8502 mii.c
8503
8504 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8505
8506commit 012522fef3b382469125beb46a315ab4dee02fb0
8507Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8508Date: Tue Oct 21 10:03:07 2008 +0000
8509
8510 ColdFire: Modules header files cleanup
8511
8512 Consolidate ATA, ePORT, QSPI, FlexCan, PWM, RNG,
8513 MDHA, SKHA, INTC, and FlexBus structures and
8514 definitions in immap_5xxx.h to more unify modules
8515 header files. Append DSPI support for m547x_8x.
8516 SSI cleanup. Remove USB Host structure from immap_539.h.
8517 Apply changes to use FlexBus structures in mcf52x2's
8518 cpu_init.c and platform configuration files.
8519
8520 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8521
8522commit ac2331aee99ad36be0fcfed8c49922e3c61b576d
8523Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8524Date: Tue Oct 21 08:52:36 2008 +0000
8525
8526 ColdFire: Remove linker file
8527
8528 Each different build for M54455EVB and M5235EVB will
8529 create a u-boot.lds linker file. It is redundant to
8530 keep the u-boot.lds
8531
8532 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
8533
8534commit 0829323073c505556ed5f5073f91adb504584d45
8535Author: Peter Tyser <ptyser@xes-inc.com>
8536Date: Fri Oct 31 11:26:44 2008 -0500
8537
8538 ppc: Fix compile warnings when !CONFIG_OF_LIBFDT
8539
8540 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8541
8542commit a80b21d5127583171d6e9bc7f722947641898012
8543Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8544Date: Fri Oct 31 12:12:12 2008 +0100
8545
8546 common/Makefile: create others group for non core, environment and command files
8547
8548 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8549
8550commit 60c68d9c1c6d18ce02c862a05718fd94f97c13d0
8551Author: Wolfgang Denk <wd@denx.de>
8552Date: Fri Oct 31 01:13:37 2008 +0100
8553
8554 TQM8260: use CFI flash driver instead of custom driver.
8555
8556 Signed-off-by: Wolfgang Denk <wd@denx.de>
8557
8558commit 20d04774f4ef3f6e38974636e0e36ae0f0b5501f
8559Author: Andy Fleming <afleming@freescale.com>
8560Date: Thu Oct 30 17:35:30 2008 -0500
8561
8562 Consolidate MAX/MIN definitions
8563
8564 There were several, now there is one (two if you count the lower-case
8565 versions).
8566
8567 Signed-off-by: Andy Fleming <afleming@freescale.com>
8568
8569commit 298e476c66fd88d0bc4f0371118652d2b5de4e8a
8570Author: Heiko Schocher <hs@denx.de>
8571Date: Thu Oct 30 09:23:09 2008 +0100
8572
8573 mgsuvd: remove unused defines in config file.
8574
8575 Signed-off-by: Heiko Schocher <hs@denx.de>
8576
8577commit 3cbd823116ea8b7c654e275a8c2fca87cd1f5dc5
8578Author: Wolfgang Denk <wd@denx.de>
8579Date: Sun Nov 2 16:14:22 2008 +0100
8580
8581 Coding Style cleanup, update CHANGELOG
8582
8583 Signed-off-by: Wolfgang Denk <wd@denx.de>
8584
3cbd8231
WD
8585commit a47f957ab523019992fdef857af01bd71c58a4da
8586Author: Alessandro Rubini <rubini-list@gnudd.com>
8587Date: Fri Oct 31 22:33:21 2008 +0100
8588
8589 NAND: Allow NAND and OneNAND to coexist
8590
8591 This removes in nand.h code that is verbatim duplicated from bbm.h,
8592 including directly bbm.h in nand.h. The previous state of affairs
8593 prevented compiling code for a board hosting both NAND and OneNAND chips.
8594
8595 Reported-by: Scott Wood <scottwood@freescale.com>
8596 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
8597 Signed-off-by: Scott Wood <scottwood@freescale.com>
8598
8599commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
8600Author: Scott Wood <scottwood@freescale.com>
8601Date: Fri Oct 31 13:51:12 2008 -0500
8602
8603 JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
8604
8605 Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
8606 Signed-off-by: Scott Wood <scottwood@freescale.com>
8607
8608commit c57fc28947e248fb03c49a28b467686299895055
8609Author: Jason Jin <Jason.Jin@freescale.com>
8610Date: Fri Oct 31 05:07:04 2008 -0500
8611
8612 NAND: Add NAND support for MPC8536DS board
8613
8614 This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
8615 for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
8616 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
8617
8618 Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
8619 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
8620 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8621
8622commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
8623Author: Haiying Wang <Haiying.Wang@freescale.com>
8624Date: Fri Oct 31 05:06:14 2008 -0500
8625
8626 NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
8627
8628 CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
8629
8630 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
8631 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8632
8633commit 51b572a801be57790fe26adaa530210e7fba59cc
8634Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8635Date: Fri Oct 24 10:49:48 2008 +0900
8636
8637 sh: rsk7203: Moved rsk7203 board to board/renesas
8638
8639 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8640
8641commit 58453b00b3ebb26aaa901210023f99504a90bb00
8642Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8643Date: Fri Oct 24 10:48:31 2008 +0900
8644
8645 sh: MigoR: Moved MigoR board to board/renesas
8646
8647 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8648
8649commit c1da2a22817ba85b437afa2f4e715e658b219fd1
8650Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8651Date: Fri Oct 24 10:39:44 2008 +0900
8652
8653 sh: r2dplus: Moved r2dplus board to board/renesas
8654
8655 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8656
8657commit 78385bf2359d828184d0b3649f7ae6b933420000
8658Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8659Date: Fri Oct 24 10:36:13 2008 +0900
8660
8661 sh: sh7763rdp: Moved sh7763rdp board to board/renesas
8662
8663 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8664
8665commit c6525d459c350bfc246ea7826456af77e1e314eb
8666Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8667Date: Fri Oct 24 10:35:19 2008 +0900
8668
8669 sh: sh7785lcr: Moved sh7785lcr board to board/renesas
8670
8671 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8672
8673commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
8674Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8675Date: Fri Oct 24 10:34:21 2008 +0900
8676
8677 sh: r7780mp: Moved r7780mp board to board/renesas
8678
8679 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8680
8681commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
8682Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8683Date: Fri Oct 24 10:32:14 2008 +0900
8684
8685 sh: ap325rxa: Moved ap325rxa board to board/renesas
8686
8687 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
8688
8689commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
8690Author: Wolfgang Denk <wd@xpert.denx.de>
8691Date: Fri Oct 31 01:12:28 2008 +0100
8692
8693 CFI Driver: Fix "flash not ready" problem
8694
8695 This patch fixes a problem on systems where the NOR flash is attached
8696 to a 64 bit bus. The toggle bit detection in flash_toggle() is based
8697 on the assumption that the same flash address is read twice without
8698 any other interjacent flash accesses. However, on 32 bit systems the
8699 function flash_read64() [as currently implemented] does not perform
8700 an atomic 64 bit read - instead, this is broken down into two 32 bit
8701 read accesses on addresses "addr" and "addr + 4". So instead of
8702 reading a 64 bit value twice from "addr", we see a sequence of 4 32
8703 bit reads from "addr", "addr + 4", "addr", and "addr + 4". The
8704 consequence is that flash_toggle() fails to work.
8705
8706 This patch implements a simple, but somewhat ugly solution, as it
8707 avoids the use of flash_read64() in this critical place (by breaking
8708 it down manually into 32 bit read operations) instead of rewriting
8709 flash_read64() such to perform atomic 64 bit reads as one could
8710 expect. However, such a rewrite would require the use of floating
8711 point load operations, which becomes pretty complex:
8712
8713 save MSR;
8714 set Floating Point Enable bit in MSR;
8715 use "lfd" instruction to perform atomic 64 bit read;
8716 use "stfd" to store value to temporary variable on stack;
8717 load u64 value from temporary variable;
8718 restore saved MSR;
8719 return u64 value;
8720
8721 The benefit-cost ratio of such an implementation was considered too
8722 bad to actually attempt this, especially as we can expect that such
8723 an implementation would not only have a bigger memory footprint but
8724 also cause a performance degradation.
8725
8726 Signed-off-by: Wolfgang Denk <wd@denx.de>
8727 Signed-off-by: Stefan Roese <sr@denx.de>
8728
8729commit cdd4fe63b094d4b767f12ff241d72566b461ee61
8730Author: Stefan Roese <sr@denx.de>
8731Date: Fri Oct 31 10:48:08 2008 +0100
8732
8733 ppc4xx: Fix spelling error in MAINTAINERS file
8734
8735 Signed-off-by: Stefan Roese <sr@denx.de>
8736
8737commit be270798900b75ad9c47c7b79c72f70441196c56
8738Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8739Date: Tue Oct 28 13:37:00 2008 +0100
8740
8741 ppc4xx: Update PMC440 board support
8742
8743 This patch brings PMC440 board support up to date:
8744
8745 - fix GPIO configuration
8746 - add misc_init_f()
8747 - use better values for usbact variable
8748 - fix USB 2.0 phy reset sequence
8749 - shrink BAR2 to save PCI address space
8750 - add FDT support
8751
8752 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8753 Signed-off-by: Stefan Roese <sr@denx.de>
8754
8755commit 75183b1a7fc04206d9779d13f16e03853d7e965d
8756Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8757Date: Tue Oct 28 13:36:59 2008 +0100
8758
8759 ppc4xx: Fix PMC440 BSP commands
8760
8761 This patch fixes the PMC440 BSP commands painit and selfreset
8762
8763 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8764 Signed-off-by: Stefan Roese <sr@denx.de>
8765
8766commit 76b565b69f886d5ae748db65e44f464b0e70d41a
8767Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8768Date: Tue Oct 28 13:36:58 2008 +0100
8769
8770 ppc4xx: Update PMC440 board configuration
8771
8772 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8773 Signed-off-by: Stefan Roese <sr@denx.de>
8774
8775commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
8776Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8777Date: Tue Oct 28 13:36:57 2008 +0100
8778
8779 ppc4xx: Fix esd loadpci command
8780
8781 This patch fixes esd's loadpci command when not all
8782 memory on adapter boards is accessable via PCI.
8783
8784 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8785 Signed-off-by: Stefan Roese <sr@denx.de>
8786
8787commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
8788Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8789Date: Tue Oct 28 13:36:56 2008 +0100
8790
8791 ppc4xx: Clean up PMC440 header
8792
8793 -Codingstyle cleanup
8794 -Remove unused GPIO define
8795
8796 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8797 Signed-off-by: Stefan Roese <sr@denx.de>
8798
8799commit 295133258a44f97a57fb2ec339aecfda11f4db95
8800Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8801Date: Tue Oct 28 13:36:55 2008 +0100
8802
8803 ppc4xx: Handle other board variant in PMC440 FPGA code
8804
8805 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
8806 Signed-off-by: Stefan Roese <sr@denx.de>
8807
8808commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
8809Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8810Date: Mon Oct 27 12:35:59 2008 +0100
8811
8812 ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
8813
8814 Xilinx ppc440 and ppc405 have many similarities. This patch merge the
8815 config files of both infrastuctures
8816
8817 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
8818 Signed-off-by: Stefan Roese <sr@denx.de>
8819
8820commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
8821Author: Stefan Roese <sr@denx.de>
8822Date: Sat Oct 25 06:45:31 2008 +0200
8823
8824 ppc4xx: Correctly configure the GPIO pin muxing on Arches
8825
8826 Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
8827 pin multiplexing correctly
8828
8829 Signed-off-by: Stefan Roese <sr@denx.de>
8830
8831commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
8832Author: Bartlomiej Sieka <tur@semihalf.com>
8833Date: Thu Oct 30 23:22:04 2008 +0100
8834
8835 Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
8836
8837 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
8838
8839commit 4bc7deee9095f21e243b724ca3d634251c1d5432
8840Author: David Gibson <david@gibson.dropbear.id.au>
8841Date: Wed Oct 29 23:27:45 2008 -0500
8842
8843 libfdt: Fix bug in fdt_subnode_offset_namelen()
8844
8845 There's currently an off-by-one bug in fdt_subnode_offset_namelen()
8846 which causes it to keep searching after it's finished the subnodes of
8847 the given parent, and into the subnodes of siblings of the original
8848 node which come after it in the tree.
8849
8850 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
8851 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8852
8853commit f242a08871839eac081ba5b599af979f3a148a0d
8854Author: Peter Korsgaard <jacmet@sunsite.dk>
8855Date: Tue Oct 28 08:26:52 2008 +0100
8856
8857 fdt_resize(): ensure minimum padding
8858
8859 fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
8860 (16 bytes), so make sure that fdt_resize at least adds that much
8861 padding, no matter what the location or size of the fdt is.
8862
8863 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
8864 Acked-by: Andy Fleming <afleming@freescale.com>
8865
8866commit d685b74c64a38849f1a129b3ab846fbf67dd937e
8867Author: Dave Liu <daveliu@freescale.com>
8868Date: Thu Oct 23 21:59:35 2008 +0800
8869
8870 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
8871
8872 The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
8873
8874 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
8875
8876 This is needed in unlock_ram_in_cache() because it is called from C and
8877 will corrupt the small data area anchor that is kept in R2.
8878
8879 lock_ram_in_cache() is modified similarly as good coding practice, but
8880 is not called from C.
8881
8882 Signed-off-by: Nick Spence <nick.spence@freescale.com>
8883
8884 also, the r2 is used as global data pointer.
8885
8886 Signed-off-by: Dave Liu <daveliu@freescale.com>
8887
8888commit e053ab1903ccae6048ef759025b9f675bba91450
8889Author: Scott Wood <scottwood@freescale.com>
8890Date: Tue Oct 28 11:45:04 2008 -0500
8891
8892 mpc83xx pci: Round up memory size in inbound window.
8893
8894 The current calculation will fail to cover all memory if
8895 its size is not a power of two.
8896
8897 Signed-off-by: Scott Wood <scottwood@freescale.com>
8898 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
8899
8900commit 1c671977dc81359628be27ac99c174e76e8069ba
8901Author: Dave Liu <daveliu@freescale.com>
8902Date: Thu Oct 23 21:19:13 2008 +0800
8903
8904 86xx: remove the unused definition
8905
8906 Signed-off-by: Dave Liu <daveliu@freescale.com>
8907
8908commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
8909Author: Dave Liu <daveliu@freescale.com>
8910Date: Tue Oct 28 17:47:49 2008 +0800
8911
8912 86xx: remove the redundant r2 global data pointer save
8913
8914 The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
8915 the another global data pointer save, but in fact the
8916 global data pointer will be initialized in the board_init_r,
8917 so remove it such as the 85xx/83xx family.
8918
8919 Signed-off-by: Dave Liu <daveliu@freescale.com>
8920 Acked-by: Kumar Gala <kumar.gala@freescale.com>
8921
8922commit bd888e9544419665334a6f47f81f34011cea38f3
8923Author: Dave Liu <daveliu@freescale.com>
8924Date: Tue Oct 28 17:47:41 2008 +0800
8925
8926 86xx: remove the unused code for 86xx family
8927
8928 I believe these code was copied from 74xx family, but for
8929 86xx, it is unused.
8930
8931 Signed-off-by: Dave Liu <daveliu@freescale.com>
8932 Acked-by: Kumar Gala <kumar.gala@freescale.com>
8933
8934commit 5ba1ef507402bc5e344dc374203792a40f222e8a
8935Author: Dave Liu <daveliu@freescale.com>
8936Date: Tue Oct 28 17:46:35 2008 +0800
8937
8938 86xx: remove the second DDR LAW setting for mpc8641hpcn
8939
8940 The DDR1 LAW will precedence the DDR2 LAW, so remove
8941 the second DDR LAW.
8942
8943 Signed-off-by: Dave Liu <daveliu@freescale.com>
8944 Acked-by: Becky Bruce <becky.bruce@freescale.com>
8945
8946commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
8947Author: Dave Liu <daveliu@freescale.com>
8948Date: Tue Oct 28 17:46:23 2008 +0800
8949
8950 86xx: remove the unused ddr_enable_ecc in the board file
8951
8952 The DDR controller of 86xx processors have the ECC data init
8953 feature, and the new DDR code is using the feature, we don't
8954 need the way with DMA to init memory again.
8955
8956 Signed-off-by: Dave Liu <daveliu@freescale.com>
8957 Acked-by: Kumar Gala <kumar.gala@freescale.com>
8958
8959commit dc2adad85bf580d65916c940683f6e9671e8a5dd
8960Author: Dave Liu <daveliu@freescale.com>
8961Date: Tue Oct 28 17:46:12 2008 +0800
8962
8963 86xx: Move the clear_tlbs before MMU turn on
8964
8965 We must invalidate TLBs before MMU turn on, but
8966 currently the code is not, if there are some stale
8967 TLB entry valid in the TLBs, it will cause strange
8968 issue.
8969
8970 Signed-off-by: Dave Liu <daveliu@freescale.com>
8971 Acked-by: Becky Bruce <becky.bruce@freescale.com>
8972
8973commit 5cdade07b118d07154cb882650f9778cecc8a87c
8974Author: Scott Wood <scottwood@freescale.com>
8975Date: Mon Oct 27 15:57:08 2008 -0500
8976
8977 mpc8313erdb: Document NAND boot.
8978
8979 Previously, the documentation claimed that NAND boot is not supported.
8980 This is no longer true.
8981
8982 Signed-off-by: Scott Wood <scottwood@freescale.com>
8983
8984commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
8985Author: Scott Wood <scottwood@freescale.com>
8986Date: Wed Oct 29 14:20:26 2008 -0500
8987
8988 NAND: Properly create JFFS2 cleanmarkers.
8989
8990 As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
8991 command is currently broken, and among other things causes all blocks
8992 to be marked bad.
8993
8994 This implements it properly using MTD_OOB_AUTO, along with some
8995 indentation fixes.
8996
8997 Signed-off-by: Scott Wood <scottwood@freescale.com>
8998
8999commit f7fe57c09866b44692d18c8cf22828bd137ec58d
9000Author: Scott Wood <scottwood@freescale.com>
9001Date: Wed Oct 29 13:42:41 2008 -0500
9002
9003 NAND fsl elbc: Set FMR[ECCM] based on page size.
9004
9005 Hardware expects ECCM 0 for small page and ECCM 1 for large page
9006 when booting from NAND, so use those defaults.
9007
9008 Signed-off-by: Scott Wood <scottwood@freescale.com>
9009
9010commit c013b74975dab0805ef6d369b013230c4e8a660d
9011Author: Haiying Wang <Haiying.Wang@freescale.com>
9012Date: Wed Oct 29 13:32:59 2008 -0400
9013
9014 NAND: Add support for MPC8572DS board
9015
9016 This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
9017 0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
9018 config file.
9019
9020 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
9021 make room for the increased code size with NAND enabled.
9022
9023 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
9024 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
9025 Signed-off-by: Scott Wood <scottwood@freescale.com>
9026
9027commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
9028Author: Haiying Wang <Haiying.Wang@freescale.com>
9029Date: Wed Oct 29 11:05:55 2008 -0400
9030
9031 Make Freescale local bus registers available for both 83xx and 85xx.
9032
9033 - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
9034 can be shared by both 83xx and 85xx
9035 - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
9036 files which use lbus83xx_t.
9037 - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
9038 85xx can share them.
9039
9040 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
9041 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
9042 Signed-off-by: Scott Wood <scottwood@freescale.com>
9043
9044commit 695c130e4bf75b444720ddfd83aca88f41c046cf
9045Author: Scott Wood <scottwood@freescale.com>
9046Date: Mon Oct 27 15:38:30 2008 -0500
9047
9048 NAND: Align right column of the shorthelp with other commands.
9049
9050 I accidentally broke this in when making consistent the partial
9051 alignment of the longhelp.
9052
9053 Signed-off-by: Scott Wood <scottwood@freescale.com>
9054
9055commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
9056Author: Karl Beldan <karl.beldan@gmail.com>
9057Date: Mon Sep 15 16:08:03 2008 +0200
9058
9059 NAND: Reset chip on power-up
9060
9061 Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
9062 The first command sent is NAND_CMD_READID.
9063 Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
9064 Tested with an MT29F4G08AAC.
9065
9066 Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
9067 Signed-off-by: Scott Wood <scottwood@freescale.com>
9068
9069commit c45912d8abc52de796b9059a58faf7c4166eab58
9070Author: Scott Wood <scottwood@freescale.com>
9071Date: Fri Oct 24 16:20:43 2008 -0500
9072
9073 NAND: sync with 2.6.27
9074
9075 This brings the core NAND code up to date with the Linux kernel.
9076
9077 Since there were several drivers in Linux as of the last update that are
9078 not in u-boot, I'm not bringing over new drivers that have been added
9079 since in the absence of an interested party.
9080
9081 I did not update OneNAND since it was recently synced by Kyungmin Park,
9082 and I'm not sure exactly what the common ancestor is.
9083
9084 Signed-off-by: Scott Wood <scottwood@freescale.com>
9085
9086commit b1d0db1805c3395149777e507b6da53410abac4e
9087Author: Kumar Gala <galak@kernel.crashing.org>
9088Date: Tue Oct 21 17:25:47 2008 -0500
9089
9090 bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
9091
9092 Added the ability to config out bootm support for Linux, NetBSD, RTEMS
9093
9094 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9095
9096commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
9097Author: Kumar Gala <galak@kernel.crashing.org>
9098Date: Tue Oct 21 17:25:46 2008 -0500
9099
9100 bootm: support subcommands in linux ppc bootm
9101
9102 Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
9103
9104 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9105
9106commit 49c3a861d11735838f1f1b11999ce433006dc919
9107Author: Kumar Gala <galak@kernel.crashing.org>
9108Date: Tue Oct 21 17:25:45 2008 -0500
9109
9110 bootm: Add subcommands
9111
9112 Add the ability to break the steps of the bootm command into several
9113 subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
9114
9115 This allows us to do things like manipulate device trees before
9116 they are passed to a booting kernel or setup memory for a secondary
9117 core in multicore situations.
9118
9119 Not all OS types support all subcommands (currently only start, loados,
9120 ramdisk, fdt, and go are supported).
9121
9122 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9123
9124commit be08315933537f061bc1ce61f33a29c56458bbad
9125Author: Kumar Gala <galak@kernel.crashing.org>
9126Date: Tue Oct 21 17:25:44 2008 -0500
9127
9128 bootm: Move to using a function pointer table for the boot os function
9129
9130 This removes a bit of code and makes it easier for the upcoming sub bootm
9131 command support to call into the proper OS specific handler.
9132
9133 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9134 Signed-off-by: Wolfgang Denk <wd@denx.de>
9135
9136commit a369f4a492fa2805d87775d27380f0eeaca35aa6
9137Author: Graeme Russ <graeme.russ@gmail.com>
9138Date: Mon Sep 29 23:03:14 2008 +1000
9139
9140 i386: Renamed show_boot_progress in assembler code
9141
9142 Renamed show_boot_progress in assembler init phase to
9143 show_boot_progress_asm to avoid link conflicts with C version
9144
9145 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
9146
9147commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
9148Author: Peter Tyser <ptyser@xes-inc.com>
9149Date: Mon Oct 27 16:42:00 2008 -0500
9150
9151 85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
9152
9153 The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
9154 processors have a 3-bit wide IO_SEL field but have the most
9155 significant bit is wired to 0 so this change should not affect
9156 them.
9157
9158 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
9159
9160commit cd4251624205cb97104f6e32679dc7754934f711
9161Author: Becky Bruce <becky.bruce@freescale.com>
9162Date: Mon Oct 27 16:09:42 2008 -0500
9163
9164 powerpc: fix pci window initialization to work with > 4GB DRAM
9165
9166 The existing code has a few errors that need to be fixed in
9167 order to support large RAM sizes. Fix those, and add a
9168 comment to make it clearer.
9169
9170 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
9171 Acked-by: Kumar Gala <galak@kernel.crashing.org>
9172
9173commit 219542a1a66ca017b12860920714a9859b18a5d7
9174Author: Kumar Gala <galak@kernel.crashing.org>
9175Date: Mon Oct 27 13:16:20 2008 -0500
9176
9177 pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
9178
9179 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9180
9181commit 6b59e03e0237a40a2305ea385defdfd92000978b
9182Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9183Date: Mon Sep 1 16:21:22 2008 +0200
9184
9185 lcd: Let the board code show board-specific info
9186
9187 The information displayed when CONFIG_LCD_INFO is set is inherently
9188 board-specific, so it should be done by the board code. The current code
9189 dealing with this only handles two cases, and is already a horrible mess
9190 of #ifdeffery.
9191
9192 Yes, this duplicates some code, but it also allows boards to print more
9193 board-specific information; this used to be very difficult.
9194
9195 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9196 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9197
9198commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
9199Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9200Date: Mon Sep 1 16:21:21 2008 +0200
9201
9202 lcd: Set lcd_is_enabled before clearing the screen
9203
9204 This allows the logo/info rendering routines to use the regular
9205 lcd_putc/lcd_puts/lcd_printf calls.
9206
9207 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9208 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9209
9210commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
9211Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9212Date: Mon Sep 1 16:21:20 2008 +0200
9213
9214 lcd: Implement lcd_printf()
9215
9216 lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
9217 this by borrowing the lcd_printf() implementation from the cogent board
9218 code (which appears to use its own LCD framework.)
9219
9220 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9221 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9222
9223commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
9224Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9225Date: Mon Sep 1 16:21:19 2008 +0200
9226
9227 atmel_lcdfb: Straighten out funky vl_sync logic
9228
9229 If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
9230 otherwise we don't. WTF?
9231
9232 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9233 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9234
9235commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
9236Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9237Date: Mon Sep 1 16:21:18 2008 +0200
9238
9239 atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
9240
9241 atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
9242 includes a file that does, asm/arch/gpio.h, but this file doesn't
9243 include <asm/arch/hardware.h> like it's supposed to.
9244
9245 Add the missing include to asm/arch/gpio.h and remove the workaround
9246 from the atmel_lcdfb driver. This makes the driver compile on avr32.
9247
9248 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9249 Signed-off-by: Anatolij Gustschin <agust@denx.de>
9250
9251commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
9252Author: Kumar Gala <galak@kernel.crashing.org>
9253Date: Wed Oct 22 14:38:55 2008 -0500
9254
9255 86xx: Convert all fsl_pci_init users to new APIs
9256
9257 Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
9258 fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
9259
9260 With these changes the board code is a bit smaller and we get dma-ranges
9261 set in the device tree for these boards.
9262
9263 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9264 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9265 Acked-by: Jon Loeliger <jdl@freescale.com>
9266
9267commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
9268Author: Kumar Gala <galak@kernel.crashing.org>
9269Date: Tue Oct 21 08:28:33 2008 -0500
9270
9271 85xx: Convert all fsl_pci_init users to new APIs
9272
9273 Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
9274 MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
9275 and ft_fsl_pci_setup().
9276
9277 With these changes the board code is a bit smaller and we get dma-ranges
9278 set in the device tree for these boards.
9279
9280 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9281 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9282
9283commit a2aab460727e5f674353a83a81000ef794bffcae
9284Author: Kumar Gala <galak@kernel.crashing.org>
9285Date: Thu Oct 23 00:01:06 2008 -0500
9286
9287 pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
9288
9289 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9290 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9291
9292commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
9293Author: Kumar Gala <galak@kernel.crashing.org>
9294Date: Wed Oct 22 14:06:24 2008 -0500
9295
9296 pci/fsl_pci_init: Add a common PCI inbound setup function
9297
9298 Add a common setup function that determines the pci_region(s) based
9299 on how much memory we have in the system.
9300
9301 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9302 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9303
9304commit 612ea01018a459234d54ed57ec6a5a244ce75678
9305Author: Kumar Gala <galak@kernel.crashing.org>
9306Date: Tue Oct 21 10:13:14 2008 -0500
9307
9308 pci/fsl_pci_init: Enable larger address and setting inbound windows properly
9309
9310 * PCI Inbound window was setup incorrectly. The PCI address and system
9311 address were swapped. The PCI address should be setting piwar/piwbear
9312 and the system address should be setting pitar.
9313
9314 * Removed masking of addresses to allow for system address to support
9315 system address & PCI address >32-bits
9316
9317 * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
9318
9319 * Respect the PCI_REGION_PREFETCH for inbound windows
9320
9321 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9322 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9323
9324commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
9325Author: Kumar Gala <galak@kernel.crashing.org>
9326Date: Wed Oct 22 23:33:56 2008 -0500
9327
9328 fdt: Added helper to set PCI dma-ranges property
9329
9330 Added fdt_pci_dma_ranges() that parses the pci_region info from the
9331 struct pci_controller and populates the dma-ranges based on it.
9332
9333 The max # of windws/dma-ranges we support is 3 since on embedded
9334 PowerPC based systems this is the max number of windows.
9335
9336 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9337 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9338
9339commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
9340Author: Kumar Gala <galak@kernel.crashing.org>
9341Date: Thu Oct 23 00:05:47 2008 -0500
9342
9343 fdt: Add fdt_getprop_u32_default helpers
9344
9345 Add helper functions to return find a node and return it's property
9346 or a default value.
9347
9348 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9349 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9350 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
9351
9352commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
9353Author: Kumar Gala <galak@kernel.crashing.org>
9354Date: Tue Oct 21 18:06:15 2008 -0500
9355
9356 86xx: Enable 64-bit PCI resources on all Freescale boards
9357
9358 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9359 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9360
9361commit 0151cbaccf4504821ecfde0217299bd740086bb6
9362Author: Kumar Gala <galak@kernel.crashing.org>
9363Date: Tue Oct 21 11:33:58 2008 -0500
9364
9365 85xx: Enable 64-bit PCI resources on all Freescale boards
9366
9367 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9368 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9369
9370commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
9371Author: Kumar Gala <galak@kernel.crashing.org>
9372Date: Tue Oct 21 08:36:08 2008 -0500
9373
9374 pci: Allow for PCI addresses to be 64-bit
9375
9376 PCI bus is inherently 64-bit. While not all system require access to
9377 the full 64-bit PCI address range some do. This allows those systems
9378 to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
9379
9380 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9381 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
9382 Acked-by: Wolfgang Denk <wd@denx.de>
9383
9384commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
9385Author: Dave Liu <daveliu@freescale.com>
9386Date: Thu Oct 23 21:18:53 2008 +0800
9387
9388 85xx: Fix the incorrect register used for DDR erratum1
9389
9390 The 8572 DDR erratum1:
9391 DDR controller may enter an illegal state when operating
9392 in 32-bit bus mode with 4-beat bursts.
9393
9394 Description:
9395 When operating with a 32-bit bus, it is recommended that
9396 DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
9397 This forces the DDR controller to use 4-beat bursts when
9398 communicating to the DRAMs. However, an issue exists that
9399 could lead to data corruption when the DDR controller is
9400 in 32-bit bus mode while using 4-beat bursts.
9401
9402 Projected Impact:
9403 If the DDR controller is operating in 32-bit bus mode with
9404 4-beat bursts, then the controller may enter into a bad state.
9405 All subsequent reads from memory is corrupted.
9406 Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
9407 Therefore, this erratum does not affect DDR3 mode.
9408
9409 Work Arounds:
9410 To work around this issue, software must set DEBUG_1[31] in
9411 DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
9412 and CCSRBAR offset + 0x6f00 for DDR_2).
9413
9414 Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
9415 as condition, but it should be DDR_SDRAM_CFG register.
9416
9417 Signed-off-by: Dave Liu <daveliu@freescale.com>
9418
9419commit d5b693090ed08d24c18491df9d8fc7387b2906f3
9420Author: Dave Liu <daveliu@freescale.com>
9421Date: Thu Oct 23 21:17:19 2008 +0800
9422
9423 85xx: remove unused config definition
9424
9425 Signed-off-by: Dave Liu <daveliu@freescale.com>
9426
9427commit 0f060c3bf82832331a509f2e5d2442539e7aad09
9428Author: Kumar Gala <galak@kernel.crashing.org>
9429Date: Thu Oct 23 01:47:38 2008 -0500
9430
9431 85xx: Add basic e500mc core support
9432
9433 Introduce CONFIG_E500MC to deal with the minor differences between
9434 e500v2 and e500mc.
9435
9436 * Certain fields of HID0/1 don't exist anymore on e500mc
9437 * Cache line size is 64-bytes on e500mc
9438 * reset value of PIR is different
9439
9440 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9441
9442commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
9443Author: Kumar Gala <galak@kernel.crashing.org>
9444Date: Thu Oct 23 01:47:37 2008 -0500
9445
9446 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
9447
9448 Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
9449 e500mc's 64-byte cacheline properly when it gets added.
9450
9451 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9452
9453commit 5deb8022c3749faac30e9ad9694691e2442b5c93
9454Author: Georg Schardt <schardt@team-ctech.de>
9455Date: Fri Oct 24 13:51:52 2008 +0200
9456
9457 ppc4xx: New board avnet fx12 minimodul
9458
9459 This patch adds support for the avnet fx12 minimodul.
9460 It needs the "ppc4xx: Generic architecture for xilinx ppc405"
9461 patch from Ricardo.
9462
9463 Signed-off-by: Georg Schardt <schardt@team-ctech.de>
9464 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9465 Signed-off-by: Stefan Roese <sr@denx.de>
9466
9467commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
9468Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9469Date: Tue Oct 21 18:29:46 2008 +0200
9470
9471 ppc4xx: Generic architecture for xilinx ppc405(v3)
9472
9473 As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
9474 ppc440 boards, this patch presents a common architecture for all the
9475 xilinx ppc405 boards.
9476
9477 Any custom xilinx ppc405 board can be added very easily with no code
9478 duplicity.
9479
9480 This patch also adds a simple generic board, that can be used on almost
9481 any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
9482
9483 This patch is prepared to work with the latest version of EDK (10.1)
9484
9485 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9486 Signed-off-by: Stefan Roese <sr@denx.de>
9487
9488commit 485c00a57fab86f72a3769480c66bf1ca22e1459
9489Author: Stefan Roese <sr@denx.de>
9490Date: Fri Oct 24 08:56:09 2008 +0200
9491
9492 ppc4xx: Disable DDR2 autocalibration on Kilauea for now
9493
9494 Since the new autocalibration still has some problems on some Kilauea
9495 boards with 200MHz DDR2 frequency we disable the autocalibration and
9496 use the hardcoded values as done before. This seems to work reliably
9497 on all known DDR2 frequencies.
9498
9499 After the autocalibration issue is fixed we will enable it again.
9500
9501 Signed-off-by: Stefan Roese <sr@denx.de>
9502
9503commit f177f4250c729727b1629fa8d8d6556c999e9b8c
9504Author: Mike Frysinger <vapier@gentoo.org>
9505Date: Wed Apr 9 02:02:07 2008 -0400
9506
9507 Blackfin: fix up UART status bit handling
9508
9509 Some Blackfin UARTs are read-to-clear while others are write-to-clear.
9510 This can cause problems when we poll the LSR and then later try and handle
9511 any errors detected.
9512
9513 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9514
9515commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
9516Author: Mike Frysinger <vapier@gentoo.org>
9517Date: Sat Oct 11 20:42:17 2008 -0400
9518
9519 Blackfin: bf561-ezkit: drop redundant code
9520
9521 Common Blackfin code already announces CPU information.
9522
9523 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9524
9525commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
9526Author: Mike Frysinger <vapier@gentoo.org>
9527Date: Sat Oct 11 20:43:10 2008 -0400
9528
9529 Blackfin: bf561-ezkit: drop pointless USB code
9530
9531 The USB/LAN register settings are not actually used/needed in order to
9532 drive things from U-Boot, so drop the code.
9533
9534 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9535
9536commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
9537Author: Mike Frysinger <vapier@gentoo.org>
9538Date: Sat Oct 11 20:47:58 2008 -0400
9539
9540 Blackfin: linker scripts: force start.o and set initcode boundaries
9541
9542 Make sure that the start.o object is always the first object in our linker
9543 script regardless of configuration settings, and add some linker symbols
9544 so the ldr utility can properly locate the initcode when generating a LDR.
9545
9546 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9547
9548commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
9549Author: Mike Frysinger <vapier@gentoo.org>
9550Date: Sat Oct 11 21:19:39 2008 -0400
9551
9552 Blackfin: small cpu init optimization while setting interrupt mask
9553
9554 Use the sti instruction to set the initial interrupt mask rather than
9555 banging on the core IMASK MMR to save both space and time.
9556
9557 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9558
9559commit 960922291c9594acb575cec7e47d7bed9b58182c
9560Author: Mike Frysinger <vapier@gentoo.org>
9561Date: Sat Oct 11 21:18:10 2008 -0400
9562
9563 Blackfin: set initial stack correctly according to Blackfin ABI
9564
9565 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9566
9567commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
9568Author: Mike Frysinger <vapier@gentoo.org>
9569Date: Sun Apr 20 03:11:53 2008 -0400
9570
9571 Blackfin: make baud calculation more accurate
9572
9573 We should use the algorithm in the Linux kernel so that the UART divisor
9574 calculation is more accurate. It also fixes problems on some picky UARTs
9575 that have sampling anomalies.
9576
9577 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9578
9579commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
9580Author: Mike Frysinger <vapier@gentoo.org>
9581Date: Mon Oct 6 04:21:41 2008 -0400
9582
9583 Blackfin: decode hwerrcause/excause when crashing
9584
9585 Having to decode hwerrcause/excause values is a pain, so automate it.
9586
9587 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9588
9589commit 2de95bb20c488f20298df6881b700a5a757ee780
9590Author: Mike Frysinger <vapier@gentoo.org>
9591Date: Mon Oct 6 04:20:54 2008 -0400
9592
9593 Blackfin: fix register dump messages
9594
9595 Make sure we report RETI/IPEND correctly.
9596
9597 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9598
9599commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
9600Author: Mike Frysinger <vapier@gentoo.org>
9601Date: Mon Oct 6 04:19:34 2008 -0400
9602
9603 Blackfin: don't bother displaying reboot msg when crashing
9604
9605 The hang function already tells you to reboot, so no point in showing it
9606 twice.
9607
9608 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9609
9610commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
9611Author: Mike Frysinger <vapier@gentoo.org>
9612Date: Sun Jun 1 01:23:48 2008 -0400
9613
9614 Blackfin: enable support for nested interrupts
9615
9616 During cpu init, make sure we initialize the CEC properly so that
9617 interrupts can fire and be handled while U-Boot is running.
9618
9619 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9620
9621commit 39782727e185860faa4884c2b04e84cb33d1c6cf
9622Author: Mike Frysinger <vapier@gentoo.org>
9623Date: Mon Oct 6 03:55:25 2008 -0400
9624
9625 Blackfin: init NAND before relocating env
9626
9627 If booting out of NAND, we need to make sure we initialize it properly
9628 before attempting to relocate the environment.
9629
9630 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9631
9632commit 0f9a8819416ba40a53de50af148847a0e508f84d
9633Author: Mike Frysinger <vapier@gentoo.org>
9634Date: Thu Aug 7 18:40:13 2008 -0400
9635
9636 Blackfin: check cache bits, not cplb bits
9637
9638 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9639
9640commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
9641Author: Mike Frysinger <vapier@gentoo.org>
9642Date: Thu Aug 7 17:52:59 2008 -0400
9643
9644 Blackfin: drop unused cache flush code
9645
9646 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9647
9648commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
9649Author: Mike Frysinger <vapier@gentoo.org>
9650Date: Thu Aug 7 15:21:47 2008 -0400
9651
9652 Blackfin: unify cache handling code
9653
9654 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9655
9656commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
9657Author: Mike Frysinger <vapier@gentoo.org>
9658Date: Mon Oct 6 03:39:07 2008 -0400
9659
9660 Blackfin: only initialize the RTC when actually used
9661
9662 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9663
9664commit 621e579b812dd1a2e6777f7cbf6e55e736505823
9665Author: Mike Frysinger <vapier@gentoo.org>
9666Date: Mon Oct 6 03:44:33 2008 -0400
9667
9668 Blackfin: fix SWRST register definition
9669
9670 The SWRST register is a 16bit, not 32bit, register.
9671
9672 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9673
9674commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
9675Author: Mike Frysinger <vapier@gentoo.org>
9676Date: Thu Aug 7 18:54:57 2008 -0400
9677
9678 Blackfin: build with -fomit-frame-pointer
9679
9680 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9681
9682commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
9683Author: Mike Frysinger <vapier@gentoo.org>
9684Date: Thu Aug 7 17:50:26 2008 -0400
9685
9686 Blackfin: document some of the blackfin directories
9687
9688 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9689
9690commit e4337968e43698a68ba608369f46d4a4114111ca
9691Author: Mike Frysinger <vapier@gentoo.org>
9692Date: Thu Aug 7 15:16:56 2008 -0400
9693
9694 Blackfin: only enable hardware error irq by default
9695
9696 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9697
9698commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
9699Author: Mike Frysinger <vapier@gentoo.org>
9700Date: Thu Aug 7 13:36:43 2008 -0400
9701
9702 Blackfin: punt old unused mem_init.h header
9703
9704 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9705
9706commit bcc121a01608042066a19ab5bff5bcfb805bf406
9707Author: Mike Frysinger <vapier@gentoo.org>
9708Date: Thu Aug 7 13:18:55 2008 -0400
9709
9710 Blackfin: delete unused page_descriptor_table_size define
9711
9712 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9713
9714commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
9715Author: Mike Frysinger <vapier@gentoo.org>
9716Date: Thu Aug 7 13:17:03 2008 -0400
9717
9718 Blackfin: fix typo in boot mode comment and add NAND define
9719
9720 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9721
9722commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
9723Author: Ben Maan <moo@cow>
9724Date: Thu Aug 7 13:14:21 2008 -0400
9725
9726 Blackfin: fix port mux defines for BF54x
9727
9728 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9729
9730commit 0656ef2ba274910d31364fe022f6c7db0051660d
9731Author: Mike Frysinger <vapier@gentoo.org>
9732Date: Thu Aug 7 13:09:50 2008 -0400
9733
9734 Blackfin: update anomaly lists
9735
9736 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9737
9738commit 50ca95402876cf7bac4e2d4f7855f616a038763f
9739Author: Mike Frysinger <vapier@gentoo.org>
9740Date: Thu Aug 7 13:08:54 2008 -0400
9741
9742 Blackfin: unify DSPID/DBGSTAT MMR definitions
9743
9744 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
9745
9746commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
9747Author: Wolfgang Denk <wd@denx.de>
9748Date: Tue Oct 21 15:53:51 2008 +0200
9749
9750 Fix strmhz(): avoid printing negative fractions
9751
9752 Signed-off-by: Wolfgang Denk <wd@denx.de>
9753
9754commit 4a7f6b750d8de543fdf8e58acd86745010054571
9755Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
9756Date: Fri Oct 17 08:55:51 2008 -0400
9757
9758 mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
9759
9760 This is done to allow other 83XX based platforms which also have UPM
9761 (e.g. 8360) to configure and use their UPM in u-boot.
9762
9763 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
9764 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9765
9766commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
9767Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9768Date: Tue Oct 14 22:58:53 2008 +0400
9769
9770 mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
9771
9772 With this patch u-boot can fixup the dr_mode and phy_type properties
9773 for the Dual-Role USB controller.
9774
9775 While at it, also remove #ifdefs around includes, they are not needed.
9776
9777 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9778 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9779
9780commit b3379f3fd13969934c00097c05754e7a8990fd39
9781Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9782Date: Wed Oct 8 20:52:54 2008 +0400
9783
9784 mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
9785
9786 Though NAND chip is replaceable on the MPC837XE-MDS boards, the
9787 current settings don't work with the default chip on the board.
9788 Nevertheless Freescale's U-Boot sets the option register correctly,
9789 so I just dumped the register from the working u-boot. My guess is
9790 that the old settings were applicable for some pilot boards, not
9791 found in the production.
9792
9793 This patch also enables FSL ELBC driver so that we could access
9794 the NAND storage in the u-boot.
9795
9796 The NAND support costs about 45KB, so the u-boot no longer fits
9797 into two 128KB NOR flash sectors, thus we also have to adjust
9798 environment location: add another 128KB to the monitor length.
9799
9800 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9801
9802 It is due to hardware design and logic defect, that is the
9803 I/O[0:7] of NAND chip is connected to LAD[7:0], so when
9804 the NAND chip connected to nLCS3, you have to set up the
9805 OR3[BCTLD] = '1' for normal operation, otherwise it will have
9806 bus contention due to the pin 48/25 of U60 is enabled.
9807
9808 Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
9809 asserted upon access to the NAND chip, keep the default state.
9810
9811 Acked-by: Dave Liu <daveliu@freescale.com>
9812 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9813
9814commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
9815Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9816Date: Thu Oct 2 19:17:33 2008 +0400
9817
9818 mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
9819
9820 The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
9821 standalone or acting as a PCI agent. User's Guide says:
9822
9823 - When the CPLD recognizes its location on the PIB it automatically
9824 configures RCW to the PCI Host.
9825 - If the CPLD fails to recognize its location then it is automatically
9826 configured as an Agent and the PCI is configured to an external arbiter.
9827
9828 This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
9829 flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
9830 PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
9831 any arbiter bad things will happen (here the board hangs during any config
9832 space reads).
9833
9834 In this situation we must disable the PCI. And in case of anybody really
9835 want to use an external arbiter, we provide "pci_external_aribter"
9836 environment variable.
9837
9838 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9839 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9840
9841commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
9842Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9843Date: Thu Oct 2 18:32:25 2008 +0400
9844
9845 mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
9846
9847 This involves configuring the SerDes and fixing up the flags and
9848 PHY addresses for the TSECs.
9849
9850 For Linux we also fix up the device tree.
9851
9852 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9853 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9854
9855commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
9856Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9857Date: Thu Oct 2 18:31:59 2008 +0400
9858
9859 mpc83xx: add TSECs' HRCWH masks for MPC837x processors
9860
9861 We'll use these masks to parse TSEC modes out of HRCWH.
9862
9863 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9864 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9865
9866commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
9867Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9868Date: Thu Oct 2 18:31:56 2008 +0400
9869
9870 mpc83xx: serdes: add forgotten shifts for rfcks
9871
9872 The rfcks should be shifted by 28 bits left. We didn't notice the bug
9873 because we were using only 100MHz clocks (for which rfcks == 0).
9874
9875 Though, for SGMII we'll need 125MHz clocks.
9876
9877 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9878 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9879
9880commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
9881Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9882Date: Thu Oct 2 18:31:53 2008 +0400
9883
9884 mpc83xx: fix serdes setup for the MPC8378E boards
9885
9886 MPC837xE specs says that SerDes1 has:
9887
9888 — Two lanes running x1 SGMII at 1.25 Gbps;
9889 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
9890
9891 And for SerDes2:
9892
9893 — Two lanes running x1 PCI Express at 2.5 Gbps;
9894 — One lane running x2 PCI Express at 2.5 Gbps;
9895 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
9896
9897 The spec also explicitly states that PEX options are not valid for
9898 the SD1.
9899
9900 Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
9901 which is wrong to do.
9902
9903 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9904 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9905
9906commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
9907Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9908Date: Wed Sep 10 18:12:37 2008 +0400
9909
9910 mpc83xx: mpc8360emds: rework LBC SDRAM setup
9911
9912 Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
9913 it difficult to use (b/c then the memory is discontinuous and
9914 there is quite big memory hole between the DDR/SDRAM regions).
9915
9916 This patch reworks LBC SDRAM setup so that now we dynamically
9917 place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
9918 DDR memory).
9919
9920 With this patch we're able to:
9921
9922 - Boot without external DDR memory;
9923 - Use most "DDR + SDRAM" setups without need to support for
9924 sparse/discontinuous memory model in the software.
9925
9926 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9927 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9928
9929commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
9930Author: Wolfgang Denk <wd@xpert.denx.de>
9931Date: Tue Oct 21 11:23:56 2008 +0200
9932
9933 FDT: don't use private kernel header files
9934
9935 On some systems (for example Fedora Core 4) U-Boot builds with the
9936 following wanrings only:
9937
9938 ...
9939 In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
9940 from fdt.c:51:
9941 /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
9942
9943 This patch fixes this problem.
9944
9945 Signed-off-by: Wolfgang Denk <wd@denx.de>
9946
9947commit f4d14c55504ce40287321bd63ee269e3233ee4ae
9948Author: Stefan Roese <sr@denx.de>
9949Date: Mon Oct 13 15:15:31 2008 +0200
9950
9951 ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
9952
9953 Signed-off-by: Stefan Roese <sr@denx.de>
9954
9955commit 43cbce69d48d052574d71f50724be546d90a46a4
9956Author: Stefan Roese <sr@denx.de>
9957Date: Mon Oct 13 10:45:14 2008 +0200
9958
9959 ppc4xx: Correctly setup ranges property in ebc node
9960
9961 Previously only the NOR flash mapping was written into the ranges
9962 property of the ebc node. This patch now writes all enabled chip
9963 select areas into the ranges property.
9964
9965 Signed-off-by: Stefan Roese <sr@denx.de>
9966
9967commit d7b26d58328f137471ea97de382bfa63f7239931
9968Author: Dirk Eibach <eibach@gdsys.de>
9969Date: Wed Oct 8 15:37:50 2008 +0200
9970
9971 ppc4xx: Add GDSys neo 405EP board support
9972
9973 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
9974 Signed-off-by: Stefan Roese <sr@denx.de>
9975
9976commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
9977Author: Niklaus Giger <niklaus.giger@netstal.com>
9978Date: Wed Oct 1 14:46:13 2008 +0200
9979
9980 ppc4xx: Update configs for Netstal boards
9981
9982 I reorganized my config files, putting the common stuff into netstal-common.h
9983 (got the idea by looking a amcc-common.h from Stefan).
9984
9985 Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
9986
9987 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
9988 Signed-off-by: Stefan Roese <sr@denx.de>
9989
9990commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
9991Author: Adam Graham <agraham@amcc.com>
9992Date: Wed Oct 8 10:13:19 2008 -0700
9993
9994 ppc4xx: Add routine to retrieve CPU number
9995
9996 Provide a weak defined routine to retrieve the CPU number for
9997 reference boards that have multiple CPU's. Default behavior
9998 is the existing single CPU print output. Reference boards with
9999 multiple CPU's need to provide a board specific routine.
10000 See board/amcc/arches/arches.c for an example.
10001
10002 Signed-off-by: Adam Graham <agraham@amcc.com>
10003 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
10004 Signed-off-by: Stefan Roese <sr@denx.de>
10005
10006commit 59217bae40e90982ab5400d849c08af683ace036
10007Author: Adam Graham <agraham@amcc.com>
10008Date: Wed Oct 8 10:13:14 2008 -0700
10009
10010 ppc4xx: Add static support for 44x IBM SDRAM Controller
10011
10012 This patch add the capability to configure a PPC440 based IBM SDRAM
10013 Controller with static, compiled-in, values. PPC440 memory subsystem
10014 includes a Memory Queue core.
10015
10016 Signed-off-by: Adam Graham <agraham@amcc.com>
10017 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
10018 Signed-off-by: Stefan Roese <sr@denx.de>
10019
10020commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
10021Author: Adam Graham <agraham@amcc.com>
10022Date: Wed Oct 8 10:12:53 2008 -0700
10023
10024 ppc4xx: Add AMCC Arches board support (dual 460GT)
10025
10026 The Arches Evaluation board is based on the AMCC 460GT SoC chip.
10027 This board is a dual processor board with each processor providing
10028 independent resources for Rapid IO, Gigabit Ethernet, and serial
10029 communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
10030 FLASH, UART, EEPROM and temperature sensor, along with a shared debug
10031 port. The two 460GT's will communicate with each other via shared
10032 memory, Gigabit Ethernet and x1 PCI-Express.
10033
10034 Signed-off-by: Adam Graham <agraham@amcc.com>
10035 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
10036 Signed-off-by: Stefan Roese <sr@denx.de>
10037
10038commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
10039Author: Wolfgang Denk <wd@xpert.denx.de>
10040Date: Sun Oct 19 21:54:30 2008 +0200
10041
10042 TQM8260: environment in flash instead EEPROM, baudrate 115k
10043
10044 Several customers have reported problems with the environment in
10045 EEPROM, including corrupted content after board reset. Probably the
10046 code to prevent I2C Enge Conditions is not working sufficiently.
10047
10048 We move the environment to flash now, which allows to have a backup
10049 copy plus gives much faster boot times.
10050
10051 Also, change the default console initialization to 115200 bps as used
10052 on most other boards.
10053
10054 Signed-off-by: Wolfgang Denk <wd@denx.de>
10055
10056commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
10057Author: Kumar Gala <galak@kernel.crashing.org>
10058Date: Sun Oct 19 12:49:19 2008 -0500
10059
10060 85xx: Fix compile warning in mpc8536ds.c
10061
10062 mpc8536ds.c: In function 'is_sata_supported':
10063 mpc8536ds.c:615: warning: unused variable 'devdisr'
10064
10065 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10066
10067commit 8ed44d91c8122d00368523b0b746691c895d3b3c
10068Author: Wolfgang Denk <wd@denx.de>
10069Date: Sun Oct 19 02:35:50 2008 +0200
10070
10071 Cleanup: fix "MHz" spelling
10072
10073 Signed-off-by: Wolfgang Denk <wd@denx.de>
10074
10075commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
10076Author: Wolfgang Denk <wd@denx.de>
10077Date: Sun Oct 19 02:35:49 2008 +0200
10078
10079 Use strmhz() to format clock frequencies
10080
10081 Signed-off-by: Wolfgang Denk <wd@denx.de>
10082
10083commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
10084Author: Wolfgang Denk <wd@denx.de>
10085Date: Sun Oct 19 02:35:48 2008 +0200
10086
10087 strmhz(): Round numbers when printing clock frequencies
10088
10089 Round clock frequencies for printing.
10090
10091 Many boards printed off clock frequencies like 399 MHz instead of the
10092 exact 400 MHz because numberes were not rounded. This is fixed now.
10093
10094 Signed-off-by: Wolfgang Denk <wd@denx.de>
10095
10096commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
10097Author: Timur Tabi <timur@freescale.com>
10098Date: Mon Oct 20 15:16:47 2008 -0500
10099
10100 85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
10101
10102 Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
10103 to add a comment that the correct value disagrees with the 8544 reference
10104 manual. The changelog for that commit is also wrong, as it says "bit 28"
10105 when it should be "bit 24".
10106
10107 Signed-off-by: Timur Tabi <timur@freescale.com>
10108
10109commit 360fe71e82b83e264c964c9447c537e9a1f643c8
10110Author: Heiko Schocher <hs@denx.de>
10111Date: Fri Oct 17 18:24:06 2008 +0200
10112
10113 mgcoge: add redundant environment sector
10114
10115 Signed-off-by: Heiko Schocher <hs@denx.de>
10116
10117commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
10118Author: Heiko Schocher <hs@denx.de>
10119Date: Fri Oct 17 18:23:27 2008 +0200
10120
10121 mgsuvd: update size of environment
10122
10123 Signed-off-by: Heiko Schocher <hs@denx.de>
10124
10125commit 2e26d837f11460c0e6dede7d65424a31e0183d09
10126Author: Jason Jin <Jason.jin@freescale.com>
10127Date: Fri Oct 10 11:41:00 2008 +0800
10128
10129 Enabled the Freescale SGMII riser card on 8536DS
10130
10131 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
10132
10133commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
10134Author: Liu Yu <yu.liu@freescale.com>
10135Date: Fri Oct 10 11:40:59 2008 +0800
10136
10137 Enabled the Freescale SGMII riser card on 8572DS
10138
10139 This patch based on Andy's work.
10140 Including command 'pixis_set_sgmii' support.
10141
10142 Signed-off-by: Liu Yu <yu.liu@freescale.com>
10143
10144commit bff188baf9427c35745356439435acf3864d4c65
10145Author: Liu Yu <yu.liu@freescale.com>
10146Date: Fri Oct 10 11:40:58 2008 +0800
10147
10148 Make pixis_set_sgmii more general to support MPC85xx boards.
10149
10150 The pixis sgmii command depend on the FPGA support on the board, some 85xx
10151 boards support SGMII riser card but did not support this command, define
10152 CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
10153
10154 Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
10155 are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
10156 PIXIS_VCFGEN1_MASK in header file for both boards.
10157
10158 Signed-off-by: Liu Yu <yu.liu@freescale.com>
10159
10160commit 5e981d683d2363204c76773941c2e9c2044c808f
10161Author: Ed Swarthout <Ed.Swarthout@freescale.com>
10162Date: Wed Oct 8 23:38:02 2008 -0500
10163
10164 Add cpu/8xxx to TAGS_SUBDIRS
10165
10166 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
10167
10168commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
10169Author: Ed Swarthout <Ed.Swarthout@freescale.com>
10170Date: Thu Oct 9 01:25:55 2008 -0500
10171
10172 fsl_law clear enable before changing.
10173
10174 Debug sessions may have left enabled laws.
10175 Changing lawbar with an unkown enabled tgtid could cause problems.
10176
10177 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
10178
10179commit 86be510f7b5443e7e937f696bfbe037fdc740b15
10180Author: Ed Swarthout <Ed.Swarthout@freescale.com>
10181Date: Thu Oct 9 00:29:27 2008 -0500
10182
10183 mpc8572 additional end-point mode
10184
10185 mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
10186 Include host_agent == 0 decode for end-point determination.
10187
10188 This is not needed for the ds reference board since pcie3 will be a host
10189 in order to connect to the uli chip. Include it here as a reference for
10190 other mpc8572 boards.
10191
10192 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
10193
10194commit 6856b3d0221a838580e6bb06f61425fd7529ba93
10195Author: Ed Swarthout <Ed.Swarthout@freescale.com>
10196Date: Wed Oct 8 23:37:59 2008 -0500
10197
10198 85xx if NUM_CPUS>1, print cpu number
10199
10200 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
10201
10202commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
10203Author: Ed Swarthout <Ed.Swarthout@freescale.com>
10204Date: Wed Oct 8 23:38:01 2008 -0500
10205
10206 pixis do not print long help if not configured
10207
10208 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
10209
10210commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
10211Author: Andy Fleming <afleming@freescale.com>
10212Date: Tue Oct 7 08:09:50 2008 -0500
10213
10214 Have u-boot pass stashing parameters into device tree
10215
10216 Some cores don't support ethernet stashing at all, and some
10217 instances have errata. Adds 3 properties to gianfar nodes
10218 which support stashing. For now, just add this support to
10219 85xx SoCs.
10220
10221 Signed-off-by: Andy Fleming <afleming@freescale.com>
10222
10223commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
10224Author: Haiying Wang <Haiying.Wang@freescale.com>
10225Date: Fri Oct 3 12:37:57 2008 -0400
10226
10227 Add DDR options setting on MPC8641HPCN board
10228
10229 * Add board specific parameter table to choose correct cpo, clk_adjust,
10230 write_data_delay based on board ddr frequency and n_ranks.
10231
10232 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
10233
10234 Signed-off-by: James Yang <James.Yang@freescale.com>
10235 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10236
10237commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
10238Author: Haiying Wang <Haiying.Wang@freescale.com>
10239Date: Fri Oct 3 12:37:41 2008 -0400
10240
10241 Add ddr interleaving suppport for MPC8572DS board
10242
10243 * Add board specific parameter table to choose correct cpo, clk_adjust,
10244 write_data_delay, 2T based on board ddr frequency and n_ranks.
10245
10246 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
10247
10248 * Set memory controller interleaving mode to bank interleaving, and disable
10249 bank(chip select) interleaving mode by default, because the default on-board
10250 DDR DIMMs are 2x512MB single-rank.
10251
10252 * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
10253
10254 Signed-off-by: James Yang <James.Yang@freescale.com>
10255 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10256
10257commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
10258Author: Haiying Wang <Haiying.Wang@freescale.com>
10259Date: Fri Oct 3 12:37:26 2008 -0400
10260
10261 Add debug information for DDR controller registers
10262
10263 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10264
10265commit c9ffd839b1ada502c86f88edaf1534426b6688ce
10266Author: Haiying Wang <Haiying.Wang@freescale.com>
10267Date: Fri Oct 3 12:37:10 2008 -0400
10268
10269 Check DDR interleaving mode
10270
10271 * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
10272 ba_intlv_ctl.
10273 * Print DDR interleaving mode information
10274 * Add doc/README.fsl-ddr to describe the interleaving setting
10275
10276 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10277
10278commit dfb49108e4f86c2224e1f30124328b0de66ef72e
10279Author: Haiying Wang <Haiying.Wang@freescale.com>
10280Date: Fri Oct 3 12:36:55 2008 -0400
10281
10282 Pass dimm parameters to populate populate controller options
10283
10284 Because some dimm parameters like n_ranks needs to be used with the board
10285 frequency to choose the board parameters like clk_adjust etc. in the
10286 board_specific_paramesters table of the board ddr file, we need to pass
10287 the dimm parameters to the board file.
10288
10289 * move ddr dimm parameters header file from /cpu to /include directory.
10290 * add ddr dimm parameters to populate board specific options.
10291 * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
10292
10293 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10294
10295commit dbbbb3abeff325855cae76e33d69d5665631443f
10296Author: Haiying Wang <Haiying.Wang@freescale.com>
10297Date: Fri Oct 3 12:36:39 2008 -0400
10298
10299 Make DDR interleaving mode work correctly
10300
10301 Fix some bugs:
10302 1. Correctly set intlv_ctl in cs_config.
10303 2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
10304 3. Set base_address and total memory for each ddr controller in memory
10305 controller interleaving mode.
10306
10307 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10308
10309commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
10310Author: Kumar Gala <galak@kernel.crashing.org>
10311Date: Mon Sep 22 23:40:42 2008 -0500
10312
10313 85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
10314
10315 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10316
10317commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
10318Author: Kumar Gala <galak@kernel.crashing.org>
10319Date: Mon Sep 22 14:11:11 2008 -0500
10320
10321 85xx: Improve flash remapping on MPC8572DS & MPC8536DS
10322
10323 Changing the flash from cacheable to cache-inhibited was taking a significant
10324 amount of time due to the fact that we were iterating over the full 256M of
10325 flash. Instead we can just flush the L1 d-cache and invalidate the i-cache.
10326
10327 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10328
10329commit 54e091d3b603a3332c619199ca83a07e95960da4
10330Author: Kumar Gala <galak@kernel.crashing.org>
10331Date: Mon Sep 22 14:11:10 2008 -0500
10332
10333 85xx: Export invalidate_{i,d}cache and add flush_dcache
10334
10335 Added the ability for C code to invalidate the i/d-cache's and
10336 to flush the d-cache. This allows us to more efficient change mappings
10337 from cache-able to cache-inhibited.
10338
10339 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10340
10341commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
10342Author: Heiko Schocher <hs@denx.de>
10343Date: Fri Oct 17 16:11:52 2008 +0200
10344
10345 mgcoge, mgsuvd: extract more common code
10346
10347 in ft_blob_update () for both boards was an unneccessary
10348 repetition of code, which this patch moves in a common
10349 function for this boards.
10350
10351 Signed-off-by: Heiko Schocher <hs@denx.de>
10352
10353commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
10354Author: Heiko Schocher <hs@denx.de>
10355Date: Fri Oct 17 12:15:55 2008 +0200
10356
10357 mgcoge, mgsuvd: use in_*/out_* accesors
10358
10359 Signed-off-by: Heiko Schocher <hs@denx.de>
10360
10361commit a21ca95f8b9dca22714952b348e4905ac157b5cd
10362Author: Heiko Schocher <hs@denx.de>
10363Date: Fri Oct 17 13:52:51 2008 +0200
10364
10365 mgsuvd: fix compiler warning when using soft_i2c driver
10366
10367 Signed-off-by: Heiko Schocher <hs@denx.de>
10368
10369commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
10370Author: Heiko Schocher <hs@denx.de>
10371Date: Fri Oct 17 12:15:05 2008 +0200
10372
10373 mgsuvd: fix coding style
10374
10375 Signed-off-by: Heiko Schocher <hs@denx.de>
10376
10377commit 5f4c3137f4f051787707c548133823f1656eb508
10378Author: Heiko Schocher <hs@denx.de>
10379Date: Fri Oct 17 12:13:30 2008 +0200
10380
10381 mgcoge: Second Flash on CS5 not on CS1
10382
10383 Signed-off-by: Heiko Schocher <hs@denx.de>
10384
10385commit 76da19df5b8e186d269f29190696bd31fb6c836b
10386Author: Kumar Gala <galak@kernel.crashing.org>
10387Date: Thu Oct 16 21:52:08 2008 -0500
10388
10389 Added arch_lmb_reserve to allow arch specific memory regions protection
10390
10391 Each architecture has different ways of determine what regions of memory
10392 might not be valid to get overwritten when we boot. This provides a
10393 hook to allow them to reserve any regions they care about. Currently
10394 only ppc, m68k and sparc need/use this.
10395
10396 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10397
10398commit e02d4a9904c8f36395994c0c81469d552b82f5ea
10399Author: Heiko Schocher <hs@denx.de>
10400Date: Thu Oct 16 16:32:35 2008 +0200
10401
10402 mgcoge: added CONFIG_FIT to support the new u-boot image format
10403
10404 Signed-off-by: Heiko Schocher <hs@denx.de>
10405
10406commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
10407Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10408Date: Thu Oct 16 15:01:15 2008 +0200
10409
10410 rename CFG_ macros to CONFIG_SYS
10411
10412 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10413
10414commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
10415Author: Kumar Gala <galak@kernel.crashing.org>
10416Date: Mon Oct 13 14:12:55 2008 -0500
10417
10418 74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
10419
10420 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10421
10422commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
10423Author: Kumar Gala <galak@kernel.crashing.org>
10424Date: Tue Sep 23 10:05:02 2008 -0500
10425
10426 Expose command table search for sub-commands
10427
10428 Sub-command can benefit from using the same table and search functions
10429 that top level commands have. Expose this functionality by refactoring
10430 find_cmd() and introducing find_cmd_tbl() that sub-command processing
10431 can call.
10432
10433 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10434
10435commit f7e51b27508446f8cae3927975817137979ad5e8
10436Author: Heiko Schocher <hs@denx.de>
10437Date: Wed Oct 15 09:41:33 2008 +0200
10438
10439 mgsuvd, mgcoge: added BOOTCOUNT feature.
10440
10441 Signed-off-by: Heiko Schocher <hs@denx.de>
10442
10443commit 8f64da7f83b553889bc08400c97047998382e9d2
10444Author: Heiko Schocher <hs@denx.de>
10445Date: Wed Oct 15 09:41:00 2008 +0200
10446
10447 mgcoge, mgsuvd: added support for the IVM EEprom.
10448
10449 The EEprom contains some Manufacturerinformation,
10450 which are read from u-boot at boot time, and saved
10451 in same hush shell variables.
10452
10453 Signed-off-by: Heiko Schocher <hs@denx.de>
10454
10455commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
10456Author: Heiko Schocher <hs@denx.de>
10457Date: Wed Oct 15 09:40:28 2008 +0200
10458
10459 hush: add showvar command for hush shell.
10460
10461 This new command shows the local variables defined in
10462 the hush shell:
10463
10464 => help showvar
10465 showvar
10466 - print values of all hushshell variables
10467 showvar name ...
10468 - print value of hushshell variable 'name'
10469
10470 Also make the set_local_var() and unset_local_var ()
10471 no longer static, so it is possible to define local
10472 hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
10473 is defined, u-boot calls hush_init_var (), where
10474 boardspecific code can define local hush shell
10475 variables at boottime.
10476
10477 Signed-off-by: Heiko Schocher <hs@denx.de>
10478
10479commit 67b23a322848d828a5e45c0567b72762bfde7abf
10480Author: Heiko Schocher <hs@denx.de>
10481Date: Wed Oct 15 09:39:47 2008 +0200
10482
10483 I2C: adding new "i2c bus" Command to the I2C Subsystem.
10484
10485 With this Command it is possible to add new I2C Busses,
10486 which are behind 1 .. n I2C Muxes. Details see README.
10487
10488 Signed-off-by: Heiko Schocher <hs@denx.de>
10489
10490commit c24853644ddd2dd2e4246b5854a93e6254a14092
10491Author: Heiko Schocher <hs@denx.de>
10492Date: Wed Oct 15 09:39:08 2008 +0200
10493
10494 mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
10495
10496 As documented in doc/I2C_Edge_Conditions, adding a
10497 board specific deblocking mechanism via CFG_I2C_INIT_BOARD
10498 for the mgcoge and mgsuvd board.
10499
10500 This code was originally written by Keymile in association
10501 with Anatech and Atmel in 1998. The Code toggels the SCL
10502 until the SCA line goes to HIGH (max. 16 times).
10503 And after this, a start condition is sent.
10504
10505 This is another approach to deblock the I2C Bus. The
10506 soft I2C driver actually sends 9 clocks with SDA High,
10507 and then a stop at the end, to deblock the I2C Bus.
10508
10509 Maybe we should use the approach from Keymile as
10510 the new standard?
10511
10512 Signed-off-by: Heiko Schocher <hs@denx.de>
10513
10514commit 4ca107effebfbabac1057c39632105dacef95957
10515Author: Heiko Schocher <hs@denx.de>
10516Date: Wed Oct 15 09:38:38 2008 +0200
10517
10518 soft_i2c: Add CFG_I2C_INIT_BOARD option
10519
10520 This patch adds the option for a boardspecific
10521 I2C deblocking mechanism for the soft i2c driver.
10522
10523 Signed-off-by: Heiko Schocher <hs@denx.de>
10524
10525commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
10526Author: Heiko Schocher <hs@denx.de>
10527Date: Wed Oct 15 09:38:07 2008 +0200
10528
10529 mgcoge, mgsuvd: add DTT (LM75) support.
10530
10531 Signed-off-by: Heiko Schocher <hs@denx.de>
10532
10533commit 8e442df438ab677057571e3ac01846bff7719bce
10534Author: Heiko Schocher <hs@denx.de>
10535Date: Wed Oct 15 09:37:34 2008 +0200
10536
10537 lm75: Make the LM75 MULTI_BUS compatible.
10538
10539 Signed-off-by: Heiko Schocher <hs@denx.de>
10540
10541commit 12f1678127c1df2b2878ba93c88948bedc060775
10542Author: Heiko Schocher <hs@denx.de>
10543Date: Wed Oct 15 09:37:04 2008 +0200
10544
10545 lm75: fix Codingstyle issues.
10546
10547 Signed-off-by: Heiko Schocher <hs@denx.de>
10548
10549commit f2202450c75ba6934b356024101500ddcde6e2a6
10550Author: Heiko Schocher <hs@denx.de>
10551Date: Wed Oct 15 09:36:33 2008 +0200
10552
10553 mgcoge, mgsuvd: added EEprom support.
10554
10555 Signed-off-by: Heiko Schocher <hs@denx.de>
10556
10557commit 9661bf9d120f760238b2a073b84f2baf05010057
10558Author: Heiko Schocher <hs@denx.de>
10559Date: Wed Oct 15 09:36:03 2008 +0200
10560
10561 mgcoge, mgsuvd: add I2C support.
10562
10563 Signed-off-by: Heiko Schocher <hs@denx.de>
10564
10565commit 98aed379586a155292efbf3209356836584b601c
10566Author: Heiko Schocher <hs@denx.de>
10567Date: Wed Oct 15 09:35:26 2008 +0200
10568
10569 soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
10570
10571 This patch fixes the following warnings, when using
10572 the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
10573 systems:
10574
10575 soft_i2c.c: In function 'send_reset':
10576 soft_i2c.c:93: warning: unused variable 'immr'
10577 soft_i2c.c: In function 'send_start':
10578 soft_i2c.c:124: warning: unused variable 'immr'
10579 soft_i2c.c: In function 'send_stop':
10580 soft_i2c.c:146: warning: unused variable 'immr'
10581 soft_i2c.c: In function 'send_ack':
10582 soft_i2c.c:171: warning: unused variable 'immr'
10583 soft_i2c.c: In function 'write_byte':
10584 soft_i2c.c:196: warning: unused variable 'immr'
10585 soft_i2c.c: In function 'read_byte':
10586 soft_i2c.c:244: warning: unused variable 'immr'
10587
10588 Signed-off-by: Heiko Schocher <hs@denx.de>
10589
10590commit 799b784aa00cb03a352847ab9f9acdde79b72d21
10591Author: Heiko Schocher <hs@denx.de>
10592Date: Wed Oct 15 09:34:45 2008 +0200
10593
10594 i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
10595
10596 Signed-off-by: Heiko Schocher <hs@denx.de>
10597
10598commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
10599Author: Heiko Schocher <hs@denx.de>
10600Date: Wed Oct 15 09:34:05 2008 +0200
10601
10602 mgcoge: fix Coding Style issues.
10603
10604 Signed-off-by: Heiko Schocher <hs@denx.de>
10605
10606commit e43a27c49712203fe8848a17714330623edfb2eb
10607Author: Heiko Schocher <hs@denx.de>
10608Date: Wed Oct 15 09:33:30 2008 +0200
10609
10610 I2C: add new command i2c reset.
10611
10612 If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
10613 it is not possible to get out of this, until the
10614 complete Hardware gets a reset. This new commando
10615 calls again i2c_init (and that calls i2c_init_board
10616 if defined), which will deblock the I2C Bus.
10617
10618 Signed-off-by: Heiko Schocher <hs@denx.de>
10619 Signed-off-by: Wolfgang Denk <wd@denx.de>
10620
10621commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
10622Author: Heiko Schocher <hs@denx.de>
10623Date: Wed Oct 15 09:32:25 2008 +0200
10624
10625 mgsuvd, mgcoge: move this 2 boards in one dir.
10626
10627 There are some more extensions, which are for both boards
10628 and some more boards from this manufacturer will follow soon.
10629
10630 Signed-off-by: Heiko Schocher <hs@denx.de>
10631 Signed-off-by: Wolfgang Denk <wd@denx.de>
10632
10633commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
10634Author: Dirk Eibach <eibach@gdsys.de>
10635Date: Wed Oct 8 13:44:27 2008 +0200
10636
10637 hwmon: Add LM63 support
10638
10639 This patch adds support for the National LM63 temperature
10640 sensor with integrated fan control. It's used on the GDSys
10641 Neo board (405EP) which will be submitted later.
10642
10643 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
10644 Acked-by: Stefan Roese <sr@denx.de>
10645
10646commit 7ba890bf2f2b92831420243c058951aa831119fd
10647Author: Kyungmin Park <kmpark@infradead.org>
10648Date: Wed Oct 8 11:01:17 2008 +0900
10649
10650 Add Red Black Tree support
10651
10652 Now it's used at UBI module. Of course other modules can use it.
10653 If you want to use it, please define CONFIG_RBTREE
10654
10655 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
10656
10657commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
10658Author: richardretanubun <richardretanubun@ruggedcom.com>
10659Date: Mon Oct 6 16:10:53 2008 -0400
10660
10661 CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
10662
10663 Added support for CONFIG_EFI_PARTITION to ext2 commands.
10664 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
10665
10666commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
10667Author: richardretanubun <richardretanubun@ruggedcom.com>
10668Date: Fri Sep 26 11:13:22 2008 -0400
10669
10670 Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
10671
10672 The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
10673 of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
10674
10675 Based on linux/fs/partitions/efi.[ch]
10676
10677 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
10678
10679commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
10680Author: Bartlomiej Sieka <tur@semihalf.com>
10681Date: Wed Oct 1 15:26:32 2008 +0200
10682
10683 FIT: output image load address for type 'firmware', fix message while there
10684
10685 Now that the auto-update feature uses the 'firmware' type for updates, it is
10686 useful to inspect the load address of such images.
10687
10688 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
10689
10690commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
10691Author: Bartlomiej Sieka <tur@semihalf.com>
10692Date: Wed Oct 1 15:26:31 2008 +0200
10693
10694 Automatic software update from TFTP server
10695
10696 The auto-update feature allows to automatically download software updates
10697 from a TFTP server and store them in Flash memory during boot. Updates are
10698 contained in a FIT file and protected with SHA-1 checksum.
10699
10700 More detailed description can be found in doc/README.update.
10701
10702 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
10703 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
10704
10705commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
10706Author: Bartlomiej Sieka <tur@semihalf.com>
10707Date: Wed Oct 1 15:26:27 2008 +0200
10708
10709 flash: factor out adjusting of Flash address to the end of sector
10710
10711 The upcoming automatic update feature needs the ability to adjust an
10712 address within Flash to the end of its respective sector. Factor out
10713 this functionality to a new function flash_sect_roundb().
10714
10715 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
10716 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
10717 Signed-off-by: Stefan Roese <sr@denx.de>
10718
10719commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
10720Author: Bartlomiej Sieka <tur@semihalf.com>
10721Date: Wed Oct 1 15:26:29 2008 +0200
10722
10723 net: Make TFTP server timeout configurable
10724
10725 There are two aspects of a TFTP transfer involving timeouts:
10726 1. timeout waiting for initial server reply after sending RRQ
10727 2. timeouts while transferring actual data from the server
10728
10729 Since the upcoming auto-update feature attempts a TFTP download during each
10730 boot, it is undesirable to have a long delay when the TFTP server is not
10731 available. Thus, this commit makes the server timeout (1.) configurable by two
10732 global variables:
10733
10734 TftpRRQTimeoutMSecs
10735 TftpRRQTimeoutCountMax
10736
10737 TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
10738 server, TftpRRQTimeoutCountMax overrides default number of connection retries.
10739 The total delay when trying to download a file from a non-existing TFTP server
10740 is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
10741
10742 Timeouts during file transfers (2.) are unaffected.
10743
10744 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
10745 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
10746 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10747
10748commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
10749Author: Bartlomiej Sieka <tur@semihalf.com>
10750Date: Wed Oct 1 15:26:28 2008 +0200
10751
10752 net: express the first argument to NetSetTimeout() in milliseconds
10753
10754 Enforce millisecond semantics of the first argument to NetSetTimeout() --
10755 the change is transparent for well-behaving boards (CFG_HZ == 1000 and
10756 get_timer() countiing in milliseconds).
10757
10758 Rationale for this patch is to enable millisecond granularity for
10759 network-related timeouts, which is needed for the upcoming automatic
10760 software update feature.
10761
10762 Summary of changes:
10763 - do not scale the first argument to NetSetTimeout() by CFG_HZ
10764 - change timeout values used in the networking code to milliseconds
10765
10766 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
10767 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
10768 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10769
10770commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
10771Author: richardretanubun <richardretanubun@ruggedcom.com>
10772Date: Mon Sep 29 18:28:23 2008 -0400
10773
10774 Adds two more ethernet interface to 83xx
10775
10776 Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
10777 Six eth interface is chosen because the platform I am using combines
10778 UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
10779
10780 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
10781 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10782
10783commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
10784Author: Haiying Wang <Haiying.Wang@freescale.com>
10785Date: Wed Sep 24 11:42:12 2008 -0500
10786
10787 Change UEC PHY interface to RGMII on MPC8568MDS
10788
10789 Change UEC phy interface from GMII to RGMII on MPC8568MDS board
10790
10791 Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
10792 but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
10793
10794 Now both UEC1 and UEC2 can work properly under u-boot.
10795
10796 It is also in consistent with the kernel setting for 8568 UEC phy interface.
10797
10798 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
10799 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
10800
10801commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
10802Author: Wolfgang Denk <wd@denx.de>
10803Date: Sat Oct 18 21:30:31 2008 +0200
10804
10805 Prepare v2008.10 release: update CHANGELOG & Makefile
10806
10807 Signed-off-by: Wolfgang Denk <wd@denx.de>
10808
b59b16ca
WD
10809commit f7a35a60cf45491871a5c28e9ad24db005487857
10810Author: Heiko Schocher <hs@denx.de>
10811Date: Fri Oct 17 18:24:06 2008 +0200
10812
10813 mgcoge: add redundant environment sector
10814
10815 Signed-off-by: Heiko Schocher <hs@denx.de>
10816 Signed-off-by: Wolfgang Denk <wd@denx.de>
10817
10818commit c2537ee85954af9d036b18b644f3e18d837bf4a5
10819Author: Heiko Schocher <hs@denx.de>
10820Date: Fri Oct 17 18:23:27 2008 +0200
10821
10822 mgsuvd: update size of environment
10823
10824 Signed-off-by: Heiko Schocher <hs@denx.de>
10825
10826commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
10827Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
10828Date: Thu Oct 16 13:38:00 2008 -0500
10829
10830 83xx NAND boot: wait for LTESR[CC]
10831
10832 At least some revisions of the 8313, and possibly other chips, do not
10833 wait for all pages of the initial 4K NAND region to be loaded before
10834 beginning execution; thus, we wait for it before branching out of the
10835 first NAND page.
10836
10837 This fixes warm reset problems when booting from NAND on 8313erdb.
10838
10839 Signed-off-by: Scott Wood <scottwood@freescale.com>
10840 Acked-by: Kim Phillips <kim.phillips@freescale.com>
10841
10842commit bf29e0ea0af03d593c64614136acc723a7a022a2
10843Author: Yuri Tikhonov <yur@emcraft.com>
10844Date: Fri Oct 17 12:54:18 2008 +0200
10845
10846 ppc4xx: PPC44x MQ initialization
10847
10848 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
10849 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
10850 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
10851
10852 Previously the appropriate initialization had been made in Linux, by the
10853 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
10854 registers after normal operation has begun is not supported and could
10855 have unpredictable results.
10856
10857 Comment from Stefan: This patch doesn't change the resulting value of the
10858 MQ registers. It explicitly sets/clears all bits to the desired state which
10859 better documents the resulting register value instead of relying on pre-set
10860 default values.
10861
10862 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
10863 Signed-off-by: Stefan Roese <sr@denx.de>
10864
3cbd8231
WD
10865commit ec081c2c190148b374e86a795fb6b1c49caeb549
10866Author: Stefan Roese <sr@denx.de>
10867Date: Fri Oct 17 12:51:46 2008 +0200
10868
10869 ppc4xx: PPC44x MQ initialization
10870
10871 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
10872 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
10873 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
10874
10875 Previously the appropriate initialization had been made in Linux, by the
10876 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
10877 registers after normal operation has begun is not supported and could
10878 have unpredictable results.
10879
10880 Comment from Stefan: This patch doesn't change the resulting value of the
10881 MQ registers. It explicitly sets/clears all bits to the desired state which
10882 better documents the resulting register value instead of relying on pre-set
10883 default values.
10884
10885 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
10886 Signed-off-by: Stefan Roese <sr@denx.de>
10887
b59b16ca
WD
10888commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
10889Author: Kumar Gala <galak@kernel.crashing.org>
10890Date: Thu Oct 16 21:58:50 2008 -0500
10891
10892 85xx: Using proper I2C source clock divider for MPC8544
10893
10894 The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
10895 bit 26, instead it should be bit 28. This caused in incorrect
10896 interpretation of the i2c_clk which is the same as the SEC clk on
10897 MPC8544. The SEC clk is controlled by cfg_sec_freq that is reported
10898 in PORDEVSR2.
10899
10900 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10901
10902commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
10903Author: Kumar Gala <galak@kernel.crashing.org>
10904Date: Thu Oct 16 21:58:49 2008 -0500
10905
10906 Revert "85xx: Using proper I2C source clock divider for MPC8544"
10907
10908 This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
10909
10910 The fix introduced by this patch is not correct. The problem is
10911 that the documentation is not correct for the MPC8544 with regards
10912 to which bit in PORDEVSR2 is for the SEC_CFG.
10913
10914 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10915
10916commit 2179c4766bffeece98e5e92040629a96c97e230c
10917Author: Kumar Gala <galak@kernel.crashing.org>
10918Date: Wed Oct 15 10:19:41 2008 -0500
10919
10920 85xx: Fix compile warning
10921
10922 mpc8536ds.c: In function 'is_sata_supported':
10923 mpc8536ds.c:614: warning: unused variable 'devdisr'
10924
10925 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10926
10927commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
10928Author: Jason Jin <Jason.jin@freescale.com>
10929Date: Wed Oct 15 10:40:24 2008 +0800
10930
10931 Fix the function conflict in x86emu when DEBUG is on
10932
10933 The function parse_line() in common/main.c was exposed globally by commit
10934 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
10935 name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
10936 This patch fix this by renaming the function in the debug.c file.
10937
10938 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
10939
10940commit b4dbacf69a669a17487054552fc2761149dd6767
10941Author: Wolfgang Denk <wd@denx.de>
10942Date: Wed Oct 15 15:50:45 2008 +0200
10943
10944 Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
10945
10946 Signed-off-by: Wolfgang Denk <wd@denx.de>
10947
b4dbacf6
WD
10948commit 374b9038293d01d8744a46af9b7854a6fd99b228
10949Author: Heiko Schocher <hs@denx.de>
10950Date: Wed Oct 15 09:51:19 2008 +0200
10951
10952 Fix compiler warning in lib_ppc/board.c
10953
10954 Fix compiler warning introduced by commit 0f8cbc18
10955
10956 Signed-off-by: Heiko Schocher <hs@denx.de>
10957 Signed-off-by: Wolfgang Denk <wd@denx.de>
10958
10959commit 9724555755a6f1066636481b41f7094e0ce93a69
10960Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
10961Date: Thu Oct 9 10:29:14 2008 +0530
10962
10963 mpc83xx: wait till UPM completes the write to array
10964
10965 Reference manual states that MxMR[MAD] increment is the indication
10966 of write to UPM array is complete. Honour that. Also, make the dummy
10967 write explicit.
10968
10969 also fix the comment.
10970
10971 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
10972 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10973
10974commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
10975Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
10976Date: Wed Oct 8 18:12:20 2008 -0500
10977
10978 Remove unwanted ';' at end of define.
10979
10980 Currently this is not creating any problem. But it will result
10981 in compilation error when used as below.
10982
10983 printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
10984
10985 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
10986
10987 continuation of the theme based on git grep "^#define CFG_.*;$" include/
10988
10989 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10990
10991commit b2934a56650e9a6c54432f9ce6dc36757967385e
10992Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10993Date: Mon Oct 6 10:53:59 2008 -0400
10994
10995 ARM DaVinci: Add maintainer information for SFFSDR board.
10996
10997 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10998
10999commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
11000Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11001Date: Sat Oct 4 19:26:16 2008 +0200
11002
11003 api: fix type mismatch
11004
11005 This patch fixes a type mismatch and thus removes a compiler
11006 warning when compiling with CONFIG_API on powerpc.
11007
11008 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11009
11010commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
11011Author: Peter Tyser <ptyser@xes-inc.com>
11012Date: Wed Oct 1 12:25:04 2008 -0500
11013
11014 cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
11015
11016 Original code displayed:
11017 => help i2c
11018 i2c i2c speed [speed] - show or set I2C bus speed
11019 i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
11020 ...
11021
11022 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11023
11024commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
11025Author: Wolfgang Denk <wd@denx.de>
11026Date: Tue Oct 14 22:13:41 2008 +0200
11027
11028 Update CHANGELOG
11029
11030 Signed-off-by: Wolfgang Denk <wd@denx.de>
11031
a0b1b610
WD
11032commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
11033Author: Jason Jin <Jason.jin@freescale.com>
11034Date: Fri Oct 10 11:41:01 2008 +0800
11035
11036 Do not init SATA when disabled on 8536DS.
11037
11038 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
11039 driver still try to access the SATA registers, the cpu will hangup.
11040 This patch try to fix this by reading the serdes status before the SATA
11041 initialize.
11042
11043 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
11044 Acked-by: Andy Fleming <afleming@freescale.com>
11045
3cbd8231
WD
11046commit 9dbc366744960013965fce8851035b6141f3b3ae
11047Author: Remy Bohmer <linux@bohmer.net>
11048Date: Fri Oct 10 10:23:22 2008 +0200
11049
11050 The PIPE_INTERRUPT flag is used wrong
11051
11052 At a lot of places in the code the PIPE_INTERRUPT flags and friends
11053 are used wrong. The wrong bits are compared to this flag resulting
11054 in wrong conditions. Also there are macros that should be used for
11055 PIPE_* flags.
11056 This patch tries to fix them all, however, I was not able to test the
11057 changes, because I do not have any of these boards.
11058
11059 Review required!
11060
11061 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11062 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
11063
11064commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
11065Author: Remy Bohmer <linux@bohmer.net>
11066Date: Fri Oct 10 10:23:21 2008 +0200
11067
11068 fix USB initialisation procedure
11069
11070 The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
11071 At some places directly 8,16,32,64 was used instead of the encoded
11072 value. Made a enum for the options to make this more clear and to help
11073 preventing similar errors in the future.
11074
11075 After fixing this bug it became clear that another bug existed where
11076 the 'pipe' is and-ed with PIPE_* flags, where it should have been
11077 'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
11078
11079 Also removed the triple 'get_device_descriptor' sequence, it has no use,
11080 and Windows nor Linux behaves that way.
11081 There is also a poll going on with a timeout when usb_control_msg() fails.
11082 However, the poll is useless, because the flag will never be set on a error,
11083 because there is no code that runs in a parallel that can set this flag.
11084 Changed this to something more logical.
11085
11086 Tested on AT91SAM9261ek and compared the flow on the USB bus to what
11087 Linux is doing. There is no difference anymore in the early initialisation
11088 sequence.
11089
11090 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11091 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
11092
a0b1b610
WD
11093commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
11094Author: Nikita V. Youshchenko <yoush@cs.msu.su>
11095Date: Fri Oct 3 00:03:55 2008 +0400
11096
11097 fsl_diu: fix alignment error that caused malloc corruption
11098
11099 When aligning malloc()ed screen_base, invalid offset was added.
11100 This not only caused misaligned result (which did not cause hardware
11101 misbehaviour), but - worse - caused screen_base + smem_len to
11102 be out of malloc()ed space, which in turn caused breakage of
11103 futher malloc()/free() operation.
11104
11105 This patch fixes screen_base alignment.
11106
11107 Also this patch makes memset() that cleans framebuffer to be executed
11108 on first initialization of diu, not only on re-initialization. It looks
11109 correct to clean the framebuffer instead of displaying random garbage;
11110 I believe that was disabled only because that memset caused breakage
11111 of malloc/free described above - which no longer happens with the fix
11112 described above.
11113
11114 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
11115
11116commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
11117Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11118Date: Wed Sep 24 10:29:37 2008 +0200
11119
11120 api: Fix building with CONFIG_API
11121
11122 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
11123
11124 USB_MAX_STOR_DEV is defined in include/usb.h, but
11125 needed in api/api_storage.c.
11126
11127 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11128
11129commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
11130Author: Peter Tyser <ptyser@xes-inc.com>
11131Date: Tue Sep 23 12:39:40 2008 -0500
11132
11133 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
11134
11135 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11136
11137commit 81e612014c40c922ec35488d17c504d4e9286f06
11138Author: Peter Tyser <ptyser@xes-inc.com>
11139Date: Tue Sep 23 12:38:42 2008 -0500
11140
11141 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
11142
11143 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
11144 CFG_EEPROM_PAGE_WRITE_BITS in various temperature
11145 sensor drivers are not necessary
11146
11147 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11148
11149commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
11150Author: Mike Frysinger <vapier@gentoo.org>
11151Date: Tue Oct 14 07:04:38 2008 -0400
11152
11153 cmd_spi: remove broken signed casting for display
11154
11155 Since we're working with unsigned data, you can't apply a signed pointer
11156 cast and then attempt to print the result. Otherwise you get wrong output
11157 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
11158
11159 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11160
11161commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
11162Author: Mike Frysinger <vapier@gentoo.org>
11163Date: Tue Oct 14 07:05:24 2008 -0400
11164
11165 strings cmd: drop old CONFIG_CFG_STRINGS define
11166
11167 We don't need CONFIG_CFG_STRINGS anymore now that we have the define
11168 CONFIG_CMD_STRINGS and Makefile control.
11169
11170 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11171
11172commit fecb5ade3b37f62981f2b05b621005850173aaa9
11173Author: Jason Jin <Jason.jin@freescale.com>
11174Date: Fri Sep 19 17:32:49 2008 +0800
11175
11176 Fix the NAND size overflow issue.
11177
11178 When the total size of all NAND devices exceeds 4 GiB, the size will
11179 overflow. This patch tries to fix this.
11180
11181 Note that we still have a problem when a single NAND device is bigger
11182 than 4 GiB: then the overflow would actually happen earlier, i. e.
11183 when storing the size in nand_info[].size, as nand_info[].size is an
11184 "u_int32_t".
11185
11186 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
11187 Signed-off-by: Wolfgang Denk <wd@denx.de>
11188
11189commit 30f574717277238b9014b8136c90eea77196490f
11190Author: Louis Su <louis@asix.com.tw>
11191Date: Wed Jul 9 11:01:37 2008 +0800
11192
11193 AX88180: new gigabit network driver
11194
11195 Signed-off-by: Louis Su <louis@asix.com.tw>
11196 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11197
11198commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
11199Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
11200Date: Tue Aug 19 16:07:03 2008 +0200
11201
11202 enable 10/100M at VSC8601 at tsec driver
11203
11204 Currently VSC8601 doesn't link with 10/100M partners if the
11205 EEPROM/Strapping is not set up.
11206 Setting the auto-neg register fixes this.
11207
11208 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
11209 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11210
11211commit 702c85b0e876d587c11acdbb55738ee52acd54f4
11212Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11213Date: Tue Sep 30 15:02:53 2008 +0900
11214
11215 net: ne2000: Divided a function of NE2000 driver
11216
11217 get_prom function was used __attriute__ , but it is not enable.
11218 ax88796.o does not do link besides ne2000.o. When ld is carried
11219 out, get_prom function of ax88796.c is ignored.
11220 This problem is a thing by specifications of ld.
11221 I checked and test this patch on SuperH and MIPS.
11222
11223 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11224 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11225
11226commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
11227Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11228Date: Tue Oct 14 11:10:59 2008 +0900
11229
11230 sh: rsk7203: Add smc911x driver support to board config file
11231
11232 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11233 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11234
11235commit cae6f909baf86357b3c0bd01acfc414348c4d175
11236Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11237Date: Thu Oct 9 13:54:33 2008 +0900
11238
11239 sh: Fix cannot execute a stand-alone application
11240
11241 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
11242
11243 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11244 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11245
11246commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
11247Author: Ed Swarthout <Ed.Swarthout@freescale.com>
11248Date: Wed Oct 8 23:38:00 2008 -0500
11249
11250 fsl_pci_init do not scan bus when configured as an end-point
11251
11252 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
11253 Acked-by: Andy Fleming <afleming@freescale.com>
11254
11255commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
11256Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11257Date: Tue Sep 16 17:07:53 2008 -0400
11258
11259 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
11260
11261 This is no longer necessary now that the GD_FLG_RELOC flag is set for
11262 all ARM boards.
11263
11264 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11265
11266commit d977a57356657ba241256231efca32828a5822f9
11267Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
11268Date: Sat Sep 13 10:04:32 2008 +0200
11269
11270 Fix lzma uncompress call (image_start wrongly used instead image_len)
11271
11272 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
11273
11274commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
11275Author: Nick Spence <nick.spence@freescale.com>
11276Date: Thu Aug 28 14:09:15 2008 -0700
11277
11278 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
11279
11280 This is needed in unlock_ram_in_cache() because it is called from C and
11281 will corrupt the small data area anchor that is kept in R2.
11282
11283 lock_ram_in_cache() is modified similarly as good coding practice, but
11284 is not called from C.
11285
11286 Signed-off-by: Nick Spence <nick.spence@freescale.com>
11287
11288commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
11289Author: Kumar Gala <galak@kernel.crashing.org>
11290Date: Tue Aug 19 15:05:34 2008 -0500
11291
11292 86xx: remove redudant code with lib_ppc/interrupts.c
11293
11294 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
11295 Not know how that happened, but there is no good reason for it.
11296
11297 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
11298 they exist.
11299
11300 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11301
11302commit 0d01f66d235118515b5086b88f82498bc0695d6a
11303Author: Ed Swarthout <Ed.Swarthout@freescale.com>
11304Date: Thu Oct 9 01:26:36 2008 -0500
11305
11306 CFI: cfi_flash write fix for AMD legacy
11307
11308 The flash_unlock_seq requires a sector for AMD_LEGACY.
11309 Fix a retcode check typeo.
11310
11311 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
11312 Signed-off-by: Stefan Roese <sr@denx.de>
11313
11314commit 542b385a620a1783454a00424930e51895f45073
11315Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11316Date: Tue Oct 7 13:13:10 2008 +0200
11317
11318 ppc4xx: Fix USB 2.0 phy reset sequence
11319
11320 This patch fixes USB 2.0 communication issues on some DU440 boards.
11321
11322 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11323 Signed-off-by: Stefan Roese <sr@denx.de>
11324
11325commit df8c1ce11114c2260dedb5547281945f7db8fa5c
11326Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11327Date: Tue Oct 7 13:13:09 2008 +0200
11328
11329 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
11330
11331 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11332 Signed-off-by: Stefan Roese <sr@denx.de>
11333
11334commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
11335Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11336Date: Tue Oct 7 13:13:08 2008 +0200
11337
11338 ppc4xx: Fix DU440 GPIO configuration
11339
11340 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11341 Signed-off-by: Stefan Roese <sr@denx.de>
11342
11343commit 35dd025c70fcc4389317db2f2a9d14795172137d
11344Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11345Date: Tue Oct 7 13:13:07 2008 +0200
11346
11347 ppc4xx: Update DU440 config
11348
11349 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
11350 Signed-off-by: Stefan Roese <sr@denx.de>
11351
11352commit f3bf9273939ffe1a60a32a2eef909097f15df56b
11353Author: Kumar Gala <galak@kernel.crashing.org>
11354Date: Wed Oct 8 15:36:39 2008 -0500
11355
11356 MPC8572DS: Fix compile warnings
11357
11358 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
11359 compile warnings:
11360
11361 cmd_i2c.c:112: warning: missing braces around initializer
11362 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
11363
11364 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11365
11366commit dffd2446fb041f38ef034b0fcf41e51e5e489159
11367Author: Wolfgang Grandegger <wg@grandegger.com>
11368Date: Tue Sep 30 10:55:57 2008 +0200
11369
11370 85xx: Using proper I2C source clock divider for MPC8544
11371
11372 Measurements with our MPC8544 board showed that the I2C bus frequency
11373 is wrong by a factor of 1.5. Obviously, the interpretation of the
11374 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
11375 correct. There seems to be an error in the 8544 RM.
11376
11377 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
11378
11379commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
11380Author: Rafal Czubak <rcz@semihalf.com>
11381Date: Wed Oct 8 13:41:30 2008 +0200
11382
11383 FSL: Fix get_cpu_board_revision() return value.
11384
11385 get_cpu_board_revision() returned board revision based on information stored
11386 in global static struct eeprom. It should instead use one from local struct
11387 board_eeprom, to which the data is actually read from EEPROM. The bug led to
11388 system hang after printing L1 cache information on U-Boot startup. The problem
11389 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
11390 boards using CFG_I2C_EEPROM_CCID.
11391
11392 The change has been successfully tested on MPC8555CDS system.
11393
11394 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
11395
11396commit 747f316cca484ed627a97dd3391febabce384186
11397Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11398Date: Tue Sep 30 20:08:49 2008 +0200
11399
11400 update uImage FIT multi documentation
11401
11402 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11403
11404commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
11405Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11406Date: Tue Sep 30 20:08:36 2008 +0200
11407
11408 move README.imx31 to doc/ and merge with README.mx31
11409
11410 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11411
11412commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
11413Author: Guennadi Liakhovetski <lg@denx.de>
11414Date: Thu Sep 25 20:54:37 2008 +0200
11415
11416 i.MX31: switch to CFG_HZ=1000
11417
11418 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
11419 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
11420 provides 2% or 0.4% precision depending on the
11421 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
11422 boot-delay.
11423
11424 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
11425
11426commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
11427Author: gnusercn <gnusercn@gmail.com>
11428Date: Wed Oct 8 18:58:58 2008 +0200
11429
11430 Fix bug: in arch-arm, env_get_char dose not work fine
11431
11432 due to the arm implementation which supposed that U-Boot is in RAM
11433 when we jump to start_armboot
11434
11435 Signed-off-by: gnusercn <gnusercn@gmail.com>
11436 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11437
11438commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
11439Author: Adam Graham <agraham@amcc.com>
11440Date: Mon Oct 6 10:16:13 2008 -0700
11441
11442 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
11443
11444 After changing SDRAM_CLKTR phase value rerun the memory preload
11445 initialization sequence (INITPLR) to reset and relock the memory
11446 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
11447 adjustment effects the phase relationship of the internal, to the
11448 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
11449
11450 Signed-off-by: Adam Graham <agraham@amcc.com>
11451 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
11452 Signed-off-by: Stefan Roese <sr@denx.de>
11453
11454commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
11455Author: Haiying Wang <Haiying.Wang@freescale.com>
11456Date: Fri Oct 3 11:48:03 2008 -0400
11457
11458 Remove redundant #define for MPC8536DS
11459
11460 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
11461
11462commit 445a7b38308eb05b41de74165b20855db58c7ee5
11463Author: Haiying Wang <Haiying.Wang@freescale.com>
11464Date: Fri Oct 3 11:47:30 2008 -0400
11465
11466 Add ID EEPROM support for MPC8572DS
11467
11468 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
11469 system information like mac addresses etc. This patch enables it.
11470
11471 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
11472
11473commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
11474Author: Haiying Wang <Haiying.Wang@freescale.com>
11475Date: Fri Oct 3 11:46:59 2008 -0400
11476
11477 Minor fixes for I2C address on MPC8572DS
11478
11479 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
11480 according to the board spec, and adds the 2nd i2c bus offset.
11481
11482 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
11483
11484commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
11485Author: Jason Jin <Jason.jin@freescale.com>
11486Date: Sat Sep 27 14:40:57 2008 +0800
11487
11488 Fix the incorrect DDR clk freq reporting on 8536DS
11489
11490 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
11491 The display is still sync mode DDR freq. This patch try to fix
11492 this. The display DDR freq is now the actual freq in both
11493 sync and async mode.
11494
11495 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
11496
11497commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
11498Author: Kumar Gala <galak@kernel.crashing.org>
11499Date: Tue Oct 7 10:28:46 2008 -0500
11500
11501 85xx: Remove setting of *cache-line-size in device trees
11502
11503 ePAPR says if the *cache-block-size is the same as *cache-line-size
11504 than we don't need the *cache-line-size property.
11505
11506 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11507
11508commit cd3cb0d9269d155276b00207e3816a9347fd1c92
11509Author: Gerald Van Baren <vanbaren@cideas.com>
11510Date: Sat Oct 4 07:56:06 2008 -0400
11511
11512 libfdt: Fix error in documentation for fdt_get_alias_namelen()
11513
11514 Oops, screwed up the function name in the documenting comment for this
11515 function. Trivial correction in this patch.
11516
11517 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
11518 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
11519
11520commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
11521Author: David Gibson <david@gibson.dropbear.id.au>
11522Date: Wed Aug 20 16:55:14 2008 +1000
11523
11524 libfdt: Add function to explicitly expand aliases
11525
11526 Kumar has already added alias expansion to fdt_path_offset().
11527 However, in some circumstances it may be convenient for the user of
11528 libfdt to explicitly get the string expansion of an alias. This patch
11529 adds a function to do this, fdt_get_alias(), and uses it to implement
11530 fdt_path_offset().
11531
11532 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
11533
11534commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
11535Author: Mike Frysinger <vapier@gentoo.org>
11536Date: Thu Oct 2 01:55:38 2008 -0400
11537
11538 cfi_flash: do not reset flash when probe fails
11539
11540 The CFI flash driver starts at flash_init() which calls down into
11541 flash_get_size(). This starts by calling flash_detect_cfi(). If said
11542 function fails, flash_get_size() finishes by attempting to reset the
11543 flash. Unfortunately, it does this with an info->portwidth set to 0x10
11544 which filters down into flash_make_cmd() and that happily smashes the
11545 stack by sticking info->portwidth bytes into a cfiword_t variable that
11546 lives on the stack. On a 64bit system you probably won't notice, but
11547 killing the last 8 bytes on a 32bit system usually leads to a corrupt
11548 return address. Which is what happens on a Blackfin system.
11549
11550 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
11551 Signed-off-by: Stefan Roese <sr@denx.de>
11552
11553commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
11554Author: Stefan Roese <sr@denx.de>
11555Date: Fri Sep 26 17:03:26 2008 +0200
11556
11557 fdt: Overwrite /chosen node in bootm if it already exists in the dtb
11558
11559 Set force parameter in fdt_chosen() call in do_bootm_linux() call.
11560 Without this, the chosen node is not overwritten if it already
11561 exists.
11562
11563 Signed-off-by: Stefan Roese <sr@denx.de>
11564
11565commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
11566Author: Jon Loeliger <jdl@freescale.com>
11567Date: Thu Sep 25 11:02:17 2008 -0500
11568
11569 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
11570
11571 Using Gcc 4.3 detected this problem:
11572
11573 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
11574 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
11575 occur when assuming that (X + c) < X is always false
11576
11577 To fix the problem, treat the offset as an unsigned int.
11578
11579 The problem report and proposed fix were provided
11580 by Steve Papacharalambous <stevep@freescale.com>.
11581
11582 Signed-off-by: Jon Loeliger <jdl@freescale.com>
11583
11584commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
11585Author: David Gibson <david@gibson.dropbear.id.au>
11586Date: Fri Aug 29 14:19:13 2008 +1000
11587
11588 libfdt: Fix bugs in fdt_get_path()
11589
11590 The current implementation of fdt_get_path() has a couple of bugs,
11591 fixed by this patch.
11592
11593 First, contrary to its documentation, on success it returns the length
11594 of the node's path, rather than 0. The testcase is correspondingly
11595 wrong, and the patch fixes this as well.
11596
11597 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
11598 instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
11599 Specifically this happens when there is insufficient space even to
11600 hold the path's second last component. This behaviour is corrected,
11601 and the testcase updated to check it.
11602
11603 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
11604
11605commit 33af3e6656e84660d397b5dd95abab2dccc36f83
11606Author: Wolfgang Denk <wd@denx.de>
11607Date: Wed Oct 1 12:34:58 2008 +0200
11608
11609 TQM5200: enable support for ATAPI devices
11610
11611 Signed-off-by: Wolfgang Denk <wd@denx.de>
11612
11613commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
11614Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11615Date: Mon Sep 15 05:48:25 2008 +0200
11616
11617 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
11618
11619 we need this due to the arm implementation which supposed that U-Boot
11620 is in RAM when we jump to start_armboot
11621
11622 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
11623 in order to do it for all arm board
11624
11625 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11626
11627commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
11628Author: Kim Phillips <kim.phillips@freescale.com>
11629Date: Wed Sep 24 08:46:25 2008 -0500
11630
11631 mpc83xx: don't disable autoboot
11632
11633 bootdelay set to -1 'permanently' disables autobooting, even if
11634 bootcmd is specified. Change to a positive value to allow
11635 autobooting when a bootcmd is set.
11636
11637 Reported-by: Coray Tate <Coray.Tate@freescale.com>
11638 Cc: Scott Wood <scottwood@freescale.com>
11639 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11640
11641commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
11642Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11643Date: Wed Sep 24 10:42:15 2008 +0900
11644
11645 mpc83xx: Fix typo in include/mpc83xx.h
11646
11647 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
11648
11649 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11650 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11651
11652commit 162c41c03179727a1d14262f703c9a8bc40231fa
11653Author: Kim Phillips <kim.phillips@freescale.com>
11654Date: Tue Sep 23 09:38:49 2008 -0500
11655
11656 mpc83xx: add h/w flash protection to board configs
11657
11658 the operating system may leave flash in a h/w locked state after writing.
11659 This allows u-boot to continue to write flash by enabling h/w unlocking
11660 by default.
11661
11662 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11663
11664commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
11665Author: Anton Vorontsov <avorontsov@ru.mvista.com>
11666Date: Thu Sep 11 21:35:36 2008 +0400
11667
11668 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
11669
11670 The spd_dram code shifts the base address, then masks 20 bits, but
11671 forgets to shift the base address back. Fix this by just masking the
11672 base address correctly.
11673
11674 Found this bug while trying to relocate a DDR memory at the base != 0.
11675
11676 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
11677 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11678
11679commit 8fd4166c467a46773f80208bda1ec3b4757747bc
11680Author: Stefan Roese <sr@denx.de>
11681Date: Mon Sep 22 16:10:43 2008 +0200
11682
11683 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
11684
11685 Depending on the configuration jumper "SATA SELECT", U-Boot disabled
11686 either one PCIe node or the SATA node in the device tree blob. This
11687 patch removes the unnecessary and even confusing warning, when the node
11688 is not found at all.
11689
11690 Signed-off-by: Stefan Roese <sr@denx.de>
11691
11692commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
11693Author: Remy Bohmer <linux@bohmer.net>
11694Date: Fri Sep 19 13:30:06 2008 +0200
11695
11696 Add missing device types to dev_print() in part.c
11697
11698 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11699
11700commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
11701Author: Wolfgang Denk <wd@denx.de>
11702Date: Mon Sep 22 22:23:06 2008 +0200
11703
11704 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
11705 eventually leads to a machine check. This change assures that DPRAM
11706 is allocated only once in that case.
11707
11708 Signed-off-by: Gary Jennejohn <garyj@denx.de>
11709 Signed-off-by: Wolfgang Denk <wd@denx.de>
11710
11711commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
11712Author: Laurent Pinchart <laurentp@cse-semaphore.com>
11713Date: Wed Sep 17 17:57:34 2008 +0200
11714
11715 Fix Spartan-3 definitions.
11716
11717 A few Spartan-3 definitions erroneously use Spartan-3E size
11718 constants. This patch fixes them.
11719
11720 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
11721
11722commit 28113e1f0da4146b823ffce37680d31d5685a60b
11723Author: Laurent Pinchart <laurentp@cse-semaphore.com>
11724Date: Wed Sep 17 17:41:58 2008 +0200
11725
11726 Remove duplicate Spartan-3E definition.
11727
11728 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
11729 Signed-off-by: Wolfgang Denk <wd@denx.de>
11730
11731commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
11732Author: Anatolij Gustschin <agust@denx.de>
11733Date: Wed Sep 17 13:46:17 2008 +0200
11734
11735 socrates: change default mtest address range
11736
11737 Running mtest command on socrates without specifying
11738 an address range crashes the board. This patch changes
11739 default mtest address range to prevent this behavior.
11740
11741 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11742
11743commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
11744Author: Anatolij Gustschin <agust@denx.de>
11745Date: Wed Sep 17 12:34:45 2008 +0200
11746
11747 socrates: fix crash after relocation
11748
11749 Currently U-Boot crashes after relocation to RAM.
11750 Changing the CPO value of the DDR SDRAM TIMING_CFG_2
11751 register to READ_LAT + 1 (to the value it was before
11752 conversion of socrates to new DDR code) fixes the
11753 problem.
11754
11755 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11756
11757commit 562788b0a303f3528b920d81f547f5ca77ba528e
11758Author: Anatolij Gustschin <agust@denx.de>
11759Date: Wed Sep 17 11:45:51 2008 +0200
11760
11761 socrates: fix SPD EEPROM address
11762
11763 Commit be0bd8234b9777ecd63c4c686f72af070d886517
11764 changed SPD EEPROM address to 0x51 and DDR SDRAM
11765 detection stopped working. Change this address
11766 back to 0x50.
11767
11768 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11769
11770commit 023824549a370bd185d7129d9a6c86f9be7b86a8
11771Author: Stefan Roese <sr@denx.de>
11772Date: Mon Sep 22 11:06:50 2008 +0200
11773
11774 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
11775
11776 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
11777
11778 Signed-off-by: Stefan Roese <sr@denx.de>
11779
3cbd8231
WD
11780commit e58c41e26cf3c8accd60311be579f452e368e97e
11781Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11782Date: Thu Sep 18 20:13:08 2008 +0900
11783
11784 usb: Fix compile warning of r8a66597-hcd
11785
11786 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11787 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
11788
a0b1b610
WD
11789commit b5d10a13525c07ec6374adf840d7c87553b5f189
11790Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11791Date: Thu Sep 18 19:34:36 2008 +0900
11792
11793 sh: Fix compile warning
11794
11795 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11796
11797commit 4a065abf926f128beb36d93449defa0d690e7fef
11798Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11799Date: Thu Sep 18 19:04:26 2008 +0900
11800
11801 sh: Add support watchdog for SH4A core
11802
11803 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
11804 And fix some compile warning.
11805
11806 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11807
11808commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
11809Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11810Date: Wed Sep 17 11:45:26 2008 +0900
11811
11812 sh: Fix typo in SH serial driver
11813
11814 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11815 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11816
11817commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
11818Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11819Date: Wed Sep 17 11:08:36 2008 +0900
11820
11821 sh: Add support any page size and empty_zero_page to SH Linux uImage
11822
11823 Old U-Boot supported 4KB page size only. If this version, Linux
11824 kernel can not get command line from U-Boot.
11825 SH Linux kernel can change page size and empty_zero_page.
11826 This patch support this function and fix promlem.
11827
11828 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11829 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11830
11831commit ce9f99ddb59628f41dc534e892368a7d66dfc774
11832Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11833Date: Thu Aug 28 13:40:52 2008 +0900
11834
11835 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
11836
11837 Add function of smc911x, pkt_data_pull and pkt_data_push.
11838
11839 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11840 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11841
11842commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
11843Author: Wolfgang Denk <wd@denx.de>
11844Date: Thu Sep 18 13:57:32 2008 +0200
11845
11846 ADS5121: fix typo in "rootpath" default setting
11847
11848 Signed-off-by: Wolfgang Denk <wd@denx.de>
11849
3cbd8231
WD
11850commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
11851Author: Remy Bohmer <linux@bohmer.net>
11852Date: Tue Sep 16 14:55:44 2008 +0200
11853
11854 USB layer of U-Boot causes USB protocol errors while using USB memory sticks
11855
11856 There are several differences between Linux, Windows and U-boot for initialising the
11857 USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
11858 things really different, and some are wrong (compared to the USB standard).
11859
11860 This patch fixes some errors:
11861 * The NEW_init procedure that was already in the code is good, while the old procedure
11862 is wrong. See code comments for more info.
11863 * On a Control request the data returned by the device can be more than 8 bytes, while
11864 the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
11865 This results in a lot of USB sticks not being recognised, and the transmission ended
11866 frequently with a CTL:TIMEOUT Error.
11867 * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
11868
11869 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11870 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
11871
11872commit 6f5794a6f78b313231256958fd73673c6aacc116
11873Author: Remy Bohmer <linux@bohmer.net>
11874Date: Tue Sep 16 14:55:43 2008 +0200
11875
11876 Refactoring parts of the common USB OHCI code
11877
11878 This patch refactors some large routines of the USB OHCI code by
11879 making some routines smaller and more readable which helps
11880 debugging and understanding the code. (Makes the code looks
11881 somewhat more like the Linux implementation.)
11882
11883 Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
11884
11885 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11886 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
11887
11888commit be19d324edc1a1d7f393d24e10d164cd94c91a00
11889Author: Remy Bohmer <linux@bohmer.net>
11890Date: Tue Sep 16 14:55:42 2008 +0200
11891
11892 Fix for USB sticks not working on ARM while using GCC 4.x compilers
11893
11894 The GCC-compiler makes an optimisation error while optimising the routine
11895 usb_set_maxpacket(). This should be fixed in the compiler in the first place,
11896 but there lots of compilers out there that makes this error, that it is
11897 probably wiser to workaround it in U-boot itself.
11898
11899 What happens is that the register r3 is used as loop-counter 'i', but gets
11900 overwritten later on. From there it starts using register r3 for several other
11901 things and the assembler code is becoming a big mess. This is clearly a compiler bug.
11902
11903 This error occurs on at least several versions of Code Sourcery Lite compilers
11904 for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
11905 compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
11906
11907 We work around it by splitting up this routine in 2 parts, and making sure that
11908 the split out part is NOT inlined any longer. This will make GCC spit out assembler
11909 that do not show this problem. Another possibility is to adapt the Makefile to stop
11910 optimisation for the complete file. I think this solution is nicer.
11911
11912 Signed-off-by: Remy Bohmer <linux@bohmer.net>
11913 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
11914
a0b1b610
WD
11915commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
11916Author: Wolfgang Denk <wd@denx.de>
11917Date: Wed Sep 17 10:17:55 2008 +0200
11918
11919 Coding style cleanup; update CHANEGLOG
11920
11921 Signed-off-by: Wolfgang Denk <wd@denx.de>
11922
11923commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
11924Author: Victor Gallardo <vgallardo@amcc.com>
11925Date: Tue Sep 16 06:59:13 2008 -0700
11926
11927 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
11928
11929 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
11930 Signed-off-by: Adam Graham <agraham@amcc.com>
11931 Signed-off-by: Stefan Roese <sr@denx.de>
11932
11933commit ce47eb402c5e29a025399dc282246414fc492940
11934Author: Peter Tyser <ptyser@xes-inc.com>
11935Date: Tue Sep 16 10:04:47 2008 -0500
11936
11937 Support for multiple SGMII/TBI interfaces for TSEC ethernet
11938
11939 Fix TBI PHY accesses to use the proper offset in CPU register space. The
11940 previous code would incorrectly access the TBI PHY by reading/writing to CPU
11941 register space at the same location as would be used to access external PHYs.
11942
11943 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11944 Acked-by: Andy Fleming <afleming@freescale.com>
11945
87b4ef56
WD
11946commit 7c803be2eb3cae245dedda438776e08fb122250f
11947Author: Wolfgang Denk <wd@denx.de>
11948Date: Tue Sep 16 18:02:19 2008 +0200
11949
11950 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
11951
11952 After switching to using the CFI flash driver, the correct remapping
11953 of the flash banks was forgotten.
11954
11955 Also, some boards were not adapted, and the old legacy flash driver
11956 was not removed yet.
11957
11958 Signed-off-by: Wolfgang Denk <wd@denx.de>
11959
11960commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
11961Author: Wolfgang Denk <wd@denx.de>
11962Date: Sun Sep 14 00:59:35 2008 +0200
11963
11964 Prepare v2008.10-rc2
11965
11966 Signed-off-by: Wolfgang Denk <wd@denx.de>
11967
11968commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
11969Author: Wolfgang Denk <wd@denx.de>
11970Date: Sat Sep 13 02:23:05 2008 +0200
11971
11972 Coding style cleanup, update CHANGELOG
11973
11974 Signed-off-by: Wolfgang Denk <wd@denx.de>
11975
f12e4549
WD
11976commit 0c32565f536609d78feef35c88bbc39d3ac53a73
11977Author: Peter Tyser <ptyser@xes-inc.com>
11978Date: Wed Sep 10 09:18:34 2008 -0500
11979
11980 Update mailing list email and archive addresses
11981
11982 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
11983
11984commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
11985Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
11986Date: Thu Sep 11 15:40:01 2008 +0200
11987
11988 85xx: socrates: autoprobe Lime chip
11989
11990 This patch is an attempt to implement autoprobing for the Lime
11991 presence on the bus.
11992 Configure GPCM for Lime CS2 and try to access chip ID registers.
11993 Second read atempt delivers register values if the chip is present.
11994
11995 Signed-off-by: Anatolij Gustschin <agust@denx.de>
11996
11997commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
11998Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
11999Date: Thu Sep 11 15:40:01 2008 +0200
12000
12001 85xx: socrates: Add support for new image format.
12002
12003 Signed-off-by: Detlev Zundel <dzu@denx.de>
12004
12005commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
12006Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12007Date: Thu Sep 11 17:28:18 2008 +0900
12008
12009 sh: Fix compile error for r2dplus
12010
12011 netdev.h was not include by r2dplus.
12012
12013 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
12014
12015commit 56844a22b76c719e600047e23b80465a44d76abd
12016Author: Heiko Schocher <hs@denx.de>
12017Date: Thu Sep 11 08:11:23 2008 +0200
12018
12019 powerpc: Fix bootm to boot up again with a Ramdisk
12020
12021 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
12022 and this stopped Linux from booting with a Ramdisk. This patch fixes
12023 this, by deleting the useless dummy mem reservation.
12024
12025 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
12026 added to of_size, so we dont need anymore a dummy mem reservation.
12027
12028 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
12029 system (=0x44 bytes) and rounded it up to 0x80).
12030
12031 Signed-off-by: Heiko Schocher <hs@denx.de>
12032 Acked-by: Kumar Gala <galak@kernel.crashing.org>
12033
12034commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
12035Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
12036Date: Mon Sep 8 02:46:13 2008 +0200
12037
12038 Add support for LZMA uncompression algorithm.
12039
12040 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
12041 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12042
12043commit 0008b6d968160abe2bfd936493f3a516a7c8da20
12044Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12045Date: Fri Jun 27 23:04:20 2008 +0400
12046
12047 fsl_elbc_nand: ecclayout cleanups
12048
12049 This patch deletes oobavail assignments, they're calculated by the nand
12050 core code in nand_scan_tail, plus current oobavail values are wrong for
12051 the LP NANDs.
12052
12053 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12054 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
12055 Signed-off-by: Scott Wood <scottwood@freescale.com>
12056
12057commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
12058Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12059Date: Fri Jun 27 23:04:13 2008 +0400
12060
12061 fsl_elbc_nand: implement support for flash-based BBT
12062
12063 This patch implements support for flash-based BBT for chips working
12064 through ELBC NAND controller, so that NAND core will not have to re-scan
12065 for bad blocks on every boot.
12066
12067 Because ELBC controller may provide HW-generated ECCs we should adjust
12068 bbt pattern and bbt version positions in the OOB free area.
12069
12070 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12071 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
12072 Signed-off-by: Scott Wood <scottwood@freescale.com>
12073
12074commit 97ae023648e764f794ffb9c52da109d6caf09c47
12075Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12076Date: Fri Jun 27 23:04:04 2008 +0400
12077
12078 fsl_elbc_nand: fix OOB workability for large page NAND chips
12079
12080 For large page chips, nand_bbt is looking into OOB area, and checking
12081 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
12082 reserved for bbt means.
12083
12084 But ELBC driver is specifying ecclayout so that oobfree area starts at
12085 offset 1, so only one byte left for the bbt purposes.
12086
12087 This causes problems with any OOB users, namely JFFS2: after first mount
12088 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
12089
12090 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
12091 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
12092 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
12093 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
12094
12095 And on the next boot, NAND core will rescan for bad blocks, then will
12096 see "0xff 0x19" pattern, and will mark all blocks as bad ones.
12097
12098 To fix the issue we should implement our own bad block pattern: just one
12099 byte at OOB start. Though, this will work only for x8 chips. For x16
12100 chips two bytes must be checked. Since ELBC driver does not support x16
12101 NANDs (yet), we're safe for now.
12102
12103 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12104 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
12105 Signed-off-by: Scott Wood <scottwood@freescale.com>
12106
12107commit 7238ada313057a85409485b8ee21515dc10c07a5
12108Author: Wolfgang Denk <wd@denx.de>
12109Date: Fri Sep 12 13:52:21 2008 +0200
12110
12111 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
12112
12113 Signed-off-by: Wolfgang Denk <wd@denx.de>
12114
12115commit b18410e508a12ba0a177dfc2a386857c806fa96d
12116Author: Stefan Roese <sr@denx.de>
12117Date: Thu Sep 11 13:05:56 2008 +0200
12118
12119 ppc4xx: Enable device tree (FDT) support in zeus board port
12120
12121 Signed-off-by: Stefan Roese <sr@denx.de>
12122
12123commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
12124Author: Stefan Roese <sr@denx.de>
12125Date: Wed Sep 10 16:53:47 2008 +0200
12126
12127 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
12128
12129 This patch fixes a problem introdiced with patch
12130 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
12131 initdram()].
12132
12133 The boards affected are:
12134 - PCI405
12135 - PPChameleonEVB
12136 - quad100hd
12137 - taihu
12138 - zeus
12139
12140 Signed-off-by: Stefan Roese <sr@denx.de>
12141
12142commit 61737c59a3285f6fadf96a5836879898c04ec28d
12143Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12144Date: Thu Sep 11 19:41:26 2008 -0400
12145
12146 ppc4xx: Add .gitignore file to xilinx-ppc440 boards
12147
12148 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12149 Signed-off-by: Stefan Roese <sr@denx.de>
12150
12151commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
12152Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12153Date: Thu Sep 11 19:41:25 2008 -0400
12154
12155 ppc4xx: Fix compilation of v5fx30teval_flash
12156
12157 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12158 Signed-off-by: Stefan Roese <sr@denx.de>
12159
12160commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
12161Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12162Date: Wed Sep 10 17:44:30 2008 -0400
12163
12164 ppc4xx: Fix in-tree build for ppc440-generic boards
12165
12166 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12167 Signed-off-by: Stefan Roese <sr@denx.de>
12168
12169commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
12170Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12171Date: Fri Sep 12 02:20:47 2008 +0200
12172
12173 ARM: synchronize mach-types.h with linux 2.6.27-rc6
12174
12175 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12176
12177commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
12178Author: Jens Scharsig <esw@bus-elektronik.de>
12179Date: Fri Sep 12 02:20:47 2008 +0200
12180
12181 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
12182
12183 This patch prevents linker error on AT91RM9200 boards, if
12184 CONFIG_CMD_I2_TREE is set.
12185 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
12186
12187 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
12188
12189commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
12190Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12191Date: Fri Sep 12 02:20:47 2008 +0200
12192
12193 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
12194
12195 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
12196
12197 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12198
12199commit 03db53335c8eba656a7c44d1555b1a4514383e33
12200Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
12201Date: Fri Sep 12 02:20:46 2008 +0200
12202
12203 make: Remove redundant __ARM__ addition when cross-compiling on *BSD
12204
12205 __ARM__ is given by arm_config.mk automatically.
12206
12207 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
12208
12209commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
12210Author: Claudio Scordino <claudio@evidence.eu.com>
12211Date: Fri Sep 12 02:20:46 2008 +0200
12212
12213 Fix MACH_TYPE for the AT91RM9200DK board.
12214
12215 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
12216
12217commit 274737e5eb25b2bcd3af3a96da923effd543284f
12218Author: Andrew Dyer <adyer@righthandtech.com>
12219Date: Fri Sep 12 02:20:46 2008 +0200
12220
12221 i.mx change get_timer(base) to return time since base
12222
12223 This patch changes get_timer() for i.MX to return the time since
12224 'base' instead of the time since the counter was at zero.
12225
12226 Symptom seen is flash timeout errors when erasing or programming a
12227 sector using the common cfi flash code.
12228
12229 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
12230
12231commit 48fed40575b3e8eae960eb0141509ddd9a73012a
12232Author: Andrew Dyer <adyer@righthandtech.com>
12233Date: Fri Sep 12 02:20:46 2008 +0200
12234
12235 i.MX use u-boot baud rate and don't assume UART master clock
12236
12237 1) Change the i.MX serial driver to use the baud rate set in the
12238 u-boot environment
12239
12240 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
12241
12242 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
12243 one to clear" like other status bits in the reg.)
12244
12245 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
12246
12247commit 6e1551a870d360805b9d172dc56d935064abe71d
12248Author: Andrew Dyer <adyer@righthandtech.com>
12249Date: Fri Sep 12 02:20:46 2008 +0200
12250
12251 arm920t fix constant error in start.S
12252
12253 Code in cpu/arm920t/start.S will die with a compilation error if
12254 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
12255 the ARM sub instruction. Change the code so that each is subtracted
12256 independently to avoid the error.
12257
12258 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
12259
12260commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
12261Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
12262Date: Fri Sep 12 02:20:40 2008 +0200
12263
12264 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
12265
12266 - Correct Invalid #define of MPUTIM_PTV_MASK for
12267 omap1510 & omap730 register definition
12268
12269 MPUTIM_PTV_MASK is defined as
12270 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT)
12271
12272 while it should have been
12273 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT)
12274
12275 - Below Patch corrects the same
12276
12277 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
12278
12279commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
12280Author: Adrian Filipi <adrian.filipi@eurotech.com>
12281Date: Fri Jul 18 11:52:02 2008 -0400
12282
12283 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
12284
12285 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
12286
12287commit eb16135df20535b0d19969f50fb5bd17f95e9c25
12288Author: Guennadi Liakhovetski <lg@denx.de>
12289Date: Thu Aug 28 12:25:11 2008 +0200
12290
12291 i.MX31: document timer precision option
12292
12293 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12294
12295commit 1a6337b01351b82a45b0defa76f08744511c580b
12296Author: Magnus Lilja <lilja.magnus@gmail.com>
12297Date: Fri Aug 29 10:36:18 2008 +0200
12298
12299 i.MX31: Make the SPI bus and chip select configurable for MC13783
12300
12301 The i.MX31 has three SPI buses and each bus has several chip selects
12302 and the MC13783 chip can be connected to any of these. The current
12303 RTC driver for MC13783 is hardcoded for CSPI2/SS2.
12304
12305 This patch makes make MC13783 SPI bus and chip select configurable
12306 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
12307
12308 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
12309
12310commit 8c4ebec25b21e355b8488698ec1594da9701fff4
12311Author: Magnus Lilja <lilja.magnus@gmail.com>
12312Date: Fri Aug 29 10:36:17 2008 +0200
12313
12314 i.MX31: Add reset_timer() and modify get_timer_masked().
12315
12316 This patch adds the reset_timer() function (needed by nand_base.c) and
12317 modifies the get_timer_masked() to work in the same way as the omap24xx
12318 function.
12319
12320 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
12321
12322commit deeec4991a55de243787002ede24d2331d234fc8
12323Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12324Date: Wed Sep 10 22:48:09 2008 +0200
12325
12326 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
12327
12328 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12329
12330commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
12331Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12332Date: Wed Sep 10 22:48:09 2008 +0200
12333
12334 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
12335
12336 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12337
12338commit 0e8d158664a913392cb01fb11a948d83f72e105e
12339Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12340Date: Wed Sep 10 22:48:06 2008 +0200
12341
12342 rename CFG_ENV macros to CONFIG_ENV
12343
12344 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12345
12346commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
12347Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12348Date: Wed Sep 10 22:48:05 2008 +0200
12349
12350 nvedit: rename error comment to CONFIG_ENV_IS_IN_
12351
12352 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12353
12354commit b64b775e7546ed138df360ceb3a71ee358cb9a01
12355Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12356Date: Wed Sep 10 22:48:05 2008 +0200
12357
12358 cmd_mem: Move conditional compilation to Makefile
12359
12360 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12361
12362commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
12363Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12364Date: Wed Sep 10 22:48:05 2008 +0200
12365
12366 move cmd_get_data_size to command.c
12367
12368 add CMD_DATA_SIZE macro to enable it
12369
12370 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12371
12372commit 507641d2491980531932b9f25dab37fe5e6c3a1a
12373Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12374Date: Wed Sep 10 22:48:04 2008 +0200
12375
12376 env_flash: Move conditional compilation to Makefile
12377
12378 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12379
12380commit 5a1aceb0689e2f731491838970884a673ef7e7d3
12381Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12382Date: Wed Sep 10 22:48:04 2008 +0200
12383
12384 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
12385
12386 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12387
12388commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
12389Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12390Date: Wed Sep 10 22:48:03 2008 +0200
12391
12392 cleanup use of CFG_ENV_IS_IN_FLASH
12393
12394 - #if CFG_ENV_IS_IN_FLASH
12395 - #if (CFG_ENV_IS_IN_FLASH == 1)
12396 - #define CFG_ENV_IS_IN_FLASH 0
12397
12398 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12399
12400commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
12401Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12402Date: Wed Sep 10 22:48:01 2008 +0200
12403
12404 rename environment.c in env_embedded.c to reflect is functionality
12405
12406 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12407
12408commit c0878af6e32f0fd8e13a6ca315b9add64441115a
12409Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12410Date: Wed Sep 10 22:48:01 2008 +0200
12411
12412 env_nowhere: Move conditional compilation to Makefile
12413
12414 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12415
12416commit 93f6d72544da4510a146bc4c93d609b0116cde37
12417Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12418Date: Wed Sep 10 22:48:00 2008 +0200
12419
12420 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
12421
12422 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12423
12424commit 2556ef78113b5f089dfcac5da90bf31dd568397b
12425Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12426Date: Wed Sep 10 22:48:00 2008 +0200
12427
12428 env_sf: Move conditional compilation to Makefile
12429
12430 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12431
12432commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
12433Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12434Date: Wed Sep 10 22:48:00 2008 +0200
12435
12436 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
12437
12438 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12439
12440commit 55c5f49910ec8225347aa1d211352a84de6649b4
12441Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12442Date: Wed Sep 10 22:48:00 2008 +0200
12443
12444 env_onenand: Move conditional compilation to Makefile
12445
12446 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12447
12448commit 9656138ff1a34d4c4768db6b490deffc40ee674b
12449Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12450Date: Wed Sep 10 22:47:59 2008 +0200
12451
12452 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
12453
12454 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12455
12456commit 957a0e69575683efd70ace147746bbb3d8e7c501
12457Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12458Date: Wed Sep 10 22:47:59 2008 +0200
12459
12460 env_nvram: Move conditional compilation to Makefile
12461
12462 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12463
12464commit 9314cee6917444ab88bd4e758da7a30975120187
12465Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12466Date: Wed Sep 10 22:47:59 2008 +0200
12467
12468 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
12469
12470 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12471
12472commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
12473Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12474Date: Wed Sep 10 22:47:59 2008 +0200
12475
12476 env_nand: Move conditional compilation to Makefile
12477
12478 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12479
12480commit 51bfee192099206a4397f15f3b93516e01f58ab0
12481Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12482Date: Wed Sep 10 22:47:58 2008 +0200
12483
12484 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
12485
12486 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12487
12488commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
12489Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12490Date: Wed Sep 10 22:47:58 2008 +0200
12491
12492 env_dataflash: Move conditional compilation to Makefile
12493
12494 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12495
12496commit 057c849c45b9ee19df8ff3acdeee66be52819962
12497Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12498Date: Wed Sep 10 22:47:58 2008 +0200
12499
12500 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
12501
12502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12503
12504commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
12505Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12506Date: Wed Sep 10 22:47:52 2008 +0200
12507
12508 cmd_eeprom: Move conditional compilation to Makefile
12509
12510 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12511
12512commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
12513Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12514Date: Fri Sep 5 09:19:54 2008 +0200
12515
12516 env_eeprom: Move conditional compilation to Makefile
12517
12518 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12519
12520commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
12521Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12522Date: Fri Sep 5 09:19:30 2008 +0200
12523
12524 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
12525
12526 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12527
12528commit 32628c5008105a732212003d83b75f05e5243bb2
12529Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12530Date: Sat Aug 30 23:54:58 2008 +0200
12531
12532 cmd_mac: Move conditional compilation to Makefile
12533
12534 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
12535 start in commit ad8f8687b78c3e917b173f038926695383c55555
12536
12537 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12538
12539commit e5648acab153f0f429bfc714902c5aaa7879f71b
12540Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12541Date: Sat Aug 30 23:47:41 2008 +0200
12542
12543 cmd_fdc: Move conditional compilation to Makefile
12544
12545 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12546
12547commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
12548Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12549Date: Sat Aug 30 23:47:38 2008 +0200
12550
12551 common/Makefile: add core command section
12552
12553 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12554
12555commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
12556Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12557Date: Sat Aug 30 23:29:57 2008 +0200
12558
12559 cmd_vfd: Move conditional compilation to Makefile
12560
12561 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12562
12563commit 6644641d072aee3087da129d8443187196a4d8a9
12564Author: Scott Wood <scottwood@freescale.com>
12565Date: Wed Sep 10 11:48:49 2008 -0500
12566
12567 delta, zylonite: Update nand_oobinfo to nand_ecclayout.
12568
12569 This is part of the switch to newer upstream MTD code.
12570
12571 Signed-off-by: Scott Wood <scottwood@freescale.com>
12572
12573commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
12574Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12575Date: Sat Aug 30 17:06:55 2008 -0400
12576
12577 ARM DaVinci: Fix broken HW ECC for large page NAND.
12578
12579 Based on original patch by Bernard Blackham <bernard@largestprime.net>
12580
12581 U-boot's HW ECC support for large page NAND on Davinci is completely
12582 broken. Some kernels, such as the 2.6.10 one supported by
12583 MontaVista for DaVinci, rely upon this broken behaviour as they
12584 share the same code for ECCs. In the existing scheme, error
12585 detection *might* work on large page, but error correction
12586 definitely does not. Small page ECC correction works, but the
12587 format is not compatible with the mainline git kernel.
12588
12589 This patch adds ECC code that matches what is currently in the
12590 Davinci git repository (since NAND support was added in 2.6.24).
12591 This makes the ECC and OOB layout written by u-boot compatible with
12592 Linux for both small page and large page devices and fixes ECC
12593 correction for large page devices.
12594
12595 The old behaviour can be restored by defining the macro
12596 CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
12597
12598 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12599 Acked-by: Sergey Kubushyn <ksi@koi8.net>
12600 Signed-off-by: Scott Wood <scottwood@freescale.com>
12601
12602commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
12603Author: Heiko Schocher <hs@denx.de>
12604Date: Wed Sep 10 11:15:28 2008 +0200
12605
12606 muas3001: update BR4 settings
12607
12608 Also set up the port pins for using I2C.
12609
12610 Signed-off-by: Heiko Schocher <hs@denx.de>
12611
12612commit 3591293509e0c0bcf244b0f974775bff2e25697e
12613Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
12614Date: Wed Sep 10 09:43:49 2008 +0300
12615
12616 autoscr: Fix one-character lines and non-newline terminated scripts
12617
12618 When not using hush, the autoscr command now executes lines that are
12619 only one character long. It also runs the last line of scripts even if
12620 it does not end in a newline.
12621
12622 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
12623
12624commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
12625Author: Victor Gallardo <vgallardo@amcc.com>
12626Date: Tue Sep 9 15:13:29 2008 -0700
12627
12628 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
12629
12630 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
12631 and glacier.
12632
12633 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
12634
12635commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
12636Author: Heiko Schocher <hs@denx.de>
12637Date: Mon Sep 8 10:21:11 2008 +0200
12638
12639 muas3001: added support for the LM75 sensor.
12640
12641 Signed-off-by: Heiko Schocher <hs@denx.de>
12642
12643commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
12644Author: Heiko Schocher <hs@denx.de>
12645Date: Mon Sep 8 10:20:19 2008 +0200
12646
12647 muas3001: activate WDT for the muas3001 board.
12648
12649 Signed-off-by: Heiko Schocher <hs@denx.de>
12650
12651commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
12652Author: Heiko Schocher <hs@denx.de>
12653Date: Mon Sep 8 10:19:36 2008 +0200
12654
12655 muas3001: added 64MB SDRAM autodetection.
12656
12657 Signed-off-by: Heiko Schocher <hs@denx.de>
12658
12659commit 5251469943895de4bb9a04d5053352cc22acb7d5
12660Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
12661Date: Thu Aug 21 07:12:26 2008 -0700
12662
12663 Fix printf errors under -DDEBUG
12664
12665 Fix printf format-string/arg mismatches under -DDEBUG.
12666
12667 These warnings occur with DEBUG defined for a platform using
12668 cpu/mpc85xx. Users of other architectures can unearth similar
12669 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
12670 after "CFLAGS += $(call cc-option,-fno-stack-protector)".
12671
12672 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
12673 Signed-off-by: Andy Fleming <afleming@freescale.com>
12674
12675commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
12676Author: Wolfgang Denk <wd@denx.de>
12677Date: Tue Sep 9 23:55:18 2008 +0200
12678
12679 Update CHANGELOG, prepare 2008-10-rc1 release
12680
12681 Signed-off-by: Wolfgang Denk <wd@denx.de>
12682
12683commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
12684Author: Kumar Gala <galak@kernel.crashing.org>
12685Date: Mon Sep 8 08:51:29 2008 -0500
12686
12687 85xx: Ensure timebase is zero on secondary cores
12688
12689 The e500um says the timebase is volatile out of reset. To ensure
12690 TB sync works we need to make sure its zero.
12691
12692 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12693
8b9e4787
WD
12694commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
12695Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12696Date: Tue Sep 9 22:18:24 2008 +0200
12697
12698 bootm_load_os: fix load_end debug message
12699
12700 print load_end value not pointer
12701
12702 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12703
12704commit 1d9af0be764960e6cc1c093e97176c3542796820
12705Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12706Date: Tue Sep 9 22:18:23 2008 +0200
12707
12708 bootm: enable fdt support only on ppc, m68k and sparc
12709
12710 ...as done in image.c
12711
12712 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12713
12714commit 748b5274e76f81df85cfcffaffedc323678d0623
12715Author: Markus Heidelberg <markus.heidelberg@web.de>
12716Date: Tue Sep 9 18:51:05 2008 +0200
12717
12718 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
12719
12720 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
12721
12722commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
12723Author: Markus Heidelberg <markus.heidelberg@web.de>
12724Date: Tue Sep 9 17:31:46 2008 +0200
12725
12726 gitignore: add tags files and Vim swap file
12727
12728 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
12729
12730commit 1d9b67b23fca6a25154333733204339802510720
12731Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12732Date: Tue Sep 9 17:52:47 2008 +0900
12733
12734 add board_eth_init() for sh7785lcr board
12735
12736 Fix the problem that cannot work RTL8169 on sh7785lcr board.
12737
12738 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
12739
12740commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
12741Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12742Date: Wed Aug 6 16:08:41 2008 -0500
12743
12744 mtd: SPI Flash: Support the STMicro Flash
12745
12746 Add MTD SPI Flash support for M25P16, M25P20, M25P32,
12747 M25P40, M25P64, M25P80, M25P128.
12748
12749 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
12750 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
12751
f12e4549
WD
12752commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
12753Author: Wolfgang Denk <wd@denx.de>
12754Date: Tue Sep 9 17:55:31 2008 +0200
12755
12756 trab: fix build problem after change to use do_div()
12757
12758 We must link with libgeneric now.
12759
12760 Signed-off-by: Wolfgang Denk <wd@denx.de>
12761
8b9e4787
WD
12762commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
12763Author: Ryan CHEN <ryan.chen@st.com>
12764Date: Wed Aug 20 13:00:17 2008 -0400
12765
12766 Correct drv_usb_kbd_init function
12767
12768 The patch is that check if usb_get_dev_index() function return valid
12769 pointer. If valid, continue. Otherwise return -1.
12770
12771 Signed-off-by: Ryan Chen <ryan.chen@st.com>
12772 Acked-by: Markus Klotzbuecher <mk@denx.de>
12773
12774commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
12775Author: Remy Bohmer <linux@bohmer.net>
12776Date: Wed Aug 20 11:22:02 2008 +0200
12777
12778 Make usb-stop() safe to call multiple times in a row.
12779
12780 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
12781 enabled the usb_stop() command in common/cmd_bootm.c which was
12782 not enabled for some time, because no board did actually set the
12783 CFG_CMD_USB flag. So, now the usb_stop() is executed before
12784 loading the linux kernel.
12785
12786 However, the usb_ohci driver hangs up (at least on AT91SAM) if the
12787 driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
12788 If some other piece of code calls usb_stop() before the bootm command,
12789 this command will hangup the system during boot.
12790 (usb start and stop is typically used while booting from usb memory stick)
12791
12792 But, stopping the usb stack twice is useless anyway, and a flag already
12793 existed that kept track on the usb_init()/usb_stop() calls.
12794 So, we now check if the usb stack is really started before we stop it.
12795
12796 This problem is now fixed in both the upper as low-level layer.
12797
12798 Signed-off-by: Remy Bohmer <linux@bohmer.net>
12799 Acked-by: Markus Klotzbuecher <mk@denx.de>
12800
12801commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
12802Author: Wolfgang Denk <wd@denx.de>
12803Date: Tue Sep 9 16:55:47 2008 +0200
12804
12805 Makefile: fix bug introduced by commit 47ffd6c2
12806
12807commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
12808Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12809Date: Tue Sep 9 10:00:33 2008 -0400
12810
12811 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
12812
12813 This patch solves the problems compiling ml507, v5fx30teval and
12814 ppc440-generic out of tree.
12815
12816 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12817
12818commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
12819Author: Nícolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
12820Date: Thu Sep 4 15:35:46 2008 -0300
12821
12822 Fix dev_print when called from usb_stor_info (usb storage command)
12823
12824 Fix output of the usb storage command. It was printing "Device 0: not
12825 available" because IF_TYPE_USB was not included into the switch
12826 statement.
12827
12828 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
12829
12830commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
12831Author: Bartlomiej Sieka <tur@semihalf.com>
12832Date: Tue Sep 9 12:58:16 2008 +0200
12833
12834 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
12835
12836 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
12837
12838commit 919f550dc11a13abf01c6bc713c968de790b8d7c
12839Author: Bartlomiej Sieka <tur@semihalf.com>
12840Date: Tue Sep 9 12:58:15 2008 +0200
12841
12842 FIT: add ability to check hashes of all images in FIT, improve output
12843
12844 - add function fit_all_image_check_hashes() that verifies if all
12845 hashes of all images in the FIT are valid
12846 - improve output of fit_image_check_hashes() when the hash check fails
12847
12848 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
12849
12850commit 1de1fa408967cef6804bb046b904114519bb36f0
12851Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12852Date: Mon Sep 8 20:54:39 2008 +0200
12853
12854 qemu_mips: Update linux bootm to support dynamic cmdline
12855
12856 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12857
12858commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
12859Author: Peter Tyser <ptyser@xes-inc.com>
12860Date: Mon Sep 8 14:56:49 2008 -0500
12861
12862 Add support for booting of INTEGRITY operating system uImages
12863
12864 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
12865
12866commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
12867Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12868Date: Mon Sep 8 21:01:29 2008 +0200
12869
12870 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
12871
12872 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12873
12874commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
12875Author: Kumar Gala <galak@kernel.crashing.org>
12876Date: Mon Sep 8 13:57:12 2008 -0500
12877
12878 Remove support for booting ARTOS images
12879
12880 Pantelis Antoniou stated:
12881 AFAIK, it is still used but the products using PPC are long gone.
12882 Nuke it plz (from orbit).
12883
12884 So remove it since it cleans up a usage of env_get_char outside of
12885 the environment code.
12886
12887 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12888
12889commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
12890Author: Wolfgang Denk <wd@denx.de>
12891Date: Tue Sep 9 15:45:18 2008 +0200
12892
12893 Makefile: compile and link each module just once
12894
12895 Several source files need to be compiled and linked when one or more
12896 config options are selected. To allow for easy selection in the
12897 Makefiles yet to avoild multiple compilation (which costs build time)
12898 and especially multiple linking (which causes errors), we use
12899 "COBJS = $(sort COBJS-y)" which eliminates duplicates.
12900
12901 By courtesy of Detlev Zundel who suggested this approach.
12902
12903 Signed-off-by: Wolfgang Denk <wd@denx.de>
12904
12905commit 48d0192fe869948fef14b460b5f0c85bca933693
12906Author: Andreas Engel <andreas.engel@ericsson.com>
12907Date: Mon Sep 8 14:30:53 2008 +0200
12908
12909 Moved conditional compile into Makefile
12910
12911 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
12912
12913commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
12914Author: Andreas Engel <andreas.engel@ericsson.com>
12915Date: Mon Sep 8 10:17:31 2008 +0200
12916
12917 Merged serial_pl010.c and serial_pl011.c.
12918
12919 They only differ in the init function.
12920 This also adds the missing watchdog support for the PL011.
12921
12922 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
12923
12924commit 0817d688f307ee2c0598e79175c94a40ce90337b
12925Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12926Date: Sun Sep 7 17:10:27 2008 -0400
12927
12928 Remove gap fill in srec object v2
12929
12930 SREC files do not need gap fill: The load address is specified in the
12931 file. On the other hand, it can't be avoided in a .bin object. It has
12932 no information about memory location.
12933
12934 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
12935
12936commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
12937Author: Markus Heidelberg <markus.heidelberg@web.de>
12938Date: Sun Sep 7 20:18:27 2008 +0200
12939
12940 README: fix missing subdirectory in the documentation
12941
12942 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
12943
12944commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
12945Author: Graeme Russ <graeme.russ@gmail.com>
12946Date: Sun Sep 7 07:08:42 2008 +1000
12947
12948 Update i386 code (sc520_cdp)
12949
12950 Attempt to bring i386 / sc520 inline with master
12951
12952 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
12953
12954commit 5608692104efa8d56df803dc79ea41ac3607eee5
12955Author: Guennadi Liakhovetski <lg@denx.de>
12956Date: Thu Sep 4 13:01:49 2008 +0200
12957
12958 fw_env: add NAND support
12959
12960 Add support for environment in NAND with automatic NOR / NAND recognition,
12961 including unaligned environment, bad-block skipping, redundant environment
12962 copy.
12963
12964 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
12965
12966commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
12967Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12968Date: Tue Sep 9 09:50:24 2008 +0200
12969
12970 ppc4xx: Fix out-of-tree building of CPCI405 variants
12971
12972 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
12973 Acked-by: Stefan Roese <sr@denx.de>
12974
12975commit 59f630588e3fdbd698a0a2798e52a8924e899563
12976Author: Sergei Poselenov <sposelenov@emcraft.com>
12977Date: Fri Aug 15 15:42:11 2008 +0200
12978
12979 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
12980
12981 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12982
12983commit e64987a892353f3d49eb242d997820ef8f538912
12984Author: Anatolij Gustschin <agust@denx.de>
12985Date: Fri Aug 15 15:42:13 2008 +0200
12986
12987 85xx: socrates: Enable Lime support.
12988
12989 This patch adds Lime GDC support together with support for the PWM
12990 backlight control through the w83782d chip. The reset pin of the
12991 latter is attached to GPIO, so we need to reset it in
12992 early_board_init_r.
12993
12994 Signed-off-by: Anatolij Gustschin <agust@denx.de>
12995
12996commit 3e79b588b5199f35016f178fc0d5d1266382097f
12997Author: Detlev Zundel <dzu@denx.de>
12998Date: Fri Aug 15 15:42:12 2008 +0200
12999
13000 85xx: Socrates: Major code update.
13001
13002 - Update the local bus ranges in the FDT for Linux for the various
13003 devices connected to the local bus via chip-select.
13004
13005 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
13006 lower than 66 MHz and uses I/O accessor functions consequently.
13007
13008 - UPM data update.
13009
13010 - Update of default environment and configuration. Use I2C multibus
13011 as we do have two I2C buses. Also enable sdram and ext2 commands.
13012
13013 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13014 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
13015 Signed-off-by: Detlev Zundel <dzu@denx.de>
13016
13017commit e8d18541c6ceab821f75faab031740b33fdbfa4b
13018Author: Timur Tabi <timur@freescale.com>
13019Date: Fri Jul 18 16:52:23 2008 +0200
13020
13021 Update Freescale 85xx boards to sys_eeprom.c
13022
13023 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
13024 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
13025 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
13026 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
13027
13028 Signed-off-by: Timur Tabi <timur@freescale.com>
13029
13030commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
13031Author: Wolfgang Denk <wd@denx.de>
13032Date: Tue Sep 9 10:08:02 2008 +0200
13033
13034 lib_ppc/interrupts.c: make board_show_activity() a weak function
13035
13036 This allows to use show_activity() without having to
13037 define an empty board_show_activity() function.
13038
13039 Signed-off-by: Wolfgang Denk <wd@denx.de>
13040
13041commit fe876787f8743883ce58fed61525eaa2f34da4c5
13042Author: Wolfgang Denk <wd@denx.de>
13043Date: Tue Sep 9 10:06:44 2008 +0200
13044
13045 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
13046
13047 Signed-off-by: Wolfgang Denk <wd@denx.de>
13048
13049commit 965de106ba8900372c8b16dc60d5acab7f925e38
13050Author: Wolfgang Denk <wd@denx.de>
13051Date: Tue Sep 9 10:03:47 2008 +0200
13052
13053 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
13054
13055 Signed-off-by: Wolfgang Denk <wd@denx.de>
13056
f12e4549
WD
13057commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
13058Author: Sergei Poselenov <sposelenov@emcraft.com>
13059Date: Fri Aug 15 15:42:11 2008 +0200
13060
13061 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
13062
13063 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
13064
13065commit 36241ca29d4804a1006fb3f26069effda5202581
13066Author: Anatolij Gustschin <agust@denx.de>
13067Date: Fri Aug 15 15:42:13 2008 +0200
13068
13069 85xx: socrates: Enable Lime support.
13070
13071 This patch adds Lime GDC support together with support for the PWM
13072 backlight control through the w83782d chip. The reset pin of the
13073 latter is attached to GPIO, so we need to reset it in
13074 early_board_init_r.
13075
13076 Signed-off-by: Anatolij Gustschin <agust@denx.de>
13077
13078commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
13079Author: Detlev Zundel <dzu@denx.de>
13080Date: Fri Aug 15 15:42:12 2008 +0200
13081
13082 85xx: Socrates: Major code update.
13083
13084 - Update the local bus ranges in the FDT for Linux for the various
13085 devices connected to the local bus via chip-select.
13086
13087 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
13088 lower than 66 MHz and uses I/O accessor functions consequently.
13089
13090 - UPM data update.
13091
13092 - Update of default environment and configuration. Use I2C multibus
13093 as we do have two I2C buses. Also enable sdram and ext2 commands.
13094
13095 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
13096 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
13097 Signed-off-by: Detlev Zundel <dzu@denx.de>
13098
8b9e4787
WD
13099commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
13100Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13101Date: Tue Sep 9 01:22:39 2008 +0200
13102
13103 disk-on-chip: remove duplicate doc_probe declaration
13104
13105 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13106
13107commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
13108Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13109Date: Tue Sep 9 00:59:40 2008 +0200
13110
13111 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
13112
13113 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13114
13115commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
13116Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13117Date: Tue Sep 9 00:59:39 2008 +0200
13118
13119 rs5c372: fix rtc_set prototype
13120
13121 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13122
13123commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
13124Author: Sergei Poselenov <sposelenov@emcraft.com>
13125Date: Thu Aug 14 14:08:28 2008 +0200
13126
13127 ARM: fix warning: target CPU does not support interworking
13128
13129 This patch fixes warnings like this:
13130
13131 start.S:0: warning: target CPU does not support interworking
13132
13133 which come from some ARM cross compilers and are caused by hard-coded
13134 (with "--with-cpu=arm9" configuration option) ARM targets (which
13135 support ARM Thumb instructions), while the ARM target selected from
13136 the command line (with "-march=armv4") doesn't support Thumb
13137 instructions.
13138
13139 This warning is issued by the compiler regardless of the real use of
13140 the Thumb instructions in code.
13141
13142 To fix this problem, we use options according to compiler version
13143 being used.
13144
13145 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
13146 Signed-off-by: Wolfgang Denk <wd@denx.de>
13147
13148commit 4265c35fbcb248e58179007621d61d32d0b3b82a
13149Author: Sergei Poselenov <sposelenov@emcraft.com>
13150Date: Thu Aug 14 14:08:28 2008 +0200
13151
13152 ARM: Use do_div() instead of division for "long long".
13153
13154 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
13155 Signed-off-by: Wolfgang Denk <wd@denx.de>
13156
f12e4549
WD
13157commit 8febd13c69cb68652577d1a9fcbde954bf784155
13158Author: Timur Tabi <timur@freescale.com>
13159Date: Fri Jul 18 16:52:23 2008 +0200
13160
13161 Update Freescale 85xx boards to sys_eeprom.c
13162
13163 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
13164 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
13165 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
13166 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
13167
13168 Signed-off-by: Timur Tabi <timur@freescale.com>
13169
8b9e4787
WD
13170commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
13171Author: Wolfgang Denk <wd@denx.de>
13172Date: Mon Sep 8 23:26:22 2008 +0200
13173
13174 lib_arm/bootm.c: fix compile warnings
13175
13176 bootm.c:128: warning: label 'error' defined but not used
13177 bootm.c:65: warning: unused variable 'ret'
13178
13179 Signed-off-by: Wolfgang Denk <wd@denx.de>
13180
13181commit 2e3c867d0a63c563a51e65b776973b008f16cec5
13182Author: Wolfgang Denk <wd@denx.de>
13183Date: Mon Sep 8 22:46:42 2008 +0200
13184
13185 ml507: fix out of tree build problem
13186
13187 Signed-off-by: Wolfgang Denk <wd@denx.de>
13188
13189commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
13190Author: Wolfgang Denk <wd@denx.de>
13191Date: Mon Sep 8 22:10:28 2008 +0200
13192
13193 common/cmd_bootm.c: fix printf() format warnings
13194
13195 Signed-off-by: Wolfgang Denk <wd@denx.de>
13196
13197commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
13198Author: Wolfgang Denk <wd@denx.de>
13199Date: Mon Sep 8 22:37:45 2008 +0200
13200
13201 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
13202
13203 missing doc_probe() prototype.
13204
13205 Signed-off-by: Wolfgang Denk <wd@denx.de>
13206
13207commit 2c5e3cc4994897d364b148942ff23e47783198f6
13208Author: Wolfgang Denk <wd@denx.de>
13209Date: Mon Sep 8 21:28:14 2008 +0200
13210
13211 mk48t59: fix compile problem introduced by commit d1e23194
13212
13213 Signed-off-by: Wolfgang Denk <wd@denx.de>
13214
13215commit 5ff889349d2ace13f10c9335e09365fcec8247cc
13216Author: Stefan Roese <sr@denx.de>
13217Date: Mon Sep 8 14:11:12 2008 +0200
13218
13219 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
13220
13221 This patch moves some 4xx specific prototypes out of include common.h
13222 to a ppc4xx specific header.
13223
13224 Signed-off-by: Stefan Roese <sr@denx.de>
13225
13226commit ac53ee8318678190bf3c68da477a84a657d86fb0
13227Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13228Date: Fri Sep 5 15:34:04 2008 +0200
13229
13230 ppc4xx: Update CPCI405(AB) configuration
13231
13232 This patch add FDT support and command line editing capabilities
13233 for CPCI405 and CPCI405AB boards.
13234
13235 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13236 Signed-off-by: Stefan Roese <sr@denx.de>
13237
13238commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
13239Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13240Date: Fri Sep 5 15:34:03 2008 +0200
13241
13242 ppc4xx: Cleanup CPCI405 linker script
13243
13244 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13245 Signed-off-by: Stefan Roese <sr@denx.de>
13246
13247commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
13248Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13249Date: Fri Sep 5 15:34:02 2008 +0200
13250
13251 ppc4xx: Update CPCI405 variants handling
13252
13253 This patch replaces the BOARD_REVISION variable in include/config.mk
13254 by a using a temporary include file in the platform directory.
13255
13256 The former way does not work anymore and the latter is also used by
13257 some other boards.
13258
13259 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13260 Signed-off-by: Stefan Roese <sr@denx.de>
13261
13262commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
13263Author: Stefan Roese <sr@denx.de>
13264Date: Mon Sep 8 10:01:48 2008 +0200
13265
13266 ppc4xx: Remove CONFIG_CS8952_PHY define
13267
13268 Since this define is only used on one board that was never really in
13269 production, removing this compile time option doesn't hurt and makes
13270 the code more readable.
13271
13272 Signed-off-by: Stefan Roese <sr@denx.de>
13273
13274commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
13275Author: Stefan Roese <sr@denx.de>
13276Date: Fri Sep 5 14:11:40 2008 +0200
13277
13278 ppc4xx: Fix compilation warning for PIP405
13279
13280 This patch fixes a compilation warning for the PIP405 board. It moves the
13281 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
13282 occur anymore. I am a little unsure if this #ifdef is at the correct
13283 place now or if it could be removed completely. This needs to get
13284 tested on the PIP405 board.
13285
13286 Signed-off-by: Stefan Roese <sr@denx.de>
13287
13288commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
13289Author: Stefan Roese <sr@denx.de>
13290Date: Fri Sep 5 14:09:09 2008 +0200
13291
13292 ppc4xx: Fix compilation warning for canyonlands & glacier
13293
13294 Signed-off-by: Stefan Roese <sr@denx.de>
13295
13296commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
13297Author: Kumar Gala <galak@kernel.crashing.org>
13298Date: Fri Sep 5 14:40:29 2008 -0500
13299
13300 Fix compiler warning in mpc8xxx ddr code
13301
13302 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
13303 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
13304 ctrl_regs.c:523: note: 'caslat' was declared here
13305
13306 Add a warning in DDR1 case if cas_latency isn't a value we know about.
13307
13308 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13309 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13310
13311commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
13312Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13313Date: Mon Sep 1 23:06:23 2008 +0200
13314
13315 rtc: allow rtc_set to return an error and use it in cmd_date
13316
13317 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13318
13319commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
13320Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13321Date: Mon Sep 1 01:16:33 2008 +0200
13322
13323 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
13324
13325 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13326
13327commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
13328Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13329Date: Sun Aug 31 05:37:04 2008 +0900
13330
13331 config.mk: Move arch-specific condition to $(ARCH)_config.mk
13332
13333 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13334
13335commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
13336Author: Kumar Gala <galak@kernel.crashing.org>
13337Date: Fri Aug 29 19:08:29 2008 -0500
13338
13339 Prevent crash if random/invalid ramdisks are passed to bootm
13340
13341 Adds returning an error from the ramdisk detection code if
13342 its not a real ramdisk (invalid). There is no reason we can't
13343 just return back to the console if we detect an invalid
13344 ramdisk or CRC error.
13345
13346 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13347
13348commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
13349Author: Anatolij Gustschin <agust@denx.de>
13350Date: Fri Aug 29 21:04:45 2008 +0200
13351
13352 Prevent crash if random DTB address is passed to bootm
13353
13354 This patch adds bootm_start() return value check. If
13355 error status is returned, we do not proceed further to
13356 prevent board reset or crash as we still can recover
13357 at this point.
13358
13359 Signed-off-by: Anatolij Gustschin <agust@denx.de>
13360
13361commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
13362Author: Andrew Dyer <adyer@righthandtech.com>
13363Date: Fri Aug 29 12:30:39 2008 -0500
13364
13365 clean up some #if !defined() in drivers/video/cfb_console.c
13366
13367 rearrange some #if !defined() / #else / #endif statements to remove
13368 the negative logic.
13369
13370 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
13371
13372commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
13373Author: Kyungmin Park <kmpark@infradead.org>
13374Date: Fri Aug 29 09:02:20 2008 +0900
13375
13376 apollon: use the last memory area for u-boot
13377
13378 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13379
13380commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
13381Author: Heiko Schocher <hs@denx.de>
13382Date: Thu Aug 28 13:50:42 2008 +0200
13383
13384 TQM8272: move NAND part in seperate File
13385
13386 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
13387 because I have no longer access to the hardware.
13388
13389 Signed-off-by: Heiko Schocher <hs@denx.de>
13390
13391commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
13392Author: Heiko Schocher <hs@denx.de>
13393Date: Thu Aug 28 13:48:36 2008 +0200
13394
13395 TQM8272: Fix compiling error for the TQM8272 board.
13396
13397 Fix compile problems caused by
13398 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
13399
13400 Signed-off-by: Heiko Schocher <hs@denx.de>
13401
13402commit 1a7f8ccec981648ccd38fca2535490582eee08e6
13403Author: Kyungmin Park <kmpark@infradead.org>
13404Date: Wed Aug 27 14:45:20 2008 +0900
13405
13406 Add JFFS2 command support on OneNAND
13407
13408 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
13409
13410commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
13411Author: Mark Jackson <mpfj@mimc.co.uk>
13412Date: Mon Aug 25 19:21:30 2008 +0100
13413
13414 Allow console input to be disabled
13415
13416 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
13417
13418 When CONFIG_DISABLE_CONSOLE is defined, setting
13419 GD_FLG_DISABLE_CONSOLE disables all console input and output.
13420
13421 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
13422
13423commit 2b22d608f370565c87f55928b524207031419c11
13424Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
13425Date: Wed Jul 30 12:39:29 2008 +0200
13426
13427 loads: allow negative offsets
13428
13429 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
13430
13431commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
13432Author: Yuri Tikhonov <yur@emcraft.com>
13433Date: Thu Sep 4 11:19:05 2008 +0200
13434
13435 USB EHCI: reset root hub
13436
13437 Some of multi-function USB controllers (e.g. ISP1562) allow root hub
13438 resetting only via EHCI registers. So, this patch adds the
13439 corresponding kind of reset to OHCI's hc_reset() if the newly
13440 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
13441 board).
13442
13443 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
13444 Acked-by: Markus Klotzbuecher <mk@denx.de>
13445
13446commit 5875d358f025c1b042d8a0f08384b756de7256c9
13447Author: Yuri Tikhonov <yur@emcraft.com>
13448Date: Fri Aug 15 15:42:09 2008 +0200
13449
13450 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
13451
13452 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
13453
13454commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
13455Author: Stefan Roese <sr@denx.de>
13456Date: Fri Sep 5 10:47:46 2008 +0200
13457
13458 devices: Use list_add_tail() instead of list_add() to register a device
13459
13460 This patch fixes a problem spotted on Glacier/Canyonlands (and most
13461 likely lots of other board ports), that no serial output was seen
13462 after console initialization in console_init_r(). This is because the
13463 last added console device was used instead of the first added.
13464
13465 This patch fixes this problem by using list_add_tail() instead of
13466 list_add() to register a device. This way the first added console
13467 is used again.
13468
13469 Signed-off-by: Stefan Roese <sr@denx.de>
13470
13471commit 78d78236896d62bb8ca7302af38d8f1493eb2651
13472Author: Victor Gallardo <vgallardo@amcc.com>
13473Date: Thu Sep 4 23:49:36 2008 -0700
13474
13475 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
13476
13477 This patch adds GPCS, SGMII and M88E1112 PHY support
13478 for the AMCC PPC460GT/EX processors.
13479
13480 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
13481 Signed-off-by: Stefan Roese <sr@denx.de>
13482
13483commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
13484Author: Adam Graham <agraham@amcc.com>
13485Date: Wed Sep 3 12:26:59 2008 -0700
13486
13487 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
13488
13489 Signed-off-by: Adam Graham <agraham@amcc.com>
13490 Signed-off-by: Stefan Roese <sr@denx.de>
13491
13492commit 075d0b81e896e8735ae26372cd384f87cbd24e41
13493Author: Adam Graham <agraham@amcc.com>
13494Date: Wed Sep 3 12:26:28 2008 -0700
13495
13496 ppc4xx: IBM Memory Controller DDR autocalibration routines
13497
13498 Alternate SDRAM DDR autocalibration routine that can be generically used
13499 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
13500 support of more DIMM/memory chip vendors and gets the DDR autocalibration
13501 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
13502
13503 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
13504 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range
13505 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a
13506 lot longer to run than Method_B. Method_B executes in the same amount of time
13507 as the currently existing DDR autocalibration routine, i.e. 1 second or so.
13508 Normally Method_B is used and it is set as the default method.
13509
13510 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
13511 Controller registers.[bit-field]:
13512 1) SDRAM0_RQDC.[RQFD]
13513 2) SDRAM0_RFDC.[RFFD]
13514
13515 This alternate PPC4xx DDR autocalibration code calibrates the following
13516 IBM SDRAM Controller registers.[bit-field]:
13517
13518 1) SDRAM0_WRDTR.[WDTR]
13519 2) SDRAM0_CLKTR.[CKTR]
13520 3) SDRAM0_RQDC.[RQFD]
13521 4) SDRAM0_RFDC.[RFFD]
13522
13523 and will also use the calibrated settings of the above four registers that
13524 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
13525 register.[bit-field].
13526
13527 Signed-off-by: Adam Graham <agraham@amcc.com>
13528 Signed-off-by: Stefan Roese <sr@denx.de>
13529
13530commit e07f4a8033b6270b8103049adb6456f660ff4a89
13531Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
13532Date: Mon Sep 1 13:09:39 2008 -0400
13533
13534 ppc44x: Unification of virtex5 pp440 boards
13535
13536 This patch provides an unificated way of handling xilinx v5 ppc440 boards.
13537
13538 It unificates 3 different things:
13539
13540 1) Source code
13541 A new board called ppc440-generic has been created. This board includes
13542 a generic tlb initialization (Maps the whole memory into virtual) and
13543 defines board_pre_init, checkboard, initdram and get_sys_info weakly,
13544 so, they can be replaced by specific functions.
13545
13546 If a new board needs to redefine any of the previous functions
13547 (specific initialization) it can create a new directory with the
13548 specific initializations needed. (see the example ml507 board).
13549
13550 2) Configuration file
13551 Common configurations are located under configs/xilinx-ppc440.h, this
13552 header file interpretes the xparameters file generated by EDK and
13553 configurates u-boot in correspondence. Example: if there is a Temac,
13554 allows CMD_CONFIG_NET
13555 Specific configuration are located under specific configuration file.
13556 (see the example ml507 board)
13557
13558 3) Makefile
13559 Some work has been done in order to not duplicate work in the Main
13560 Makefile. Please see the attached code.
13561
13562 In order to support new boards they can be implemented in the next way:
13563
13564 a) Simple Generic Board (90% of the time)
13565 Using EDK generates a new xparameters.h file, replace
13566 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
13567 && make
13568
13569 b) Simple Boards with special u-boot parameters (9 % of the time)
13570 Create a new file under configs for it (use ml507.h as example) and
13571 change your paramaters. Create a new Makefile paragraph and compile
13572
13573 c) Complex boards (1% of the time)
13574 Create a new folder for the board, like the ml507
13575
13576 Finally, it adds support for the Avnet FX30T Evaluation board, following
13577 the new generic structure:
13578
13579 Cheap board by Avnet for evaluating the Virtex5 FX technology.
13580
13581 This patch adds support for:
13582 - UartLite
13583 - 16MB Flash
13584 - 64MB RAM
13585
13586 Prior using U-boot in this board, read carefully the ERRATA by Avnet
13587 to solve some memory initialization issues.
13588
13589 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
13590 Signed-off-by: Stefan Roese <sr@denx.de>
13591
13592commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
13593Author: Nick Spence <nick.spence@freescale.com>
13594Date: Tue Sep 2 15:21:16 2008 -0500
13595
13596 mpc83xx: fix mpc8313 in-tree building with NAND
13597
13598 and add mpc8313 NAND build to MAKEALL
13599
13600 Signed-off-by: Nick Spence <nick.spence@freescale.com>
13601 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13602
13603commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
13604Author: Nick Spence <nick.spence@freescale.com>
13605Date: Thu Aug 28 14:09:25 2008 -0700
13606
13607 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
13608
13609 Cleans up some latent issues with the data cache control so that
13610 dcache_enable() and dcache_disable() will work reliably (after
13611 unlock_ram_in_cache() has been called)
13612
13613 Signed-off-by: Nick Spence <nick.spence@freescale.com>
13614 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13615
13616commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
13617Author: Nick Spence <nick.spence@freescale.com>
13618Date: Thu Aug 28 14:09:19 2008 -0700
13619
13620 mpc83xx: Store and display Arbiter Event Register values
13621
13622 Record the Arbiter Event Register values and optionally display them.
13623
13624 The Arbiter Event Register can record the type and effective address of
13625 an arbiter error, even through an HRESET. This patch stores the values in
13626 the global data structure.
13627
13628 Display of the Arbiter Event registers immediately after the RSR value
13629 can be enabled with defines. The Arbiter values will only be displayed
13630 if an arbiter event has occured since the last Power On Reset, and either
13631 of the following defines exist:
13632 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
13633 and type register values
13634 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter
13635 event register values
13636
13637 Address Only transactions are one of the trapped events that can register
13638 as an arbiter event. They occur with some cache manipulation instructions
13639 if the HID0_ABE (Address Broadcast Enable) is set and the memory region
13640 has the MEMORY_COHERENCE WIMG bit set. Setting:
13641 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
13642 only events, so that it can still capture
13643 other real problems.
13644
13645 Signed-off-by: Nick Spence <nick.spence@freescale.com>
13646 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13647
13648commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
13649Author: Nick Spence <nick.spence@freescale.com>
13650Date: Thu Aug 28 14:09:11 2008 -0700
13651
13652 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
13653
13654 This is needed in unlock_ram_in_cache() because it is called from C and
13655 will corrupt the small data area anchor that is kept in R2.
13656
13657 lock_ram_in_cache() is modified similarly as good coding practice, but
13658 is not called from C.
13659
13660 Signed-off-by: Nick Spence <nick.spence@freescale.com>
13661 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13662
13663commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
13664Author: Nick Spence <nick.spence@freescale.com>
13665Date: Fri Aug 22 23:52:50 2008 -0700
13666
13667 MPC83XX: Fix GPIO configuration - set gpio level before direction
13668
13669 Set DAT value before DIR values to avoid creating glitches on the
13670 GPIO signals.
13671
13672 Set gpio level register before direction register to inhibit
13673 glitches on high level output pins.
13674
13675 Dir and data gets cleared at powerup, so high level output lines see
13676 a short low pulse between setting the direction and level registers.
13677
13678 Issue was seen on a new board with the nReset line of the NOR flash
13679 connected to a GPIO. Setting the direction register puts the NOR flash
13680 in reset so the next instruction to set the level cannot get executed.
13681
13682 Signed-off-by: Nick Spence <nick.spence@freescale.com>
13683 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
13684 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
13685
13686commit 7007c5975ee900ad70983b0681d3251e221f8321
13687Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13688Date: Tue Sep 2 02:58:32 2008 +0200
13689
13690 doc/qemu_mips: add doc howto debug u-boot with gdb
13691
13692 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
13693
13694commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
13695Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13696Date: Wed Sep 3 17:15:45 2008 +0200
13697
13698 ppx4xx: Fix broken DASA_SIM board
13699
13700 This patch adds initdram() to DASA_SIM boards that has been
13701 removed accidentally by a previous commit.
13702
13703 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13704 Signed-off-by: Stefan Roese <sr@denx.de>
13705
13706commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
13707Author: Stefan Roese <sr@denx.de>
13708Date: Mon Sep 1 08:35:37 2008 +0200
13709
13710 ppc4xx: Remove reference to common/lists.o from some esd linker scripts
13711
13712 This patch removes some direct references to common/lists.o from some
13713 esd linker scripts. This is necessary because the lists source was moved
13714 and is not in the "common" directory anymore.
13715
13716 Signed-off-by: Stefan Roese <sr@denx.de>
13717
13718commit 97b0734d65f8a0b03df0a335a2addc759da56107
13719Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13720Date: Tue Sep 2 16:33:05 2008 +0200
13721
13722 ppc4xx: Remove obsolete or unused functions from some esd boards
13723
13724 This patch removes initdram() and testdram() from most esd 405 platforms.
13725 Some boards also have an empty dummy implementation of
13726 misc_init_f(). This is also removed.
13727
13728 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13729 Signed-off-by: Stefan Roese <sr@denx.de>
13730
13731commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
13732Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13733Date: Tue Sep 2 15:07:54 2008 +0200
13734
13735 ppc4xx: Update VOM405 board configuration
13736
13737 - remove PCI code
13738 - add command line editing
13739 - minor cleanup
13740
13741 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13742 Signed-off-by: Stefan Roese <sr@denx.de>
13743
13744commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
13745Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13746Date: Tue Sep 2 15:07:53 2008 +0200
13747
13748 ppc4xx: Remove obsolete initdram() function from VOM405 board
13749
13750 This patch removed the obsolete initdram() function from
13751 VOM405 platform file.
13752
13753 Some minor cleanup.
13754
13755 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13756 Signed-off-by: Stefan Roese <sr@denx.de>
13757
13758commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
13759Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13760Date: Tue Sep 2 15:07:52 2008 +0200
13761
13762 ppc4xx: Cleanup VOM405 linker script
13763
13764 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13765 Signed-off-by: Stefan Roese <sr@denx.de>
13766
13767commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
13768Author: Matthias Fuchs <mf@esd.eu>
13769Date: Tue Sep 2 15:07:51 2008 +0200
13770
13771 ppc4xx: Add fdt support for VOM405 boards
13772
13773 Signed-off-by: Matthias Fuchs <mf@esd.eu>
13774 Signed-off-by: Stefan Roese <sr@denx.de>
13775
13776commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
13777Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13778Date: Tue Sep 2 11:36:14 2008 +0200
13779
13780 ppc4xx: Coding style cleanup
13781
13782 Wrap long lines etc.
13783
13784 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13785 Signed-off-by: Stefan Roese <sr@denx.de>
13786
13787commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
13788Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13789Date: Tue Sep 2 11:35:56 2008 +0200
13790
13791 ppc4xx: Enable USB on PLU405 boards
13792
13793 This patch enables the PCI-OHCI controller on PLU405 board.
13794
13795 Also the default CPU frequency is updated to 266 MHz and
13796 command line editing is enabled.
13797
13798 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13799 Signed-off-by: Stefan Roese <sr@denx.de>
13800
13801commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
13802Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13803Date: Tue Sep 2 11:35:35 2008 +0200
13804
13805 ppc4xx: Cleanup PLU405 platform file
13806
13807 This patch
13808 - wraps some long lines
13809 - removes unused/obsolete functions: misc_init_f() and initdram()
13810
13811 Signed-off-by: Matthias Fuchs <mf@esd.eu>
13812 Signed-off-by: Stefan Roese <sr@denx.de>
13813
13814commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
13815Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13816Date: Tue Sep 2 11:35:04 2008 +0200
13817
13818 ppc4xx: Cleanup PLU405 linker script
13819
13820 Signed-off-by: Matthias Fuchs <mf@esd.eu>
13821 Signed-off-by: Stefan Roese <sr@denx.de>
13822
13823commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
13824Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13825Date: Tue Sep 2 11:34:36 2008 +0200
13826
13827 ppc4xx: Add fdt support for PLU405 boards
13828
13829 Signed-off-by: Matthias Fuchs <mf@esd.eu>
13830 Signed-off-by: Stefan Roese <sr@denx.de>
13831
13832commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
13833Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13834Date: Tue Sep 2 11:34:08 2008 +0200
13835
13836 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
13837
13838 Signed-off-by: Matthias Fuchs <mf@esd.eu>
13839 Signed-off-by: Stefan Roese <sr@denx.de>
13840
13841commit be1b0d2777e179191a57b138b660547a17e55aad
13842Author: Jochen Friedrich <jochen@scram.de>
13843Date: Tue Sep 2 11:24:59 2008 +0200
13844
13845 Don't tftp to unknown flash
13846
13847 If a board has a variable number of flash banks, there are empty entries
13848 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
13849 "Outside available Flash". This patch skips flash banks with unknown
13850 flash ids.
13851
13852 Signed-off-by: Jochen Friedrich <jochen@scram.de>
13853 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13854
13855commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
13856Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13857Date: Thu Aug 28 13:40:44 2008 +0900
13858
13859 net: smc911x: Add pkt_data_pull and pkt_data_push function
13860
13861 The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
13862 Byte-swapping is necessary, and so poor performance is inevitable.
13863 This problem cannot evade by the swap function of CHIP, this can
13864 evade by software Byte-swapping.
13865 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
13866 functions necessary to solve this problem.
13867
13868 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13869 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13870
13871commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
13872Author: Ben Warren <biggerbadderben@gmail.com>
13873Date: Sun Aug 31 20:37:00 2008 -0700
13874
13875 Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
13876
13877 Affected boards:
13878 db64360
13879 db64460
13880 katmai
13881 taihu
13882 taishan
13883 yucca
13884 cpc45
13885 cpu87
13886 eXalion
13887 elppc
13888 debris
13889 kvme080
13890 mpc8315erdb
13891 integratorap
13892 ixdp425
13893 oxc
13894 pm826
13895 pm828
13896 pm854
13897 pm856
13898 ppmc7xx
13899 sc3
13900 sc520_spunk
13901 sorcery
13902 tqm8272
13903 tqm85xx
13904 utx8245
13905
13906 Removed initialization of the driver from net/eth.c
13907 Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
13908
13909 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13910
13911commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
13912Author: Ben Warren <biggerbadderben@gmail.com>
13913Date: Sun Aug 31 10:45:44 2008 -0700
13914
13915 Moved initialization of TULIP Ethernet controller to board_eth_init()
13916
13917 Affected boards:
13918 cu824
13919 bab7xx
13920 adciop
13921 dasa_sim
13922 mousse
13923 mpc8540eval
13924 musenki
13925 mvblue
13926 pcippc2/pcippc6
13927 sbc8240
13928 stxssa
13929
13930 Removed initialization of the driver from net/eth.c
13931
13932 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13933
13934commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
13935Author: Ben Warren <biggerbadderben@gmail.com>
13936Date: Sun Aug 31 10:44:19 2008 -0700
13937
13938 Moved initialization of E1000 Ethernet controller to board_eth_init()
13939
13940 Affected boards:
13941 ap1000
13942 mvbc_p
13943 PM854
13944
13945 Removed initialization of the driver from net/eth.c
13946
13947 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13948
13949commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
13950Author: Ben Warren <biggerbadderben@gmail.com>
13951Date: Sun Aug 31 10:40:51 2008 -0700
13952
13953 Moved initialization of plb2800 Ethernet driver to board_eth_init
13954
13955 Affected boards:
13956 purple
13957
13958 Removed initialization of controller from net/eth.c
13959
13960 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13961
13962commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
13963Author: Ben Warren <biggerbadderben@gmail.com>
13964Date: Sun Aug 31 10:39:12 2008 -0700
13965
13966 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
13967
13968 Modified board_eth_init() functions of boards that have this FEC in addition
13969 to other Ethernet controllers.
13970
13971 Affected boards:
13972 bc3450
13973 icecube
13974 mvbc_p
13975 o2dnt
13976 pm520
13977 total5200
13978 tq5200
13979
13980 Removed initialization of controller from net/eth.c
13981
13982 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13983
13984commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
13985Author: Ben Warren <biggerbadderben@gmail.com>
13986Date: Sun Aug 31 10:36:38 2008 -0700
13987
13988 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
13989
13990 Added a cpu_eth_init() function to MPC512x CPU directory and
13991 removed code from net/eth.c
13992
13993 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13994
13995commit 8218bd2aa68820b878a8413493ae17fd8d21f944
13996Author: Ben Warren <biggerbadderben@gmail.com>
13997Date: Sun Aug 31 10:16:59 2008 -0700
13998
13999 Moved initialization of IncaIP Ethernet controller to board_eth_init
14000
14001 Affected boards:
14002 IncaIP
14003
14004 Removed initialization of the driver from net/eth.c
14005
14006 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14007
14008commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
14009Author: Ben Warren <biggerbadderben@gmail.com>
14010Date: Sun Aug 31 10:15:26 2008 -0700
14011
14012 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
14013
14014 Affected boards:
14015 AmigaOneG3SE
14016
14017 Removed initialization of the driver from net/eth.c
14018
14019 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14020
14021commit 6aca145e067efe75398e9fac97822bd3700de0b2
14022Author: Ben Warren <biggerbadderben@gmail.com>
14023Date: Sun Aug 31 10:13:34 2008 -0700
14024
14025 Moved initialization of GT6426x Ethernet controller to board_eth_init()
14026
14027 Affected boards:
14028 EVB64260
14029 P3G4
14030 ZUMA
14031
14032 Removed initialization of the driver from net/eth.c
14033
14034 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14035
14036commit e3090534d62045dcb73f5392bacc64a4e8e443dc
14037Author: Ben Warren <biggerbadderben@gmail.com>
14038Date: Sun Aug 31 10:08:43 2008 -0700
14039
14040 Moved initialization of PCNET Ethernet controller to board_eth_init()
14041
14042 Affected boards:
14043 PN62
14044 sc520_cdp
14045
14046 Removed initialization of the driver from net/eth.c
14047
14048 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14049
14050commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
14051Author: Ben Warren <biggerbadderben@gmail.com>
14052Date: Sun Aug 31 10:07:16 2008 -0700
14053
14054 Moved initialization of NATSEMI Ethernet controller to board_eth_init()
14055
14056 Affected boards:
14057 a3000
14058
14059 Removed initialization of the driver from net/eth.c
14060
14061 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14062
14063commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
14064Author: Ben Warren <biggerbadderben@gmail.com>
14065Date: Sun Aug 31 10:03:22 2008 -0700
14066
14067 Moved initialization of NS8382X Ethernet controller to board_eth_init()
14068
14069 Affected boards:
14070 bc3450
14071 cpci5200
14072 mecp5200
14073 pf2000
14074 icecube
14075 o2dnt
14076 pm520
14077 sandpoint8245
14078 total5200
14079 tqm5200
14080
14081 Removed initialization of the driver from net/eth.c
14082
14083 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14084
14085commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
14086Author: Ben Warren <biggerbadderben@gmail.com>
14087Date: Sun Aug 31 09:59:33 2008 -0700
14088
14089 Moved initialization of TSI108 Ethernet controller to board_eth_init()
14090
14091 Affected boards:
14092 mpc7448hpc2
14093
14094 Removed initialization of the driver from net/eth.c
14095
14096 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14097
14098commit 0b252f50ae218ae15bfb63af44227972686ebc56
14099Author: Ben Warren <biggerbadderben@gmail.com>
14100Date: Sun Aug 31 21:41:08 2008 -0700
14101
14102 Moved initialization of RTL8139 Ethernet controller to board_eth_init()
14103
14104 Affected boards:
14105 hidden_dragon
14106 MPC8544DS
14107 MPC8610HPCN
14108 R2DPLUS
14109 TB0229
14110
14111 Removed initialization of the driver from net/eth.c
14112
14113 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14114
14115commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
14116Author: Ben Warren <biggerbadderben@gmail.com>
14117Date: Sun Aug 31 09:49:42 2008 -0700
14118
14119 Moved initialization of RTL8169 Ethernet controller to board_eth_init()
14120
14121 Affected boards:
14122 linkstation
14123 r7780mp
14124
14125 Removed initialization of the driver from net/eth.c
14126
14127 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14128
14129commit 3ae071e44256144d6c1e3febb65f6c56bd433769
14130Author: Ben Warren <biggerbadderben@gmail.com>
14131Date: Tue Aug 12 22:11:53 2008 -0700
14132
14133 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
14134
14135 Removed at91sam9_eth_initialize() from net/eth.c
14136
14137 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14138
14139commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
14140Author: Ben Warren <biggerbadderben@gmail.com>
14141Date: Sun Aug 31 22:22:04 2008 -0700
14142
14143 Introduce netdev.h header file and remove externs
14144
14145 This addresses all drivers whose initializers have already
14146 been moved to board_eth_init()/cpu_eth_init().
14147
14148 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14149
14150commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
14151Author: Andy Fleming <afleming@freescale.com>
14152Date: Sun Aug 31 16:33:30 2008 -0500
14153
14154 Add pixis_set_sgmii command
14155
14156 The 8544DS and 8572DS platforms support an optional SGMII riser card to
14157 expose ethernet over an SGMII interface. Once the card is in, it is also
14158 necessary to configure the board such that it uses the card, rather than
14159 the on-board ethernet ports. This can either be done by flipping dip switches
14160 on the motherboard, or by modifying registers in the pixis. Either way
14161 requires a reboot.
14162
14163 This adds a command to allow users to choose which ports are routed through
14164 the SGMII card, and which through the onboard ports. It also allows users
14165 to revert to the current switch settings.
14166
14167 This code does not work on the 8572, as the PIXIS is different.
14168
14169 Signed-off-by: Andy Fleming <afleming@freescale.com>
14170 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14171
14172commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
14173Author: Andy Fleming <afleming@freescale.com>
14174Date: Sun Aug 31 16:33:29 2008 -0500
14175
14176 Add SGMII support for the 8544 DS
14177
14178 The 8544 DS has an optional SGMII Riser card, which uses different PHY
14179 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser
14180 setup code if so.
14181
14182 Signed-off-by: Andy Fleming <afleming@freescale.com>
14183 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14184
14185commit 652f7c2eef76a1340928bd660845441e932d86a2
14186Author: Andy Fleming <afleming@freescale.com>
14187Date: Sun Aug 31 16:33:28 2008 -0500
14188
14189 Add support for Freescale SGMII Riser Card
14190
14191 The 8544DS and 8572DS systems have an optional SGMII riser card which
14192 exposes new ethernet ports which are connected to the eTSECs via an
14193 SGMII interface. The SGMII PHYs for this board are offset from the standard
14194 PHY addresses, so this code modifies the passed in tsec_info structure to
14195 use the SGMII PHYs on the card, instead.
14196
14197 Signed-off-by: Andy Fleming <afleming@freescale.com>
14198 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14199
14200commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
14201Author: Andy Fleming <afleming@freescale.com>
14202Date: Sun Aug 31 16:33:27 2008 -0500
14203
14204 Add SGMII support to the tsec
14205
14206 Adds support for configuring the TBI to talk properly with the SerDes.
14207
14208 Signed-off-by: Andy Fleming <afleming@freescale.com>
14209 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14210
14211commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
14212Author: Andy Fleming <afleming@freescale.com>
14213Date: Sun Aug 31 16:33:26 2008 -0500
14214
14215 Pass in tsec_info struct through tsec_initialize
14216
14217 The tsec driver contains a hard-coded array of configuration information
14218 for the tsec ethernet controllers. We create a default function that works
14219 for most tsecs, and allow that to be overridden by board code. It creates
14220 an array of tsec_info structures, which are then parsed by the corresponding
14221 driver instance to determine configuration. Also, add regs, miiregs, and
14222 devname fields to the tsec_info structure, so that we don't need the kludgy
14223 "index" parameter.
14224
14225 Signed-off-by: Andy Fleming <afleming@freescale.com>
14226 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14227
14228commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
14229Author: Andy Fleming <afleming@freescale.com>
14230Date: Sun Aug 31 16:33:25 2008 -0500
14231
14232 tsec: Move tsec.h to include/
14233
14234 This is to prepare the way for board code passing in the tsec_info structure
14235
14236 Signed-off-by: Andy Fleming <afleming@freescale.com>
14237 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14238
14239commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
14240Author: Sergei Poselenov <sposelenov@emcraft.com>
14241Date: Fri Jun 6 15:52:44 2008 +0200
14242
14243 PHY: Add support for the M88E1121R Marvell chip.
14244
14245 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14246 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14247 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14248
14249commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
14250Author: Wolfgang Denk <wd@denx.de>
14251Date: Tue Sep 2 21:17:36 2008 +0200
14252
14253 fw_env.c: fix build problems with MTD_VERSION=old
14254
14255 (as needed to support old 2.4 Linux kernel based releases)
14256
14257 Signed-off-by: Wolfgang Denk <wd@denx.de>
14258
14259commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
14260Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14261Date: Mon Sep 1 17:11:26 2008 +0200
14262
14263 device: make device_register() clone the device
14264
14265 This is expected by the callers, but this fact was hidden well within
14266 the old list implementation.
14267
14268 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14269
14270commit c75e772a2f061a508bba28ded1b5bea91f0442b0
14271Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14272Date: Sun Aug 31 23:28:15 2008 +0900
14273
14274 sh: Remove CC line from board's Makefile
14275
14276 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14277
14278commit 468eae0660de6fdfd9999944c536ecc4797bd944
14279Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14280Date: Sun Aug 31 23:25:57 2008 +0900
14281
14282 sh: Replaced "@./mkconfig" for @$(MKCONFIG)
14283
14284 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14285
14286commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
14287Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14288Date: Thu Aug 28 14:50:52 2008 +0900
14289
14290 sh: Add support sh2 to MAKEALL
14291
14292 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14293 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14294
14295commit 6f3d8bb5faa12dbf3031382286784c978df038ee
14296Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14297Date: Thu Aug 28 14:52:23 2008 +0900
14298
14299 sh: Fix compile error rsk7203 board
14300
14301 This boards used old type preprocessor.
14302 This patch fix compile error.
14303
14304 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14305 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14306
14307commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
14308Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14309Date: Thu Aug 28 14:53:31 2008 +0900
14310
14311 sh: Fix compile error sh7785lcr board
14312
14313 This boards used old type preprocessor.
14314 This patch fix compile error.
14315
14316 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14317 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14318
14319commit 6f0da4972e48f99d37bc522814940a6022cd3084
14320Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14321Date: Fri Aug 22 17:39:09 2008 +0900
14322
14323 sh: Renesas Solutions AP325RXA board support
14324
14325 AP325RXA is SH7723's reference board.
14326 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
14327 In this patch, support SCIF, NOR Flash, and Ethernet.
14328
14329 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14330 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14331
14332commit ab09f433b50bb83b5e440c335bc3839ee069e534
14333Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14334Date: Fri Aug 22 17:48:51 2008 +0900
14335
14336 sh: add support Renesas SH7723
14337
14338 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
14339 This patch supports CPU register's header file and SCIF serial driver.
14340
14341 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14342 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14343
14344commit c655fad06ba3fb042dbc667724a40e1a9a091248
14345Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14346Date: Sun Aug 31 23:02:04 2008 +0900
14347
14348 sh: Renesas RSK+ 7203 board support
14349
14350 This adds initial support for the RTE RSK+ SH7203 board.
14351
14352 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14353 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14354
14355commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
14356Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14357Date: Thu Jul 3 23:11:02 2008 +0900
14358
14359 sh: Add support Renesas SH7203 processor
14360
14361 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14362 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14363
14364commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
14365Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14366Date: Sun Aug 31 22:48:33 2008 +0900
14367
14368 sh: Add support SH2/SH2A which is CPU of Renesas Technology
14369
14370 Add support SH2/SH2A basic function.
14371
14372 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
14373 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14374
14375commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
14376Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14377Date: Sun Aug 31 22:45:08 2008 +0900
14378
14379 sh: Renesas R0P7785LC0011RL board support
14380
14381 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
14382 Graphic, Ethernet, USB, SD, RTC, and I2C controller.
14383
14384 This patch supports the following functions:
14385 - 128MB DDR2-SDRAM (29-bit address mode only)
14386 - NOR Flash
14387 - USB host
14388 - Ethernet
14389
14390 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14391 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14392
14393commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
14394Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14395Date: Thu Jul 10 19:32:53 2008 +0900
14396
14397 sh: add support for SH7785
14398
14399 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
14400 This patch supports CPU register's header file.
14401
14402 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
14403 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
14404
14405commit d6e04258be8f2408845468d3cf722a4cf0433445
14406Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14407Date: Sun Aug 31 04:45:42 2008 +0200
14408
14409 davinci: fix remaining dm644x_eth
14410
14411 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14412
14413commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
14414Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14415Date: Sun Aug 31 04:24:56 2008 +0200
14416
14417 fs: Move conditional compilation to Makefile
14418
14419 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14420
14421commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
14422Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14423Date: Sun Aug 31 04:24:55 2008 +0200
14424
14425 devices: merge to list_head
14426
14427 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14428
14429commit ef0255fc75f28655f9681422079287d68a14dbaa
14430Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14431Date: Sun Aug 31 04:24:51 2008 +0200
14432
14433 update linux/list
14434
14435 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14436
14437commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
14438Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14439Date: Sun Aug 31 00:39:48 2008 +0200
14440
14441 smdk6400: add gitignore
14442
14443 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14444
14445commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
14446Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14447Date: Sun Aug 31 00:39:48 2008 +0200
14448
14449 smdk6400: Use CONFIG_FLASH_CFI_DRIVER
14450
14451 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14452
14453commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
14454Author: Guennadi Liakhovetski <lg@denx.de>
14455Date: Sun Aug 31 00:39:47 2008 +0200
14456
14457 smdk6400: remove redundant bootargs definition
14458
14459 Double bootargs setting leads to a duplicated environmant entry.
14460
14461 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14462
14463commit 11edcfe260f20dcea79284a3e95270989d433854
14464Author: Guennadi Liakhovetski <lg@denx.de>
14465Date: Sun Aug 31 00:39:47 2008 +0200
14466
14467 ARM: Add support for S3C6400 based SMDK6400 board
14468
14469 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
14470 driver for it too. The board can also boot from the NOR flash, but due to
14471 hardware limitations it can only address 64KiB on it, which is not enough
14472 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
14473
14474 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14475
14476commit e0056b341069796eaea11eae0fc8eb93a3dceaac
14477Author: Guennadi Liakhovetski <lg@denx.de>
14478Date: Sun Aug 31 00:39:47 2008 +0200
14479
14480 NAND: add NAND driver for S3C64XX
14481
14482 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
14483
14484 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14485
14486commit 3fe7b589f9c7463df39056f8872006a67f56a91c
14487Author: Guennadi Liakhovetski <lg@denx.de>
14488Date: Sun Aug 31 00:39:47 2008 +0200
14489
14490 S3C64XX: remove broken HWFLOW support from the serial driver
14491
14492 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
14493 broken and currently unused. Remove it.
14494
14495 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14496
14497commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
14498Author: Guennadi Liakhovetski <lg@denx.de>
14499Date: Sun Aug 31 00:39:47 2008 +0200
14500
14501 serial: add S3C64XX serial driver
14502
14503 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
14504
14505 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14506
14507commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
14508Author: Guennadi Liakhovetski <lg@denx.de>
14509Date: Sun Aug 31 00:39:46 2008 +0200
14510
14511 USB: Add support for OHCI controller on S3C6400
14512
14513 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
14514 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
14515 it should work too and we could still profit from instruction cache.
14516
14517 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14518
14519commit 9b07773f8883665b002500c190507e9fd99b7181
14520Author: Guennadi Liakhovetski <lg@denx.de>
14521Date: Sun Aug 31 00:39:46 2008 +0200
14522
14523 ARM: Add arm1176 core with S3C6400 SoC
14524
14525 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
14526
14527 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
14528
14529commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
14530Author: Sandeep Paulraj <s-paulraj@ti.com>
14531Date: Sun Aug 31 00:39:46 2008 +0200
14532
14533 ARM DaVinci: Changing function names for EMAC driver
14534
14535 DM644x is just one of a series of DaVinci chips that use the EMAC driver.
14536 By replacing all the function names that start with dm644x_* to davinci_*
14537 we make these function more portable. I have tested this change on my EVM.
14538 DM6467 is another DaVinci SOC which uses the EMAC driver and i will
14539 be sending patches that add DaVinci DM6467 support to the list soon.
14540
14541 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
14542
14543commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
14544Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
14545Date: Sat Aug 30 23:21:30 2008 +0200
14546
14547 Integrator[AP/CP] - Remove unused file memsetup.S
14548
14549 - memsetup.s is changed/merged to lowlevel_init.S
14550 memsetup.S has a global label memsetup that just returns back to caller
14551 - memsetup global label is changed/merged to lowlevel_init
14552 This label is not called from anywhere.
14553
14554 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
14555
14556commit 89d51d022a63be1a851eda983c8cbce1a044f65f
14557Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14558Date: Wed Aug 27 21:35:52 2008 +0200
14559
14560 ARM DaVinci: Standardize names of directories/files
14561
14562 ARM DaVinci: Standardize names of directories/files.
14563
14564 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14565 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14566
14567commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
14568Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14569Date: Fri Jul 11 15:10:13 2008 -0400
14570
14571 ARM DaVinci: Move common functions to board/davinci/common
14572
14573 ARM DaVinci: Move common functions to board/davinci/common.
14574
14575 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
14576
14577commit c2b4b2e4814f4ace9015fdb64132894327400bf0
14578Author: Stefan Roese <sr@denx.de>
14579Date: Fri Aug 29 11:56:49 2008 +0200
14580
14581 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
14582
14583 This function is needed for the new NAND infrastructure. We only need
14584 a dummy implementation though for the NDFC.
14585
14586 Signed-off-by: Stefan Roese <sr@denx.de>
14587
14588commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
14589Author: Stefan Roese <sr@denx.de>
14590Date: Fri Aug 29 12:06:27 2008 +0200
14591
14592 ppc4xx: Increase image size for NAND boot target
14593
14594 This is needed since now with HUSH enabled (amcc-common.h) the image
14595 read from NAND exceeds the previous limit.
14596
14597 Signed-off-by: Stefan Roese <sr@denx.de>
14598
14599commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
14600Author: Ben Warren <biggerbadderben@gmail.com>
14601Date: Thu Aug 28 23:58:30 2008 -0700
14602
14603 Move MPC512x_FEC driver to drivers/net
14604
14605 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14606
14607commit 80b00af01b3c9154774de2936f05a051e92f6a03
14608Author: Ben Warren <biggerbadderben@gmail.com>
14609Date: Thu Aug 28 23:58:29 2008 -0700
14610
14611 Move MPC5xxx_FEC driver to drivers/net
14612
14613 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14614
14615commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
14616Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14617Date: Fri Aug 29 21:53:57 2008 +0200
14618
14619 cmd_terminal: remove no need ifdef
14620
14621 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14622
14623commit 578118bdf122877ae769776be002255be447b4fa
14624Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14625Date: Fri Aug 29 21:53:57 2008 +0200
14626
14627 common/Makefile: order by functionality
14628
14629 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14630
14631commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
14632Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14633Date: Fri Aug 29 21:53:56 2008 +0200
14634
14635 miiphyutil: Move conditional compilation to Makefile
14636
14637 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14638
14639commit 81789c39db3f0f6b621df8c0ec66014d701f368e
14640Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14641Date: Fri Aug 29 21:53:37 2008 +0200
14642
14643 autoscript: Move conditional compilation to Makefile
14644
14645 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14646
14647commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
14648Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14649Date: Fri Aug 29 01:18:11 2008 +0200
14650
14651 crc16: move to lib_generic
14652
14653 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14654
14655commit 55195773eacefb22dd483a3c560ea30a14263ce1
14656Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14657Date: Fri Aug 29 01:18:01 2008 +0200
14658
14659 miiphybb: move to drivers/net/phy
14660
14661 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14662
14663commit e8314035996a9118ac5948df2ff8a2f2161ed67a
14664Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14665Date: Thu Aug 28 12:31:51 2008 +0200
14666
14667 soft_spi: move to drivers/spi
14668
14669 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14670
14671commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
14672Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14673Date: Thu Aug 28 12:31:51 2008 +0200
14674
14675 soft_i2c: move to drivers/i2c
14676
14677 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14678
14679commit 717a222229fdb77703e9174d0eb08a4b41febf49
14680Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14681Date: Thu Aug 28 12:31:48 2008 +0200
14682
14683 gunzip: move to lib_generic
14684
14685 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14686
14687commit 52aef8f9ba28b747973bf76741c23db658d5773c
14688Author: Wolfgang Ocker <weo@reccoware.de>
14689Date: Tue Aug 26 19:55:23 2008 +0200
14690
14691 ppc4xx: NAND configuration
14692
14693 Made NAND bank configuration setting a config variable.
14694
14695 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
14696 Signed-off-by: Stefan Roese <sr@denx.de>
14697
14698commit 5bc542a593abc9e974fbd34704af85c37c366c60
14699Author: Victor Gallardo <vgallardo@amcc.com>
14700Date: Thu Aug 28 16:03:28 2008 -0700
14701
14702 ppc4xx: fix UIC external_interrupt hang on UIC0
14703
14704 This patch fixes a UIC external_interrupt hang if critical or non-critical
14705 interrupt is set at the same time as a normal interrupt is set on UIC0.
14706
14707 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
14708 Signed-off-by: Stefan Roese <sr@denx.de>
14709
14710commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
14711Author: Prodyut Hazarika <phazarika@amcc.com>
14712Date: Wed Aug 27 16:39:00 2008 -0700
14713
14714 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
14715
14716 Removed Magic numbers from Initialization preload registers
14717 Tested with Kilauea, Glacier, Canyonlands and Katmai boards
14718 About 5-7% improvement seen for LMBench memtests
14719
14720 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
14721 Signed-off-by: Stefan Roese <sr@denx.de>
14722
14723commit 8a490422bed685c9491274ec997f62061d88620b
14724Author: John Rigby <jrigby@freescale.com>
14725Date: Thu Aug 28 13:17:07 2008 -0600
14726
14727 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
14728
14729 MPC5121 rev 2 silicon has a new register for controlling how long
14730 CS is asserted after deassertion of ALE in multiplexed mode.
14731
14732 The default is to assert CS together with ALE. The alternative
14733 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
14734
14735 The default is wrong for the NOR flash and CPLD on the ADS5121.
14736
14737 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
14738 it does so conditionally based on silicon rev 2.0 or greater.
14739
14740 Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
14741 Signed-off-by: John Rigby <jrigby@freescale.com>
14742
14743commit 5d9a5efa4b332f442b54a755d49969123c3a8742
14744Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14745Date: Tue Aug 19 00:56:46 2008 +0600
14746
14747 Add I2C frequency dividers for ColdFire
14748
14749 The existing I2C freqency dividers for FDR does not apply
14750 to ColdFire platforms; thus, a seperate table is added
14751 based on MCF5xxx Reference Manual
14752
14753 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
14754 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14755 Acked-by: Tabi Timur <timur@freescale.com>
14756
14757commit eec567a67e00d1ed8d941e9098b7d421f4091abf
14758Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14759Date: Tue Aug 19 03:01:19 2008 +0600
14760
14761 ColdFire: I2C fix for multiple platforms
14762
14763 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14764
14765commit d53cf6a9c7423cba668b867978648645f71c3090
14766Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14767Date: Tue Aug 19 00:37:13 2008 +0600
14768
14769 ColdFire: Add CONFIG_MII_INIT for M5272C3
14770
14771 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14772
14773commit f78ced3028d4130b24a318943a70cf5584ab16f4
14774Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14775Date: Tue Aug 19 00:26:25 2008 +0600
14776
14777 ColdFire: Multiple fixes for MCF5445x platforms
14778
14779 Add FEC pin set and mii reset in __mii_init(). Change
14780 legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
14781 change cfi_offset to 0, and change CFG_FLASH_CFI to
14782 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
14783 M54455EVB env settings in configuration file.
14784
14785 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14786
14787commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
14788Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14789Date: Fri Aug 15 18:24:25 2008 +0000
14790
14791 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
14792
14793 The user manuals recommend 7.
14794
14795 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
14796 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14797
14798commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
14799Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14800Date: Fri Aug 15 16:50:07 2008 +0000
14801
14802 ColdFire: Raise uart baudrate to 115200 bps
14803
14804 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
14805 uart baudrate increase from 19200 to 115200 bps
14806
14807 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14808
14809commit ab6ba842682552ccf071d0034da0a20633d1d1ac
14810Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14811Date: Wed Aug 13 12:07:03 2008 +0000
14812
14813 ColdFire: Fix board.c warning message
14814
14815 Implicit declaration of nand_init() warning message
14816
14817 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14818
14819commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
14820Author: Kumar Gala <galak@kernel.crashing.org>
14821Date: Wed Aug 27 01:10:34 2008 -0500
14822
14823 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
14824
14825 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14826
14827commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
14828Author: Heiko Schocher <hs@denx.de>
14829Date: Thu Aug 21 20:44:49 2008 +0200
14830
14831 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
14832
14833 Signed-off-by: Heiko Schocher <hs@denx.de>
14834
14835commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
14836Author: Kumar Gala <galak@kernel.crashing.org>
14837Date: Tue Aug 19 14:46:36 2008 -0500
14838
14839 mpc85xx: remove redudant code with lib_ppc/interrupts.c
14840
14841 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
14842 not show how that happened, but there is no good reason for it.
14843
14844 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
14845 they exist.
14846
14847 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14848
14849commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
14850Author: Kumar Gala <galak@kernel.crashing.org>
14851Date: Fri Jul 25 13:31:05 2008 -0500
14852
14853 mpc85xx: Add support for the MPC8536DS reference board
14854
14855 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14856 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14857 Signed-off-by: Dejan Minic <minic@freescale.com>
14858 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
14859 Signed-off-by: Dave Liu <daveliu@freescale.com>
14860 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14861
14862commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
14863Author: Kumar Gala <galak@kernel.crashing.org>
14864Date: Tue Aug 12 11:14:19 2008 -0500
14865
14866 mpc85xx: Add support for the MPC8536
14867
14868 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We
14869 also have SERDES init code for the 8536.
14870
14871 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14872 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
14873 Signed-off-by: Dejan Minic <minic@freescale.com>
14874 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
14875 Signed-off-by: Dave Liu <daveliu@freescale.com>
14876
14877commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
14878Author: Kumar Gala <galak@kernel.crashing.org>
14879Date: Tue Aug 12 11:13:08 2008 -0500
14880
14881 mpc85xx: Add support for the MPC8572DS reference board
14882
14883 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14884
14885commit 457caecdbca3df21a93abff19eab12dbc61b7897
14886Author: Kumar Gala <galak@kernel.crashing.org>
14887Date: Wed Aug 27 01:05:35 2008 -0500
14888
14889 FSL DDR: Remove old SPD support from cpu/mpc85xx
14890
14891 All 85xx boards have been converted to the new code so we can
14892 remove the old SPD DDR setup code.
14893
14894 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14895
14896commit 0e7927db138976469e7257e29c1338050a50fcd9
14897Author: Kumar Gala <galak@kernel.crashing.org>
14898Date: Wed Aug 27 01:04:07 2008 -0500
14899
14900 FSL DDR: Convert STXSSA to new DDR code.
14901
14902 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14903
14904commit c360d9b970fbb9c13744c355879671165bbb9b9e
14905Author: Kumar Gala <galak@kernel.crashing.org>
14906Date: Wed Aug 27 01:03:42 2008 -0500
14907
14908 FSL DDR: Convert STXGP3 to new DDR code.
14909
14910 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14911
14912commit 8e55313b7ae12352a343f9b9962e662dbd897187
14913Author: Kumar Gala <galak@kernel.crashing.org>
14914Date: Tue Aug 26 23:52:58 2008 -0500
14915
14916 FSL DDR: Convert SBC8560 to new DDR code.
14917
14918 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14919
14920commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
14921Author: Kumar Gala <galak@kernel.crashing.org>
14922Date: Tue Aug 26 23:52:32 2008 -0500
14923
14924 FSL DDR: Convert MPC8540EVAL to new DDR code.
14925
14926 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14927
14928commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
14929Author: Kumar Gala <galak@kernel.crashing.org>
14930Date: Tue Aug 26 23:52:07 2008 -0500
14931
14932 FSL DDR: Convert PM856 to new DDR code.
14933
14934 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14935
14936commit d53bd3e17bd4f460257c19255569ea6dcfaae817
14937Author: Kumar Gala <galak@kernel.crashing.org>
14938Date: Tue Aug 26 23:51:49 2008 -0500
14939
14940 FSL DDR: Convert PM854 to new DDR code.
14941
14942 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14943
14944commit 33b9079ba20926f14238fff863b68a98e938948e
14945Author: Kumar Gala <galak@kernel.crashing.org>
14946Date: Tue Aug 26 23:15:28 2008 -0500
14947
14948 FSL DDR: Convert sbc8548 to new DDR code.
14949
14950 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14951
14952commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
14953Author: Kumar Gala <galak@kernel.crashing.org>
14954Date: Tue Aug 26 23:14:14 2008 -0500
14955
14956 FSL DDR: Convert atum8548 to new DDR code.
14957
14958 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14959
14960commit be0bd8234b9777ecd63c4c686f72af070d886517
14961Author: Kumar Gala <galak@kernel.crashing.org>
14962Date: Tue Aug 26 22:56:56 2008 -0500
14963
14964 FSL DDR: Convert socrates to new DDR code.
14965
14966 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14967
14968commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
14969Author: Kumar Gala <galak@kernel.crashing.org>
14970Date: Tue Aug 26 08:02:30 2008 -0500
14971
14972 FSL DDR: Convert MPC8544DS to new DDR code.
14973
14974 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14975
14976commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
14977Author: Jon Loeliger <jdl@freescale.com>
14978Date: Tue Mar 18 13:51:05 2008 -0500
14979
14980 FSL DDR: Convert MPC8568MDS to new DDR code.
14981
14982 Signed-off-by: Jon Loeliger <jdl@freescale.com>
14983 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14984
14985commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
14986Author: Jon Loeliger <jdl@freescale.com>
14987Date: Tue Mar 18 13:51:06 2008 -0500
14988
14989 FSL DDR: Convert MPC8548CDS to new DDR code.
14990
14991 Signed-off-by: Jon Loeliger <jdl@freescale.com>
14992 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14993
14994commit aa11d85cf318b961e029fe50d68ca47d004bce93
14995Author: Jon Loeliger <jdl@freescale.com>
14996Date: Mon Mar 17 15:48:18 2008 -0500
14997
14998 FSL DDR: Convert MPC8541CDS to new DDR code.
14999
15000 Signed-off-by: Jon Loeliger <jdl@freescale.com>
15001 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15002
15003commit 2b40edb10d81da7bba724edbccd7f53777112579
15004Author: Jon Loeliger <jdl@freescale.com>
15005Date: Tue Mar 18 11:12:42 2008 -0500
15006
15007 FSL DDR: Convert MPC8555ADS to new DDR code.
15008
15009 Signed-off-by: Jon Loeliger <jdl@freescale.com>
15010 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15011
15012commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
15013Author: Jon Loeliger <jdl@freescale.com>
15014Date: Tue Mar 18 11:12:44 2008 -0500
15015
15016 FSL DDR: Convert MPC8560ADS to new DDR code.
15017
15018 Signed-off-by: Jon Loeliger <jdl@freescale.com>
15019 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15020
15021commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
15022Author: Kumar Gala <galak@kernel.crashing.org>
15023Date: Fri Jun 6 13:12:18 2008 -0500
15024
15025 FSL DDR: Convert MPC8540ADS to new DDR code.
15026
15027 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15028
15029commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
15030Author: Kumar Gala <galak@kernel.crashing.org>
15031Date: Tue Aug 26 21:34:55 2008 -0500
15032
15033 FSL DDR: Add 85xx specific register setting
15034
15035 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15036
15037commit 6fb1b7346849ccd0c20306143e334f5b76143070
15038Author: Kumar Gala <galak@kernel.crashing.org>
15039Date: Mon Jun 9 11:07:46 2008 -0500
15040
15041 FSL DDR: Add e500 TLB helper for DDR code
15042
15043 Provide a helper function that board code can call to map TLBs when
15044 setting up DDR.
15045
15046 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15047
15048commit d26b739afe5a6760bd345743188759cd9d0f3b47
15049Author: Andrew Dyer <adyer@righthandtech.com>
15050Date: Tue Aug 26 17:03:38 2008 -0500
15051
15052 dm9000 remove dead external phy support, gpio fix
15053
15054 dm9000 has code to detect and initialize external phy parts, but later
15055 on in the code the part is forced to use the internal phy
15056 unconditionally. Remove the unused/untested code.
15057
15058 change the GPIO initialization so that only the GPIO used as an
15059 internal phy reset (hardwired in the chip) is set as an output. The
15060 remaining GPIO need to be handled by board specific code to prevent
15061 possible drive conflicts. Set as inputs for safety.
15062
15063 replace a few magic numbers with defines
15064
15065 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
15066 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15067
15068commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
15069Author: Peter Tyser <ptyser@xes-inc.com>
15070Date: Tue Aug 26 11:17:48 2008 -0500
15071
15072 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
15073
15074 cmd_net.c command descriptions were updated to describe the optional
15075 hostIPaddr argument. The dhcp command help message was also updated
15076 to more closely reflect the other commands in cmd_net.c
15077
15078 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
15079 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15080
15081commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
15082Author: Remy Bohmer <linux@bohmer.net>
15083Date: Wed Aug 20 11:30:28 2008 +0200
15084
15085 Fix bogus error message in the DHCP handler
15086
15087 The DHCP handler has 1 state that is not listed in this case, causing a
15088 failure message when there is actually no failure.
15089
15090 Signed-off-by: Remy Bohmer <linux@bohmer.net>
15091 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15092
15093commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
15094Author: Remy Bohmer <linux@bohmer.net>
15095Date: Wed Aug 20 11:30:27 2008 +0200
15096
15097 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
15098
15099 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
15100 missing extern inside the net/bootp.h header
15101
15102 Signed-off-by: Remy Bohmer <linux@bohmer.net>
15103 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15104
15105commit 1803f7f91ff35ca402259065df7557107dcf28a2
15106Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15107Date: Tue Aug 19 21:26:32 2008 +0000
15108
15109 ColdFire: Add FEC Buffer descriptors in SRAM
15110
15111 Add FEC Buffer descriptors and data buffer in SRAM for
15112 faster execution and access.
15113
15114 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15115 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15116
15117commit 429be27ce195210d4b9decf9e867b9ca6155a87d
15118Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15119Date: Thu Aug 21 23:55:11 2008 +0000
15120
15121 Fix ColdFire FEC warning messages
15122
15123 Types mismatch and implicit declaration of icache_invalid()
15124 warning messages
15125
15126 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
15127 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15128
15129commit 6a002171098e968bd5b362347d2831224fab6048
15130Author: Ben Warren <biggerbadderben@gmail.com>
15131Date: Sat Jul 12 00:17:50 2008 -0700
15132
15133 Moved initialization of SKGE Ethernet driver to board code.
15134
15135 The only board using this driver is the SL8245 board.
15136 Removed initialization for the driver from net/eth.c
15137
15138 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15139
15140commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
15141Author: Ben Warren <biggerbadderben@gmail.com>
15142Date: Sat Jul 12 00:08:45 2008 -0700
15143
15144 Moved conditional compilation to Makefile for SK98 Ethernet driver
15145
15146 Brute-force removal of #ifdefs. Didn't touch the code.
15147 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15148
15149commit 65d3d99c28dc363d15eaee78225ff643df499b97
15150Author: Ben Warren <biggerbadderben@gmail.com>
15151Date: Fri Jul 11 23:42:19 2008 -0700
15152
15153 Moved initialization of ULI526X Ethernet driver to board code.
15154
15155 The only board using this driver is the Freescale MPC8610HPCD board.
15156 Removed initialization for the driver from net/eth.c
15157
15158 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15159
15160commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
15161Author: Ben Warren <biggerbadderben@gmail.com>
15162Date: Fri Jul 11 23:15:28 2008 -0700
15163
15164 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
15165
15166 Added board_eth_init() function to bf537-stamp board.
15167 Removed initialization for the Blackin EMAC driver from net/eth.c
15168
15169 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15170
15171commit fc363ce35408f348cacced68505f3747a53e3d7c
15172Author: Ben Warren <biggerbadderben@gmail.com>
15173Date: Wed Jul 9 01:04:19 2008 -0700
15174
15175 Moved initialization of GRETH Ethernet driver to CPU directory
15176
15177 Added a cpu_eth_init() function to leon2/leon3 CPU directories and
15178 removed code from net/eth.c
15179
15180 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15181
15182commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
15183Author: Ben Warren <biggerbadderben@gmail.com>
15184Date: Tue Aug 26 22:16:25 2008 -0700
15185
15186 Moved initialization of MCFFEC Ethernet driver to CPU directory
15187
15188 Added a cpu_eth_init() function to coldfire CPU directories and
15189 removed code from net/eth.c
15190
15191 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15192
15193commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
15194Author: Ben Warren <biggerbadderben@gmail.com>
15195Date: Tue Aug 26 22:12:36 2008 -0700
15196
15197 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
15198
15199 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
15200 removed code from net/eth.c
15201
15202 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
15203
15204commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
15205Author: Kumar Gala <galak@kernel.crashing.org>
15206Date: Tue Aug 26 15:01:38 2008 -0500
15207
15208 FSL DDR: Remove old SPD support from cpu/mpc86xx
15209
15210 All 86xx boards have been converted to the new code so we can
15211 remove the old SPD DDR setup code.
15212
15213 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15214
15215commit 9bd4e5911b750837515466bc7449087698b88e0e
15216Author: Kumar Gala <galak@kernel.crashing.org>
15217Date: Tue Aug 26 15:01:37 2008 -0500
15218
15219 FSL DDR: Convert SBC8641D to new DDR code.
15220
15221 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15222
15223commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
15224Author: Jon Loeliger <jdl@freescale.com>
15225Date: Tue Aug 26 15:01:36 2008 -0500
15226
15227 FSL DDR: Convert MPC8610HPCD to new DDR code.
15228
15229 Signed-off-by: Jon Loeliger <jdl@freescale.com>
15230 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15231
15232commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
15233Author: Kumar Gala <galak@kernel.crashing.org>
15234Date: Tue Aug 26 15:01:35 2008 -0500
15235
15236 FSL DDR: Convert MPC8641HPCN to new DDR code.
15237
15238 Signed-off-by: Jon Loeliger <jdl@freescale.com>
15239 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15240
15241commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
15242Author: Kumar Gala <galak@kernel.crashing.org>
15243Date: Tue Aug 26 15:01:34 2008 -0500
15244
15245 FSL DDR: Add 86xx specific register setting
15246
15247 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15248
15249commit 233fdd502a6c227f476212b3097653ad48d7e254
15250Author: Kumar Gala <galak@kernel.crashing.org>
15251Date: Tue Aug 26 15:01:32 2008 -0500
15252
15253 FSL DDR: Add DDR2 DIMM paramter support
15254
15255 Compute DIMM parameters based upon the SPD information.
15256
15257 Signed-off-by: James Yang <James.Yang@freescale.com>
15258 Signed-off-by: Jon Loeliger <jdl@freescale.com>
15259 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15260
15261commit 05c05a2363a6ac11e0e405926034546ffad71fad
15262Author: Kumar Gala <galak@kernel.crashing.org>
15263Date: Tue Aug 26 15:01:30 2008 -0500
15264
15265 FSL DDR: Add DDR1 DIMM paramter support
15266
15267 Compute DIMM parameters based upon the SPD information in spd.
15268
15269 Signed-off-by: James Yang <James.Yang@freescale.com>
15270 Signed-off-by: Jon Loeliger <jdl@freescale.com>
15271 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15272
15273commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
15274Author: Kumar Gala <galak@kernel.crashing.org>
15275Date: Tue Aug 26 15:01:29 2008 -0500
15276
15277 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
15278
15279 The main purpose of this rewrite it to be able to share the same
15280 initialization code on all FSL PowerPC products that have DDR
15281 controllers. (83xx, 85xx, 86xx).
15282
15283 The code is broken up into the following steps:
15284 GET_SPD
15285 COMPUTE_DIMM_PARMS
15286 COMPUTE_COMMON_PARMS
15287 GATHER_OPTS
15288 ASSIGN_ADDRESSES
15289 COMPUTE_REGS
15290 PROGRAM_REGS
15291
15292 This allows us to share more code an easily allow for board specific code
15293 overrides.
15294
15295 Additionally this code base adds support for >4G of DDR and provides a
15296 foundation for supporting interleaving on processors with more than one
15297 controller.
15298
15299 Signed-off-by: James Yang <James.Yang@freescale.com>
15300 Signed-off-by: Jon Loeliger <jdl@freescale.com>
15301 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
15302 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
15303 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15304
15305commit f784e32b4bce0013983506b11af4b85b8ca3d36e
15306Author: Kumar Gala <galak@kernel.crashing.org>
15307Date: Tue Aug 26 15:01:28 2008 -0500
15308
15309 FSL DDR: Provide a generic set_ddr_laws()
15310
15311 Provide a helper function that will setup the last available
15312 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code.
15313
15314 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15315
15316commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
15317Author: James Yang <James.Yang@freescale.com>
15318Date: Tue Aug 26 15:01:27 2008 -0500
15319
15320 Add proper SPD definitions for DDR1/2/3
15321
15322 Also adds helper functions for DDR1/2 to verify the checksum.
15323
15324 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15325
15326commit 285db74716c724ae8a0ff177878fd09a74428c7b
15327Author: Wolfgang Denk <wd@denx.de>
15328Date: Wed Aug 27 01:02:48 2008 +0200
15329
15330 Update CHANGELOG
15331
15332 Signed-off-by: Wolfgang Denk <wd@denx.de>
15333
285db747
WD
15334commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
15335Author: Heiko Schocher <hs@denx.de>
15336Date: Tue Aug 19 10:08:49 2008 +0200
15337
15338 Add support for muas3001 board (MPC8270)
15339
15340 Signed-off-by: Heiko Schocher <hs@denx.de>
15341
15342commit 322098bff32410d2a00031649b47c4ec90a66d9a
15343Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
15344Date: Tue Aug 19 08:31:18 2008 +0530
15345
15346 common/cmd_load.c cleanup - remove unused variables
15347
15348 - Remove unused global variable os_data_count.
15349 - Remove unused variable z.
15350
15351 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
15352
15353commit 306620b762a4f9fa6678568ad2e8772dec145208
15354Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
15355Date: Mon Aug 18 13:35:27 2008 +0200
15356
15357 remove MVS1 board
15358
15359 MVS1 board has reached end-of-life and can be removed completely.
15360
15361 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
15362
15363commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
15364Author: Kumar Gala <galak@kernel.crashing.org>
15365Date: Fri Aug 15 08:24:45 2008 -0500
15366
15367 bootm: refactor do_reset and os boot function args
15368
15369 There is no need for each OS specific function to call do_reset() we
15370 can just do it once in bootm. This means its feasible on an error for
15371 the OS boot function to return.
15372
15373 Also, remove passing in cmd_tbl_t as its not needed by the OS boot
15374 functions. flag isn't currently used but might be in the future so
15375 we left it alone.
15376
15377 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15378
15379commit 40afac22a9c602e55c501c800f1c064324711b56
15380Author: Kumar Gala <galak@kernel.crashing.org>
15381Date: Fri Aug 15 08:24:44 2008 -0500
15382
15383 fdt: Added resize command
15384
15385 Resize the fdt to size + padding to 4k boundary
15386
15387 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15388
15389commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
15390Author: Kumar Gala <galak@kernel.crashing.org>
15391Date: Fri Aug 15 08:24:43 2008 -0500
15392
15393 fdt: refactor initrd related code
15394
15395 Created a new fdt_initrd() to deal with setting the initrd properties
15396 in the device tree and fixing up the mem reserve. We can use this
15397 both in the choosen node handling and lets us remove some duplicated
15398 code when we fixup the initrd info in bootm on PPC.
15399
15400 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15401
15402commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
15403Author: Kumar Gala <galak@kernel.crashing.org>
15404Date: Fri Aug 15 08:24:42 2008 -0500
15405
15406 fdt: refactor fdt resize code
15407
15408 Move the fdt resizing code out of ppc specific boot code and into
15409 common fdt support code.
15410
15411 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15412
15413commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
15414Author: Kumar Gala <galak@kernel.crashing.org>
15415Date: Fri Aug 15 08:24:41 2008 -0500
15416
15417 bootm: refactor image detection and os load steps
15418
15419 Created a bootm_start() that handles the parsing and detection of all
15420 the images that will be used by the bootm command (OS, ramdisk, fdt).
15421 As part of this we now tract all the relevant image offsets in the
15422 bootm_headers_t struct. This will allow us to have all the needed
15423 state for future sub-commands and lets us reduce a bit of arch
15424 specific code on SPARC.
15425
15426 Created a bootm_load_os() that deals with decompression and loading
15427 the OS image.
15428
15429 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15430
15431commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
15432Author: Kumar Gala <galak@kernel.crashing.org>
15433Date: Fri Aug 15 08:24:40 2008 -0500
15434
15435 bootm: move lmb into the bootm_headers_t structure
15436
15437 To allow for persistent state between future bootm subcommands we
15438 need the lmb to exist in a global state.
15439 Moving it into the bootm_headers_t allows us to do that.
15440
15441 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15442
15443commit 54f9c86691309b2f919f567f9255b8bcad2c7651
15444Author: Kumar Gala <galak@kernel.crashing.org>
15445Date: Fri Aug 15 08:24:39 2008 -0500
15446
15447 bootm: Set working fdt address as part of the bootm flow
15448
15449 Set the fdt working address so "fdt FOO" commands can be used as part
15450 of the bootm flow. Also set an the environment variable "fdtaddr"
15451 with the value.
15452
15453 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15454
15455commit 06a09918f3903450313e2047a9cc258bf5872f46
15456Author: Kumar Gala <galak@kernel.crashing.org>
15457Date: Fri Aug 15 08:24:38 2008 -0500
15458
15459 bootm: refactor fdt locating and relocation code
15460
15461 Move the code that handles finding a device tree blob and relocating
15462 it (if needed) into common code so all arch's have access to it.
15463
15464 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15465
15466commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
15467Author: Kumar Gala <galak@kernel.crashing.org>
15468Date: Fri Aug 15 08:24:37 2008 -0500
15469
15470 bootm: refactor ramdisk locating code
15471
15472 Move determing if we have a ramdisk and where its located into the
15473 common code. Keep track of the ramdisk start and end in the
15474 bootm_headers_t image struct.
15475
15476 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15477
15478commit c160a9544743e80e8889edb2275538e7764ce334
15479Author: Kumar Gala <galak@kernel.crashing.org>
15480Date: Fri Aug 15 08:24:36 2008 -0500
15481
15482 bootm: refactor entry point code
15483
15484 Move entry point code out of each arch and into common code.
15485 Keep the entry point in the bootm_headers_t images struct.
15486
15487 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15488
15489commit 20220d22b9f41446288588cd2e457e0077a18bed
15490Author: Randy Vinson <rvinson@mvista.com>
15491Date: Wed Aug 13 11:44:57 2008 -0700
15492
15493 mpc7448hpc2: Fix PCI I/O space mapping.
15494
15495 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
15496 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
15497 space such that 0xFA000000 in the processor's address space maps to 0
15498 on the PCI I/O bus.
15499
15500 Signed-off-by Randy Vinson <rvinson@mvista.com>
15501 Acked-by: Roy Zang <tie-fei.zang@freescale.com>
15502
15503commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
15504Author: Guennadi Liakhovetski <lg@denx.de>
15505Date: Wed Aug 13 18:10:26 2008 +0200
15506
15507 i.MX31: Specify maintainers for i.MX31-based boards
15508
15509 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15510 Signed-off-by: Wolfgang Denk <wd@denx.de>
15511
15512commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
15513Author: Wolfgang Denk <wd@denx.de>
15514Date: Tue Aug 26 15:01:28 2008 +0200
15515
15516 ADS5121: adjust image addresses in RAM and flash
15517
15518 Use the same mapping in flash as used by Linux
15519
15520 Signed-off-by: Wolfgang Denk <wd@denx.de>
15521
15522commit 19f101412c16edee9fd55db4039e1d68a833b28b
15523Author: Wolfgang Denk <wd@denx.de>
15524Date: Tue Aug 26 13:14:34 2008 +0200
15525
15526 cmd_mem.c: Fix help message alignment
15527
15528 Bug was introced by "Big white-space cleanup" (53677ef1)
15529
15530 Signed-off-by: Wolfgang Denk <wd@denx.de>
15531
15532commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
15533Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
15534Date: Wed Aug 20 11:11:52 2008 +0200
15535
15536 change mvBL-M7 default env and move to vendor subdir
15537
15538 fix mvBL-M7 config and move to matrix_vision subdir
15539
15540 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
15541 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15542
15543commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
15544Author: Nick Spence <nick.spence@freescale.com>
15545Date: Fri Aug 22 23:52:40 2008 -0700
15546
15547 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
15548
15549 This patch adds elements to the 83xx sysconf structure and #define values that are used
15550 by mpc83xx family devices.
15551
15552 Signed-off-by: Nick Spence <nick.spence@freescale.com>
15553 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15554
15555commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
15556Author: Ira W. Snyder <iws@ovro.caltech.edu>
15557Date: Fri Aug 22 11:00:15 2008 -0700
15558
15559 MPC8349EMDS: Add PCI Agent (PCISLAVE) support
15560
15561 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
15562 PCI card rather than a host computer.
15563
15564 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
15565 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15566
15567commit 4ff9aea9d6b5602683a920951ef896996438af62
15568Author: Ira W. Snyder <iws@ovro.caltech.edu>
15569Date: Fri Aug 22 11:00:14 2008 -0700
15570
15571 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
15572
15573 This adds a helper function to unlock the PCI configuration bit, so that
15574 any extra PCI setup (such as outbound windows, etc.) can be done after
15575 using the 83XX_GENERIC_PCI code to set up the PCI bus.
15576
15577 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
15578 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15579
15580commit 162338e1fcde231ca4d562e5ebd7859456731691
15581Author: Ira W. Snyder <iws@ovro.caltech.edu>
15582Date: Fri Aug 22 11:00:13 2008 -0700
15583
15584 MPC8349EMDS: use 83XX_GENERIC_PCI setup code
15585
15586 Change the MPC8349EMDS board to use the generic PCI initialization code
15587 for the mpc83xx cpu.
15588
15589 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
15590 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15591
15592commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
15593Author: Kim Phillips <kim.phillips@freescale.com>
15594Date: Mon Aug 25 14:53:09 2008 -0500
15595
15596 fix out of tree building
15597
15598 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15599
15600commit a49d10cf027d059ee15c262010a05cdaec0961e1
15601Author: Wolfgang Denk <wd@denx.de>
15602Date: Mon Aug 25 23:45:41 2008 +0200
15603
15604 Minor coding style cleanup, updte CHANGELOG
15605
15606 Signed-off-by: Wolfgang Denk <wd@denx.de>
15607
a49d10cf
WD
15608commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
15609Author: Stefan Roese <sr@denx.de>
15610Date: Wed Aug 20 20:29:38 2008 +0200
15611
15612 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
15613
15614 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
15615 to combine both config options into one line. This even allows defining
15616 both options and not generating the target object twice.
15617
15618 Signed-off-by: Stefan Roese <sr@denx.de>
15619
15620commit 079edb913dbae147b50a488cf02e03f473fc5f28
15621Author: Jens Gehrlein <sew_s@tqs.de>
15622Date: Fri Jul 4 16:50:05 2008 +0200
15623
15624 MX31: fix bit masks in function mx31_decode_pll()
15625
15626 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
15627
15628 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
15629
15630commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
15631Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
15632Date: Mon Aug 25 11:11:34 2008 +0200
15633
15634 Correct ARM Versatile Timer Initialization
15635
15636 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
15637 -- Timer Value Register @ TIMER Base + 4 is Read-only.
15638 -- Prescale Value (Bits 3-2 of TIMER Control register)
15639 can only be one of 00,01,10. 11 is undefined.
15640 -- CFG_HZ for Versatile board is set to
15641 #define CFG_HZ (1000000 / 256)
15642 So Prescale bits is set to indicate
15643 - 8 Stages of Prescale, Clock divided by 256
15644 - The Timer Control Register has one Undefined/Shouldn't Use Bit
15645 So we should do read/modify/write Operation
15646
15647 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
15648
15649commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
15650Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
15651Date: Mon Aug 25 11:30:29 2008 +0200
15652
15653 Add ARM AMBA PL031 RTC Support
15654
15655 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
15656
15657commit e39411674669cc880e1ec4a8ca4794fb15c33a45
15658Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15659Date: Tue Aug 19 16:21:03 2008 -0400
15660
15661 ARM DaVinci: Removed redundant NAND initialization code.
15662
15663 ARM DaVinci: Removed redundant NAND initialization code.
15664
15665 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15666
15667commit b3fb663b20d995ca41327db877ddb168279b3f62
15668Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15669Date: Tue Aug 19 16:21:00 2008 -0400
15670
15671 ARM DaVinci: Fix compilation error with new MTD code.
15672
15673 ARM DaVinci: Fix compilation error with new MTD code.
15674
15675 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
15676
15677commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
15678Author: Gerald Van Baren <vanbaren@cideas.com>
15679Date: Fri Aug 22 14:37:05 2008 -0400
15680
15681 Add note on dereferencing /aliases pointers
15682
15683 Replace the "must quote special characters" note with a hint on
15684 how to dereference /aliases pointers by omitting the leading "/".
15685 This feature was introduced by Kumar Gala as a libfdt enhancement
15686 in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
15687
15688 Example:
15689
15690 => fdt print /aliases
15691 aliases {
15692 ethernet0 = "/qe@e0100000/ucc@2000";
15693 ethernet1 = "/qe@e0100000/ucc@3000";
15694 serial0 = "/soc8360@e0000000/serial@4500";
15695 serial1 = "/soc8360@e0000000/serial@4600";
15696 pci0 = "/pci@e0008500";
15697 };
15698 => fdt print ethernet0
15699 ucc@2000 {
15700 device_type = "network";
15701 compatible = "ucc_geth";
15702 cell-index = <0x1>;
15703 reg = <0x2000 0x200>;
15704 interrupts = <0x20>;
15705 interrupt-parent = <0x2>;
15706 local-mac-address = [00 00 00 00 00 00];
15707 rx-clock-name = "none";
15708 tx-clock-name = "clk9";
15709 phy-handle = <0x3>;
15710 phy-connection-type = "rgmii-id";
15711 pio-handle = <0x4>;
15712 };
15713
15714 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
15715
15716commit feeca3f578b7f53c032ba203698751c982f8bf5a
15717Author: Kumar Gala <galak@kernel.crashing.org>
15718Date: Thu Aug 14 08:28:19 2008 -0500
15719
15720 libfdt: Add support for using aliases in fdt_path_offset()
15721
15722 If the path doesn't start with '/' check to see if it matches some alias
15723 under "/aliases" and substitute the matching alias value in the path
15724 and retry the lookup.
15725
15726 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15727 Acked-by: David Gibson <david@gibson.dropbear.id.au>
15728 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
15729
15730commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
15731Author: David Gibson <david@gibson.dropbear.id.au>
15732Date: Wed Aug 6 14:50:49 2008 +1000
15733
15734 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
15735
15736 As well as fdt_subnode_offset(), libfdt includes an
15737 fdt_subnode_offset_namelen() function that takes the subnode name to
15738 look up not as a NUL-terminated string, but as a string with an
15739 explicit length. This can be useful when the caller has the name as
15740 part of a longer string, such as a full path.
15741
15742 However, we don't have corresponding 'namelen' versions for
15743 fdt_get_property() and fdt_getprop(). There are less obvious use
15744 cases for these variants on property names, but there are
15745 circumstances where they can be useful e.g. looking up property names
15746 which need to be parsed from a longer string buffer such as user input
15747 or a configuration file, or looking up an alias in a path with
15748 IEEE1275 style aliases.
15749
15750 So, since it's very easy to implement such variants, this patch does
15751 so. The original NUL-terminated variants are, of course, implemented
15752 in terms of the namelen versions.
15753
15754 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
15755
15756commit f171746f701ea58bf6a53e835b53d2aaebee0d81
15757Author: David Gibson <david@gibson.dropbear.id.au>
15758Date: Tue Jul 29 14:51:22 2008 +1000
15759
15760 libfdt: Forgot one function when cleaning the namespace
15761
15762 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
15763 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
15764 chance of collisions with things from whatever package libfdt is
15765 embedded in, pulled into the libfdt build via that environment's
15766 libfdt_env.h.
15767
15768 Except... I missed one. This patch applies the same treatment to
15769 _stringlist_contains(). While we're at it, also make it static since
15770 it's only used in the same file.
15771
15772 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
15773
15774commit 46390da15411351fc3b498bd8c1615f78fe80df0
15775Author: Wolfram Sang <w.sang@pengutronix.de>
15776Date: Wed Jul 9 11:22:44 2008 +0200
15777
15778 libfdt: Improve documentation in libfdt.h
15779
15780 Fix a few typos and mistakes.
15781
15782 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
15783 Acked-by: David Gibson <david@gibson.dropbear.id.au>
15784
15785commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
15786Author: David Gibson <david@gibson.dropbear.id.au>
15787Date: Wed Jul 9 14:10:24 2008 +1000
15788
15789 libfdt: Increase namespace-pollution paranoia
15790
15791 libfdt is supposed to easy to embed in projects all and sundry.
15792 Often, it won't be practical to separate the embedded libfdt's
15793 namespace from that of the surrounding project. Which means there can
15794 be namespace conflicts between even libfdt's internal/static functions
15795 and functions or macros coming from the surrounding project's headers
15796 via libfdt_env.h.
15797
15798 This patch, therefore, renames a bunch of libfdt internal functions
15799 and macros and makes a few other chances to reduce the chances of
15800 namespace collisions with embedding projects. Specifically:
15801 - Internal functions (even static ones) are now named _fdt_*()
15802
15803 - The type and (static) global for the error table in
15804 fdt_strerror() gain an fdt_ prefix
15805
15806 - The unused macro PALIGN is removed
15807
15808 - The memeq and streq macros are removed and open-coded in the
15809 users (they were only used once each)
15810
15811 - Other macros gain an FDT_ prefix
15812
15813 - To save some of the bulk from the previous change, an
15814 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
15815 FDT_ALIGN(x, FDT_TAGSIZE)
15816
15817 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
15818
15819commit c66830263af19831f2b7db307f79d1943febf7f9
15820Author: David Gibson <david@gibson.dropbear.id.au>
15821Date: Mon Jul 7 10:14:15 2008 +1000
15822
15823 dtc: Enable and fix -Wcast-qual warnings
15824
15825 Enabling -Wcast-qual warnings in dtc shows up a number of places where
15826 we are incorrectly discarding a const qualification. There are also
15827 some places where we are intentionally discarding the 'const', and we
15828 need an ugly cast through uintptr_t to suppress the warning. However,
15829 most of these are pretty well isolated with the *_w() functions. So
15830 in the interests of maximum safety with const qualifications, this
15831 patch enables the warnings and fixes the existing complaints.
15832
15833 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
15834 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
15835
15836commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
15837Author: David Gibson <david@gibson.dropbear.id.au>
15838Date: Mon Jul 7 10:10:48 2008 +1000
15839
15840 dtc: Enable and fix -Wpointer-arith warnings
15841
15842 This patch turns on the -Wpointer-arith option in the dtc Makefile,
15843 and fixes the resulting warnings due to using (void *) in pointer
15844 arithmetic. While convenient, pointer arithmetic on void * is not
15845 portable, so it's better that we avoid it, particularly in libfdt.
15846
15847 Also add necessary definition of uintptr_t needed by David Gibson's
15848 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
15849 comes from stdint.h, which u-boot doesn't have). -- gvb
15850
15851 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
15852 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
15853
15854commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
15855Author: Tirumala R Marri <tmarri@amcc.com>
15856Date: Thu Aug 21 21:54:53 2008 -0700
15857
15858 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
15859
15860 During recent PCI-E tests it has been found that current
15861 driverl level and de-emphasis values are not set correctly.
15862 After sweeping throgh all de-ephasis values, it was found that
15863 0x130 is a right value. Where 0x13 is driver level and 0 is
15864 de-emphasis.
15865
15866 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
15867 Signed-off-by: Stefan Roese <sr@denx.de>
15868
15869commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
15870Author: Remy Bohmer <linux@bohmer.net>
15871Date: Wed Aug 20 20:46:56 2008 +0200
15872
15873 Make the YAFFS filesystem work
15874
15875 Recently the YAFFS filesystem support has been added to U-boot.
15876 However, just enabling CONFIG_YAFFS2 is not enough to get it working.
15877
15878 ymount will generate an exception (when dereferencing mtd->readoob()), because
15879 the genericDevice is a null pointer. Further, a lot of logging is produced
15880 while using YAFFS fs, so logging should also be disabled.
15881 Both issues are solved by this patch.
15882
15883 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
15884 in U-boot, as well as in Linux.
15885
15886 Tested on a Atmel AT91SAM9261EK board.
15887
15888 Signed-off-by: Remy Bohmer <linux@bohmer.net>
15889 Acked-by: William Juul <william.juul@tandberg.com>
15890 Signed-off-by: Scott Wood <scottwood@freescale.com>
15891
15892commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
15893Author: Kyungmin Park <kmpark@infradead.org>
15894Date: Tue Aug 19 08:42:53 2008 +0900
15895
15896 Fix OneNAND read_oob/write_oob functions compatability
15897
15898 Also sync with kernel OneNAND codes
15899
15900 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
15901 Signed-off-by: Scott Wood <scottwood@freescale.com>
15902
15903commit 8d765456c1d33f2010d2717ee58de7647fdc6346
15904Author: Scott Wood <scottwood@freescale.com>
15905Date: Mon Aug 18 17:11:20 2008 -0500
15906
15907 NAND: Remove delay from nand_boot_fsl_elbc.c.
15908
15909 It was for debugging purposes, and shouldn't have been left in.
15910
15911 Signed-off-by: Scott Wood <scottwood@freescale.com>
15912
15913commit f556483734126793522fb7a8cf36af90da78f084
15914Author: Stefan Roese <sr@denx.de>
15915Date: Thu Aug 21 11:05:03 2008 +0200
15916
15917 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
15918
15919 This patch fixes some minor issues introduced with the patch:
15920 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
15921
15922 - Rework memory-queue and PLB arbiter optimization code, that the
15923 local variable is not needed anymore. This removes one #ifdef.
15924 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
15925 of XXX+ 0x01). This was not introduced by Prodyut, just a
15926 copy-paste problem.
15927
15928 Signed-off-by: Stefan Roese <sr@denx.de>
15929
15930commit 079589bcfb24ba11068460276a3cc9549ab5346f
15931Author: Prodyut Hazarika <phazarika@amcc.com>
15932Date: Wed Aug 20 09:38:51 2008 -0700
15933
15934 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
15935 PPC405EX and PPC460EX/GT/SX
15936
15937 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
15938 processors
15939 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
15940 across processors (405 and 440/460)
15941 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
15942 processors
15943 - Add register bit definitions for Memory Queue Configuration registers
15944
15945 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
15946 Signed-off-by: Stefan Roese <sr@denx.de>
15947
15948commit ba37aa03287c5483c61c0a3e320c8888bee0143a
15949Author: Kumar Gala <galak@kernel.crashing.org>
15950Date: Tue Aug 19 15:41:18 2008 -0500
15951
15952 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
15953
15954 Move to using the environment variables 'ethaddr', 'eth1addr', etc..
15955 instead of bd->bi_enetaddr, bi_enet1addr, etc.
15956
15957 This makes the code a bit more flexible to the number of ethernet
15958 interfaces.
15959
15960 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15961
15962commit 4cacf7c64609839f809e2f9c45873f1d65861703
15963Author: Stefan Roese <sr@denx.de>
15964Date: Tue Aug 19 14:57:55 2008 +0200
15965
15966 hush: Fix printf debug macro in hush.c so that it usable in U-Boot
15967
15968 This patch changes the debug_printf() marco for U-Boot in hush.c and
15969 moves the definition of DEBUG_SHELL to a place that is actually compiled
15970 under U-Boot.
15971
15972 Signed-off-by: Stefan Roese <sr@denx.de>
15973
15974commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
15975Author: Heiko Schocher <hs@denx.de>
15976Date: Tue Aug 19 09:57:41 2008 +0200
15977
15978 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
15979
15980 Commit 00b1883a4cac59d97cd297b1a3a398db85982865
15981 missed a few boards:
15982 include/configs/M5253DEMO.h
15983 include/configs/ml507.h
15984 include/configs/redwood.h
15985
15986 This patch fixes this.
15987
15988 Signed-off-by: Heiko Schocher <hs@denx.de>
15989
15990commit 0768b7a872964085eece8d5e9fec9175e9deb161
15991Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
15992Date: Mon Aug 18 13:41:27 2008 +0200
15993
15994 Consolidate strmhz() implementation
15995
15996 ARM, i386, m68k and ppc all have identical implementations of strmhz().
15997 Other architectures don't provide this function at all.
15998
15999 This patch moves strmhz() into lib_generic, reducing code duplication
16000 and providing a more unified API across architectures.
16001
16002 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16003
16004commit a928d0df211f1d829308d335d19be3ca42558dfc
16005Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16006Date: Mon Aug 18 12:02:51 2008 +0200
16007
16008 fix mvbc_p board build warnings
16009
16010 fix build warnings @ mvBC-P board by using correct types, i.e. change
16011 out_be32 to out_be16 and out_8 accordingly.
16012
16013 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16014
16015commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
16016Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16017Date: Sat Aug 16 18:54:27 2008 +0200
16018
16019 Makefile: fix posix support on find
16020
16021 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16022
16023commit bef92e215d945cc574399c1a1b00a3a76d35aa03
16024Author: Axel Beierlein <belatronix@web.de>
16025Date: Sat Aug 16 00:30:48 2008 +0200
16026
16027 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
16028
16029 Tested with TQM5200S on STK52XX.200 Board
16030
16031 Signed-off-by: Axel Beierlein <belatronix@web.de>
16032
16033commit 0800707b6d5041a840a65d556032c15c584b55f8
16034Author: Peter Tyser <ptyser@xes-inc.com>
16035Date: Fri Aug 15 14:36:32 2008 -0500
16036
16037 mod_i2c_mem() bugfix
16038
16039 The last used chip, address, and address length were not being
16040 stored for the imm and imn commands.
16041
16042 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
16043
16044commit 4afbef967275b2f636abae86f91b81becee7ad03
16045Author: Steven A. Falco <sfalco@harris.com>
16046Date: Fri Aug 15 15:37:31 2008 -0400
16047
16048 Fix typo in spelling of ATAPI.
16049
16050 Correct a small spelling mistake.
16051
16052 Signed-off-by: Steven A. Falco <sfalco@harris.com>
16053
16054commit 36c2d3062ecc6ab85f8e237180eb134464c48418
16055Author: Steven A. Falco <sfalco@harris.com>
16056Date: Fri Aug 15 15:34:10 2008 -0400
16057
16058 Add a hook to allow board-specific PIO mode setting.
16059
16060 This patch adds a hook whereby a board-specific routine can be called to
16061 configure hardware for a PIO mode. The prototype for the board-specific
16062 routine is:
16063
16064 int inline ide_set_piomode(int pio_mode)
16065
16066 ide_set_piomode should be prepared to configure hardware for a pio_mode
16067 between 0 and 6, inclusive. It should return 0 on success or 1 on failure.
16068
16069 Signed-off-by: Steven A. Falco <sfalco@harris.com>
16070
16071commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
16072Author: Steven A. Falco <sfalco@harris.com>
16073Date: Fri Aug 15 15:29:12 2008 -0400
16074
16075 Replace enums in ata.h with an include of libata.h
16076
16077 This patch removes some enums from ata.h and replaces them with an
16078 include of libata.h. This way, we eliminate duplicated code, and
16079 prevent errors whereby the different versions could be out of sync.
16080
16081 Signed-off-by: Steven A. Falco <sfalco@harris.com>
16082
16083commit 0de0afbca865ecf482b4d2b635236746def8518f
16084Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16085Date: Fri Aug 15 18:32:41 2008 +0200
16086
16087 coldfire: fix CFI drivers activation with new macro
16088
16089 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
16090
16091 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16092
16093commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
16094Author: Kumar Gala <galak@kernel.crashing.org>
16095Date: Fri Aug 15 08:24:35 2008 -0500
16096
16097 fdt: fdt addr w/o any args reports back the current working address
16098
16099 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16100
16101commit f953d99fd528a496b400a706b511eaf8e3ea66af
16102Author: Kumar Gala <galak@kernel.crashing.org>
16103Date: Fri Aug 15 08:24:34 2008 -0500
16104
16105 fdt: added the ability to set initrd start/end via chosen command
16106
16107 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16108
16109commit ffa4bafacaef67058463b3d7d0099ced57569dd2
16110Author: Kumar Gala <galak@kernel.crashing.org>
16111Date: Fri Aug 15 08:24:33 2008 -0500
16112
16113 Add command to enable/disable interrupts
16114
16115 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16116
16117commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
16118Author: Nick Spence <nick.spence@freescale.com>
16119Date: Tue Aug 19 22:21:16 2008 -0700
16120
16121 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
16122
16123 This patch fixes a missing vendor code in the flash_real_protect() function.
16124
16125 Signed-off-by: Nick Spence <nick.spence@freescale.com>
16126 Signed-off-by: Stefan Roese <sr@denx.de>
16127
16128commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
16129Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16130Date: Tue Aug 19 16:53:39 2008 +0000
16131
16132 CFI: Fix AMD Legacy sector protect
16133
16134 New implement sector lock and unlock or softlock commands
16135 do not exist in AMD legacy flash. Thus, causing issue
16136 when erasing AMD legacy flash (such as lv040)
16137
16138 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16139 Signed-off-by: Stefan Roese <sr@denx.de>
16140
16141commit 492671404140f09d5b21b3d2ce4e362c0692c069
16142Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16143Date: Wed Aug 20 09:40:16 2008 +0200
16144
16145 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
16146
16147 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
16148
16149 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16150
16151commit 33eac2b3d946fc998a09245dfe54d017079b9056
16152Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16153Date: Wed Aug 20 09:28:36 2008 +0200
16154
16155 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
16156
16157 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16158
16159commit 25da0b84195fdda89a943b2d25757db5afeef5b8
16160Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16161Date: Wed Aug 20 09:27:37 2008 +0200
16162
16163 favr-32-ezkit: Fix printf format warnings
16164
16165 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16166
16167commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
16168Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16169Date: Fri Aug 15 12:04:25 2008 +0200
16170
16171 MAINTAINERS: Sort avr32 section alphabetically
16172
16173 The rest of the MAINTAINERS file appears to be sorted
16174 almost-alphabetically, but entries for the newly added AVR32 boards were
16175 added somewhat randomly. This patch sorts the list alphabetically again.
16176
16177 Also update my e-mail address. The old one still works, but it may not
16178 work forever.
16179
16180 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16181
16182commit 13b50fe3bc065c48911fa373231421280855a9d6
16183Author: Mark Jackson <mpfj@mimc.co.uk>
16184Date: Wed Jul 30 13:07:27 2008 +0100
16185
16186 avr32: Add MIMC200 board
16187
16188 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
16189 8MByte FLASH and 128KByte FRAM.
16190
16191 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
16192 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
16193
16194commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
16195Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
16196Date: Wed Jul 9 21:07:34 2008 +0900
16197
16198 rtl8169: add support for RTL8110SCL
16199
16200 This patch fixes a problem that RTL8110SCL started transfer
16201 with an incorrect memory address.
16202
16203 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
16204 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16205
16206commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
16207Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16208Date: Wed Jun 25 15:48:52 2008 -0500
16209
16210 Fix dm9000 receive status and len little endian issue
16211
16212 The received status and len was in little endian
16213 format and caused the ethernet unable to proceed
16214 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
16215
16216 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16217 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16218
16219commit fcd69a1a57fb2af4d26201422095a4be9f36963e
16220Author: Kumar Gala <galak@kernel.crashing.org>
16221Date: Fri Aug 15 08:24:32 2008 -0500
16222
16223 Clean up usage of icache_disable/dcache_disable
16224
16225 There is no point in disabling the icache on 7xx/74xx/86xx parts and not
16226 also flushing the icache. All callers of invalidate_l1_instruction_cache()
16227 call icache_disable() right after. Make it so icache_disable() calls
16228 invalidate_l1_instruction_cache() for us.
16229
16230 Also, dcache_disable() already calls dcache_flush() so there is no point
16231 in the explicit calls of dcache_flush().
16232
16233 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16234
16235commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
16236Author: Kumar Gala <galak@kernel.crashing.org>
16237Date: Fri Aug 15 08:24:31 2008 -0500
16238
16239 Update linux bootm to support ePAPR client interface
16240
16241 The ePAPR spec has some subtle differences from the current device
16242 tree based boot interface to the powerpc linux kernel. The powerpc
16243 linux kernel currently ignores the differences that ePAPR specifies.
16244
16245 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16246
16247commit b734e5556a239b3be5f9693b2f4b4b739683ec16
16248Author: Wolfgang Denk <wd@denx.de>
16249Date: Mon Aug 18 23:50:20 2008 +0200
16250
16251 Minor code cleanup: keep lists sorted.
16252
16253 Signed-off-by: Wolfgang Denk <wd@denx.de>
16254
16255commit d0039d4ed275e6ca09fb417895024ad02be118c4
16256Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
16257Date: Wed Jul 23 19:10:14 2008 +0200
16258
16259 Add support for ADT7460 I2C monitor chip
16260
16261 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
16262
16263commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
16264Author: Michal Simek <monstr@monstr.eu>
16265Date: Mon Jul 14 19:45:45 2008 +0200
16266
16267 video: Clean drivers/video/Makefile
16268
16269 Signed-off-by: Michal Simek <monstr@monstr.eu>
16270
16271commit 871c18dd301752270e1f74328c846c3104be1e2e
16272Author: Michal Simek <monstr@monstr.eu>
16273Date: Mon Jul 14 19:45:37 2008 +0200
16274
16275 rtc: Clean drivers/rtc/Makefile
16276
16277 Signed-off-by: Michal Simek <monstr@monstr.eu>
16278
16279commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
16280Author: Michal Simek <monstr@monstr.eu>
16281Date: Mon Jul 14 19:45:35 2008 +0200
16282
16283 i2c: Clean drivers/i2c/ Makefile
16284
16285 Signed-off-by: Michal Simek <monstr@monstr.eu>
16286
16287commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
16288Author: Harald Welte <laforge@openmoko.org>
16289Date: Wed Jul 9 22:30:30 2008 +0800
16290
16291 Add 'license' command to U-Boot command line
16292
16293 The 'license' command includes the U-Boot license (GPLv2) into the
16294 actual bootloader binary. The license text can be shown interactively
16295 at the U-Boot commandline.
16296
16297 For products where the commandline can actually be accessed by the
16298 end user, this helps to prevent inadvertent GPL violations, since the
16299 GPLv2 license text can no longer be 'forgotten' to be included into
16300 the product.
16301
16302 The 'license' command can be enabled by CONFIG_CMD_LICENSE.
16303
16304 Signed-off-by: Harald Welte <laforge@openmoko.org>
16305
16306commit fe2ce5500ebf43d79d227190bd2370232d5b113d
16307Author: Harald Welte <laforge@gnumonks.org>
16308Date: Sun Jul 6 15:56:38 2008 +0800
16309
16310 add 'unzip' command to u-boot commandline
16311
16312 [PATCH] add new 'unzip' command to u-boot commandline
16313
16314 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
16315 memory to memory, and option CONFIG_CMD_UNZIP to enable it
16316
16317 Signed-off-by: Werner Almesberger <werner@openmoko.org>
16318 Signed-off-by: Harald Welte <laforge@openmoko.org>
16319
16320commit 07efc9e321619c3dec213310c32e011aa6f02783
16321Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16322Date: Wed Aug 6 19:37:17 2008 -0500
16323
16324 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
16325
16326 The CFG_ENV_SIZE is not suitable used for SPI flash erase
16327 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
16328 Add condition check if CFG_ENV_SIZE is larger than
16329 CFG_ENV_SECT_SIZE, calculate the right number of sectors for
16330 erasing.
16331
16332 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16333
16334commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
16335Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16336Date: Mon Aug 11 15:54:25 2008 +0000
16337
16338 ColdFire: Multiple fixes for M5282EVB
16339
16340 Incorrect CFG_HZ value, change 1000000 to 1000.
16341 Rename #waring to #warning. RAMBAR1 uses twice
16342 in start.S, rename the later to FLASHBAR. Insert
16343 nop for DRAM setup. And, env_offset in linker file.
16344
16345 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16346
16347commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
16348Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16349Date: Mon Aug 11 15:26:43 2008 +0000
16350
16351 ColdFire: Move m5282evb from board to board/freescale
16352
16353 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16354
16355commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
16356Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16357Date: Mon Aug 11 15:25:07 2008 +0000
16358
16359 ColdFire: Move m5272c3 from board to board/freescale
16360
16361 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16362
16363commit 659e9bad629a480f606b286d5703aef7159edf98
16364Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16365Date: Mon Aug 11 15:23:16 2008 +0000
16366
16367 ColdFire: Move m5271evb from board to board/freescale
16368
16369 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16370
16371commit 05316f8ece8206339a208ec052f039cd0f7ca922
16372Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16373Date: Mon Aug 11 13:41:49 2008 +0000
16374
16375 ColdFire: Add M54451EVB platform support for MCF5445x
16376
16377 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16378
16379commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
16380Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16381Date: Wed Aug 6 19:14:08 2008 -0500
16382
16383 ColdFire: Add Serial Flash support for M54455EVB
16384
16385 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16386
16387commit 9f751551456828b2d0ff417f10959fb0c7110bd0
16388Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16389Date: Wed Jul 23 20:38:53 2008 -0500
16390
16391 ColdFire: Implement SBF feature for M5445EVB
16392
16393 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16394
16395commit a7323bba229203aae2604afde131ab47bad4eadc
16396Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16397Date: Wed Jul 23 17:53:36 2008 -0500
16398
16399 ColdFire: Add SSPI feature for MCF5445x
16400
16401 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16402
16403commit b2d022d1ac3f59bffa9cec249341e77aea168abc
16404Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16405Date: Wed Jul 23 17:37:10 2008 -0500
16406
16407 ColdFire: Use CFI Flash driver for M54455EVB
16408
16409 Remove non-common flash driver in
16410 board/freescale/m54455evb/flash.c. The non-cfi flash will
16411 use CONFIG_FLASH_CFI_LEGACY to configure the flash
16412 attribute.
16413
16414 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16415
16416commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
16417Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16418Date: Wed Jul 23 17:11:47 2008 -0500
16419
16420 ColdFire: Add M5253DEMO platform support for MCF5253
16421
16422 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16423
16424commit 80ba61fd82569af40e04d4a089257b81881884f2
16425Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16426Date: Wed Aug 6 14:17:09 2008 -0500
16427
16428 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
16429
16430 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16431
16432commit d361307e73ce1f6fc68760123f37d4876f851f3e
16433Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16434Date: Wed Aug 6 14:11:36 2008 -0500
16435
16436 ColdFire: Fix M5253EVB dram bring up issue
16437
16438 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16439
16440commit 4b0708093e15b412296328bf81325cf9b69fe512
16441Author: Wolfgang Denk <wd@denx.de>
16442Date: Thu Aug 14 14:41:06 2008 +0200
16443
16444 Coding Style cleanup, update CHANGELOG
16445
16446 Signed-off-by: Wolfgang Denk <wd@denx.de>
16447
4b070809
WD
16448commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
16449Author: Scott Wood <scottwood@freescale.com>
16450Date: Wed Aug 13 18:24:05 2008 -0500
16451
16452 socrates: Update NAND driver to new API.
16453
16454 Also, fix some minor formatting issues, and simplify the handling of
16455 "state" for writes.
16456
16457 Signed-off-by: Scott Wood <scottwood@freescale.com>
16458
16459commit ba22d10f39eaeedd035e8265616e31ff88e314d5
16460Author: Scott Wood <scottwood@freescale.com>
16461Date: Wed Aug 13 18:03:40 2008 -0500
16462
16463 quad100hd: Update NAND driver to new API.
16464
16465 Signed-off-by: Scott Wood <scottwood@freescale.com>
16466
16467commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
16468Author: Scott Wood <scottwood@freescale.com>
16469Date: Wed Aug 13 17:53:48 2008 -0500
16470
16471 m5373evb: Update NAND driver to new API.
16472
16473 Signed-off-by: Scott Wood <scottwood@freescale.com>
16474
16475commit 1a23a197c8722b805f40895544bbdb1a648c1c82
16476Author: Scott Wood <scottwood@freescale.com>
16477Date: Wed Aug 13 17:04:30 2008 -0500
16478
16479 s3c24x0: Update NAND driver to new API.
16480
16481 Signed-off-by: Scott Wood <scottwood@freescale.com>
16482
16483commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
16484Author: Scott Wood <scottwood@freescale.com>
16485Date: Wed Aug 13 15:56:00 2008 -0500
16486
16487 at91: Update board NAND drivers to current API.
16488
16489 Signed-off-by: Scott Wood <scottwood@freescale.com>
16490
16491commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
16492Author: Kyungmin Park <kmpark@infradead.org>
16493Date: Wed Aug 13 09:11:02 2008 +0900
16494
16495 Fix OneNAND build break
16496
16497 Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
16498 - fix bufferram management at erase operation
16499 This patch includes the NAND/OneNAND state filed too.
16500
16501 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
16502 Signed-off-by: Scott Wood <scottwood@freescale.com>
16503
16504commit 9483df6408c25f16060432de3868901e352e23bc
16505Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16506Date: Wed Aug 13 01:40:43 2008 +0200
16507
16508 drivers/mtd/nand_legacy: Move conditional compilation to Makefile
16509
16510 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16511
16512commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
16513Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16514Date: Wed Aug 13 01:40:43 2008 +0200
16515
16516 drivers/mtd/nand: Move conditional compilation to Makefile
16517
16518 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
16519
16520 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16521
16522commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
16523Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16524Date: Wed Aug 13 01:40:42 2008 +0200
16525
16526 drivers/mtd/onenand: Move conditional compilation to Makefile
16527
16528 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16529
16530commit 00b1883a4cac59d97cd297b1a3a398db85982865
16531Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16532Date: Wed Aug 13 01:40:42 2008 +0200
16533
16534 drivers/mtd: Move conditional compilation to Makefile
16535
16536 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
16537
16538 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16539
16540commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
16541Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16542Date: Wed Aug 13 01:40:41 2008 +0200
16543
16544 drivers/qe: Move conditional compilation to Makefile
16545
16546 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16547
16548commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
16549Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16550Date: Wed Aug 13 01:40:40 2008 +0200
16551
16552 drivers/pci: Move conditional compilation to Makefile
16553
16554 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16555
16556commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
16557Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16558Date: Wed Aug 13 01:40:40 2008 +0200
16559
16560 drivers/misc: Move conditional compilation to Makefile
16561
16562 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16563
16564commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
16565Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16566Date: Wed Aug 13 01:40:40 2008 +0200
16567
16568 drivers/input: Move conditional compilation to Makefile
16569
16570 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16571
16572commit 88f57e093114a44aa9a858d52b099bcc52034a8c
16573Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16574Date: Wed Aug 13 01:40:39 2008 +0200
16575
16576 drivers/dma: Move conditional compilation to Makefile
16577
16578 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16579
16580commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
16581Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16582Date: Wed Aug 13 01:40:39 2008 +0200
16583
16584 drivers/block: Move conditional compilation to Makefile
16585
16586 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16587
16588commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
16589Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16590Date: Wed Aug 13 01:40:39 2008 +0200
16591
16592 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
16593
16594 move also conditional compilation to Makefile
16595
16596 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16597
16598commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
16599Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16600Date: Wed Aug 13 01:40:38 2008 +0200
16601
16602 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
16603
16604 move also conditional compilation to Makefile
16605
16606 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16607
16608commit d6e9ee92e890f67594ab150689510df361133ead
16609Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16610Date: Wed Aug 13 01:40:38 2008 +0200
16611
16612 common: Move conditional compilation to Makefile
16613
16614 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16615
16616commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
16617Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16618Date: Wed Aug 13 01:40:09 2008 +0200
16619
16620 mx31: move freescale's mx31 boards to vendor board dir
16621
16622 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16623
16624commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
16625Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16626Date: Sat Jul 5 23:11:11 2008 +0200
16627
16628 at91: move arch-at91sam9 to arch-at91
16629
16630 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16631
16632commit 195ccfc5991d48764b2519941e3507f693851d5d
16633Author: Fathi BOUDRA <fabo@debian.org>
16634Date: Wed Aug 6 10:06:20 2008 +0200
16635
16636 OneNAND: Fill in MTD function pointers for OneNAND.
16637
16638 onenand_print_device_info():
16639 - Now returns a string to be placed in mtd->name,
16640 rather than calling printf.
16641 - Remove verbose parameter as it becomes useless.
16642
16643 Signed-off-by: Fathi Boudra <fabo@debian.org>
16644 Signed-off-by: Scott Wood <scottwood@freescale.com>
16645
16646commit aa646643b6bc250cb3a4966bf728876e0c10d329
16647Author: Guennadi Liakhovetski <lg@denx.de>
16648Date: Wed Aug 6 21:42:07 2008 +0200
16649
16650 nand_spl: Support page-aligned read in nand_load, use chipselect
16651
16652 Supporting page-aligned reads doesn't incure any sinificant overhead, just
16653 a small change in the algorithm. Also replace in_8 with readb, since there
16654 is no in_8 on ARM.
16655
16656 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16657 Signed-off-by: Scott Wood <scottwood@freescale.com>
16658
16659commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
16660Author: Scott Wood <scottwood@freescale.com>
16661Date: Tue Aug 5 11:15:59 2008 -0500
16662
16663 NAND boot: Update large page support for current API.
16664
16665 Also, remove the ctrl variable in favor of passing the constants
16666 directly, and remove redundant (u8) casts.
16667
16668 Signed-off-by: Scott Wood <scottwood@freescale.com>
16669
16670commit e4c09508545d1c45617ba45391c03c03cbc360b9
16671Author: Scott Wood <scottwood@freescale.com>
16672Date: Mon Jun 30 14:13:28 2008 -0500
16673
16674 NAND boot: MPC8313ERDB support
16675
16676 Note that with older board revisions, NAND boot may only work after a
16677 power-on reset, and not after a warm reset. I don't have a newer board
16678 to test on; if you have a board with a 33MHz crystal, please let me know
16679 if it works after a warm reset.
16680
16681 Signed-off-by: Scott Wood <scottwood@freescale.com>
16682
16683commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
16684Author: Scott Wood <scottwood@freescale.com>
16685Date: Thu Jun 26 14:06:52 2008 -0500
16686
16687 mpc8313erdb: Enable NAND in config.
16688
16689 Signed-off-by: Scott Wood <scottwood@freescale.com>
16690
16691commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
16692Author: Guennadi Liakhovetski <lg@denx.de>
16693Date: Thu Jul 31 12:38:26 2008 +0200
16694
16695 NAND: Do not write or read a whole block if it is larger than the environment
16696
16697 Environment can be smaller than NAND block size, do not need to read a whole
16698 block and minimum for writing is one page. Also remove an unused variable.
16699
16700 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16701 Signed-off-by: Scott Wood <scottwood@freescale.com>
16702
16703commit eafcabd15f00c142156235c519fcc55b10993241
16704Author: Marcel Ziswiler <marcel@ziswiler.com>
16705Date: Sun Jun 22 16:30:06 2008 +0200
16706
16707 NAND: chip->state does not always get set.
16708
16709 Fixes an issue with chip->state not always being set causing troubles.
16710
16711 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
16712 Signed-off-by: Scott Wood <scottwood@freescale.com>
16713
16714commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
16715Author: Ilya Yanok <yanok@emcraft.com>
16716Date: Mon Jun 30 15:34:40 2008 +0200
16717
16718 NAND: Scan bad blocks lazily.
16719
16720 Rather than scanning on boot, scan upon the first attempt to check the
16721 badness of a block. This speeds up boot when not using NAND, and reduces
16722 the likelihood of needing to reflash via JTAG if NAND becomes
16723 nonfunctional.
16724
16725 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
16726 Signed-off-by: Scott Wood <scottwood@freescale.com>
16727
16728commit dfbf617ff055e4216f78d358b0867c548916d14b
16729Author: Scott Wood <scottwood@freescale.com>
16730Date: Thu Jun 12 13:20:16 2008 -0500
16731
16732 NAND read/write fix
16733
16734 Implement block-skipping read/write, based on a patch from
16735 Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
16736
16737 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
16738 Signed-off-by: Scott Wood <scottwood@freescale.com>
16739
16740commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
16741Author: Scott Wood <scottwood@freescale.com>
16742Date: Thu Jun 12 13:13:23 2008 -0500
16743
16744 NAND: Always skip blocks on read/write/boot.
16745
16746 Use of the non-skipping versions was almost always (if not always)
16747 an error, and no valid use case has been identified.
16748
16749 Signed-off-by: Scott Wood <scottwood@freescale.com>
16750
16751commit e1c3dbada349992875934575c97b328ab2cb33ca
16752Author: Anton Vorontsov <avorontsov@ru.mvista.com>
16753Date: Thu Jun 12 11:10:21 2008 -0500
16754
16755 nand: fsl_upm: convert to updated MTD NAND infrastructure
16756
16757 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
16758 Signed-off-by: Scott Wood <scottwood@freescale.com>
16759
16760commit 300253306acc72b1b2e9faf0987f86551151d7cf
16761Author: Scott Wood <scottwood@freescale.com>
16762Date: Thu May 22 15:02:46 2008 -0500
16763
16764 fsl_elbc_nand: Hard-code the FBAR/FPAR split.
16765
16766 The hardware has separate registers for block and page-within-block,
16767 but the division between the two has no apparent relation to the
16768 actual erase block size of the NAND chip.
16769
16770 Signed-off-by: Scott Wood <scottwood@freescale.com>
16771
16772commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
16773Author: Anton Vorontsov <avorontsov@ru.mvista.com>
16774Date: Fri Mar 28 22:10:54 2008 +0300
16775
16776 fsl_elbc_nand: workaround for hangs during nand write
16777
16778 Using current driver elbc sometimes hangs during nand write. Reading back
16779 last byte helps though (thanks to Scott Wood for the idea).
16780
16781 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
16782 Signed-off-by: Scott Wood <scottwood@freescale.com>
16783
16784commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
16785Author: Scott Wood <scottwood@freescale.com>
16786Date: Fri Mar 21 16:12:51 2008 -0500
16787
16788 Freescale eLBC FCM NAND driver
16789
16790 This is a driver for the Flash Control Machine of the enhanched Local Bus
16791 Controller found on some Freescale chips (such as the mpc8313 and the
16792 mpc8379).
16793
16794 Signed-off-by: Scott Wood <scottwood@freescale.com>
16795
16796commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
16797Author: Scott Wood <scottwood@freescale.com>
16798Date: Tue Mar 18 15:29:14 2008 -0500
16799
16800 Don't panic if a controller driver does ecc its own way.
16801
16802 Some hardware, such as the enhanced local bus controller used on some
16803 mpc83xx chips, does ecc transparently when reading and writing data, rather
16804 than providing a generic calculate/correct mechanism that can be exported to
16805 the nand subsystem.
16806
16807 The subsystem should not BUG() when calculate, correct, or hwctl are
16808 missing, if the methods that call them have been overridden.
16809
16810 Signed-off-by: Scott Wood <scottwood@freescale.com>
16811
16812commit e52b34d40a8a646e3d11638ea8797e96398dba13
16813Author: Stefan Roese <sr@denx.de>
16814Date: Thu Jan 10 18:47:33 2008 +0100
16815
16816 NAND: Make NAND driver less verbose per default
16817
16818 This patch turns off printing of bad blocks per default upon bootup.
16819 This can always be shown via the "nand bad" command later.
16820
16821 Signed-off-by: Stefan Roese <sr@denx.de>
16822
16823commit fe56a2772e5c59577df906163d0d4b29b056140e
16824Author: Sergey Kubushyn <ksi@koi8.net>
16825Date: Wed Jan 9 15:36:20 2008 +0100
16826
16827 NAND: Davinci driver updates
16828
16829 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
16830 don't have hardware handy so I can not test it at the moment but changes are
16831 rather trivial so it should work. It would be nice if somebody with a
16832 hardware checked it anyways.
16833
16834 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
16835
16836commit deac913effd8d80535c9ff4687b6fcdff540c554
16837Author: Stefan Roese <sr@denx.de>
16838Date: Sat Jan 5 16:50:32 2008 +0100
16839
16840 NAND: Fix compilation warning and small coding style issue
16841
16842 Signed-off-by: Stefan Roese <sr@denx.de>
16843
16844commit c568f77acdf896fc3dd6413ce53205b17ba809a3
16845Author: Stefan Roese <sr@denx.de>
16846Date: Sat Jan 5 16:49:37 2008 +0100
16847
16848 NAND: Update nand_spl driver to match updated nand subsystem
16849
16850 This patch changes the NAND booting driver nand_spl/nand_boot.c to match
16851 the new infrastructure from the updated NAND subsystem. This NAND
16852 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
16853 subsystem.
16854
16855 Signed-off-by: Stefan Roese <sr@denx.de>
16856
16857commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
16858Author: Stefan Roese <sr@denx.de>
16859Date: Sat Jan 5 16:47:58 2008 +0100
16860
16861 NAND: Update 4xx NDFC driver to match updated nand subsystem
16862
16863 This patch changes the 4xx NAND driver ndfc.c to match the new
16864 infrastructure from the updated NAND subsystem. This NAND
16865 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
16866 subsystem.
16867
16868 Tested successfully on AMCC Sequoia and Bamboo.
16869
16870 Signed-off-by: Stefan Roese <sr@denx.de>
16871
16872commit 12072264528eba33737bc9674e19f0e925ffda23
16873Author: Stefan Roese <sr@denx.de>
16874Date: Sat Jan 5 16:43:25 2008 +0100
16875
16876 NAND: Change nand_wait_ready() to not call nand_wait()
16877
16878 This patch changes nand_wait_ready() to not just call nand_wait(),
16879 since this will send a new command to the NAND chip. We just want to
16880 wait for the chip to become ready here.
16881
16882 Signed-off-by: Stefan Roese <sr@denx.de>
16883
16884commit 9ad754fef5053144daed3b007adaf1c9bec654c9
16885Author: William Juul <william.juul@datarespons.no>
16886Date: Fri Dec 14 16:33:45 2007 +0100
16887
16888 make nand dump and nand dump.oob work
16889
16890 Signed-off-by: William Juul <william.juul@tandberg.com>
16891 Signed-off-by: Scott Wood <scottwood@freescale.com>
16892
16893commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
16894Author: William Juul <william.juul@datarespons.no>
16895Date: Mon Nov 19 14:46:00 2007 +0100
16896
16897 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
16898
16899 Signed-off-by: William Juul <william.juul@tandberg.com>
16900
16901commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
16902Author: William Juul <william.juul@tandberg.com>
16903Date: Tue Jun 10 16:18:13 2008 -0500
16904
16905 Clean out unneeded files
16906
16907 Signed-off-by: William Juul <william.juul@tandberg.com>
16908
16909commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
16910Author: William Juul <william.juul@datarespons.no>
16911Date: Fri Nov 16 08:44:27 2007 +0100
16912
16913 Create symlinks from yaffs2/direct to yaffs2
16914
16915 Signed-off-by: William Juul <william.juul@tandberg.com>
16916
16917commit 90ef117b68387d66763291af0117677644166611
16918Author: William Juul <william.juul@datarespons.no>
16919Date: Thu Nov 15 12:23:57 2007 +0100
16920
16921 Incorporate yaffs2 into U-boot
16922
16923 To use YAFFS2 define CONFIG_YAFFS2
16924
16925 Signed-off-by: William Juul <william.juul@tandberg.com>
16926 Signed-off-by: Scott Wood <scottwood@freescale.com>
16927
16928commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
16929Author: William Juul <william.juul@datarespons.no>
16930Date: Thu Nov 15 11:13:05 2007 +0100
16931
16932 YAFFS2 import
16933
16934 Direct import of yaffs as a tarball as of 20071113 from their public
16935 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
16936
16937 The code can also be imported on the command line with:
16938 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
16939 (Hit return when asked for a password)
16940 cvs checkout yaffs2
16941
16942 Signed-off-by: William Juul <william.juul@tandberg.com>
16943 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
16944
16945commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
16946Author: William Juul <william.juul@datarespons.no>
16947Date: Wed Nov 14 14:28:11 2007 +0100
16948
16949 Whitespace cleanup and marking broken code.
16950
16951 Changes requested by maintainer Stefan Roese after
16952 posting patch to U-boot mailing list.
16953
16954 Signed-off-by: William Juul <william.juul@tandberg.com>
16955 Signed-off-by: Scott Wood <scottwood@freescale.com>
16956
16957commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
16958Author: William Juul <william.juul@datarespons.no>
16959Date: Fri Nov 9 13:32:30 2007 +0100
16960
16961 Fixing coding style issues
16962
16963 - Fixing leading white spaces
16964 - Fixing indentation where 4 spaces are used instead of tab
16965 - Removing C++ comments (//), wherever I introduced them
16966
16967 Signed-off-by: William Juul <william.juul@tandberg.com>
16968 Signed-off-by: Scott Wood <scottwood@freescale.com>
16969
16970commit 4cbb651b29cb64d378a06729970e1e153bb605b1
16971Author: William Juul <william.juul@datarespons.no>
16972Date: Thu Nov 8 10:39:53 2007 +0100
16973
16974 Remove white space at end.
16975
16976 Signed-off-by: William Juul <william.juul@tandberg.com>
16977 Signed-off-by: Scott Wood <scottwood@freescale.com>
16978
16979commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
16980Author: William Juul <william.juul@datarespons.no>
16981Date: Wed Oct 31 13:53:06 2007 +0100
16982
16983 Update MTD to that of Linux 2.6.22.1
16984
16985 A lot changed in the Linux MTD code, since it was last ported from
16986 Linux to U-Boot. This patch takes U-Boot NAND support to the level
16987 of Linux 2.6.22.1 and will enable support for very large NAND devices
16988 (4KB pages) and ease the compatibility between U-Boot and Linux
16989 filesystems.
16990
16991 This patch is tested on two custom boards with PPC and ARM
16992 processors running YAFFS in U-Boot and Linux using gcc-4.1.2
16993 cross compilers.
16994
16995 MAKEALL ppc/arm has some issues:
16996 * DOC/OneNand/nand_spl is not building (I have not tried porting
16997 these parts, and since I do not have any HW and I am not familiar
16998 with this code/HW I think its best left to someone else.)
16999
17000 Except for the issues mentioned above, I have ported all drivers
17001 necessary to run MAKEALL ppc/arm without errors and warnings. Many
17002 drivers were trivial to port, but some were not so trivial. The
17003 following drivers must be examined carefully and maybe rewritten to
17004 some degree:
17005 cpu/ppc4xx/ndfc.c
17006 cpu/arm926ejs/davinci/nand.c
17007 board/delta/nand.c
17008 board/zylonite/nand.c
17009
17010 Signed-off-by: William Juul <william.juul@tandberg.com>
17011 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
17012 Signed-off-by: Scott Wood <scottwood@freescale.com>
17013
17014commit cd82919e6c8a73b363a26f34b734923844e52d1c
17015Author: Wolfgang Denk <wd@denx.de>
17016Date: Tue Aug 12 16:08:38 2008 +0200
17017
17018 Coding style cleanup, update CHANGELOG, prepare release
17019
17020 Signed-off-by: Wolfgang Denk <wd@denx.de>
17021
cd82919e
WD
17022commit 17e900b8c0f38d922da47073246219dce2a847f2
17023Author: Wolfgang Denk <wd@denx.de>
17024Date: Tue Aug 12 14:54:04 2008 +0200
17025
17026 MVBC_P: fix compile problem
17027
17028 Signed-off-by: Wolfgang Denk <wd@denx.de>
17029
17030commit 52b047ae48219b59bebe37ba743ab103fd4f8316
17031Author: Wolfgang Denk <wd@denx.de>
17032Date: Tue Aug 12 12:10:11 2008 +0200
17033
17034 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
17035
17036 Signed-off-by: Wolfgang Denk <wd@denx.de>
17037
17038commit c9c101c660b3d1995045c61c7c6041f52b6cf335
17039Author: Wolfgang Denk <wd@denx.de>
17040Date: Tue Aug 12 00:36:53 2008 +0200
17041
17042 ads5121: fix compiler warnings (unused variables)
17043
17044 Signed-off-by: Wolfgang Denk <wd@denx.de>
17045
17046commit 902ca09246039964d59bbcb519b1e1b5aed01308
17047Author: Kumar Gala <galak@kernel.crashing.org>
17048Date: Mon Aug 11 11:29:28 2008 -0500
17049
17050 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
17051
17052 Use CONFIG_NUM_CPUS to match existing define used by 86xx.
17053
17054 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17055 Acked-by: Jon Loeliger <jdl@freescale.com>
17056
17057commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
17058Author: Kumar Gala <galak@kernel.crashing.org>
17059Date: Mon Aug 11 09:20:53 2008 -0500
17060
17061 Fix fallout from autostart revert
17062
17063 The autostart revert caused a bit of duplicated code as well as
17064 code that was using images->autostart that needs to get removed so
17065 we can build again.
17066
17067 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17068
17069commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
17070Author: Kumar Gala <galak@kernel.crashing.org>
17071Date: Mon Aug 11 09:16:25 2008 -0500
17072
17073 Fix compile error related to r8a66597-hcd & usb
17074
17075 When building the 8544DS board we get this error:
17076
17077 In file included from r8a66597-hcd.c:22:
17078 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
17079 make[1]: *** [r8a66597-hcd.o] Error 1
17080
17081 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
17082 is set.
17083
17084 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17085
17086commit 2d0daa03612338a813e3c9d22680e54eabfea378
17087Author: Becky Bruce <becky.bruce@freescale.com>
17088Date: Mon Aug 4 14:02:26 2008 -0500
17089
17090 POWERPC 86xx: Move BAT setup code to C
17091
17092 This is needed because we will be possibly be locating
17093 devices at physical addresses above 32bits, and the asm
17094 preprocessing does not appear to deal with ULL constants
17095 properly. We now call write_bat in lib_ppc/bat_rw.c.
17096
17097 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17098 Acked-by: Jon Loeliger <jdl@freescale.com>
17099
17100commit 9de67149db576c91b9c2a0a182652331e7e44211
17101Author: Becky Bruce <becky.bruce@freescale.com>
17102Date: Mon Aug 4 14:01:53 2008 -0500
17103
17104 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
17105
17106 Perform sync/isync as required by the architecture.
17107
17108 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17109 Acked-by: Jon Loeliger <jdl@freescale.com>
17110
17111commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
17112Author: Becky Bruce <becky.bruce@freescale.com>
17113Date: Mon Aug 4 14:01:16 2008 -0500
17114
17115 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
17116
17117 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
17118 Acked-by: Jon Loeliger <jdl@freescale.com>
17119
17120commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
17121Author: Magnus Lilja <lilja.magnus@gmail.com>
17122Date: Sun Aug 3 21:44:10 2008 +0200
17123
17124 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
17125
17126 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
17127 contacts instead of only the first 256 ones as is the case prior to
17128 this patch.
17129
17130 Add missing MUX_* macros and update board files to use the new macros.
17131
17132 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
17133
17134commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
17135Author: Magnus Lilja <lilja.magnus@gmail.com>
17136Date: Sun Aug 3 21:43:37 2008 +0200
17137
17138 i.MX31: Fix IOMUX related typos
17139
17140 Correct the names of some IOMUX macros.
17141
17142 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
17143
17144commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
17145Author: Steve Sakoman <steve@sakoman.com>
17146Date: Mon Aug 11 20:26:16 2008 +0200
17147
17148 OneNAND: Remove unused parameters to onenand_verify_page
17149
17150 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.
17151
17152 Signed-off-by: Steve Sakoman <steve@sakoman.com>
17153 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
17154
17155commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
17156Author: Anatolij Gustschin <agust@denx.de>
17157Date: Fri Aug 8 18:00:40 2008 +0200
17158
17159 video: fix bug in cfb_console code
17160
17161 FILL_15BIT_555RGB macro extension for pixel swapping
17162 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
17163 introduced a bug in cfb_console:
17164
17165 Bitmaps with odd-numbered width won't be rendered
17166 correctly and even U-Boot crashes are observed on
17167 some platforms while repeated rendering of such
17168 bitmaps with "bmp display". Also if a bitmap is
17169 rendered to an odd-numbered x starting position,
17170 the same problem occurs. This patch is an attempt
17171 to fix it.
17172
17173 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17174
17175commit d9015f6a50d7258125349ef5c2af836458a0029a
17176Author: Anatolij Gustschin <agust@denx.de>
17177Date: Fri Aug 8 18:00:39 2008 +0200
17178
17179 video: fix bug in logo_plot
17180
17181 If logo_plot() should ever be called with x starting
17182 position other than zero and for pixel depths greater
17183 than 8bpp, logo colors distortion will be observed.
17184 This patch fixes the issue.
17185
17186 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17187
17188commit 406819ae94f79f5b59e01d163380ca7d83709251
17189Author: Wolfgang Denk <wd@denx.de>
17190Date: Mon Aug 11 00:17:52 2008 +0200
17191
17192 MAINTAINERS: sort entries
17193
17194 Signed-off-by: Wolfgang Denk <wd@denx.de>
17195
17196commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
17197Author: Roy Zang <tie-fei.zang@freescale.com>
17198Date: Thu Aug 7 18:19:28 2008 +0800
17199
17200 Add mpc7448hpc2 maintainer information
17201
17202 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
17203
17204commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
17205Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
17206Date: Thu Aug 7 13:13:27 2008 +0530
17207
17208 common/cmd_load.c - Minor code & Coding Style cleanup
17209
17210 - os_data_header Variable is a carry over feature
17211 & unused. So removed all instance of this variable
17212 - Minor Code Style Update
17213
17214 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
17215 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17216
17217commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
17218Author: Magnus Lilja <lilja.magnus@gmail.com>
17219Date: Wed Aug 6 19:32:33 2008 +0200
17220
17221 Update the U-Boot wiki URL.
17222
17223 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
17224
17225commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
17226Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
17227Date: Sun Aug 10 17:56:36 2008 +0200
17228
17229 OneNAND: Remove base address offset usage
17230
17231 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
17232 using OneNAND and some using NAND, we found some differences in OneNAND and
17233 NAND command address handling.
17234
17235 As this might confuse users (it already confused us), we like to align OneNAND
17236 and NAND address handling.
17237
17238 The issue is that cmd_onenand.c subtracts the onenand base address from the
17239 addresses you type into the u-boot command line so, unlike nand, you can't
17240 use addresses relative to the start of the onenand part e.g. this won't work:
17241
17242 onenand read 82000000 280000 400000
17243
17244 you have to use:
17245
17246 onenand read 82000000 20280000 400000
17247
17248 Looking at recent git, the only board currently using OneNAND is Apollon, and
17249 for this the OneNAND base address is 0 (apollon.h)
17250
17251 #define CFG_ONENAND_BASE 0x00000000
17252
17253 so patch below won't break any existing boards and will align OneNAND and NAND
17254 handling on boards where OneNAND base address is != 0.
17255
17256 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
17257 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
17258 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
17259
17260commit c11528083ef6e55e76df742228c26e39d151813d
17261Author: Kumar Gala <galak@kernel.crashing.org>
17262Date: Thu Aug 7 09:28:20 2008 -0500
17263
17264 mpc85xx: workaround old binutils bug
17265
17266 The recent change to move the .bss outside of the image gives older
17267 binutils (ld from eldk4.1/binutils-2.16) some headache:
17268
17269 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
17270 ppc_85xx-ld: final link failed: Bad value
17271
17272 We workaround it by being explicit about the program headers and not
17273 assigning the .bss to a program header.
17274
17275 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17276
17277commit 0bf202ec586d4466c900e987720fa635c594d689
17278Author: Wolfgang Denk <wd@denx.de>
17279Date: Sun Aug 10 01:26:26 2008 +0200
17280
17281 Revert "[new uImage] Add autostart flag to bootm_headers structure"
17282
17283 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
17284
17285 The commit was based on a misunderstanding of the (documented)
17286 meaning of the 'autostart' environment variable. It might cause
17287 boards to hang if 'autostart' was used, with the potential to brick
17288 them. Go back to the documented behaviour.
17289
17290 Conflicts:
17291
17292 common/cmd_bootm.c
17293 common/image.c
17294 include/image.h
17295
17296 Signed-off-by: Wolfgang Denk <wd@denx.de>
17297
17298commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
17299Author: Wolfgang Denk <wd@denx.de>
17300Date: Sat Aug 9 23:17:32 2008 +0200
17301
17302 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
17303
17304 - enable CFI driver where this was forgotten
17305 - enable mtdparts support
17306 - adjust default environment
17307 etc.
17308
17309 Signed-off-by: Wolfgang Denk <wd@denx.de>
17310
17311commit 41266c9b5a5f873df3ec891bb0907616958b5602
17312Author: Peter Tyser <ptyser@xes-inc.com>
17313Date: Tue Aug 5 10:51:57 2008 -0500
17314
17315 FIT: Fix handling of images without ramdisks
17316
17317 boot_get_ramdisk() should not treat the case when a FIT image does
17318 not contain a ramdisk as an error.
17319
17320 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
17321 Acked-by: Michal Simek <monstr@monstr.eu>
17322
17323commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
17324Author: Sergey Lapin <slapin@ossfans.org>
17325Date: Sat Aug 9 01:39:09 2008 +0400
17326
17327 DataFlash: AT45DB021 fix and AT45DB081 support
17328
17329 Fix for page size of AT45DB021. Also adding bigger AT45DB081
17330 which comes with some newer boards.
17331
17332 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
17333
17334commit ba9324451b662dd393afa53e5cc36fc5d3d10966
17335Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17336Date: Fri Aug 8 16:30:23 2008 +0900
17337
17338 sh: Update sh7763rdp config
17339
17340 Add sh_eth support to sh7763rdp.
17341
17342 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
17343
17344commit 21f971ec265f6042ec21636d55d06a6bc0751077
17345Author: Wolfgang Denk <wd@denx.de>
17346Date: Mon Jul 7 01:22:29 2008 +0200
17347
17348 TQM823L: re-enable logo support; update LCD_INFO text
17349
17350 Signed-off-by: Wolfgang Denk <wd@denx.de>
17351
17352commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
17353Author: Wolfgang Denk <wd@denx.de>
17354Date: Fri Aug 8 16:41:56 2008 +0200
17355
17356 TQM8xxL: fix support for second flash bank
17357
17358 When switching the TQM8xxL modules to use the CFI flash driver,
17359 support for the second flash bank was broken because the CFI driver
17360 did not support dynamically sized banks. This gets fixed now.
17361
17362 Signed-off-by: Wolfgang Denk <wd@denx.de>
17363
17364commit 2a112b234d879f6390503a5f4e38246acce9d0b0
17365Author: Wolfgang Denk <wd@denx.de>
17366Date: Fri Aug 8 16:39:54 2008 +0200
17367
17368 CFI: allow for dynamically determined flash sizes and addresses
17369
17370 The CFI driver allowed only for static initializers in the
17371 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
17372 several flash banks contiguously if the bank sizes were not known in
17373 advance, which kind of violates U-Boot's design philosophy.
17374
17375 (will be used for example by the TQM8xxL boards)
17376
17377 Signed-off-by: Wolfgang Denk <wd@denx.de>
17378
17379commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
17380Author: Ben Warren <biggerbadderben@gmail.com>
17381Date: Thu Aug 7 23:26:35 2008 -0700
17382
17383 QE UEC: Fix compiler warnings
17384
17385 Moved static functions earlier in file so forward declarations are not needed.
17386
17387 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17388
17389commit d5d28fe4aad5f4535400647a5617c11039506467
17390Author: David Saada <David.Saada@ecitele.com>
17391Date: Mon Mar 31 02:37:38 2008 -0700
17392
17393 QE UEC: Add MII Commands
17394
17395 Add MII commands to the UEC driver. Note that once a UEC device is selected,
17396 any device on its MDIO bus can be addressed.
17397
17398 Signed-off-by: David Saada <david.saada@ecitele.com>
17399 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17400
17401commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
17402Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
17403Date: Wed Jul 9 21:07:38 2008 +0900
17404
17405 usb: add support for R8A66597 usb controller
17406
17407 add support for Renesas R8A66597 usb controller.
17408 This patch supports USB Host mode.
17409
17410 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
17411 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17412
17413commit 1d10dcd041aaeae9fd7c821005692898a0303382
17414Author: Hunter, Jon <jon-hunter@ti.com>
17415Date: Sat Jul 26 18:59:16 2008 -0500
17416
17417 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
17418
17419 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
17420
17421 Signed-off-by: Jon Hunter <jon-hunter@ti.com>
17422 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17423
17424commit eab1007334b93a6209f1ec33615e26ef5311ede7
17425Author: Steven A. Falco <sfalco@harris.com>
17426Date: Wed Aug 6 15:42:52 2008 -0400
17427
17428 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
17429
17430 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
17431 configuration to match the schematic, and also sets the SDR0_PFC1 register to
17432 select the corresponding mode for the UARTs.
17433
17434 Signed-off-by: Steven A. Falco <sfalco@harris.com>
17435 Signed-off-by: Stefan Roese <sr@denx.de>
17436
a49d10cf
WD
17437commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
17438Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
17439Date: Wed Aug 6 14:42:13 2008 +0200
17440
17441 avr32: add support for EarthLCD Favr-32 board
17442
17443 This patch adds support for the Favr-32 board made by EarthLCD.
17444
17445 This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
17446 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
17447 Ethernet, audio out, USB device, SD-card slot, USART and various other
17448 connectors for cennecting stuff to SPI, I2C, GPIO, etc.
17449
17450 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
17451 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17452
17453commit bc9019e19758a19a388fb20ef18dc771cd39fdda
17454Author: Rafael Campos <rafael.campos@hanscan.com>
17455Date: Thu Jul 31 10:22:20 2008 +0200
17456
17457 cfi-flash: Added support to flash_real_protect for Atmel flash devices
17458
17459 Some of the flash memories produced by ATMEL start in read-only mode.
17460 We need to unprotect it. This patch allows the AT49BV6416 to work with
17461 cfi_flash memories. Tested in the at91rm9200ek board.
17462
17463 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
17464 Signed-off-by: Stefan Roese <sr@denx.de>
17465
17466commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
17467Author: Guennadi Liakhovetski <lg@denx.de>
17468Date: Tue Aug 5 15:36:39 2008 +0200
17469
17470 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
17471
17472 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17473 Signed-off-by: Stefan Roese <sr@denx.de>
17474
4b070809
WD
17475commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
17476Author: Stefan Roese <sr@denx.de>
17477Date: Wed Aug 6 14:06:03 2008 +0200
17478
17479 Fix merge problems
17480
17481 Signed-off-by: Stefan Roese <sr@denx.de>
17482
17483commit f2302d4430e7f3f48308d6a585320fe96af8afbd
17484Author: Stefan Roese <sr@denx.de>
17485Date: Wed Aug 6 14:05:38 2008 +0200
17486
17487 Fix merge problems
17488
17489 Signed-off-by: Stefan Roese <sr@denx.de>
17490
cd82919e
WD
17491commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
17492Author: Kenneth Johansson <kenneth@southpole.se>
17493Date: Tue Jul 15 12:13:38 2008 +0200
17494
17495 mpc5121: Move iopin features from board specific to common files.
17496
17497 And in the process eliminate some duplicate register defines.
17498
17499 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
17500
17501commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
17502Author: John Rigby <jrigby@freescale.com>
17503Date: Tue Aug 5 17:38:57 2008 -0600
17504
17505 mpc5121: squash some fdt fixup errors
17506
17507 On ADS5121 when booting linux the following errors are seen:
17508 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
17509 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
17510 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
17511
17512 This is caused by ft_cpu_setup trying to deal with
17513 both old and new soc node naming. This patch
17514 fixes this by being smarter about what to
17515 fixup.
17516
17517 Also do soc node fixups by compatible instead of by path.
17518 A new board config called OF_SOC_COMPAT defined
17519 to be "fsl,mpc5121-immr" replaces the old
17520 OF_SOC node path that was defined to be "soc@80000000".
17521
17522 Old device trees still work, but the compatiblity
17523 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
17524 which is on by default in include/configs/ads5121.h.
17525
17526 Signed-off-by: John Rigby <jrigby@freescale.com>
17527
17528commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
17529Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17530Date: Sat Aug 2 23:48:30 2008 +0200
17531
17532 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
17533
17534 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17535
17536commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
17537Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17538Date: Sat Aug 2 23:48:32 2008 +0200
17539
17540 nios2/sysid: fix printf warning
17541
17542 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17543
17544commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
17545Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17546Date: Sat Aug 2 23:48:33 2008 +0200
17547
17548 Fix remaining build issues with MPC8xx FADS boards.
17549
17550 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17551
17552commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
17553Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17554Date: Sat Aug 2 23:48:31 2008 +0200
17555
17556 nios2: fix phys_addr_t and phys_size_t support
17557
17558 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17559
17560commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
17561Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17562Date: Sat Aug 2 23:48:34 2008 +0200
17563
17564 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
17565
17566 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17567
17568commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
17569Author: Mark Jackson <mpfj@mimc.co.uk>
17570Date: Fri Aug 1 09:48:29 2008 +0100
17571
17572 Fix bitmap display for atmel lcd controller
17573
17574 The current lcd_display_bitmap() function does not work properly
17575 for the Atmel LCD controller.
17576
17577 2 fixes need to be done:-
17578
17579 (a) when setting the colour map, use the lcd_setcolreg() function
17580 as provided by the Atmel driver
17581 (b) the data is never actually written to the lcd framebuffer !!
17582
17583 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
17584
17585commit 2a433c66b1e2770349fe4911be23c375f053ebd8
17586Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17587Date: Fri Aug 1 08:40:34 2008 +0200
17588
17589 qemu_mips: update README to follow qemu update about default machine
17590
17591 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17592
17593commit ac169d645f5f0e0b9a232563099209e92a355d8e
17594Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17595Date: Thu Jul 31 19:53:21 2008 -0500
17596
17597 ColdFire: Fix compilation issue caused by a missing function
17598
17599 Implement usec2ticks() which is used by fsl_i2c.c in
17600 lib_m68k/time.c
17601
17602 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17603
17604commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
17605Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17606Date: Thu Jul 31 19:53:06 2008 -0500
17607
17608 Fix compilation error for TASREG
17609
17610 TASREG is ColdFire platform, the include ppc4xx.h in
17611 board/esd/common/flash.c causes conflict.
17612
17613 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17614
17615commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
17616Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17617Date: Thu Jul 31 19:52:36 2008 -0500
17618
17619 Fix compilation error for MCF5275
17620
17621 Rename OBJ to COBJ in board/platform/Makefile
17622
17623 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17624
17625commit 5c40548f01218360a1f1395198c50ff45f3035b5
17626Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17627Date: Thu Jul 31 19:52:28 2008 -0500
17628
17629 Fix compile error caused by incorrect function return type
17630
17631 Rename int mii_init(void) to void mii_init(void) for idmr
17632 ColdFire platform
17633
17634 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
17635
17636commit a58c78067c928976c082c758d3987e89ead5b191
17637Author: Wolfgang Denk <wd@denx.de>
17638Date: Fri Aug 1 12:06:22 2008 +0200
17639
17640 Fix build issues with MPC8xx FADS boards.
17641
17642 Signed-off-by: Wolfgang Denk <wd@denx.de>
17643
17644commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
17645Author: Wolfgang Denk <wd@denx.de>
17646Date: Thu Jul 31 17:54:03 2008 +0200
17647
17648 Prepare v1.3.4-rc2: update CHANGELOG
17649
17650 Signed-off-by: Wolfgang Denk <wd@denx.de>
17651
4b50cd12
WD
17652commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
17653Author: Mark Jackson <mpfj@mimc.co.uk>
17654Date: Thu Jul 31 16:09:00 2008 +0100
17655
17656 Add gzipped logo support
17657
17658 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
17659
17660 If this option is set, additionally to standard BMP
17661 images, gzipped BMP images can be displayed via the
17662 splashscreen support or the bmp command.
17663
17664 However, the splashscreen function *only* supports standard BMP images.
17665
17666 This patch adds the documented gzip support.
17667
17668 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
17669
17670commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
17671Author: Mark Jackson <mpfj@mimc.co.uk>
17672Date: Thu Jul 31 15:56:48 2008 +0100
17673
17674 Fix Atmel LCD controller endianess for AVR32 processors
17675
17676 The Atmel lcd controller is used on Atmel's AT91 (little endian) and
17677 AVR32 (big endian) platforms.
17678
17679 As such, the controller can handle both big and little endian memory.
17680
17681 This patch fixes the driver for the AVR32 platform.
17682
17683 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
17684
17685commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
17686Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17687Date: Thu Jul 31 15:56:01 2008 +0200
17688
17689 apollon: fix build out of tree
17690
17691 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17692
17693commit 2e752be39d3e398d4ab89ffa6634c397df298297
17694Author: Guennadi Liakhovetski <lg@denx.de>
17695Date: Thu Jul 31 12:35:04 2008 +0200
17696
17697 Uncompressed images loaded to their start address shall set load_end too
17698
17699 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17700 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
17701
17702commit c37207d7f51e19c17f859966f314e27cc1231801
17703Author: Wolfgang Denk <wd@denx.de>
17704Date: Wed Jul 16 16:38:59 2008 +0200
17705
17706 Fix printf() format problems with configurable prompts
17707
17708 U-Boot allows for configurable prompt strings using the
17709 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
17710 the assumption was that any such user defined problts would contain
17711 exactly one "%d" format specifier. But some boards did not.
17712
17713 To allow for flexible boot prompts without adding too complex code we
17714 now allow to specify the whole list of printf() arguments in the user
17715 definition. This is powerful, but requires a responsible user who
17716 really understands what he is doing, as he needs to know for exanple
17717 which variables are available in the respective context.
17718
17719 Signed-off-by: Wolfgang Denk <wd@denx.de>
17720
17721commit 54754120637b6a7f4ff774fb199fc550bcfea1da
17722Author: Wolfgang Denk <wd@denx.de>
17723Date: Thu Jul 31 17:02:14 2008 +0200
17724
17725 TQM85xx: fix typo introduce by commit ffbb5cb9
17726
17727 Signed-off-by: Wolfgang Denk <wd@denx.de>
17728
17729commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
17730Author: Wolfgang Denk <wd@denx.de>
17731Date: Thu Jul 31 15:27:01 2008 +0200
17732
17733 mvbc_p board: fix most build warnings.
17734
17735 Signed-off-by: Wolfgang Denk <wd@denx.de>
17736
17737commit c4ec6db074051d2f6fc76a66411c60621b22bc02
17738Author: Wolfgang Denk <wd@denx.de>
17739Date: Thu Jul 31 13:57:20 2008 +0200
17740
17741 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
17742
17743 Avoid "integer constant is too large for 'long' type" warnings.
17744 And simplify the code.
17745
17746 Signed-off-by: Wolfgang Denk <wd@denx.de>
17747
17748commit 9196b44334c330cc13de2464c59181e4db71f549
17749Author: Matvejchikov Ilya <matvejchikov@gmail.com>
17750Date: Wed Jul 30 23:21:19 2008 +0400
17751
17752 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
17753
17754 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
17755
17756commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
17757Author: Matvejchikov Ilya <matvejchikov@gmail.com>
17758Date: Wed Jul 30 23:20:32 2008 +0400
17759
17760 PPC: Add pci_clk in the global_data for CPM2 processors
17761
17762 This patch adds pci_clk field to the global_data structure for the
17763 processors which have CPM2 module in case the CONFIG_PCI is defined.
17764
17765 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
17766
17767commit f0ff885ca64655bee6540eb8a25eed90b1152686
17768Author: Kumar Gala <galak@kernel.crashing.org>
17769Date: Wed Jul 30 14:13:30 2008 -0500
17770
17771 mpc85xx: Update linker scripts for Freescale boards
17772
17773 * Move to using absolute addressing always. Makes the scripts a bit more
17774 portable and common
17775 * Moved .bss after the end of the image. These allows us to have more
17776 room in the resulting binary image for code and data.
17777 * Removed .text object files that aren't really needed
17778 * Make sure _end is 4-byte aligned as the .bss init code expects this.
17779 (Its possible that the end of .bss isn't 4-byte aligned)
17780
17781 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17782
17783commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
17784Author: Kumar Gala <galak@kernel.crashing.org>
17785Date: Wed Jul 30 08:01:15 2008 -0500
17786
17787 Fix compile warnings in dlmalloc
17788
17789 The origional code was using on odd reference to get to the first
17790 real element in av_[]. The first two elements of the array are
17791 not used for actual bins, but for house keeping. If we are more
17792 explicit about how use the first few elements we can get rid of the
17793 warnings:
17794
17795 dlmalloc.c: In function 'malloc_extend_top':
17796 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
17797 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
17798 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
17799 ...
17800
17801 The logic of how this code came to be is:
17802 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
17803
17804 SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
17805 bin_at(0) = &(av_[0])
17806
17807 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
17808
17809 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17810
17811commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
17812Author: Stefan Roese <sr@denx.de>
17813Date: Wed Jul 30 10:21:01 2008 +0200
17814
17815 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
17816
17817 Signed-off-by: Stefan Roese <sr@denx.de>
17818
17819commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
17820Author: Stefan Roese <sr@denx.de>
17821Date: Wed Jul 30 09:59:51 2008 +0200
17822
17823 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
17824
17825 A recent patch used '#if (CONFIG_CMD_USB)' instead of
17826 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
17827 common/bootm.c compile again.
17828
17829 Signed-off-by: Stefan Roese <sr@denx.de>
17830 Acked-by: Markus Klotzbuecher <mk@denx.de>
17831
17832commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
17833Author: Kyungmin Park <kmpark@infradead.org>
17834Date: Tue Jul 22 08:01:43 2008 +0900
17835
17836 Remove unused I2C at apollon board
17837
17838 There are no I2C devices on this board.
17839
17840 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
17841
17842commit 3c95960e526b3b026da20201db64526f46faf14b
17843Author: Wolfgang Denk <wd@denx.de>
17844Date: Thu Jul 31 10:12:09 2008 +0200
17845
17846 at91rm9200dk, csb637: fix NAND related build problems
17847
17848 Tried fixing NAND support for the at91rm9200dk board; untested.
17849 Disabled NAND support in the csb637 board config file.
17850
17851 Signed-off-by: Wolfgang Denk <wd@denx.de>
17852
4b070809
WD
17853commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
17854Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17855Date: Wed Jul 30 12:39:28 2008 +0200
17856
17857 ppc4xx: ML507: Environment in flash and MTD Support
17858
17859 - Relocate the location of U-Boot in the flash
17860 - Save the environment in one sector of the flash memory
17861 - MTD Support
17862
17863 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17864 Signed-off-by: Stefan Roese <sr@denx.de>
17865
17866commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
17867Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17868Date: Tue Jul 29 17:16:10 2008 +0200
17869
17870 ppc4xx: ML507: Use of get_ram_size in board ml507
17871
17872 - Change suggested by WD
17873
17874 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17875 Signed-off-by: Stefan Roese <sr@denx.de>
17876
17877commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
17878Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17879Date: Mon Jul 21 20:30:07 2008 +0200
17880
17881 ppc4xx: ML507: U-Boot in flash and System ACE
17882
17883 This patch allows booting from FLASH the ML507 board by Xilinx.
17884 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
17885
17886 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
17887 Signed-off-by: Stefan Roese <sr@denx.de>
17888
a49d10cf
WD
17889commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
17890Author: Julien May <mailinglist@miromico.ch>
17891Date: Mon Jun 23 13:57:52 2008 +0200
17892
17893 Add support for the hammerhead (AVR32) board
17894
17895 The Hammerhead platform is built around a AVR32 32-bit microcontroller
17896 from Atmel. It offers versatile peripherals, such as ethernet, usb
17897 device, usb host etc.
17898
17899 The board also incooperates a power supply and is a Power over Ethernet
17900 (PoE) Powered Device (PD).
17901
17902 Additonally, a Cyclone III FPGA from Altera is integrated on the board.
17903 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
17904 DDR2 SDRAM interfaces, which will cover even the most exceptional need
17905 of memory bandwidth. Together with the onboard video decoder the board
17906 is ready for video processing.
17907
17908 For more information see: http:///www.miromico.com/hammerhead
17909
17910 Signed-off-by: Julien May <mailinglist@miromico.ch>
17911 [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
17912 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
17913
4b50cd12
WD
17914commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
17915Author: Kumar Gala <galak@kernel.crashing.org>
17916Date: Tue Jul 29 12:23:49 2008 -0500
17917
17918 fsl_i2c: Use timebase timer functions instead of get_timer()
17919
17920 The current implementation of get_timer() is only really useful after we
17921 have relocated u-boot to memory. The i2c code is used before that as part
17922 of the SPD DDR setup.
17923
17924 We actually have a bug when using the get_timer() code before relocation
17925 because the .bss hasn't been setup and thus we could be reading/writing
17926 a random location (probably in flash).
17927
17928 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17929
17930commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
17931Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
17932Date: Tue Jul 29 14:49:31 2008 +0200
17933
17934 Adder8xx: Fix CFG_MONITOR_LEN
17935
17936 Due to increased space usage, U-Boot can no longer be stored in three sectors.
17937 The current U-Boot use just over three flash sectors (197k), and U-Boot will
17938 become corrupt after saving environment variables. This patch adds another 64k
17939 to CFG_MONITOR_LEN.
17940
17941 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
17942
17943commit a4c59ad4a21140550ada6f97690d2527c4146ce5
17944Author: Kyungmin Park <kmpark@infradead.org>
17945Date: Tue Jul 29 08:47:57 2008 +0900
17946
17947 Add OneNAND IPL related files to gitignore
17948
17949 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
17950
17951commit 8d87589e8e874df7120a3d9667f051bc33bac250
17952Author: Rafal Jaworowski <raj@semihalf.com>
17953Date: Mon Jul 28 20:38:25 2008 +0200
17954
17955 API: Teach the storage layer about SATA and MMC options.
17956
17957 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
17958 Acked-by: Rafal Jaworowski <raj@semihalf.com>
17959
17960commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
17961Author: Rafal Jaworowski <raj@semihalf.com>
17962Date: Mon Jul 28 20:37:48 2008 +0200
17963
17964 API: Dump contents of sector 0 in the demo application.
17965
17966 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
17967 Acked-by: Rafal Jaworowski <raj@semihalf.com>
17968
17969commit 13ca6305f2eba49c175f6370c35286141059c789
17970Author: Rafal Jaworowski <raj@semihalf.com>
17971Date: Mon Jul 28 20:37:10 2008 +0200
17972
17973 API: Correct storage enumeration routine, other minor fixes in API storage area.
17974
17975 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
17976 Acked-by: Rafal Jaworowski <raj@semihalf.com>
17977
17978commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
17979Author: Rafal Jaworowski <raj@semihalf.com>
17980Date: Mon Jul 28 20:36:19 2008 +0200
17981
17982 API: Fix compilation warnings in api_examples/demo.c.
17983
17984 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
17985
17986commit c14eefcc48212af2f3314809605698dd8393a90a
17987Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17988Date: Sun Jul 27 17:09:43 2008 +0200
17989
17990 Fix more printf() format warnings
17991
17992 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17993
17994commit 936897d4d1365452bbbdf8430db5e7769ef08d38
17995Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17996Date: Fri Jul 25 15:18:16 2008 +0200
17997
17998 Fix remaining CFG_CMD_ define, ifdef and comments
17999
18000 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18001
18002commit 5d1d00fb36005482e1803a00ddc46efa11d719af
18003Author: Stefano Babic <sbabic@denx.de>
18004Date: Fri Jul 25 08:57:40 2008 +0200
18005
18006 Add include for config.h in command.h.
18007
18008 Because the cmd_tbl_s structure depends on the configuration file, it
18009 must be assured that config.h is included before the structure is
18010 evaluated by the compiler. If this is not certain, it could happen
18011 that the compiler generates structures of different size, depending
18012 on the fact if the source file includes <config.h> before or after
18013 <command.h>.
18014
18015 The effect is that u-boot crashes when tries to relocate the command
18016 table (for ppc) or try to access to the command table for other
18017 architectures.
18018
18019 The problem can happen on board-depending commands. All general
18020 commands under /common are unaffected, because they include already
18021 config.h before command.h.
18022
18023 Signed-off-by: Stefano Babic <sbabic@denx.de>
18024
18025commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
18026Author: Scott Wood <scottwood@freescale.com>
18027Date: Wed Jul 23 13:16:06 2008 -0500
18028
18029 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
18030
18031 This fixes building out-of-tree.
18032
18033 Signed-off-by: Scott Wood <scottwood@freescale.com>
18034
18035commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
18036Author: Heiko Schocher <hs@denx.de>
18037Date: Wed Jul 23 07:30:46 2008 +0200
18038
18039 Fix warnings if compiling with IDE support.
18040
18041 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
18042 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
18043
18044 Signed-off-by: Heiko Schocher <hs@denx.de>
18045
18046commit 7610db17fd4d59c51d825488526d85ede2f06767
18047Author: Adrian Filipi <adrian.filipi@eurotech.com>
18048Date: Tue Jul 22 14:28:11 2008 -0400
18049
18050 Removed support for the adsvix board.
18051
18052 Support for the adsvix was originally provided by Applied Data
18053 Systems (ADS), inc., now EuroTech, Inc.
18054 The board never shipped aside from some sample boards.
18055
18056 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
18057
18058commit f96b44cef897bd372beb86dde1b33637c119d84d
18059Author: Remy Bohmer <linux@bohmer.net>
18060Date: Tue Jul 22 16:22:11 2008 +0200
18061
18062 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
18063
18064 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
18065 never set, because relocation to RAM is actually never done by U-boot
18066 itself. However, several pieces of code check if this flag is set at
18067 some time.
18068
18069 So, to make sure this flag is set on boards skipping relocation, this
18070 is added to the initialisation of U-boot at a moment where it is safe
18071 to do so.
18072
18073 Signed-off-by: Remy Bohmer <linux@bohmer.net>
18074
18075commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
18076Author: Timur Tabi <timur@freescale.com>
18077Date: Mon Jul 21 14:26:23 2008 -0500
18078
18079 fsl-i2c: fix writes to data segment before relocation
18080
18081 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
18082 relocation. Commit d8c82db4 added the ability for i2c_init() to program the
18083 I2C bus speed and save the value in i2c_bus_speed[], which is a global
18084 variable. It is an error to write to the data segment before relocation,
18085 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
18086
18087 Signed-off-by: Timur Tabi <timur@freescale.com>
18088
18089commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
18090Author: Wolfgang Ocker <weo@reccoware.de>
18091Date: Mon Jul 28 16:56:51 2008 +0200
18092
18093 mips: Fix baudrate divisor computation on alchemy cpus
18094
18095 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
18096 on alchemy cpus.
18097
18098 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
18099 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
18100
a49d10cf
WD
18101commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
18102Author: Ben Warren <biggerbadderben@gmail.com>
18103Date: Sat Jul 5 00:08:48 2008 -0700
18104
18105 Moved initialization of AVR32 Ethernet controllers to board_eth_init()
18106
18107 Renamed initialization functions for atngw100 and atstk1000.
18108 Removed initializations for these boards from net/eth.c
18109
18110 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18111 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18112
4b50cd12
WD
18113commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
18114Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18115Date: Wed Jul 23 10:55:46 2008 +0200
18116
18117 spi flash: Fix printf() format warnings
18118
18119 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18120
18121commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
18122Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18123Date: Wed Jul 23 10:55:31 2008 +0200
18124
18125 atmel_mci: Fix printf() format warnings
18126
18127 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18128
18129commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
18130Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18131Date: Wed Jul 23 10:55:15 2008 +0200
18132
18133 avr32: Fix printf() format warnings
18134
18135 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18136
18137commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
18138Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18139Date: Wed Jul 23 10:52:19 2008 +0200
18140
18141 avr32: asm/io.h needs asm/types.h
18142
18143 map_physmem() takes a phys_addr_t as parameter. This type is defined in
18144 asm/types.h, so we need to include that file.
18145
18146 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18147
18148commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
18149Author: Michal Simek <monstr@monstr.eu>
18150Date: Thu Jul 17 12:25:46 2008 +0200
18151
18152 microblaze: Fix printf() format issues
18153
18154 Signed-off-by: Michal Simek <monstr@monstr.eu>
18155
18156commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
18157Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
18158Date: Thu Jul 17 07:27:51 2008 +0530
18159
18160 Remove unused code from lib_arm/bootm.c
18161
18162 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
18163
18164commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
18165Author: Detlev Zundel <dzu@denx.de>
18166Date: Wed Jul 16 18:56:45 2008 +0200
18167
18168 tqm85xx: Demystify 'DK: !!!' comment
18169
18170 Signed-off-by: Detlev Zundel <dzu@denx.de>
18171
18172commit b2f44ba570f3a01113bbb745daf46f3858d22f53
18173Author: Detlev Zundel <dzu@denx.de>
18174Date: Wed Jul 16 18:56:44 2008 +0200
18175
18176 83xx/85xx/86xx: Add LTEDR local bus definitions
18177
18178 Signed-off-by: Detlev Zundel <dzu@denx.de>
18179
18180commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
18181Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18182Date: Wed Jul 16 16:22:32 2008 +0200
18183
18184 serial_xuartlite.c: fix compiler warnings
18185
18186 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18187 Acked-by: Grant Likely <grant.likely@secretlab.ca>
18188
18189commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
18190Author: Stefan Roese <sr@denx.de>
18191Date: Fri Jul 18 11:03:35 2008 +0200
18192
18193 POST: Add disable interrupts in some of the missing CPU POST tests
18194
18195 Some CPU POST tests did not disable the interrupts while running. This
18196 seems to be necessary to protect this self modifying code.
18197
18198 Signed-off-by: Stefan Roese <sr@denx.de>
18199
18200commit 97a3bf268d096e0e97e54048448c35114edcf557
18201Author: Stefan Roese <sr@denx.de>
18202Date: Fri Jul 18 10:43:24 2008 +0200
18203
18204 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
18205
18206 This is needed for boards that define CFG_64BIT_STRTOUL but don't define
18207 CFG_64BIT_LBA.
18208
18209 Signed-off-by: Stefan Roese <sr@denx.de>
18210
18211commit 0043ac55024963295fc79b39af85b6dc3b261e17
18212Author: Niklaus Giger <niklaus.giger@netstal.com>
18213Date: Fri Jul 18 11:22:23 2008 +0200
18214
18215 POST PPC4xx/spr IVPR only if PPC440
18216
18217 The SPR IVPR register is only present (as far as I know) for
18218 processors with a PPC440 core.
18219
18220 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
18221 Acked-by: Stefan Roese <sr@denx.de>
18222
18223commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
18224Author: Stefan Roese <sr@denx.de>
18225Date: Fri Jul 18 10:42:29 2008 +0200
18226
18227 ppc4xx: Enable 64bit printf format on 440/460 platforms
18228
18229 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
18230 440/460 platforms. This may be needed since those platforms support
18231 36bit physical address space.
18232
18233 Signed-off-by: Stefan Roese <sr@denx.de>
18234
18235commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
18236Author: Stefan Roese <sr@denx.de>
18237Date: Fri Jul 18 15:57:23 2008 +0200
18238
18239 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
18240
18241 This patch fixes a problem with incorrect MODTx (On Die Termination)
18242 setup for a configuration with multiple DIMM's and multiple ranks.
18243 Without this change Katmai was unable to boot Linux with DDR2 frequency
18244 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
18245 with DDR2 frequency = 640MHz and mem=4GB.
18246
18247 Signed-off-by: Stefan Roese <sr@denx.de>
18248
4b070809
WD
18249commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
18250Author: Stefan Roese <sr@denx.de>
18251Date: Fri Jul 18 12:24:41 2008 +0200
18252
18253 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
18254
18255 Signed-off-by: Stefan Roese <sr@denx.de>
18256
18257commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
18258Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18259Date: Thu Jul 17 12:47:09 2008 +0200
18260
18261 ppc4xx: ML507 Board Support
18262
18263 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
18264 among others:
18265 -Virtex 5 FX FPGA (With a ppc440x5 in it)
18266 -256MB of SDRAM2
18267 -32MB of Flash
18268 -I2C Eeprom
18269 -System ACE chip
18270 -Serial ATA connectors
18271 -RS232 Level Conversors
18272 -Ethernet Transceiver
18273
18274 This patch gives support to a standard design produced by EDK for this
18275 board: ppc440, uartlite, xilinx_int and flash
18276
18277 - Includes Changes propossed by Stefan Roese and Michal Simek
18278
18279 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18280 Acked-by: Stefan Roese <sr@denx.de>
18281
18282commit d865fd09809a3a18669f35f970781820af40e4de
18283Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18284Date: Thu Jul 17 11:44:12 2008 +0200
18285
18286 ppc4xx: CPU PPC440x5 on Virtex5 FX
18287
18288 -This patchs gives support for the embbedded ppc440
18289 on the Virtex5 FPGAs
18290 -interrupts.c divided in uic.c and interrupts.c
18291 -xilinx_irq.c for xilinx interrupt controller
18292 -Include modifications propossed by Stefan Roese
18293
18294 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
18295 Acked-by: Stefan Roese <sr@denx.de>
18296
4b50cd12
WD
18297commit 340ccb260f21516be360745d5c5e3bd0657698df
18298Author: Sebastian Siewior <bigeasy@linutronix.de>
18299Date: Wed Jul 16 20:04:49 2008 +0200
18300
18301 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
18302
18303 This got broken by commits 93c56f212c
18304 [cfi_flash: support of long cmd in U-boot.]
18305
18306 That command needs to be in little endian format on BE machines
18307 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
18308 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
18309 the cmdbuf in case portwidth = chipwidth = 8bit.
18310
18311 Cc: Alexey Korolev <akorolev@infradead.org>
18312 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
18313 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
18314
4b070809
WD
18315commit 11188d55bc16dd907451c00282e00a038f73dd62
18316Author: Stefan Roese <sr@denx.de>
18317Date: Thu Jul 17 10:40:51 2008 +0200
18318
18319 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
18320
18321 Signed-off-by: Stefan Roese <sr@denx.de>
18322
285db747
WD
18323commit 021f6df6e96af5b387810cf96d24848da1faa55c
18324Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18325Date: Thu Jul 10 17:20:51 2008 +0400
18326
18327 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
18328
18329 The thinko was quite silly indeed, I messed with !ptr. Normally this
18330 would trigger some fault, but in U-Boot NULL pointer is equal to phys
18331 0, so the code was working still, just didn't actually test mpc8315erdb
18332 environment variable value. Heh.
18333
18334 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18335 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18336
18337commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
18338Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18339Date: Tue Jul 8 21:00:04 2008 +0400
18340
18341 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
18342
18343 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
18344 support, or without TSEC1 but with USB ULPI PHY support in addition.
18345 With this patch user can specify desired USB PHY.
18346
18347 Also, it seems that we can't distinguish the two boards in software, so
18348 user have to set `mpc8315erdb' environment variable to either 'tsec1'
18349 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
18350 Linux will not probe for TSEC1.
18351
18352 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18353 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18354
18355commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
18356Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18357Date: Tue Jul 8 20:59:43 2008 +0400
18358
18359 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
18360
18361 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
18362 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
18363 (connected to the four-ports hub, usb host only).
18364
18365 This patch implements support for passing Dual-Role USB controller's
18366 device tree property phy_type through the usb_phy_type environment
18367 variable.
18368
18369 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
18370 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
18371 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18372
4b50cd12
WD
18373commit 699f05125509249072a0b865c8d35520d97cd501
18374Author: Wolfgang Denk <wd@denx.de>
18375Date: Tue Jul 15 22:22:44 2008 +0200
18376
18377 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
18378
18379 Signed-off-by: Wolfgang Denk <wd@denx.de>
18380
699f0512
WD
18381commit bcab74baa6b1b1c969038ab6f64a186239180405
18382Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18383Date: Tue Jul 15 11:23:02 2008 -0400
18384
18385 Round the serial port clock divisor value returned by calc_divisor()
18386
18387 Round the serial port clock divisor value returned by
18388 calc_divisor()
18389
18390 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18391 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
18392
18393commit 0328ef0edfe950f0b7b8b368dae482531506b74a
18394Author: Robin Getz <rgetz@blackfin.uclinux.org>
18395Date: Tue Jul 15 21:44:46 2008 +0200
18396
18397 Fix DHCP protocol so U-Boot does not respond too early
18398 on the network with it's offered IP number; it should not reply until
18399 after it has received a DHCP ACK message. Also ensures that U-Boot
18400 does it's DHCPREQUEST as broadcast (per RFC 2131).
18401
18402 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
18403 Acked-by: Ben Warren <biggerbadderben@gmail.com>
18404 Signed-off-by: Wolfgang Denk <wd@denx.de>
18405
18406commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
18407Author: Sebastian Siewior <bigeasy@linutronix.de>
18408Date: Tue Jul 15 13:35:23 2008 +0200
18409
18410 cfi_flash: make the command u32 only
18411
18412 This got changed by commit 93c56f212c
18413 [cfi_flash: support of long cmd in U-boot.]
18414
18415 Long is the wrong type because it will behave differently on 64bit
18416 machines in a way that is probably not expected. u32 should be
18417 enough.
18418
18419 Cc: Alexey Korolev <akorolev@infradead.org>
18420 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
18421 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
18422
18423commit 31cfe57491b183acae575d486729e158f016c27b
18424Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18425Date: Mon Jul 14 23:48:41 2008 +0200
18426
18427 tools/gitignore: update to all generated files
18428
18429 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18430
18431commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
18432Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
18433Date: Wed Jul 9 18:30:44 2008 +0200
18434
18435 mpc5xxx: Add MVBC_P board support
18436
18437 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
18438 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
18439
18440 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
18441 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
18442
18443commit e2d31fb3450653115452144363d5bde4e5e3e693
18444Author: Timur Tabi <timur@freescale.com>
18445Date: Thu Jun 19 17:56:11 2008 -0500
18446
18447 Update Freescale sys_eeprom.c to handle CCID formats
18448
18449 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The
18450 NXID format replaces the older CCID format, but it's important to support both
18451 since most boards out there still use the CCID format. This change is in
18452 preparation for using one file to handle both formats. This will also unify
18453 EEPROM support for all Freescale 85xx and 86xx boards.
18454
18455 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
18456 instead of ID_EEPROM_ADDR.
18457
18458 Signed-off-by: Timur Tabi <timur@freescale.com>
18459
18460commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
18461Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18462Date: Fri Jul 11 17:22:43 2008 +0900
18463
18464 pci: sh: Add pci_skip_dev and pci_print_dev function
18465
18466 Add function of new PCI, pci_skip_dev and pci_print_dev.
18467
18468 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
18469 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
18470
18471commit 1107014e835ec9d46c0333f4211d104f77442db0
18472Author: Andy Fleming <afleming@freescale.com>
18473Date: Mon Jul 14 20:29:07 2008 -0500
18474
18475 Clean up INIT_RAM options
18476
18477 The L2_INIT_RAM option was unused, and recent changes to the TLB code
18478 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce
18479 the amount of mapped space attached to nothing, we change things so the TLBs
18480 get cleared.
18481
18482 Signed-off-by: Andy Fleming <afleming@freescale.com>
18483
18484commit 4524561820a9327e89107854b3a7187800ccf719
18485Author: Andy Fleming <afleming@freescale.com>
18486Date: Mon Jul 14 20:26:57 2008 -0500
18487
18488 Remove fake flash bank from 8544 DS
18489
18490 The fake flash bank was generating errors for anyone who didn't have a
18491 PromJET hooked up to the board. As that constitutes the vast majority of
18492 users, we remove it.
18493
18494 Signed-off-by: Andy Fleming <afleming@freescale.com>
18495
18496commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
18497Author: Kumar Gala <galak@kernel.crashing.org>
18498Date: Mon Jul 14 14:07:03 2008 -0500
18499
18500 MPC8544DS: Add ATI Video card support
18501
18502 Add support for using a PCIe ATI Video card on PCIe2.
18503
18504 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18505
18506commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
18507Author: Kumar Gala <galak@kernel.crashing.org>
18508Date: Mon Jul 14 14:07:02 2008 -0500
18509
18510 85xx: Add some L1/L2 SPR register definitions
18511
18512 Add new L1/L2 SPRs related to e500mc cache config and control.
18513
18514 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18515
18516commit e5852787f0c3c442a276262f13d91ca450605ac0
18517Author: Kumar Gala <galak@kernel.crashing.org>
18518Date: Mon Jul 14 14:07:01 2008 -0500
18519
18520 MPC8544DS: Report board id, board version and fpga version.
18521
18522 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18523
18524commit 73f15a060f67a2462551c334215bd20fac6b81d1
18525Author: Kumar Gala <galak@kernel.crashing.org>
18526Date: Mon Jul 14 14:07:00 2008 -0500
18527
18528 85xx: Cleanup L2 cache size detection
18529
18530 The L2 size detection code was a bit confusing and we kept having to add
18531 code to it to handle new processors. Change the sense of detection so we
18532 look for the older processors that aren't changing.
18533
18534 Also added support for 1M cache size on 8572.
18535
18536 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18537
18538commit c3ca7e5e00a24451f20df3bded9a61ba541921df
18539Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18540Date: Fri Jul 11 15:33:08 2008 -0400
18541
18542 sbc8560: enable CONFIG_OF_LIBFDT by default
18543
18544 Make the default build for the sbc8560 board be powerpc
18545 capable with libfdt support.
18546
18547 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18548
18549commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
18550Author: Andy Fleming <afleming@freescale.com>
18551Date: Mon Jul 14 20:04:40 2008 -0500
18552
18553 Fix indentation for default boot environment variables
18554
18555 This was proposed by Paul Gortmaker in response to Wolfgang's comments on
18556 similar #defines in sbc8560.h.
18557
18558 Signed-off-by: Andy Fleming <afleming@freescale.com>
18559
18560commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
18561Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18562Date: Fri Jul 11 15:33:07 2008 -0400
18563
18564 sbc8560: add default fdt values
18565
18566 Add in the default fdt settings and the typical EXTRA_ENV
18567 settings as borrowed from the mpc8560ads. Fix a couple
18568 of stale references to the mpc8560ads dating back to the
18569 original clone/fork.
18570
18571 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18572 Signed-off-by: Andy Fleming <afleming@freescale.com>
18573
18574commit d04e76edf92f7f89696989e8702b97e020455af3
18575Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18576Date: Fri Jul 11 15:33:06 2008 -0400
18577
18578 sbc8560: add in ft_board_setup()
18579
18580 Add in for the sbc8560, the ft_board_setup() routine, based on what is
18581 in use for the Freescale MPC8560ADS board.
18582
18583 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18584
18585commit c158bcaca3b31cbe38c4143812e6170e38a57393
18586Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18587Date: Fri Jul 11 15:33:05 2008 -0400
18588
18589 sbc8560: define eth0 and eth1 instead of eth1 and eth2
18590
18591 The existing config doesn't define CONFIG_HAS_ETH0, and so the
18592 fdt support doesn't update the zeros in the dtb local-mac with
18593 real data from the u-boot env. Since the existing config is
18594 tailored to just two interfaces, get rid of the ETH2 definitions
18595 at the same time.
18596
18597 Also don't include any end user specific data into the environment
18598 by default -- things like MAC address, network parameters etc. need
18599 to come from the end user.
18600
18601 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18602 Signed-off-by: Andy Fleming <afleming@freescale.com>
18603
18604commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
18605Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18606Date: Fri Jul 11 15:33:04 2008 -0400
18607
18608 sbc8560: properly set cs0_bnds for 512MB
18609
18610 The sbc8560 board ships with 512MB of memory installed,
18611 but the current cs0_bnds is hard coded for 256MB. Set the
18612 value based on CFG_SDRAM_SIZE.
18613
18614 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18615
18616commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
18617Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18618Date: Fri Jul 11 15:33:03 2008 -0400
18619
18620 sbc8560: proper definitions for TSEC.
18621
18622 The definitions for the TSEC have become out of date. There is no
18623 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
18624 Update to match those of other boards, like the MPC8560ADS.
18625
18626 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18627 Acked-by: Ben Warren <biggerbadderben@gmail.com>
18628
18629commit 71074abbe0c76429577aff58aeff0a24ad210b23
18630Author: Paul Gortmaker <paul.gortmaker@windriver.com>
18631Date: Wed Jul 9 13:23:05 2008 -0400
18632
18633 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
18634
18635 Some boards that have external 16550 UARTs don't have a direct
18636 tie between bi_busfreq and the clock used for the UARTs. Boards
18637 that do have such a tie should set CFG_NS16550_CLK to be
18638 get_bus_freq(0) -- which most of them do already.
18639
18640 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
18641 Acked-by: Kim Phillips <kim.phillips@freescale.com>
18642
18643commit 24ef76f320fbadf074105229826514db140f939f
18644Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
18645Date: Wed Jul 2 07:03:53 2008 -0700
18646
18647 Change the temp map to ROM to align addresses to page size.
18648
18649 With a page size of BOOKE_PAGESZ_16M, both the real and effective
18650 addresses must be multiples of 16MB. The hardware silently truncates
18651 them so the code happens to work. This patch clarifies the situation
18652 by establishing addresses that the hardware doesn't need to truncate.
18653
18654 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
18655 Signed-off-by: Andy Fleming <afleming@freescale.com>
18656
18657commit 06b4186c10204b6683edb047ac5f506fb0ce0937
18658Author: Kim Phillips <kim.phillips@freescale.com>
18659Date: Tue Jun 17 17:45:22 2008 -0500
18660
18661 mpc85xx: use IS_E_PROCESSOR macro
18662
18663 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18664
18665commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
18666Author: Kim Phillips <kim.phillips@freescale.com>
18667Date: Mon Jun 16 15:55:53 2008 -0500
18668
18669 fdt: add crypto node handling for MPC8{3, 5}xxE processors
18670
18671 Delete the crypto node if not on an E-processor. If on 8360 or 834x family,
18672 check rev and up-rev crypto node (to SEC rev. 2.4 property values)
18673 if on an 'EA' processor, e.g. MPC8349EA.
18674
18675 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18676
18677commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
18678Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18679Date: Fri Jul 11 15:10:11 2008 -0400
18680
18681 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
18682
18683 ARM DaVinci: Remove extern phy_t declaration by moving
18684 code to proper place.
18685
18686 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18687
18688commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
18689Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18690Date: Fri Jul 11 15:10:10 2008 -0400
18691
18692 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
18693
18694 ARM DaVinci: Remove duplicate definitions of MACH_TYPE
18695 and prototype of i2c_init().
18696
18697 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18698
18699commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
18700Author: Kumar Gala <galak@kernel.crashing.org>
18701Date: Mon Jul 14 14:03:02 2008 -0500
18702
18703 Fix some more printf() format problems.
18704
18705 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18706
18707commit 45b16d22c64674ccd8c4637456a987463609141c
18708Author: Wolfgang Denk <wd@denx.de>
18709Date: Mon Jul 14 22:38:42 2008 +0200
18710
18711 Fix coding style; make code better parsable by external tools
18712
18713 Signed-off-by: Wolfgang Denk <wd@denx.de>
18714
18715commit b880cbf207b1c109d3a661417a8feddcbd729a9d
18716Author: Wolfgang Denk <wd@denx.de>
18717Date: Mon Jul 14 21:19:08 2008 +0200
18718
18719 cpu/i386/serial.c: Fix syntax errors
18720
18721 Signed-off-by: Wolfgang Denk <wd@denx.de>
18722
18723commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
18724Author: Wolfgang Denk <wd@denx.de>
18725Date: Mon Jul 14 20:41:35 2008 +0200
18726
18727 elppc board: Coding style cleanup.
18728
18729 Signed-off-by: Wolfgang Denk <wd@denx.de>
18730
18731commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
18732Author: Wolfgang Denk <wd@denx.de>
18733Date: Mon Jul 14 20:40:22 2008 +0200
18734
18735 elppc board: fix syntax error.
18736
18737 Signed-off-by: Wolfgang Denk <wd@denx.de>
18738
18739commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
18740Author: Wolfgang Denk <wd@denx.de>
18741Date: Mon Jul 14 20:38:26 2008 +0200
18742
18743 EB+MCF-EV123 board: fix coding style (alingment)
18744
18745 Signed-off-by: Wolfgang Denk <wd@denx.de>
18746
18747commit 6841785a0bb0f38175456a923edd634fb7dd6947
18748Author: Wolfgang Denk <wd@denx.de>
18749Date: Mon Jul 14 20:36:44 2008 +0200
18750
18751 EB+MCF-EV123 board: fix syntx error
18752
18753 Signed-off-by: Wolfgang Denk <wd@denx.de>
18754
18755commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
18756Author: Andy Fleming <afleming@freescale.com>
18757Date: Mon Jul 7 18:02:08 2008 -0500
18758
18759 Remove LBC_CACHE_BASE from 8544 DS
18760
18761 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping
18762 space for some anyway, we were allowing speculative loads into unmapped space,
18763 which would cause an exception (annoying, even if ultimately harmless).
18764 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
18765 problem.
18766
18767 Signed-off-by: Andy Fleming <afleming@freescale.com>
18768
18769commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
18770Author: Wolfgang Denk <wd@denx.de>
18771Date: Mon Jul 14 15:19:07 2008 +0200
18772
18773 Code cleanup: fix old style assignment ambiguities like "=-" etc.
18774
18775 Signed-off-by: Wolfgang Denk <wd@denx.de>
18776
18777commit d7854223c5c85b5849fbf422cc8ac0efef461c37
18778Author: Wolfgang Denk <wd@denx.de>
18779Date: Mon Jul 14 15:10:53 2008 +0200
18780
18781 AmigaOneG3SE: remove dead and incomplete files
18782
18783 Signed-off-by: Wolfgang Denk <wd@denx.de>
18784
18785commit b64f190b7a34224df09b559ca111eb1b733f00ad
18786Author: Wolfgang Denk <wd@denx.de>
18787Date: Mon Jul 14 15:06:35 2008 +0200
18788
18789 Fix printf() format issues with sizeof_t types by using %zu
18790
18791 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18792 Signed-off-by: Wolfgang Denk <wd@denx.de>
18793
18794commit f354b73e16a86f9e9085471a830605f74f84ea5d
18795Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18796Date: Mon Jul 14 14:11:45 2008 +0200
18797
18798 vsprintf: add z and t options
18799
18800 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18801
18802commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
18803Author: Wolfgang Denk <wd@denx.de>
18804Date: Sun Jul 13 23:07:35 2008 +0200
18805
18806 Fix some more printf() format issues.
18807
18808 Signed-off-by: Wolfgang Denk <wd@denx.de>
18809
18810commit d5996dd555edf52721b7691a4c59de016251ed39
18811Author: Wolfgang Denk <wd@denx.de>
18812Date: Sun Jul 13 19:51:00 2008 +0200
18813
18814 Fix some more printf() format problems.
18815
18816 Signed-off-by: Wolfgang Denk <wd@denx.de>
18817
18818commit 0f9d5f6d6e814907794995c6a22af752040c35d9
18819Author: Wolfgang Denk <wd@denx.de>
18820Date: Sun Jul 13 19:48:26 2008 +0200
18821
18822 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
18823
18824 Signed-off-by: Wolfgang Denk <wd@denx.de>
18825
18826commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
18827Author: Anatolij Gustschin <agust@denx.de>
18828Date: Sat Jul 12 17:31:36 2008 +0200
18829
18830 Fix bug in Lime video driver
18831
18832 We need to wait while drawing engine clears frame
18833 buffer before any further software accesses to frame
18834 buffer will be initiated. Otherwise software drawn
18835 parts could be partially destroyed by the drawing
18836 engine or even GDC chip freeze could occur (as
18837 observed on socrates board).
18838
18839 Signed-off-by: Anatolij Gustschin <agust@denx.de>
18840
18841commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
18842Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18843Date: Sat Jul 12 14:36:34 2008 +0200
18844
18845 Fix some more printf() format issues.
18846
18847 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18848
18849commit 18c8a28aad49803780bd8d52432ded528e37e701
18850Author: Michal Simek <monstr@monstr.eu>
18851Date: Fri Jul 11 15:11:57 2008 +0200
18852
18853 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
18854
18855 Signed-off-by: Michal Simek <monstr@monstr.eu>
18856 Acked-by: Stefan Roese <sr@denx.de>
18857
18858commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
18859Author: Michal Simek <monstr@monstr.eu>
18860Date: Fri Jul 11 11:50:53 2008 +0200
18861
18862 hwmon: Cleaning hwmon devices
18863
18864 Clean Makefile
18865 Move device specific values to driver for better reading
18866
18867 Signed-off-by: Michal Simek <monstr@monstr.eu>
18868 Acked-by: Stefan Roese <sr@denx.de>
18869
18870commit c78fce699c7ff467ecd841da6a79f065180bf578
18871Author: Michal Simek <monstr@monstr.eu>
18872Date: Fri Jul 11 10:43:13 2008 +0200
18873
18874 FIS: repare incorrect return value with ramdisk handling
18875
18876 Microblaze and PowerPC use boot_get_ramdisk for loading
18877 ramdisk to memory with checking return value.
18878 Return 0 means success. Return 1 means failed.
18879 Here is correspond part of code from bootm.c which check
18880 return code.
18881
18882 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
18883 &rd_data_start, &rd_data_end);
18884 if (ret)
18885 goto error;
18886
18887 Signed-off-by: Michal Simek <monstr@monstr.eu>
18888
18889commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
18890Author: Michal Simek <monstr@monstr.eu>
18891Date: Fri Jul 11 10:10:32 2008 +0200
18892
18893 microblaze: Remove useless ancient headers
18894
18895 Signed-off-by: Michal Simek <monstr@monstr.eu>
18896
18897commit 53ea981c3124b13c137c2d10e975b7c6672266e0
18898Author: Michal Simek <monstr@monstr.eu>
18899Date: Fri Jul 11 10:10:31 2008 +0200
18900
18901 microblaze: Clean uartlite driver
18902
18903 Redesign uartlite driver to in_be32 and out_be32 macros
18904 Fix missing header in io.h
18905
18906 Signed-off-by: Michal Simek <monstr@monstr.eu>
18907 Acked-by: Grant Likely <grant.likely@secretlab.ca>
18908
18909commit dbf3dfb386a2d5d2381814e39985ab2e21894550
18910Author: Marcel Ziswiler <marcel@ziswiler.com>
18911Date: Fri Jul 11 02:39:14 2008 +0200
18912
18913 Enable passing of ATAGs required by latest Linux kernel.
18914
18915commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
18916Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18917Date: Fri Jul 11 10:24:15 2008 -0400
18918
18919 Fix integer overflow warning in calc_divisor()
18920
18921 which happened when rounding the serial port clock divisor
18922
18923 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18924
18925commit 6b760189d77f001684e3160b355c185ca3804961
18926Author: Marcel Ziswiler <marcel@ziswiler.com>
18927Date: Fri Jul 11 01:09:59 2008 +0200
18928
18929 Fix build time warnings in function mmc_decode_csd()
18930
18931 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
18932
18933commit c15947d6ce0d59925c97fdfac692476af6e262d0
18934Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18935Date: Thu Jul 10 10:46:33 2008 -0400
18936
18937 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
18938
18939 caused by missing dcache status/enable/disable functions.
18940
18941 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
18942
18943commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
18944Author: Stefan Roese <sr@denx.de>
18945Date: Thu Jul 10 13:53:31 2008 +0200
18946
18947 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
18948
18949 This patch removes some ft_board_setup() functions from some 4xx boards.
18950 This can be done since we now have a default weak implementation for this
18951 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
18952 implementation like canyonlands need their own version.
18953
18954 Signed-off-by: Stefan Roese <sr@denx.de>
18955
18956commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
18957Author: Wolfgang Denk <wd@denx.de>
18958Date: Sun Jul 13 14:58:16 2008 +0200
18959
18960 Add last known maintainer for orphaned boards; reformat.
18961
18962 Signed-off-by: Wolfgang Denk <wd@denx.de>
18963
18964commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
18965Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18966Date: Thu Jul 10 13:16:04 2008 +0200
18967
18968 Remove kharris@nexus-tech.net from MAINTAINERS
18969
18970 Mail to kharris@nexus-tech.net bounces because the user doesn't exist
18971 anymore. You can't be a maintainer without a valid e-mail address, so
18972 move all boards that used to be maintained by Kyle Harris to the
18973 "orphaned" list.
18974
18975 Currently, only PowerPC has a list of orphaned boards, so this patch
18976 creates one for ARM as well.
18977
18978 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
18979
18980commit 17bd17071463b0cde391ac4a0863d600474b4ea1
18981Author: Anatolij Gustschin <agust@denx.de>
18982Date: Thu Jul 10 01:15:10 2008 +0200
18983
18984 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
18985
18986 On the at91sam9260ep development board there is an EEPROM
18987 connected to the TWI interface (PA23, PA24 Peripheral A
18988 multiplexing), so we cannot use these pins as ETX2, ETX3.
18989 This patch configures PA10, PA11 pins for ETX2, ETX3
18990 instead of PA23, PA24 pins.
18991
18992 Signed-off-by: Anatolij Gustschin <agust@denx.de>
18993 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
18994
18995commit f889265753ddf4465d9d580827bb9289bfac55d6
18996Author: Kenneth Johansson <kenneth@southpole.se>
18997Date: Sat Jul 12 13:18:34 2008 -0600
18998
18999 fix DIU for small screens
19000
19001 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
19002 so it was not possible to set a slow pixel clock and thus prevented
19003 display on small screens.
19004
19005 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
19006 Acked-by: John Rigby <jrigby@freescale.com>
19007
19008commit b60b8573875e650e4c69be667bfc88d3ed474a7c
19009Author: John Rigby <jrigby@freescale.com>
19010Date: Fri Jul 11 14:44:09 2008 -0600
19011
19012 ADS5121 cleanup compile warnings
19013
19014 board/ads5121/iopin.c
19015 Replace bit fields in struct iopin_t with a single
19016 field and intialize it via plain old macros.
19017 This fixes the type pun warnings and makes the code
19018 more readable.
19019
19020 board/ads5121/ads5121.c
19021 Add include iopin.h to ads5121.c for the iopin_initialize
19022 prototype.
19023
19024 Add an extern void ads5121_diu_init(void)
19025
19026 Signed-off-by: John Rigby <jrigby@freescale.com>
19027
19028commit bde63587622c4b830a27d1ddf7265843de9e994f
19029Author: Wolfgang Denk <wd@denx.de>
19030Date: Fri Jul 11 22:56:11 2008 +0200
19031
19032 Fix some more printf() format issues.
19033
19034 Signed-off-by: Wolfgang Denk <wd@denx.de>
19035
19036commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
19037Author: Wolfgang Denk <wd@denx.de>
19038Date: Fri Jul 11 22:55:31 2008 +0200
19039
19040 Fixed some out-of-tree build issues
19041
19042 Signed-off-by: Wolfgang Denk <wd@denx.de>
19043
19044commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
19045Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19046Date: Wed Jul 9 16:20:23 2008 -0500
19047
19048 ColdFire: Fix FB CS not setup properly for Mcf5282
19049
19050 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
19051 CFG_CSn_RO is defined as 0, the chipselect will not
19052 be assigned.
19053
19054 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19055
19056commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
19057Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19058Date: Wed Jul 9 15:47:27 2008 -0500
19059
19060 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
19061
19062 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
19063 clock module in cpu/<cf arch>/cpu_init.c
19064
19065 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19066
19067commit f94945b517f10e01927101679c62361e03d4e837
19068Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19069Date: Wed Jul 9 15:25:01 2008 -0500
19070
19071 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
19072
19073 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19074
19075commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
19076Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19077Date: Wed Jul 9 15:21:44 2008 -0500
19078
19079 Fix compile error caused by missing timer function
19080
19081 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
19082
19083 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19084
19085commit c37ea031175b807c54e6bad9b270e9bede6c0078
19086Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19087Date: Wed Jul 9 15:14:25 2008 -0500
19088
19089 Fix compile error caused by incorrect function return type
19090
19091 Rename int mii_init(void) to void mii_init(void)
19092
19093 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19094
19095commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
19096Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19097Date: Wed Jun 18 19:27:23 2008 -0500
19098
19099 ColdFire: Fix power up issue for MCF5235
19100
19101 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19102
19103commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
19104Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19105Date: Wed Jun 18 19:19:07 2008 -0500
19106
19107 ColdFire: Fix compiling error for MCF5275
19108
19109 The compiling error was caused by missing a closed parentheses
19110 in speed.c
19111
19112 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19113
19114commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
19115Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19116Date: Wed Jun 18 19:14:01 2008 -0500
19117
19118 ColdFire: Fix timer issue for MCF5272
19119
19120 The timer was assigned to wrong timer memory mapped which
19121 caused udelay() and timer() not working properly.
19122
19123 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19124
19125commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
19126Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19127Date: Wed Jun 18 19:12:13 2008 -0500
19128
19129 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
19130
19131 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
19132
19133commit 8371dc2066136be21e10b7b9293e469297d77298
19134Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19135Date: Wed Jun 18 19:05:23 2008 -0500
19136
19137 ColdFire: Add -got=single param for new linux v4e toolchains
19138
19139 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
19140
19141commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
19142Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19143Date: Wed Jun 18 13:21:19 2008 -0500
19144
19145 ColdFire: Fix code flash configuration for M547x/M548x boards
19146
19147 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
19148
19149commit 6e37091afc07fdcc15590093fd066b0cb7399f85
19150Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19151Date: Tue Jun 24 12:12:16 2008 -0500
19152
19153 ColdFire: Fix warning messages by passing correct data type in board.c
19154
19155 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19156
19157commit 81cc32322acb1b3225ee45606ced48e2a14824dc
19158Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19159Date: Thu May 29 12:21:54 2008 -0500
19160
19161 ColdFire: Fix UART baudrate formula
19162
19163 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
19164 can generate the wrong divisor due to integer division truncation.
19165 Round the calculated divisor value by adding 1/2 the baudrate
19166 before dividing by the baudrate.
19167
19168 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19169 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
19170
19171commit b578fb471444cbd7db1285701ba51343baaf73fb
19172Author: Stefan Roese <sr@denx.de>
19173Date: Thu Jul 10 11:38:26 2008 +0200
19174
19175 ppc4xx: Fix include sequence in 4xx_pcie.c
19176
19177 This patch now moves common.h to the top of the inlcude list. This
19178 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
19179 the phys_size_t/phys_addr_t are defined to the correct size in this
19180 driver.
19181
19182 Signed-off-by: Stefan Roese <sr@denx.de>
19183
4b070809
WD
19184commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
19185Author: Stefan Roese <sr@denx.de>
19186Date: Fri Jul 11 13:10:56 2008 +0200
19187
19188 ppc4xx: Fix compile warning in 44x_spd_ddr2.c
19189
19190 Signed-off-by: Stefan Roese <sr@denx.de>
19191
19192commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
19193Author: Stefan Roese <sr@denx.de>
19194Date: Fri Jul 11 11:40:13 2008 +0200
19195
19196 ppc4xx: Fix small korat merge problem
19197
19198 Signed-off-by: Stefan Roese <sr@denx.de>
19199
19200commit 1d0554736a0a1dd59718acda660871ce56b69e18
19201Author: Stefan Roese <sr@denx.de>
19202Date: Fri Jul 11 11:34:52 2008 +0200
19203
19204 ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
19205
19206 Signed-off-by: Stefan Roese <sr@denx.de>
19207
19208commit 3a82113ed5934d498f25080441a8261fc9454b15
19209Author: Stefan Roese <sr@denx.de>
19210Date: Thu Jul 10 16:37:09 2008 +0200
19211
19212 ppc4xx: Add 460SX UIC defines
19213
19214 Only the really needed ones are added (cascading and EMAC/MAL).
19215
19216 Signed-off-by: Stefan Roese <sr@denx.de>
19217
19218commit 26173fc6f60521c2a8072f652f863617fc11ba9a
19219Author: Stefan Roese <sr@denx.de>
19220Date: Mon Jun 30 14:11:07 2008 +0200
19221
19222 ppc4xx: Continue cleanup of ppc440.h
19223
19224 This patch continues the ppc440.h cleanup by removing some of the unused
19225 defines.
19226
19227 Signed-off-by: Stefan Roese <sr@denx.de>
19228
19229commit d9056b7913ed6a228d2f33671d916efedee541dd
19230Author: Stefan Roese <sr@denx.de>
19231Date: Mon Jun 30 14:05:05 2008 +0200
19232
19233 ppc4xx: Cleanup Katmai & Yucca PCIe register usage
19234
19235 This patch cleans up the 440SPe PCIe register usage. Now only defines
19236 from the include/asm-ppc/4xx_pcie.h are used.
19237
19238 Signed-off-by: Stefan Roese <sr@denx.de>
19239
19240commit 5de851403b01489b493fa83137ad990b8ce60d1c
19241Author: Stefan Roese <sr@denx.de>
19242Date: Thu Jun 26 17:36:39 2008 +0200
19243
19244 ppc4xx: Rework 440GX UIC handling
19245
19246 This patch reworks the 440GX interrupt handling so that the common 4xx
19247 code can be used. The 440GX is an exception to all other 4xx variants
19248 by having the cascading interrupt vectors not on UIC0 but on a special
19249 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
19250 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
19251 handling is simpler without any 440GX special cases.
19252
19253 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
19254
19255 Signed-off-by: Stefan Roese <sr@denx.de>
19256
19257commit d1631fe1a05b063ccaf62ea892a8887b829847d1
19258Author: Stefan Roese <sr@denx.de>
19259Date: Thu Jun 26 13:40:57 2008 +0200
19260
19261 ppc4xx: Consolidate PPC4xx UIC defines
19262
19263 This 2nd patch now removes all UIC mask bit definition. They should be
19264 generated from the vectors by using the UIC_MASK() macro from now on.
19265 This way only the vectors need to get defined for new PPC's.
19266
19267 Also only the really used interrupt vectors are now defined. This makes
19268 definitions for new PPC versions easier and less error prone.
19269
19270 Another part of this patch is that the 4xx emac driver got a little
19271 cleanup, since now the usage of the interrupts is clearer.
19272
19273 Signed-off-by: Stefan Roese <sr@denx.de>
19274
19275commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
19276Author: Stefan Roese <sr@denx.de>
19277Date: Wed Jun 25 10:59:22 2008 +0200
19278
19279 ppc4xx: Consolidate PPC4xx UIC defines
19280
19281 This patch is the first step to consolidate the UIC related defines in the
19282 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
19283 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
19284 steps.
19285
19286 Signed-off-by: Stefan Roese <sr@denx.de>
19287
19288commit 7ee2619c20ccecd57966d74d844e6329e141261c
19289Author: Stefan Roese <sr@denx.de>
19290Date: Tue Jun 24 17:18:50 2008 +0200
19291
19292 ppc4xx: Consolidate PPC4xx EBC defines
19293
19294 This patch removes all EBC related defines from the PPC4xx headers
19295 ppc405.h and ppc440.h and introduces a new header
19296
19297 include/asm-ppc/ppc4xx-ebc.h
19298
19299 with all those defines.
19300
19301 Signed-off-by: Stefan Roese <sr@denx.de>
19302
19303commit e321801bed5a6d896d298c00fd20046f039d5d66
19304Author: Stefan Roese <sr@denx.de>
19305Date: Thu Jul 10 13:52:44 2008 +0200
19306
19307 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
19308
19309 This patch removes some ft_board_setup() functions from some 4xx boards.
19310 This can be done since we now have a default weak implementation for this
19311 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
19312 implementation like canyonlands need their own version.
19313
19314 Signed-off-by: Stefan Roese <sr@denx.de>
19315
19316commit 08250eb2edbd96514d049602d9e134110ac3185f
19317Author: Stefan Roese <sr@denx.de>
19318Date: Thu Jul 10 15:32:32 2008 +0200
19319
19320 ppc4xx: Fix merge problems in 44x_spd_ddr2.c
19321
19322 Signed-off-by: Stefan Roese <sr@denx.de>
19323
19324commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
19325Author: Grant Erickson <gerickson@nuovations.com>
19326Date: Tue Jul 8 08:35:00 2008 -0700
19327
19328 ppc4xx: Add MII mode support to the EMAC RGMII Bridge
19329
19330 This patch adds support for placing the RGMII bridge on the
19331 PPC405EX(r) into MII/GMII mode and allows a board-specific
19332 configuration to specify the bridge mode at compile-time.
19333
19334 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
19335 Signed-off-by: Stefan Roese <sr@denx.de>
19336
19337commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
19338Author: Grant Erickson <gerickson@nuovations.com>
19339Date: Wed Jul 9 16:46:35 2008 -0700
19340
19341 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
19342
19343 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
19344 controller registers (MODT and INITPLR) used by the
19345 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
19346 peer values used for the INITPLR MR and EMR registers,
19347 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
19348
19349 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
19350 Kilauea are replaced by equivalent mnemonics to make it easier to
19351 compare and contrast other 405EX(r)-based boards (e.g. during board
19352 bring-up).
19353
19354 Finally, unified the SDRAM controller register dump routine such that
19355 it can be used across all processor variants that utilize the IBM DDR2
19356 SDRAM controller core. It produces output of the form:
19357
19358 PPC4xx IBM DDR2 Register Dump:
19359 ...
19360 SDRAM_MB0CF[40] = 0x00006701
19361 ...
19362
19363 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
19364 since it is not uncommon that the DCR values in header files get mixed
19365 up and it helps to validate, at a glance, they match what is printed
19366 in the user manual.
19367
19368 Tested on:
19369 AMCC Kilauea/Haleakala:
19370 - NFS Linux Boot: PASSED
19371 - NAND Linux Boot: PASSED
19372
19373 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
19374 Signed-off-by: Stefan Roese <sr@denx.de>
19375
19376commit ad7382d828982e9c1bafc4313ef1b666f6145f58
19377Author: Grant Erickson <gerickson@nuovations.com>
19378Date: Wed Jul 9 16:31:59 2008 -0700
19379
19380 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
19381
19382 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
19383 revision ID DCR based on 405EX, and add field mnemonics for bus error
19384 status and ECC error status registers.
19385
19386 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
19387 Signed-off-by: Stefan Roese <sr@denx.de>
19388
19389commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
19390Author: Grant Erickson <gerickson@nuovations.com>
19391Date: Wed Jul 9 16:31:36 2008 -0700
19392
19393 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
19394
19395 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
19396
19397 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
19398 Signed-off-by: Stefan Roese <sr@denx.de>
19399
19400commit 5b457d00730d4aa0c6450d21a9104723e606fb98
19401Author: Grant Erickson <gerickson@nuovations.com>
19402Date: Wed Jul 9 11:55:46 2008 -0700
19403
19404 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
19405
19406 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
19407 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
19408 the 405EX(r), SDRAM_MCSTAT has a different DCR value.
19409
19410 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
19411 which causes SDRAM initialization to periodically fail since it can
19412 prematurely indicate SDRAM ready status.
19413
19414 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
19415 Signed-off-by: Stefan Roese <sr@denx.de>
19416
19417commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
19418Author: Feng Kan <fkan@amcc.com>
19419Date: Tue Jul 8 22:48:42 2008 -0700
19420
19421 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
19422
19423 Add AMCC Redwood reference board that uses the latest
19424 PPC 464 CPU processor combined with a rich mix of peripheral
19425 controllers. The board will support PCIe, mutiple Gig ethernet
19426 ports, advanced hardware RAID assistance and IEEE 1588.
19427
19428 Signed-off-by: Feng Kan <fkan@amcc.com>
19429 Signed-off-by: Stefan Roese <sr@denx.de>
19430
19431commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
19432Author: Feng Kan <fkan@amcc.com>
19433Date: Tue Jul 8 22:48:07 2008 -0700
19434
19435 ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
19436
19437 Signed-off-by: Feng Kan <fkan@amcc.com>
19438 Signed-off-by: Stefan Roese <sr@denx.de>
19439
19440commit 7d30793685efcada183891c78fc892e6c9ba50c7
19441Author: Feng Kan <fkan@amcc.com>
19442Date: Tue Jul 8 22:47:31 2008 -0700
19443
19444 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
19445
19446 Signed-off-by: Feng Kan <fkan@amcc.com>
19447 Signed-off-by: Stefan Roese <sr@denx.de>
19448
699f0512
WD
19449commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
19450Author: Wolfgang Denk <wd@denx.de>
19451Date: Fri Jul 11 01:16:00 2008 +0200
19452
19453 Fix some more print() format errors.
19454
19455 Signed-off-by: Wolfgang Denk <wd@denx.de>
19456
19457commit fdd70d1921b87287d9a99d1be99bc35226c2b412
19458Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19459Date: Thu Jul 10 20:57:54 2008 +0200
19460
19461 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
19462
19463 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19464
19465commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
19466Author: Sergey Lapin <slapin@ossfans.org>
19467Date: Thu Jun 5 11:06:29 2008 +0400
19468
19469 DataFlash AT45DB021 support
19470
19471 Some boards based on AT91SAM926X-EK use smaller DF chips to keep
19472 bootstrap, u-boot and its environment, using NAND or other external
19473 storage for kernel and rootfs. This patch adds support for
19474 small 1024x263 chip.
19475
19476 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
19477
19478commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
19479Author: Kim Phillips <kim.phillips@freescale.com>
19480Date: Thu Jul 10 14:00:15 2008 -0500
19481
19482 silence misc printf formatting compiler warnings
19483
19484 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19485
19486commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
19487Author: Markus Klotzbücher <mk@denx.de>
19488Date: Thu Jul 10 14:47:09 2008 +0200
19489
19490 USB: shutdown USB before booting
19491
19492 This patch fixes a potentially serious issue related to USB which was
19493 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
19494 ARM920T. Martin wrote:
19495
19496 Turn off USB to prevent the host controller from writing to the
19497 SDRAM while Linux is booting. This could happen, because the HCCA
19498 (Host Controller Communication Area) lies within the SDRAM and the
19499 host controller writes continously to this area (as busmaster!), for
19500 example to increase the HccaFrameNumber variable, which happens
19501 every 1 ms.
19502
19503 This is a slightly modified version of the patch in order to shutdown
19504 USB when booting on all architectures.
19505
19506 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
19507
19508commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
19509Author: Martha Marx <mmarx@silicontkx.com>
19510Date: Thu May 29 14:23:25 2008 -0400
19511
19512 Configuration changes for ADS5121 Rev 3
19513
19514 ADS5121 Rev 3 board is now the default config
19515
19516 config targets are now
19517
19518 ads5121_config
19519 Rev 3 board with
19520 PCI
19521 M41T62 on board RTC
19522 512MB DRAM
19523
19524 ads5121_rev2_config
19525 Rev 2 board with
19526 No PCI
19527 256MB DRAM
19528
19529 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
19530 Acked-by: Grant Likely <grant.likely@secretlab.ca>
19531 Acked-by: John Rigby <jrigby@freescale.com>
19532
19533commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
19534Author: Martha Marx <mmarx@silicontkx.com>
19535Date: Thu May 29 15:37:21 2008 -0400
19536
19537 Consolidate ADS5121 IO Pin configuration
19538
19539 Consolidate ADS5121 IO Pin configuration to one file
19540 board/ads5121/iopin.c.
19541
19542 Remove pin config from cpu/mpc512x/fec.c
19543
19544 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
19545 Acked-by: Grant Likely <grant.likely@secretlab.ca>
19546 Acked-by: John Rigby <jrigby@freescale.com>
19547
19548commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
19549Author: Christian Eggers <christian@p2400.wgnetz.xx>
19550Date: Fri Jun 27 19:46:51 2008 +0200
19551
19552 Fix "usb part" command
19553
19554 Only print partition for selected device if user supplied the <dev>
19555 arg with the "usb part [dev]" command.
19556
19557 Signed-off-by: Christian Eggers <ceggers@gmx.de>
19558 Acked-by: Markus Klotzbuecher <mk@denx.de>
19559
19560commit cc83b27217f7380041fea386ddb6d6d9b261617d
19561Author: Harald Welte <laforge@gnumonks.org>
19562Date: Mon Jul 7 00:58:05 2008 +0800
19563
19564 fix USB devices with multiple configurations
19565
19566 This patch fixes bugs in usbdcore*.c related to the use of devices
19567 with multiple configurations.
19568
19569 The original code made mistakes about the meaning of configuration value and
19570 configuration index, and the resulting off-by-one errors resulted in:
19571
19572 * SET_CONFIGURATION always selected the first configuration, no matter what
19573 wValue is being passed.
19574 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
19575 configuration (index 0).
19576
19577 Signed-off-by: Harald Welte <laforge@openmoko.org>
19578 Acked-by: Markus Klotzbuecher <mk@denx.de>
19579
19580commit 06c53beae1a726e707971c555613f09b270a2461
19581Author: Wolfgang Denk <wd@denx.de>
19582Date: Thu Jul 10 13:16:09 2008 +0200
19583
19584 Fix some more print() format errors.
19585
19586 Signed-off-by: Wolfgang Denk <wd@denx.de>
19587
19588commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
19589Author: Christian Eggers <christian@p2400.wgnetz.xx>
19590Date: Fri Jun 27 19:46:51 2008 +0200
19591
19592 Fix "usb part" command
19593
19594 Only print partition for selected device if user supplied the <dev>
19595 arg with the "usb part [dev]" command.
19596
19597 Signed-off-by: Christian Eggers <ceggers@gmx.de>
19598 Acked-by: Markus Klotzbuecher <mk@denx.de>
19599
19600commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
19601Author: Harald Welte <laforge@gnumonks.org>
19602Date: Mon Jul 7 00:58:05 2008 +0800
19603
19604 fix USB devices with multiple configurations
19605
19606 This patch fixes bugs in usbdcore*.c related to the use of devices
19607 with multiple configurations.
19608
19609 The original code made mistakes about the meaning of configuration value and
19610 configuration index, and the resulting off-by-one errors resulted in:
19611
19612 * SET_CONFIGURATION always selected the first configuration, no matter what
19613 wValue is being passed.
19614 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
19615 configuration (index 0).
19616
19617 Signed-off-by: Harald Welte <laforge@openmoko.org>
19618 Acked-by: Markus Klotzbuecher <mk@denx.de>
19619
19620commit e870690bdca154943ecadd5212d2d59c1b9d391b
19621Author: Stefan Roese <sr@denx.de>
19622Date: Thu Jul 10 10:10:54 2008 +0200
19623
19624 MTD/NAND: Fix printf format warning in nand code
19625
19626 This patch fixes NAND related printf format warning. Those warnings are
19627 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
19628 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
19629 really helpful.
19630
19631 Signed-off-by: Stefan Roese <sr@denx.de>
19632
19633commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
19634Author: Stefan Roese <sr@denx.de>
19635Date: Thu Jul 10 10:00:45 2008 +0200
19636
19637 rtc: Fix printf format warning in m41t60.c
19638
19639 Signed-off-by: Stefan Roese <sr@denx.de>
19640
19641commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
19642Author: Stefan Roese <sr@denx.de>
19643Date: Tue Jul 8 12:01:47 2008 +0200
19644
19645 pci: Move PCI device configuration check into a separate weak function
19646
19647 This patch moves the check, if a device should be skipped in PCI PNP
19648 configuration into the function pci_skip_dev(). This function is defined
19649 as weak so that it can be overwritten by a platform specific one if
19650 needed. The check if the device should get printed in the PCI summary upon
19651 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
19652 pci_print_dev() which is also defined as weak too.
19653
19654 Signed-off-by: Stefan Roese <sr@denx.de>
19655
19656commit b002144e1dc21374b1ef5281fe6b5d014af96650
19657Author: Stefan Roese <sr@denx.de>
19658Date: Thu Jul 10 09:58:06 2008 +0200
19659
19660 ppc4xx: Fix printf format warnings now visible with the updated format check
19661
19662 This patch fixes ppc4xx related printf format warning. Those warnings are
19663 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
19664 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
19665 really helpful.
19666
19667 Signed-off-by: Stefan Roese <sr@denx.de>
19668
19669commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
19670Author: Stefan Roese <sr@denx.de>
19671Date: Wed Jul 9 17:33:57 2008 +0200
19672
19673 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
19674
19675 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
19676 To support such configurations, we "only" map the first 2GB via the TLB's. We
19677 need some free virtual address space for the remaining peripherals like, SoC
19678 devices, FLASH etc.
19679
19680 Note that ECC is currently not supported on configurations with more than 2GB
19681 SDRAM. This is because we only map the first 2GB on such systems, and therefore
19682 the ECC parity byte of the remaining area can't be written.
19683
19684 Signed-off-by: Stefan Roese <sr@denx.de>
19685
19686commit cf1c2ed91df26903b956948f37f82de9e1158a89
19687Author: Larry Johnson <lrj@acm.org>
19688Date: Sat Jun 14 17:02:49 2008 -0400
19689
19690 ppc4xx: Remove implementation of testdram() from Korat board support
19691
19692 Signed-off-by: Larry Johnson <lrj@acm.org>
19693 Signed-off-by: Stefan Roese <sr@denx.de>
19694
19695commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
19696Author: Larry Johnson <lrj@acm.org>
19697Date: Sat Jun 14 16:53:02 2008 -0400
19698
19699 ppc4xx: Update and add FDT to Korat board support
19700
19701 Signed-off-by: Larry Johnson <lrj@acm.org>
19702 Signed-off-by: Stefan Roese <sr@denx.de>
19703
19704commit 4188f0491886b3b486164e819c0a83fdb97efd7d
19705Author: Wolfgang Denk <wd@denx.de>
19706Date: Thu Jul 10 01:13:30 2008 +0200
19707
19708 Minor coding style cleanup; update CHANGELOG
19709
19710 Signed-off-by: Wolfgang Denk <wd@denx.de>
19711
4188f049
WD
19712commit 8915f1189c1d29d8be7f4de325702d90a8988219
19713Author: Paul Gortmaker <paul.gortmaker@windriver.com>
19714Date: Wed Jul 9 17:50:45 2008 -0400
19715
19716 e1000: add support for 82545GM 64bit PCI-X copper variant
19717
19718 This PCI-X e1000 variant works by just adding in the correct
19719 PCI IDs in the appropriate places.
19720
19721 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
19722
19723commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
19724Author: Daniel Hellstrom <daniel@gaisler.com>
19725Date: Wed Jul 9 12:34:11 2008 +0000
19726
19727 SPARC: Build error fix
19728
19729 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
19730
19731 This patch makes SPARC targets build again. It is caused by
19732 phys_addr_t and phys_size_t being defined in the wrong header
19733 file. include/lmb.h need those typedefs to build.
19734
19735 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
19736
19737commit 11ccc33fa21acce108f6b4a6936e3271af904c64
19738Author: Marcel Ziswiler <marcel@ziswiler.com>
19739Date: Wed Jul 9 08:17:15 2008 +0200
19740
19741 Many spelling fixes in README.
19742
19743 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
19744
19745commit dbab0691d2533560f7e91b92ae844046a9ad1df3
19746Author: Marcel Ziswiler <marcel@ziswiler.com>
19747Date: Wed Jul 9 08:17:06 2008 +0200
19748
19749 Minor spelling fix in comment.
19750
19751 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
19752
19753commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
19754Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
19755Date: Tue Jul 8 14:54:58 2008 -0400
19756
19757 Round the serial port clock divisor value returned by calc_divisor()
19758
19759 Round the serial port clock divisor value returned by
19760 calc_divisor().
19761
19762 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
19763 Signed-off-by: John Roberts <john.roberts@pwav.com>
19764
19765commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
19766Author: Scott Wood <scottwood@freescale.com>
19767Date: Wed Jul 9 17:47:52 2008 -0500
19768
19769 NAND: ifdef-protect most of nand.h when using legacy NAND.
19770
19771 Some macros such as NAND_CTL_SETALE conflict between current and legacy
19772 NAND, being defined by the subsystem in the former case and the board
19773 config file in the latter.
19774
19775 Signed-off-by: Scott Wood <scottwood@freescale.com>
19776
19777commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
19778Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
19779Date: Tue Jul 8 11:02:05 2008 -0400
19780
19781 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
19782
19783 ARM: Fix for incorrect version of patch applied when
19784 adding support for the Lyrtech SFF-SDR board.
19785
19786 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
19787 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
19788
19789commit 47042b363ee5022b8180c65d3f4558e7972c79cd
19790Author: Kyungmin Park <kmpark@infradead.org>
19791Date: Tue Jul 8 09:08:40 2008 +0900
19792
19793 Remove useless print message at apollon
19794
19795 Remove useless print message at apollon
19796
19797 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
19798
19799commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
19800Author: Andy Fleming <afleming@freescale.com>
19801Date: Mon Jul 7 14:24:39 2008 -0500
19802
19803 Fix LMB type issues
19804
19805 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple
19806 of casting problems in the bootm code that called the LMB functions.
19807
19808 Signed-off-by: Andy Fleming <afleming@freescale.com>
19809
19810commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
19811Author: Kumar Gala <galak@kernel.crashing.org>
19812Date: Mon Jul 7 09:39:06 2008 -0500
19813
19814 Fix compiler warnings
19815
19816 gcc-4.3.x generates the following:
19817
19818 bootm.c: In function 'do_bootm_linux':
19819 bootm.c:208: warning: cast from pointer to integer of different size
19820 bootm.c:215: warning: cast from pointer to integer of different size
19821
19822 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
19823
19824commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
19825Author: Harald Welte <laforge@gnumonks.org>
19826Date: Mon Jul 7 15:40:39 2008 +0800
19827
19828 Remove code duplication for setting the default environment
19829
19830 common/env_common.c (default_env): new function that resets the environment to
19831 the default value
19832 common/env_common.c (env_relocate): use default_env instead of own copy
19833 common/env_nand.c (env_relocate_spec): use default_env instead of own copy
19834 include/environment.h: added default_env prototype
19835
19836 Signed-off-by: Werner Almesberger <werner@openmoko.org>
19837 Signed-off-by: Harald Welte <laforge@openmoko.org>
19838
19839commit 99c2b434d37863df5dda5207a53760c6506fc2be
19840Author: Marcel Ziswiler <marcel@ziswiler.com>
19841Date: Sun Jun 22 16:13:46 2008 +0200
19842
19843 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
19844
19845 The writeenv() and readenv() calls introduced by the recently added bad block
19846 management for environment variables were missing casts therefore producing
19847 compile time warnings.
19848 While at it fixing some typo in a comment and indentation.
19849
19850 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
19851 Signed-off-by: Scott Wood <scottwood@freescale.com>
19852
19853commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
19854Author: Scott Wood <scottwood@freescale.com>
19855Date: Fri Jun 20 12:38:57 2008 -0500
19856
19857 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
19858
19859 This is particularly problematic now that non-NAND-specific code is
19860 including <nand.h>, and thus all debugging code is being compiled
19861 regardless of whether it was requested, as reported by Scott McNutt
19862 <smcnutt@psyent.com>.
19863
19864 Signed-off-by: Scott Wood <scottwood@freescale.com>
19865
19866commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
19867Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19868Date: Thu Jun 12 19:27:58 2008 +0200
19869
19870 mmc: Move atmel_mci driver into drivers/mmc
19871
19872 This makes it easier to use the driver on other platforms.
19873
19874 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19875 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19876
19877commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
19878Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19879Date: Thu Jun 12 19:27:57 2008 +0200
19880
19881 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
19882
19883 After we move the atmel_mci driver into drivers/mmc, we can't select
19884 it with CONFIG_MMC anymore. Introduce a new symbol specifically for
19885 this driver so that there's no ambiguity.
19886
19887 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19888 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19889
19890commit 5ce13051a48c62bda9723df3b4778c492fb47f36
19891Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19892Date: Thu Jun 12 19:27:56 2008 +0200
19893
19894 Create drivers/mmc subdirectory
19895
19896 In order to consolidate more of the various MMC drivers around the
19897 tree, we must first have a common place to put them.
19898
19899 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19900 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19901
19902commit b502611b51f02718c2d1117d4981dabceb5af6de
19903Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
19904Date: Sun Jul 6 12:30:09 2008 +0200
19905
19906 Change env_get_char from a global function ptr to a function
19907
19908 This avoids an early global data reference.
19909
19910 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
19911
19912commit 27269417ade432189b234d9fbac98b54e37b978c
19913Author: Matvejchikov Ilya <matvejchikov@gmail.com>
19914Date: Sun Jul 6 13:57:58 2008 +0400
19915
19916 Some copy-n-paste fixes in printf usage
19917
19918 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
19919
19920commit 0e6989b9faf1588e8723535539e88a0df3c71356
19921Author: Matvejchikov Ilya <matvejchikov@gmail.com>
19922Date: Sun Jul 6 13:57:00 2008 +0400
19923
19924 FDT memory and pci node fixes for MPC8260ADS
19925
19926 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
19927
19928commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
19929Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
19930Date: Mon Jul 7 06:41:14 2008 -0700
19931
19932 Fix printf errors.
19933
19934 The compiler will help find mismatches between printf formats and
19935 arguments if you let it. This patch adds the necessary attributes to
19936 declarations in include/common.h, then begins to correct the resulting
19937 compiler warnings. Some of these were bugs, e.g., "$d" instead of
19938 "%d" and incorrect arguments. Others were just annoying, like
19939 int-long mismatches on a system where both are 32 bits. It's worth
19940 fixing the annoying errors to catch the real ones.
19941
19942 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
19943
19944commit 417faf285b2527acb2de24c5cd3e2621d385408c
19945Author: Becky Bruce <becky.bruce@freescale.com>
19946Date: Wed Jul 9 11:09:41 2008 -0500
19947
19948 Allow print_size to print in GB
19949
19950 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
19951
19952commit e7c374529c87525c9aa463e0557c287887ae4e9e
19953Author: Jason McMullan <mcmullan@netapp.com>
19954Date: Sun Jun 8 23:56:00 2008 -0400
19955
19956 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
19957
19958 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
19959 they are set in the U-Boot environment.
19960
19961 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
19962 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
19963
19964commit 0192d7d56e9320819dea262f49789ae18fdd2c72
19965Author: Stefan Roese <sr@denx.de>
19966Date: Tue Jul 8 12:57:14 2008 +0200
19967
19968 jedec_flash: Fix AM29DL800BB device ID
19969
19970 As pointed out by Jerry Hicks, this patch corrects the device ID of
19971 the Spansion AM29DL800BB NOR device. Verified against latest Spansion
19972 datasheet (rev C4 from Dezember 2006).
19973
19974 Signed-off-by: Stefan Roese <sr@denx.de>
19975
19976commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
19977Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19978Date: Mon Jul 7 11:22:37 2008 +0900
19979
19980 sh: Fix compile error sh7763rdp board
19981
19982 Disable SH ether driver.
19983
19984 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19985
19986commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
19987Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19988Date: Tue Jul 8 12:03:24 2008 +0900
19989
19990 sh: Fix SH-boards compile error
19991
19992 By Cleanup out-or-tree building for some boards (.depend)
19993 (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
19994 because filse ware changed, some SH-boards have compile error.
19995 I revised this problem.
19996
19997 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19998
699f0512
WD
19999commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
20000Author: Jason Jin <Jason.jin@freescale.com>
20001Date: Tue May 13 11:50:36 2008 +0800
20002
20003 Feed the watchdog in u-boot for 8610 board.
20004
20005 The watchdog on 8610 board is enabled by setting sw[6]
20006 to on. Once enabled, the watchdog can not be disabled
20007 by software. So feed the dog in u-boot is necessary for
20008 normal operation.
20009
20010 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
20011
4188f049
WD
20012commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
20013Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20014Date: Wed Jun 18 12:10:33 2008 -0400
20015
20016 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
20017
20018 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
20019
20020 Remove duplicate code in a if/else block in
20021 cpu/arm926ejs/davinci/lxt972.c.
20022 Fixed style issues.
20023
20024 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20025 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20026
20027commit fec61431a003f5778bafa2624073a571af8bec9f
20028Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20029Date: Wed Jun 18 12:10:31 2008 -0400
20030
20031 Remove duplicate definitions in include/lxt971a.h.
20032
20033 Remove duplicate definitions in include/lxt971a.h.
20034
20035 Remove duplicate registers and bits definitions in
20036 include/lxt971a.h for standard MII registers, and
20037 use values in include/miiphy.h instead.
20038
20039 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20040 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20041
20042commit 9751ee0990f467941da0b095a4e995f863672d7a
20043Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20044Date: Wed Jun 11 21:05:00 2008 +0900
20045
20046 net: sh: Renesas SH7763 Ethernet device support
20047
20048 Renesas SH7763 has 2 channel Ethernet device.
20049 This is 10/100/1000 Base support.
20050 But this patch check 10/100 Base only.
20051
20052 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20053 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20054
20055commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
20056Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20057Date: Tue Jun 17 16:28:05 2008 +0900
20058
20059 sh: Update Renesas R2DPlus board
20060
20061 New NOR Flash board support and remove old type flash board config.
20062 And Remove network setting from config file.
20063
20064 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20065 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20066
20067commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
20068Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20069Date: Tue Jun 17 16:28:01 2008 +0900
20070
20071 sh: Update Renesas R7780MP board
20072
20073 New NOR Flash board support and remove network setting from config file.
20074
20075 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20076 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20077
20078commit c001cd604e9f133743effbddb1c215b48e761c5a
20079Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20080Date: Tue Jun 17 16:27:56 2008 +0900
20081
20082 sh: Update Renesas Migo-R board
20083
20084 Remove network setting from config file.
20085
20086 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20087 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20088
20089commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
20090Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20091Date: Tue Jun 17 16:27:52 2008 +0900
20092
20093 sh: Update Hitachi MS7722SE board
20094
20095 Remove network setting from config file.
20096
20097 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20098 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20099
20100commit 26209e48e8791670c93108029a5c31a30016c6df
20101Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20102Date: Tue Jun 17 16:27:48 2008 +0900
20103
20104 sh: Cleanup source code of SH7763RDP
20105
20106 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20107 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20108
20109commit 5cd5b2c96ef0025762931349d350287aec03ab47
20110Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20111Date: Tue Jun 17 16:27:44 2008 +0900
20112
20113 sh: Cleanup source code of R2DPlus
20114
20115 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20116 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20117
20118commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
20119Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20120Date: Tue Jun 17 16:27:41 2008 +0900
20121
20122 sh: Cleanup source code of R7780MP
20123
20124 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20125 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20126
20127commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
20128Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20129Date: Tue Jun 17 16:27:38 2008 +0900
20130
20131 sh: Cleanup source code of MS7722SE
20132
20133 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20134 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20135
20136commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
20137Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20138Date: Tue Jun 17 16:27:34 2008 +0900
20139
20140 sh: Cleanup source code of MS7720SE
20141
20142 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20143 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20144
20145commit 3ab4827cbe409488ebea1a2ee5094783f2672214
20146Author: Wolfgang Denk <wd@denx.de>
20147Date: Mon Jul 7 00:45:03 2008 +0200
20148
20149 SH: fix out of tree building
20150
20151 Signed-off-by: Wolfgang Denk <wd@denx.de>
20152
20153commit 9047bfa1e737d787be460387dd6f45737eeceb10
20154Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20155Date: Thu Jul 3 23:16:06 2008 +0900
20156
20157 net: smc911x: Fix typo
20158
20159 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
20160
20161commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
20162Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
20163Date: Wed Jul 2 18:54:08 2008 +0200
20164
20165 update mvBL-M7 board config
20166
20167 update mvBL-M7 config file to use UBOOT_VERSION and define
20168 CONFIG_HIGH_BATS.
20169
20170 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
20171
20172commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
20173Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20174Date: Mon Jun 30 17:45:01 2008 +0900
20175
20176 net: fix compile problem in smc911x driver.
20177
20178 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20179 Acked-by: Ben Warren <biggerbadderben@gmail.com>
20180
20181commit 9fea65a6c469b1b474b27446feb58738baba2d31
20182Author: Michal Simek <monstr@monstr.eu>
20183Date: Tue Jun 24 09:54:09 2008 +0200
20184
20185 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
20186
20187 This change helps with better handling with others
20188 Xilinx based platform.
20189
20190 Signed-off-by: Michal Simek <monstr@monstr.eu>
20191 Acked-by: Stefan Roese <sr@denx.de>
20192
20193commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
20194Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20195Date: Tue Jun 17 13:07:11 2008 +0900
20196
20197 net: ne2000: Move dev_addr variable from grobal to local.
20198
20199 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20200 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20201
20202commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
20203Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20204Date: Tue Jun 17 13:07:15 2008 +0900
20205
20206 net: ne2000: Fix compile error of NE2000
20207
20208 If enable DEBUG, can not compile ne2000 driver.
20209
20210 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20211 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20212
20213commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
20214Author: Ben Warren <biggerbadderben@gmail.com>
20215Date: Mon Jun 23 22:57:27 2008 -0700
20216
20217 Add mechanisms for CPU and board-specific Ethernet initialization
20218
20219 This patch is the first step in cleaning up net/eth.c, by moving Ethernet
20220 initialization to CPU or board-specific code. Initial implementation is
20221 only on the Freescale TSEC controller, but others will be added soon.
20222
20223 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20224
20225commit 7754f2be5d1835d263aad21b5a629526f3e680b0
20226Author: Wolfgang Denk <wd@denx.de>
20227Date: Sun Jul 6 01:21:46 2008 +0200
20228
20229 include/sha256.h: fix file permissions.
20230
20231 Signed-off-by: Wolfgang Denk <wd@denx.de>
20232
20233commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
20234Author: Patrice Vilchez <patrice.vilchez@atmel.com>
20235Date: Tue May 27 11:15:29 2008 +0200
20236
20237 [AT91SAM9] Fix NAND FLASH timings
20238
20239 Fix NAND FLASH timings for at91sam9x evaluation kits.
20240
20241 New timings are based on application note
20242 "NAND Flash Support on AT91SAM9 Microcontrollers" available at
20243 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
20244
20245 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
20246 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20247 Acked-by: Stelian Pop <stelian@popies.net>
20248
20249commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
20250Author: Stelian Pop <stelian@popies.net>
20251Date: Thu May 22 00:15:40 2008 +0200
20252
20253 Fix boot from NOR due to incorrect reset delay.
20254
20255 AT91 RSTC registers are battery-backuped, so their values
20256 are not reset across power cycles. One of those registers,
20257 the AT91_RSTC_MR register, is being modified by U-Boot, in
20258 the ethernet initialisation routine, to generate a 500ms
20259 user reset.
20260
20261 Unfortunately, this value is not being restored afterwards,
20262 causing subsequent resets to also last for 500ms.
20263
20264 This long reset sequence causes problems (at least) in the
20265 boot sequence from NOR: by the time the CPU tries to load
20266 a program from the NOR flash, the latter is still in reset
20267 and not yet available.
20268
20269 Additionaly, this patch fixes a bug in the original code which
20270 caused the reset delay to last for 2s instead of 500ms.
20271
20272 Signed-off-by: Stelian Pop <stelian@popies.net>
20273 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20274
20275commit f492dd636fbbae529e17533995bc6e5813c007f6
20276Author: Wolfgang Denk <wd@denx.de>
20277Date: Fri Jul 4 20:11:49 2008 +0200
20278
20279 Update CHANGELOG
20280
20281 Signed-off-by: Wolfgang Denk <wd@denx.de>
20282
f492dd63
WD
20283commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
20284Author: Wolfgang Denk <wd@denx.de>
20285Date: Fri Jul 4 20:07:35 2008 +0200
20286
20287 CCM/SCM boards: fix out of tree building
20288
20289 Signed-off-by: Wolfgang Denk <wd@denx.de>
20290
20291commit ab4c3a490df9a964711556d2a05b0c787db45fde
20292Author: Wolfgang Denk <wd@denx.de>
20293Date: Thu Jul 3 23:22:27 2008 +0200
20294
20295 SCM board: fix build errors.
20296
20297 Signed-off-by: Wolfgang Denk <wd@denx.de>
20298
20299commit a566466f17ba0e2d2b6c250e77da678fb932470d
20300Author: Wolfgang Denk <wd@denx.de>
20301Date: Thu Jul 3 23:06:36 2008 +0200
20302
20303 IAD210 board: fix ``"ALIGN" redefined'' warning.
20304
20305 Signed-off-by: Wolfgang Denk <wd@denx.de>
20306
20307commit ad756314797c16fa5dca23e115aab881011f164f
20308Author: Wolfgang Denk <wd@denx.de>
20309Date: Thu Jul 3 23:00:24 2008 +0200
20310
20311 CCM board: fix build errors.
20312
20313 Signed-off-by: Wolfgang Denk <wd@denx.de>
20314
4188f049
WD
20315commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
20316Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
20317Date: Wed Jul 2 18:54:08 2008 +0200
20318
20319 update mvBL-M7 board config
20320
20321 update mvBL-M7 config file to use UBOOT_VERSION.
20322
20323 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
20324 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20325
f492dd63
WD
20326commit ced209c50e80c25f13c083099b05044048d21f4f
20327Author: Wolfgang Denk <wd@denx.de>
20328Date: Thu Jul 3 22:39:21 2008 +0200
20329
20330 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
20331
20332 Signed-off-by: Wolfgang Denk <wd@denx.de>
20333
20334commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
20335Author: Wolfgang Denk <wd@denx.de>
20336Date: Thu Jul 3 22:34:08 2008 +0200
20337
20338 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
20339
20340 Signed-off-by: Wolfgang Denk <wd@denx.de>
20341
20342commit 730f298485984b011b6ee8f4acb511cb45a843dd
20343Author: Wolfgang Denk <wd@denx.de>
20344Date: Thu Jul 3 22:04:17 2008 +0200
20345
20346 lmb: fix "implicit declaration of function 'lmb_free'" warning
20347
20348 Signed-off-by: Wolfgang Denk <wd@denx.de>
20349
20350commit 322ef5e28d2dc62571afc699b00add22a8e006e4
20351Author: Wolfgang Denk <wd@denx.de>
20352Date: Wed Jul 2 23:53:23 2008 +0200
20353
20354 Cleanup: remove redundant deleting on *~ files
20355
20356 Signed-off-by: Wolfgang Denk <wd@denx.de>
20357
20358commit c8a3b109f07f02342d097b30908965f7261d9f15
20359Author: Wolfgang Denk <wd@denx.de>
20360Date: Wed Jul 2 23:49:18 2008 +0200
20361
20362 Cleanup out-or-tree building for some boards (.depend)
20363
20364 Signed-off-by: Wolfgang Denk <wd@denx.de>
20365
20366commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
20367Author: Wolfgang Denk <wd@denx.de>
20368Date: Wed Jul 2 23:38:50 2008 +0200
20369
20370 Cleanup: fix out-of-tree building for some boards
20371
20372 Signed-off-by: Wolfgang Denk <wd@denx.de>
20373
20374commit 461fa68d20861811487944d22291db5a13410e20
20375Author: Wolfgang Denk <wd@denx.de>
20376Date: Wed Jul 2 23:00:14 2008 +0200
20377
20378 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
20379
20380 Signed-off-by: Wolfgang Denk <wd@denx.de>
20381
20382commit 5981ebd32017e062b08aa6747cf591276f2db779
20383Author: Detlev Zundel <dzu@denx.de>
20384Date: Fri Jun 20 22:26:24 2008 +0200
20385
20386 fdt: Fix typo in variable name.
20387
20388 Signed-off-by: Detlev Zundel <dzu@denx.de>
20389
20390commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
20391Author: Gary Jennejohn <garyj@denx.de>
20392Date: Thu Jun 19 11:11:19 2008 +0200
20393
20394 Add logos for RRvision board
20395
20396 Signed-off-by: Gary Jennejohn <garyj@denx.de>
20397
20398commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
20399Author: Esben Haabendal <EsbenHaabendal@gmail.com>
20400Date: Wed Jun 18 11:03:57 2008 +0200
20401
20402 mpc8260: add fdt_fixup_ethernet support
20403
20404 Add support for updating mac-address and local-mac-address in fdt for
20405 all MPC8260 targets.
20406
20407 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
20408
20409commit f6a69559d64498a04e1e0b087a9b920e5775f866
20410Author: Steven A. Falco <sfalco@harris.com>
20411Date: Thu Jun 12 13:24:42 2008 -0400
20412
20413 cmd_nvedit.c: clean up syntax highlighting
20414
20415 My text-editor (vim) has a bit of trouble syntax-highlighting the
20416 cmd_nvedit.c file, because it apparently does not parse C
20417 ifdef/else/endif. The following patch does not change the behavior of
20418 the code at all, but does allow the editor to properly
20419 syntax-highlight the file.
20420
20421 Signed-off-by: Steve Falco <sfalco@harris.com>
20422
20423commit 75678c807a6272ecc5541eb32898c93887f08400
20424Author: Steven A. Falco <sfalco@harris.com>
20425Date: Thu Jun 12 13:22:12 2008 -0400
20426
20427 Make setenv() return status
20428
20429 Currently, the setenv function does not return an error code.
20430 This patch allows to test for errors.
20431
20432 Signed-off-by: Steve Falco <sfalco@harris.com>
20433
20434commit 4928e97c8531283ca9b368b7c29a8a12e726562a
20435Author: Kumar Gala <galak@kernel.crashing.org>
20436Date: Wed Jun 11 10:14:06 2008 -0500
20437
20438 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
20439
20440 fls64, __ilog2_u64, ffs64 are variants that work on an u64,
20441 and fls is used to implement them.
20442
20443 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20444
20445commit 83002a77cbdf383015ca384eff5fa31722d8e571
20446Author: Magnus Lilja <lilja.magnus@gmail.com>
20447Date: Mon Jun 9 22:58:48 2008 +0200
20448
20449 i.MX31: Cleanup comments in lowlevel_init.S.
20450
20451 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
20452
20453commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
20454Author: Ben Warren <biggerbadderben@gmail.com>
20455Date: Sun Jun 8 23:28:33 2008 -0700
20456
20457 Move conditional compilation of MPC8XXX SPI driver to Makefile
20458
20459 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
20460
20461commit d92ea21bafb674ee2bf27447970b047845e7b0a2
20462Author: Juergen Kilb <J.Kilb@gmx.de>
20463Date: Sun Jun 8 17:59:53 2008 +0200
20464
20465 i.MX31: fixed CTRL-C detection
20466
20467 The Register URXD contains status information in bits [15..8].
20468 With status bit 15 set, CTRL-C was reported as 0x8003 instead
20469 of 0x03. Therefore CTRL-C was not detected.
20470 To solve this, bits [15..8] were masked out now.
20471
20472 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
20473 Acked-by: Felix Radensky <felix@embedded-sol.com>
20474
699f0512
WD
20475commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
20476Author: Stefan Roese <sr@denx.de>
20477Date: Tue Jul 1 17:03:19 2008 +0200
20478
20479 ppc4xx: Fix 460EX/GT PCIe port initialization
20480
20481 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
20482 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
20483 this out.
20484
20485 Signed-off-by: Stefan Roese <sr@denx.de>
20486
f492dd63
WD
20487commit b571afde0295b007a45055ee49f8822c753a5651
20488Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20489Date: Sat Jun 7 12:29:52 2008 +0200
20490
20491 add SHA256 support
20492
20493 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20494 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
20495
20496commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
20497Author: Marian Balakowicz <m8@semihalf.com>
20498Date: Fri Jun 6 23:07:40 2008 +0200
20499
20500 Delay FIT format check on sector based devices
20501
20502 Global FIT image operations like format check cannot be performed on
20503 a first sector data, defer them to the point when whole FIT image was
20504 uploaded to a system RAM.
20505
20506 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
20507 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
20508 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
20509
20510commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
20511Author: Dave Liu <r63238@freescale.com>
20512Date: Tue Jun 3 17:38:19 2008 +0800
20513
20514 sata: wait for device updating signature to host
20515
20516 The driver need wait for the device updating signature to host.
20517 If we don't wait for it, the driver can not detect the device(disk)
20518 when the system powers up.
20519
20520 Signed-off-by: Dave Liu <daveliu@freescale.com>
20521
4188f049
WD
20522commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
20523Author: Stefan Roese <sr@denx.de>
20524Date: Sat Jun 28 14:56:17 2008 +0200
20525
20526 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
20527
20528 This patch implements a fix provided by AMCC so that the lockup upon
20529 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
20530 anymore:
20531
20532 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
20533 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
20534 USB 2.0 host and SATA.
20535
20536 This errata is not officially available yet. I'll update the comment
20537 to add the errata number later.
20538
20539 Signed-off-by: Stefan Roese <sr@denx.de>
20540
f492dd63
WD
20541commit 8b616edb118e37d05f6401389eaee1c636b22828
20542Author: Stuart Wood <stuart.wood@labxtechnologies.com>
20543Date: Mon Jun 2 16:42:19 2008 -0400
20544
20545 serial_pl010.c: add watchdog support
20546
20547 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
20548
20549commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
20550Author: Stuart Wood <stuart.wood@labxtechnologies.com>
20551Date: Mon Jun 2 16:40:08 2008 -0400
20552
20553 jffs2_1pass.c: add watchdog support
20554
20555 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
20556
20557commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
20558Author: Sascha Laue <sascha.laue@liebherr.com>
20559Date: Fri May 30 09:48:14 2008 +0200
20560
20561 Configure DSP POST; add watchdog reset to diag command
20562
20563 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
20564
20565commit f13526517859bf6b573e23ff47199e107d1009b5
20566Author: Tor Krill <tor@excito.com>
20567Date: Thu May 29 10:40:17 2008 +0200
20568
20569 Add sata sil3114 support
20570
20571 Signed-off-by: Tor Krill <tor@excito.com>
20572
20573commit e093a247628228100f405b6d7f6b1bfc16141938
20574Author: Wolfgang Denk <wd@denx.de>
20575Date: Sat Jun 28 23:34:37 2008 +0200
20576
20577 Coding Style Cleanup
20578
20579 Signed-off-by: Wolfgang Denk <wd@denx.de>
20580
20581commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
20582Author: Wolfgang Denk <wd@denx.de>
20583Date: Sat Jun 28 23:16:01 2008 +0200
20584
20585 Update CHANGELOG
20586
20587 Signed-off-by: Wolfgang Denk <wd@denx.de>
20588
01db232d
WD
20589commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
20590Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20591Date: Wed May 21 13:58:41 2008 -0400
20592
20593 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
20594
20595 This patch adds support for the Lyrtech SFF-SDR board,
20596 based on the TI DaVinci architecture (ARM926EJS).
20597
20598 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
20599 Signed-off-by: Philip Balister <philip@balister.org>
20600 Signed-off-by: Wolfgang Denk <wd@denx.de>
20601
20602commit 341188b9ccaa8d4462d772cc067aca8d7618633a
20603Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20604Date: Thu May 22 11:09:59 2008 +0200
20605
20606 MMC: Consolidate MMC/SD command definitions
20607
20608 This moves the MMC and SD Card command definitions from
20609 include/asm/arch/mmc.h into include/mmc.h. These definitions are
20610 given by the MMC and SD Card standards, not by any particular
20611 architecture.
20612
20613 There's a lot more room for consolidation in the MMC drivers which
20614 I'm hoping to get done eventually, but this patch is a start.
20615
20616 Compile-tested for all avr32 boards as well as lpc2292sodimm and
20617 lubbock. This should cover all three mmc drivers in the tree.
20618
20619 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20620
20621commit fa60edfc4c952626e048c0e065f654b3c1822fa5
20622Author: Kyungmin Park <kmpark@infradead.org>
20623Date: Wed May 21 14:38:08 2008 +0900
20624
20625 Use better Ethernet timings for apollon board
20626
20627 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20628
20629commit 41c5eaa7253ed82bbae1eda5667755872c615164
20630Author: Andy Fleming <afleming@freescale.com>
20631Date: Mon Jun 16 13:58:56 2008 -0500
20632
20633 Resize device tree to allow space for board changes and the chosen node
20634
20635 Current code requires that a compiled device tree have space added to the end to
20636 leave room for extra nodes added by board code (and the chosen node). This
20637 requires that device tree creators anticipate how much space U-Boot will add to
20638 the tree, which is absurd. Ideally, the code would resize and/or relocate the
20639 tree when it needed more space, but this would require a systemic change to the
20640 fdt code, which is non-trivial. Instead, we resize the tree inside
20641 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
20642 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
20643
20644 Signed-off-by: Andy Fleming <afleming@freescale.com>
20645
20646commit 7570a9941fc565922078679a72d246fe208d696d
20647Author: Andy Fleming <afleming@freescale.com>
20648Date: Mon Jun 16 13:58:55 2008 -0500
20649
20650 Fix an underflow bug in __lmb_alloc_base
20651
20652 __lmb_alloc_base can underflow if it fails to find free space. This was fixed
20653 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch
20654 merely updates __lmb_alloc_base to resemble the current version in Linux.
20655
20656 Signed-off-by: Andy Fleming <afleming@freescale.com>
20657
20658commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
20659Author: Andy Fleming <afleming@freescale.com>
20660Date: Mon Jun 16 13:58:54 2008 -0500
20661
20662 Add lmb_free
20663
20664 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
20665 lmb_reserve to temporarily reserve some memory.
20666
20667 Signed-off-by: Andy Fleming <afleming@freescale.com>
20668
20669commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
20670Author: Andy Fleming <afleming@freescale.com>
20671Date: Mon Jun 16 13:58:53 2008 -0500
20672
20673 Add ALIGN() macro
20674
20675 ALIGN() returns the smallest aligned value greater than the passed
20676 in address or size. Taken from Linux.
20677
20678 Signed-off-by: Andy Fleming <afleming@freescale.com>
20679
4188f049
WD
20680commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
20681Author: Stefan Roese <sr@denx.de>
20682Date: Tue Jun 24 17:15:22 2008 +0200
20683
20684 ppc4xx: Fix compilation problems with phys_size_t
20685
20686 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
20687 board specific files where it has been missing.
20688
20689 Signed-off-by: Stefan Roese <sr@denx.de>
20690
01db232d
WD
20691commit 28eab0d77352b84885f938759bf2612b7bf0bc44
20692Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
20693Date: Mon May 19 12:26:38 2008 +0200
20694
20695 Conditionally add -fno-stack-protector to CFLAGS
20696
20697 When compile-testing on powerpc, I get errors like this:
20698
20699 net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
20700
20701 This seems to be because -fstack-protector is on by default, so
20702 let's explicitly disable it on all architectures that support the
20703 option.
20704
20705 The Ubuntu toolchain is affected by this problem, and according to
20706 Mike Frysinger, Gentoo has been running with SSP enabled for years.
20707 More and more distros are turning SSP on by default, so this problem
20708 is likely to get worse in the future.
20709
20710 Also, powerpc just happens to be one of the arches I do
20711 compile-testing on. There may be other arches affected by this too.
20712
20713 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
20714
20715commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
20716Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20717Date: Sun May 18 19:09:52 2008 +0200
20718
20719 pcmcia/ti_pci1410a: Move compile condition to the Makefile
20720
20721 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20722
20723commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
20724Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20725Date: Sun May 18 19:09:51 2008 +0200
20726
20727 pxa_pcmcia: Move compile condition to the Makefile
20728
20729 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20730
20731commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
20732Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20733Date: Sun May 18 19:09:50 2008 +0200
20734
20735 marabun_pcmcia: Move compile condition to the Makefile
20736
20737 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
20738
4188f049
WD
20739commit 6a19c46cae43c16c528eddefae3db97134f1915d
20740Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
20741Date: Mon Jun 23 13:25:34 2008 +0200
20742
20743 fix non-working mvBL-M7
20744
20745 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
20746
20747 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
20748 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20749
20750commit 846f1574ddddeda2bc227655e687308695f41cdc
20751Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
20752Date: Mon Jun 23 11:40:56 2008 +0200
20753
20754 fix system config overwrite @ MPC834x and MPC8313
20755
20756 During 83xx setup the "System I/O configuration register high" gets
20757 overwritten with user defined value if CFG_SICRH is defined.
20758
20759 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
20760 must keep their reset value regardless of configuration.
20761
20762 On my board (using RGMII) those bits are set after reset - yet it's
20763 unclear where they come from.
20764
20765 The patch keeps both bits on MPC834x and MPC8313.
20766
20767 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
20768 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20769
20770commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
20771Author: Kim Phillips <kim.phillips@freescale.com>
20772Date: Tue Jun 17 17:45:27 2008 -0500
20773
20774 mpc83xx: move CPU_TYPE_ENTRY over to processor.h
20775
20776 to avoid this:
20777
20778 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
20779 In file included from cpu.c:33:
20780 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
20781
20782 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20783
20784commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
20785Author: Stefan Roese <sr@denx.de>
20786Date: Mon Jun 23 11:15:09 2008 +0200
20787
20788 ppc4xx: Fix problem in gpio_config()
20789
20790 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
20791 left by one. So the additional shift is bogus.
20792
20793 Signed-off-by: Stefan Roese <sr@denx.de>
20794
20795commit 40777812316fc252c941665c0f60c148fd79d50f
20796Author: Detlev Zundel <dzu@denx.de>
20797Date: Fri Jun 20 22:24:05 2008 +0200
20798
20799 fdt: Fix typo in variable name.
20800
20801 Signed-off-by: Detlev Zundel <dzu@denx.de>
20802
20803commit 5f723a3b98c630bde33de74351f2121691fdef14
20804Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20805Date: Fri Jun 20 10:41:05 2008 +0200
20806
20807 avr32: Enable SPI flash support on ATNGW100
20808
20809 The ATNGW100 has 8MB DataFlash on board. Give users access to it through
20810 the new SPI flash framework.
20811
20812 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20813
20814commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
20815Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20816Date: Fri Jun 20 12:44:28 2008 +0200
20817
20818 avr32: Fix SPI portmux initialization
20819
20820 Use the new GPIO manipulation functions to set up the chip select lines,
20821 and make sure both busses use GPIO for chip select control.
20822
20823 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20824
20825commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
20826Author: Peter Ma <pma@mediamatech.com>
20827Date: Sun Jun 1 22:59:24 2008 -0700
20828
20829 avr32: Add GPIO manipulation functions
20830
20831 Adds GPIO manipulation functions for AVR32 AP7 platform.
20832
20833 Signed-off-by: Peter Ma <pma@mediamatech.com>
20834 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
20835 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
20836
01db232d
WD
20837commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
20838Author: Wolfgang Grandegger <wg@grandegger.com>
20839Date: Thu Jun 5 13:02:30 2008 +0200
20840
20841 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
20842
20843 This patch is based on the following patch sent a few minutes ago:
20844 "NAND FSL UPM: driver re-write using the hwcontrol callback"
20845 It is untested, of course. Anton, could you please give it a try.
20846
20847 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20848 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20849
20850commit 96026d42fa4e646d28318c0a1438aac4b2017909
20851Author: Anatolij Gustschin <agust@denx.de>
20852Date: Thu Jun 12 12:40:11 2008 +0200
20853
20854 Fix 4xx build issue
20855
20856 Building for 4xx doesn't work since commit 4dbdb768:
20857
20858 In file included from 4xx_pcie.c:28:
20859 include/asm/processor.h:971: error: expected ')' before 'ver'
20860 make[1]: *** [4xx_pcie.o] Error 1
20861
20862 This patch fixes the problem.
20863
20864 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20865 Acked-by: Stefan Roese <sr@denx.de>
20866 Acked-by: Kumar Gala <galak@kernel.crashing.org>
20867
699f0512
WD
20868commit a036b0443657fe0f4773786de9092251869f08ac
20869Author: Kumar Gala <galak@kernel.crashing.org>
20870Date: Thu Jun 19 01:45:50 2008 -0500
20871
20872 MPC8610HPCD: Report board id, board version and fpga version.
20873
20874 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20875
20876commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
20877Author: Kumar Gala <galak@kernel.crashing.org>
20878Date: Thu Jun 19 01:45:27 2008 -0500
20879
20880 MPC8641HPCN: Report board id, board version and fpga version.
20881
20882 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20883
01db232d
WD
20884commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
20885Author: Stefan Roese <sr@denx.de>
20886Date: Mon Jun 16 10:40:02 2008 +0200
20887
20888 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
20889
20890 This patch simplifies flash_toggle() (AMD commandset), which is used to
20891 detect if a FLASH device is still busy with erase/program operations. On
20892 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
20893 did not detect the busy state reliably, resulting in non erased sectors
20894 etc. This patch now simplifies this function by "just" comparing the
20895 complete data-word instead of ANDing it with the command-word (0x40)
20896 before the compatison. It is done the same way in the Linux implementation
20897 chip_ready() in cfi_cmdset_0002.c.
20898
20899 Signed-off-by: Stefan Roese <sr@denx.de>
20900
20901commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
20902Author: Philip Balister <philip@balister.org>
20903Date: Mon Jun 16 08:58:07 2008 -0400
20904
20905 NAND: Add missing declaration to non-redundant saveenv().
20906
20907 Signed-off-by: Scott Wood <scottwood@freescale.com>
20908
20909commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
20910Author: Wolfgang Grandegger <wg@grandegger.com>
20911Date: Mon Jun 2 15:09:55 2008 +0200
20912
20913 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
20914
20915 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
20916 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20917 Signed-off-by: Scott Wood <scottwood@freescale.com>
20918
20919commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
20920Author: Stefan Roese <sr@denx.de>
20921Date: Tue Jun 10 15:34:11 2008 +0200
20922
20923 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
20924
20925 This patch disables the square wave output of the M41T62 RTC used on
20926 Canyonlands & Glacier. Here the explanation:
20927
20928 The serial real-time clock part used in the design is an
20929 STMicro M41T62. This part has a full-time 32KHz square wave
20930 output that is connected to the TmrClk input to the
20931 processor. The default state for this square wave output is
20932 enabled so the output runs continuously when the board is
20933 powered normally and also from the battery. The TmrClk input
20934 to the processor goes to ground when the power is removed
20935 from the board/processor, and therefore the running square
20936 wave output is driving ground which drains the battery quickly.
20937
20938 Signed-off-by: Stefan Roese <sr@denx.de>
20939
20940commit a94f22f08f280905926219e568568964cb9eeb9d
20941Author: Andy Fleming <afleming@freescale.com>
20942Date: Wed Jun 11 18:10:20 2008 -0500
20943
20944 Fix build issue with string.h and linux/string.h
20945
20946 This commit:
20947 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
20948 Author: Wolfgang Denk <wd@denx.de>
20949 Date: Fri Jun 6 14:28:14 2008 +0200
20950
20951 tools/mkimage: fix compiler warnings on some systems.
20952
20953 Broke building on some systems, because the host's string.h was interfering
20954 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if
20955 we're building for the host, so now we only include when building inside
20956 u-boot.
20957
20958 Signed-off-by: Andy Fleming <afleming@freescale.com>
20959
20960commit 9973e3c614721bbf169882ffc3be266a6611cd60
20961Author: Becky Bruce <becky.bruce@freescale.com>
20962Date: Mon Jun 9 16:03:40 2008 -0500
20963
20964 Change initdram() return type to phys_size_t
20965
20966 This patch changes the return type of initdram() from long int to phys_size_t.
20967 This is required for a couple of reasons: long int limits the amount of dram
20968 to 2GB, and u-boot in general is moving over to phys_size_t to represent the
20969 size of physical memory. phys_size_t is defined as an unsigned long on almost
20970 all current platforms.
20971
20972 This patch *only* changes the return type of the initdram function (in
20973 include/common.h, as well as in each board's implementation of initdram). It
20974 does not actually modify the code inside the function on any of the platforms;
20975 platforms which wish to support more than 2GB of DRAM will need to modify
20976 their initdram() function code.
20977
20978 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
20979 MPC8641HPCN.
20980
20981 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20982
20983commit 391fd93ab23e15ab3dd58a54f5b609024009c378
20984Author: Becky Bruce <becky.bruce@freescale.com>
20985Date: Mon Jun 9 20:37:18 2008 -0500
20986
20987 Change lmb to use phys_size_t/phys_addr_t
20988
20989 This updates the lmb code to use phys_size_t
20990 and phys_addr_t instead of unsigned long. Other code
20991 which interacts with this code, like getenv_bootm_size()
20992 is also updated.
20993
20994 Booted on MPC8641HPCN, build-tested ppc, arm, mips.
20995
20996 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
20997
20998commit 61b09fc2952dc636017df4e7970e3de132276ba1
20999Author: Becky Bruce <becky.bruce@freescale.com>
21000Date: Mon Jun 9 20:37:17 2008 -0500
21001
21002 Change print_size to take phys_size_t
21003
21004 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21005
21006commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
21007Author: Becky Bruce <becky.bruce@freescale.com>
21008Date: Mon Jun 9 20:37:16 2008 -0500
21009
21010 Change bd/gd memsize/ram_size to be phys_size_t.
21011
21012 Currently, both are defined as an unsigned long, but
21013 should be phys_size_t. This should result in no real change,
21014 since phys_size_t is currently an unsigned long for all the
21015 default configs. Also add print_lnum to cmd_bdinfo to deal
21016 with the potentially wider memsize.
21017
21018 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21019
21020commit ba04f7010958e88a8910f2a123fee53fdc72e013
21021Author: Kumar Gala <galak@kernel.crashing.org>
21022Date: Tue Jun 10 16:16:02 2008 -0500
21023
21024 FSL LAW: Add new interface to use the last free LAW
21025
21026 LAWs have the concept of priority so its useful to be able to allocate
21027 the lowest (highest number) priority. We will end up using this with the
21028 new DDR code.
21029
21030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21031
21032commit 859a86a25c569d3665ff413d1d923394b8a961f3
21033Author: Kumar Gala <galak@kernel.crashing.org>
21034Date: Wed Jun 11 00:51:45 2008 -0500
21035
21036 85xx/86xx: Move to dynamic mgmt of LAWs
21037
21038 With the new LAW interface (set_next_law) we can move to letting the
21039 system allocate which LAWs are used for what purpose. This makes life
21040 a bit easier going forward with the new DDR code.
21041
21042 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21043 Signed-off-by: Andy Fleming <afleming@freescale.com>
21044 Acked-by: Jon Loeliger <jdl@freescale.com>
21045 Acked-by: Becky Bruce <becky.bruce@freescale.com>
21046
21047commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
21048Author: Kumar Gala <galak@kernel.crashing.org>
21049Date: Wed Jun 11 00:44:10 2008 -0500
21050
21051 FSL LAW: Keep track of LAW allocations
21052
21053 Make it so we keep track of which LAWs have allocated and provide
21054 a function (set_next_law) which can allocate a LAW for us if one is
21055 free.
21056
21057 In the future we will move to doing more "dynamic" LAW allocation
21058 since the majority of users dont really care about what LAW number
21059 they are at.
21060
21061 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
21062
21063 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21064 Signed-off-by: Andy Fleming <afleming@freescale.com>
21065
21066commit ddde74a159caa6e18b481fec01d40b885aebb566
21067Author: Kumar Gala <galak@kernel.crashing.org>
21068Date: Mon Jun 9 22:31:57 2008 -0500
21069
21070 85xx: remove dummy board_early_init_f
21071
21072 A number of board ports have empty version of board_early_init_f
21073 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
21074
21075 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21076
21077commit 81e56e9af0d43712db8efb843606a8d62eab454f
21078Author: Kumar Gala <galak@kernel.crashing.org>
21079Date: Mon Jun 9 18:55:38 2008 -0500
21080
21081 MPC8544DS: Update config.h
21082
21083 * Enable flash progress
21084 * remove CLEAR_LAW0 since we dont really use it
21085
21086 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21087
21088commit 978e81604c1b28526ed580df0fbe64eb8384e94f
21089Author: Kumar Gala <galak@kernel.crashing.org>
21090Date: Mon Jun 9 13:37:24 2008 -0500
21091
21092 85xx: Remove unused and unconfigured memory test code.
21093
21094 Remove unused and unconfigured DDR test code from FSL 85xx boards.
21095 Besides, other common code exists.
21096
21097 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21098
21099commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
21100Author: Sergei Poselenov <sposelenov@emcraft.com>
21101Date: Fri Jun 6 15:42:45 2008 +0200
21102
21103 Socrates: Added FPGA base address update in FDT.
21104
21105 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
21106
21107commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
21108Author: Sergei Poselenov <sposelenov@emcraft.com>
21109Date: Fri Jun 6 15:42:44 2008 +0200
21110
21111 Socrates: NAND support added. Changed the U-Boot base address and
21112
21113 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
21114
21115commit 248ae5cfc8bf69074d1da099dc495d8e06070547
21116Author: Sergei Poselenov <sposelenov@emcraft.com>
21117Date: Fri Jun 6 15:42:43 2008 +0200
21118
21119 NAND: Added support for 128-bit OOB, adapted
21120
21121 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
21122
21123commit 31ca0208612f2eb57690110d7c2815953650e47b
21124Author: Sergei Poselenov <sposelenov@emcraft.com>
21125Date: Fri Jun 6 15:42:42 2008 +0200
21126
21127 Socrates: added missed file with UPMA configuration data.
21128
21129 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
21130
21131commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
21132Author: Sergei Poselenov <sposelenov@emcraft.com>
21133Date: Fri Jun 6 15:42:41 2008 +0200
21134
21135 Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
21136
21137 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
21138
21139commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
21140Author: Sergei Poselenov <sposelenov@emcraft.com>
21141Date: Fri Jun 6 15:42:40 2008 +0200
21142
21143 Added the upmconfig() function for 85xx.
21144
21145 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
21146 Signed-off-by: Andy Fleming <afleming@freescale.com>
21147
21148commit d39e68514ff943930ee692cff3fde03532eb7fec
21149Author: Sergei Poselenov <sposelenov@emcraft.com>
21150Date: Fri Jun 6 15:42:39 2008 +0200
21151
21152 Socrates: config file cleanup.
21153
21154 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
21155
21156commit e8cc3f04b124f757af4528206e60d8eb715ae083
21157Author: Wolfgang Grandegger <wg@grandegger.com>
21158Date: Thu Jun 5 13:12:10 2008 +0200
21159
21160 TQM85xx: Change memory map to support Flash memory > 128 MiB
21161
21162 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
21163 memory. The current memory map only supports up to 128 MiB Flash.
21164 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
21165 set, up to 1 GiB flash is supported. To achieve this, the memory
21166 map has to be adjusted in great parts (for example the CCSRBAR is
21167 moved from 0xE0000000 to 0xA0000000).
21168
21169 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
21170 memory map also has to be considered in the kernel (changed
21171 CCSRBAR address, changed PCI IO base address, ...). Please use
21172 an appropriate Flat Device Tree blob (tqm8548.dtb).
21173
21174 Signed-off-by: Martin Krause <martin.krause@tqs.de>
21175 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21176
21177commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
21178Author: Wolfgang Grandegger <wg@grandegger.com>
21179Date: Thu Jun 5 13:12:09 2008 +0200
21180
21181 TQM85xx: NAND support via local bus UPMB
21182
21183 This patch adds support for NAND FLASH on the TQM8548. It is disabled by
21184 default and can be enabled for the TQM8548 modules. It is now based on
21185 the re-written FSL NAND UPM driver. A patch has been posted earlier today
21186 with the subject:
21187
21188 "NAND FSL UPM: driver re-write using the hwcontrol callback"
21189
21190 Note that the R/B pin is not supported by that module requiring to use
21191 the specified maximum delay time.
21192
21193 Note: With NAND support enabled the size of the U-Boot image exceeds
21194 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
21195 doubling the image size :-(.
21196
21197 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
21198 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21199
21200commit b9e8078bb3f3c48111a7081e27279938c3a445e1
21201Author: Wolfgang Grandegger <wg@grandegger.com>
21202Date: Thu Jun 5 13:12:08 2008 +0200
21203
21204 TQM8548: PCI express support
21205
21206 This patch adds support for PCI express cards. The board support
21207 now uses common FSL PCI init code, for both, PCI and PCIe on all
21208 TQM85xx modules.
21209
21210 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
21211 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21212
21213commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
21214Author: Wolfgang Grandegger <wg@grandegger.com>
21215Date: Thu Jun 5 13:12:07 2008 +0200
21216
21217 TQM8548: Basic support for the TQM8548 modules
21218
21219 This patch adds basic support for the TQM8548 module from TQ-Components
21220 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
21221 eTSEC 3 and 4
21222
21223 Furthermore Flash buffer write has been enabled to speed up output to
21224 the Flash by approx. a factor of 10.
21225
21226 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
21227 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21228
21229commit 25991353204c78b094c3c1fec90182dcd607ab8f
21230Author: Wolfgang Grandegger <wg@grandegger.com>
21231Date: Thu Jun 5 13:12:06 2008 +0200
21232
21233 TQM85xx: Support for Flat Device Tree
21234
21235 This patch adds support for Linux kernels using the Flat Device Tree.
21236 It also re-defines the default environment settings for booting Linux
21237 with the FDT blob.
21238
21239 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21240
21241commit d9ee843d54c54776e1fdb86336ce554906a87331
21242Author: Wolfgang Grandegger <wg@grandegger.com>
21243Date: Thu Jun 5 13:12:05 2008 +0200
21244
21245 TQM85xx: Support for Intel 82527 compatible CAN controller
21246
21247 This patch adds initialization of the UPMC RAM to support up to two
21248 Intel 82527 compatible CAN controller on the TQM85xx modules.
21249
21250 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
21251 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21252
21253commit 518d5cfe72916323c746af1647764459914f555f
21254Author: Wolfgang Grandegger <wg@grandegger.com>
21255Date: Thu Jun 5 13:12:04 2008 +0200
21256
21257 TQM85xx: Bugfix in the SDRAM initialisation
21258
21259 The CS0_BNDS register is now set according to the detected
21260 memory size.
21261
21262 Signed-off-by Martin Krause <martin.krause@tqs.de>
21263
21264commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
21265Author: Wolfgang Grandegger <wg@grandegger.com>
21266Date: Thu Jun 5 13:12:03 2008 +0200
21267
21268 TQM85xx: Fix chip select configuration for second FLASH bank
21269
21270 This patch fixes the re-calculation of the automatic chip select
21271 configuration for boards with two populated FLASH banks.
21272
21273 Signed-off-by: Martin Krause <martin.krause@tqs.de>
21274
21275commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
21276Author: Wolfgang Grandegger <wg@grandegger.com>
21277Date: Thu Jun 5 13:12:02 2008 +0200
21278
21279 TQM85xx: Support for Spansion 'N' type flashes added
21280
21281 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
21282 than the formerly used 'M' types (S29GLxxxM series), so the flash layout
21283 needs to be changed -> new start address of the environment. The macro
21284 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
21285 defined for boards with 'N' type flashes.
21286
21287 Signed-off-by: Martin Krause <martin.krause@tqs.de>
21288 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21289
21290commit 5d5bd838f76eade22c0ea40a500389f924d0da36
21291Author: Wolfgang Grandegger <wg@grandegger.com>
21292Date: Thu Jun 5 13:12:01 2008 +0200
21293
21294 TQM85xx: Fix CPM port pin configuration
21295
21296 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
21297 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
21298 as serial interface anyway. Worse, on some board variants configuring the
21299 pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
21300
21301 Signed-off-by: Martin Krause <martin.krause@tqs.de>
21302
21303commit b99ba1679e8cd51b023e67098c89e606e47137d2
21304Author: Wolfgang Grandegger <wg@grandegger.com>
21305Date: Thu Jun 5 13:12:00 2008 +0200
21306
21307 TQM85xx: Various coding style fixes
21308
21309 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21310
21311commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
21312Author: Gerald Van Baren <vanbaren@cideas.com>
21313Date: Tue Jun 10 22:15:58 2008 -0400
21314
21315 libfdt: Move the working_fdt pointer to cmd_fdt.c
21316
21317 The working_fdt pointer was declared in common/fdt_support.c but was
21318 not used there. Move it to common/cmd_fdt.c where it is used (it is
21319 also used in lib_ppc/bootm.c).
21320
21321 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21322
21323commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
21324Author: Kim Phillips <kim.phillips@freescale.com>
21325Date: Tue Jun 10 11:06:17 2008 -0500
21326
21327 fdt: unshadow global working fdt variable
21328
21329 differentiate with local variables of the same name by renaming the
21330 global 'fdt' variable 'working_fdt'.
21331
21332 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21333
21334commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
21335Author: Andy Fleming <afleming@freescale.com>
21336Date: Tue Jun 10 18:49:34 2008 -0500
21337
21338 socrates: Fix PCI clk fix patch
21339
21340 The submitted patch seems to have been more up-to-date, but an older patch was
21341 already in the repository. This patch encompasses the differences
21342
21343 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
21344
21345 Signed-off-by: Andy Fleming <afleming@freescale.com>
21346
21347commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
21348Author: Wolfgang Grandegger <wg@grandegger.com>
21349Date: Thu Jun 5 13:02:29 2008 +0200
21350
21351 NAND FSL UPM: driver re-write using the hwcontrol callback
21352
21353 This is a re-write of the NAND FSL UPM driver using the more universal
21354 hwcontrol callback (instead of the cmdfunc callback). Here is a brief
21355 list of furher modifications:
21356
21357 - For the time being, the UPM setup writing the UPM array has been
21358 removed from the driver and must now be done by the board specific
21359 code.
21360
21361 - The bus width definition in "struct fsl_upm_nand" is now in bits to
21362 comply with the corresponding Linux driver and 8, 16 and 32 bit
21363 accesses are supported.
21364
21365 - chip->dev_read is only set if fun->dev_ready != NULL, which is
21366 required for boards not connecting the R/B pin.
21367
21368 - A few issue have been fixed with MxMR bit manipulation like in the
21369 corresponding Linux driver.
21370
21371 Note: I think the "io_addr" field of "struct fsl_upm" could be removed
21372 as well, because the address is already determined by
21373 "nand->IO_ADDR_[RW]", but I'm not 100% sure.
21374
21375 This patch has been tested on a TQM8548 modules with the NAND chip
21376 Micron MT29F8G08FABWP.
21377
21378 This patch is based on the following patches posted to this list a few
21379 minutes ago:
21380
21381 PPC: add accessor macros to clear and set bits in one shot
21382 83xx/85xx/86xx: add more MxMR local bus definitions
21383
21384 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21385 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
21386
21387commit 6beecfbb542992eede5831240cd58678274683a9
21388Author: Wolfgang Grandegger <wg@grandegger.com>
21389Date: Thu Jun 5 13:11:59 2008 +0200
21390
21391 MPC85xx: Beautify boot output of L2 cache configuration
21392
21393 The boot output is now aligned poperly with other boot output
21394 lines, e.g.:
21395
21396 FLASH: 128 MB
21397 L2: 512 KB enabled
21398
21399 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21400
21401commit 398415114f0a705163a14543e9fef03f734b1ffa
21402Author: Wolfgang Grandegger <wg@grandegger.com>
21403Date: Wed Jun 4 12:45:22 2008 +0200
21404
21405 PPC: add accessor macros to clear and set bits in one shot
21406
21407 PPC: add accessor macros to clear and set bits in one shot
21408
21409 This patch adds macros from linux/include/asm-powerpc/io.h to clear and
21410 set bits in one shot using the in_be32, out_be32, etc. accessor functions.
21411 They are very handy to manipulate bits it I/O registers.
21412
21413 This patch is required for my forthcoming FSL NAND UPM driver re-write and
21414 the support for the TQM8548 module.
21415
21416 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21417
21418commit 4677988c7edc070c3786d3db7994abeca3ab82a0
21419Author: Wolfgang Grandegger <wg@grandegger.com>
21420Date: Wed Jun 4 13:52:17 2008 +0200
21421
21422 TQM: move TQM boards to board/tqc
21423
21424 Move all TQM board directories to the vendor specific directory "tqc"
21425 for modules from TQ-Components GmbH (http://www.tqc.de).
21426
21427 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21428
21429commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
21430Author: Wolfgang Grandegger <wg@grandegger.com>
21431Date: Mon Jun 2 12:09:30 2008 +0200
21432
21433 83xx/85xx/86xx: add more MxMR local bus definitions
21434
21435 83xx/85xx/86xx: add more MxMR local bus definitions
21436
21437 This patch adds more macro definitions for the UPM Machine Mode Registers
21438 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
21439 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
21440 required for my forthcoming FSL NAND UPM driver re-write and the support
21441 for the TQM8548 module.
21442
21443 This patch is based on the following two patches from Anton Vorontsov:
21444
21445 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
21446 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
21447
21448 I leave coding style violation fixes, code beautification and name
21449 corrections to somebody else ;-(.
21450
21451 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
21452
21453commit c8c5fc266e4499e283c293ccb972863156aa4134
21454Author: Anton Vorontsov <avorontsov@ru.mvista.com>
21455Date: Thu May 29 18:14:56 2008 +0400
21456
21457 83xx/85xx: further localbus cleanups
21458
21459 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
21460 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
21461
21462 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
21463
21464commit 42dbd667c88d496882d53e22656e89b654205492
21465Author: Anton Vorontsov <avorontsov@ru.mvista.com>
21466Date: Wed May 28 18:20:15 2008 +0400
21467
21468 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
21469
21470 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
21471 use it on MPC85xx and MPC86xx processors.
21472
21473 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
21474
21475commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
21476Author: Kumar Gala <galak@kernel.crashing.org>
21477Date: Thu May 29 11:22:06 2008 -0500
21478
21479 85xx: Add setting of cache props in the device tree.
21480
21481 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21482
21483commit 4dbdb7681e243431530df0725627192a0c4aefda
21484Author: Kumar Gala <galak@kernel.crashing.org>
21485Date: Tue Jun 10 16:53:46 2008 -0500
21486
21487 85xx: expose cpu identification
21488
21489 The current cpu identification code is used just to return the name
21490 of the processor at boot. There are some other locations that the name
21491 is useful (device tree setup). Expose the functionality to other bits
21492 of code.
21493
21494 Also, drop the 'E' suffix and add it on by looking at the SVR version
21495 when we print this out. This is mainly to allow the most flexible use
21496 of the name. The device tree code tends to not care about the 'E' suffix.
21497
21498 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21499
21500commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
21501Author: Kim Phillips <kim.phillips@freescale.com>
21502Date: Tue Jun 10 13:25:24 2008 -0500
21503
21504 mpc83xx: MVBLM7: minor build fixups
21505
21506 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21507
21508commit a1293e549b56da135ef32ffca5b9d35a16aa6802
21509Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
21510Date: Tue Jun 10 09:14:05 2008 +0200
21511
21512 add MPC8343 based board mvBlueLYNX-M7 (board+make files)
21513
21514 Add MPC8343 based board mvBlueLYNX-M7.
21515 It's a single board stereo camera system.
21516 Please read doc/README.mvblm7 for details.
21517
21518 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
21519 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21520
21521commit c005b93925ba49f07da2aa748527996d927e172f
21522Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
21523Date: Tue Jun 10 09:13:16 2008 +0200
21524
21525 add MPC8343 based board mvBlueLYNX-M7 (doc+config)
21526
21527 Add MPC8343 based board mvBlueLYNX-M7.
21528 It's a single board stereo camera system.
21529 Please read doc/README.mvblm7 for details.
21530
21531 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
21532 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21533
21534commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
21535Author: Anton Vorontsov <avorontsov@ru.mvista.com>
21536Date: Thu May 29 18:14:56 2008 +0400
21537
21538 83xx/85xx: further localbus cleanups
21539
21540 move the BRx_* and ORx_* left behind in mpc85xx.h
21541
21542 The same is needed for mpc8xx.h and mpc8260.h (defines are almost
21543 the same, just few differences which needs some attention though).
21544
21545 But the bad news for mpc8xx and mpc8260 is that there are a lot of users
21546 of these defines. So this cleanup I'll leave for the "better times".
21547
21548 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
21549 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21550
21551commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
21552Author: Anton Vorontsov <avorontsov@ru.mvista.com>
21553Date: Wed May 28 18:20:15 2008 +0400
21554
21555 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
21556
21557 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
21558 use it on MPC85xx and MPC86xx processors.
21559
21560 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
21561 Acked-by: Andy Fleming <afleming@freescale.com>
21562 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21563
21564commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
21565Author: Tor Krill <tor@excito.com>
21566Date: Mon Jun 2 15:09:30 2008 +0200
21567
21568 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
21569
21570 Signed-off-by: Tor Krill <tor@excito.com>
21571 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
21572
21573commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
21574Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21575Date: Mon Jun 9 23:37:44 2008 +0900
21576
21577 net: Conditional COBJS inclusion of network drivers
21578
21579 Replace COBJS-y with appropriate driver config names.
21580
21581 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21582 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21583
21584commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
21585Author: Gerald Van Baren <vanbaren@cideas.com>
21586Date: Mon Jun 9 21:02:17 2008 -0400
21587
21588 Use strncmp() for the fdt command
21589
21590 Cleaner than doing multiple conditionals on characters.
21591
21592 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21593
21594commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
21595Author: Gerald Van Baren <vanbaren@cideas.com>
21596Date: Sat Jun 7 12:25:05 2008 -0400
21597
21598 The fdt boardsetup command criteria was not unique
21599
21600 It was checking just for "b", which is not unique with respect to the
21601 "boot" command. Change to check for "boa"[rdsetup].
21602
21603 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21604
21605commit 2f08bfa9526bae4f461e043530cfb903fec0d273
21606Author: David Gibson <david@gibson.dropbear.id.au>
21607Date: Tue May 20 17:19:11 2008 +1000
21608
21609 libfdt: Several cleanups to parameter checking
21610
21611 This patch makes a couple of small cleanups to parameter checking of
21612 libfdt functions.
21613
21614 - In several functions which take a node offset, we use an
21615 idiom involving fdt_next_tag() first to check that we have indeed been
21616 given a node offset. This patch adds a helper function
21617 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
21618
21619 - In fdt_rw.c in several places we have the expanded version
21620 of the RW_CHECK_HEADER() macro for no particular reason. This patch
21621 replaces those instances with an invocation of the macro; that's what
21622 it's for.
21623
21624 - In fdt_sw.c we rename the check_header_sw() function to
21625 sw_check_header() to match the analgous function in fdt_rw.c, and we
21626 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
21627 functions in fdt_rw.c
21628
21629 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21630
21631commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
21632Author: Gerald Van Baren <vanbaren@cideas.com>
21633Date: Tue Jun 3 20:34:45 2008 -0400
21634
21635 Remove the deprecated CONFIG_OF_FLAT_TREE
21636
21637 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is
21638 cleaner, has better functionality, and is better supported.
21639
21640 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21641
21642commit 62bcdda293efa752f8281fbd9da03822b27ce82f
21643Author: Gerald Van Baren <vanbaren@cideas.com>
21644Date: Tue Jun 3 20:26:29 2008 -0400
21645
21646 Change the stxxst to CONFIG_OF_LIBFDT
21647
21648 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
21649 to CONFIG_OF_LIBFDT.
21650
21651 WARNING: It appears that this board lost its ability to boot via a
21652 flattened device tree prior to this changeset.
21653
21654 WARNING: This conversion was untested because I do not have a board to
21655 test it on.
21656
21657 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21658
21659commit 589c04271d129729a8b01391453851ab9cc4069c
21660Author: Gerald Van Baren <vanbaren@cideas.com>
21661Date: Tue Jun 3 20:24:58 2008 -0400
21662
21663 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
21664
21665 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
21666 to CONFIG_OF_LIBFDT.
21667
21668 WARNING: This conversion is untested because I do not have a board to
21669 test it on.
21670
21671 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
21672 /aliases/ethernet1 property for the ethernet to work.
21673
21674 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21675
21676commit ee1e35bede91debc8bff9b02f75574486033b652
21677Author: Kumar Gala <galak@kernel.crashing.org>
21678Date: Thu May 29 01:21:24 2008 -0500
21679
21680 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
21681
21682 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21683
21684commit 3b9519fc50802436e417c839e69df7b2016cade5
21685Author: Becky Bruce <becky.bruce@freescale.com>
21686Date: Wed May 14 13:10:04 2008 -0500
21687
21688 MPC85xx: Change traps.c to not reference non-addressable memory
21689
21690 Currently, END_OF_RAM is used by the trap code to determine if
21691 we should attempt to access the stack pointer or not. However,
21692 on systems with a lot of RAM, only a subset of the RAM is
21693 guaranteed to be mapped in and accessible. Change END_OF_RAM
21694 to use get_effective_memsize() instead of using the raw ram
21695 size out of the bd.
21696
21697 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21698
21699commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
21700Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21701Date: Mon Jun 9 13:39:57 2008 +0900
21702
21703 sh: Renesas Solutions SH7763RDP board support
21704
21705 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
21706 In this patch, support SCIF, NOR Flash, and Ethernet.
21707
21708 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21709 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21710
21711commit 60179098a95eaa972007d7ec58e4c1588029720f
21712Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21713Date: Fri Jun 6 16:24:13 2008 +0900
21714
21715 sh: Add support Renesas SH7763
21716
21717 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
21718 This patch supprts CPU register's header file.
21719
21720 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21721 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21722
21723commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
21724Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21725Date: Fri Jun 6 16:16:08 2008 +0900
21726
21727 sh: SH7763 SCIF support
21728
21729 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
21730 but only SCIF2 is different. This patch work all SCIF channel.
21731
21732 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
21733 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21734
21735commit 79b51ff8205f0354d5300570614c1d2db499679c
21736Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21737Date: Sat Jun 7 20:51:59 2008 +0900
21738
21739 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
21740
21741 Also get rid of some #ifdefs in *.c files.
21742
21743 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21744
21745commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
21746Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21747Date: Sat Jun 7 20:51:56 2008 +0900
21748
21749 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
21750
21751 CONFIG_SOC_AU1X00
21752
21753 Common Alchemy Au1x00 stuff. All Alchemy processor based machines
21754 need to have this config as a system type specifier.
21755
21756 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
21757 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
21758
21759 Machine type specifiers. Each port should have one of aboves.
21760
21761 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21762
21763commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
21764Author: Stuart Wood <stuart.wood@labxtechnologies.com>
21765Date: Fri May 30 16:05:28 2008 -0400
21766
21767 env_nand.c: Added bad block management for environment variables
21768
21769 Modified to check for bad blocks and to skipping over them when
21770 CFG_ENV_RANGE has been defined.
21771 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
21772 flash block size.
21773
21774 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
21775 Signed-off-by: Scott Wood <scottwood@freescale.com>
21776
21777commit 279726bd00558e80263d44581c44167625b7fb9a
21778Author: Becky Bruce <becky.bruce@freescale.com>
21779Date: Wed May 14 13:09:58 2008 -0500
21780
21781 MPC86xx: Change traps.c to not reference non-addressable memory
21782
21783 Currently, END_OF_RAM is used by the trap code to determine if
21784 we should attempt to access the stack pointer or not. However,
21785 on systems with a lot of RAM, only a subset of the RAM is
21786 guaranteed to be mapped in and accessible. Change END_OF_RAM
21787 to use get_effective_memsize() instead of using the raw ram
21788 size out of the bd to prevent us from trying to access
21789 non-mapped memory.
21790
21791 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
21792
21793commit 338cc038461a6c7709c5b86fd9a240209338a1ae
21794Author: Wolfgang Denk <wd@denx.de>
21795Date: Fri Jun 6 14:28:14 2008 +0200
21796
21797 tools/mkimage: fix compiler warnings on some systems.
21798
21799 Signed-off-by: Wolfgang Denk <wd@denx.de>
21800
21801commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
21802Author: Stefan Roese <sr@denx.de>
21803Date: Fri Jun 6 16:10:41 2008 +0200
21804
21805 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
21806
21807 We use upper case letters for the AMCC processor defines (like
21808 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
21809 not CONFIG_440SPe. This patch fixes the last misspelled config options.
21810
21811 Signed-off-by: Stefan Roese <sr@denx.de>
21812
21813commit 72675dc6c06a48846d180106161d49dd714383cc
21814Author: Stefan Roese <sr@denx.de>
21815Date: Fri Jun 6 15:55:21 2008 +0200
21816
21817 ppc4xx: Unify AMCC's board config files (part 3/3)
21818
21819 This patch series unifies the AMCC eval board ports by introducing
21820 a common include header for all AMCC eval boards:
21821
21822 include/configs/amcc-common.h
21823
21824 This header now includes all common configuration options/defines which
21825 are removed from the board specific headers.
21826
21827 The reason for this is ease of maintenance and unified look and feel
21828 of all AMCC boards.
21829
21830 Signed-off-by: Stefan Roese <sr@denx.de>
21831
21832commit 490f204096d6e2c9940f67816f154a8125bab116
21833Author: Stefan Roese <sr@denx.de>
21834Date: Fri Jun 6 15:55:03 2008 +0200
21835
21836 ppc4xx: Unify AMCC's board config files (part 2/3)
21837
21838 This patch series unifies the AMCC eval board ports by introducing
21839 a common include header for all AMCC eval boards:
21840
21841 include/configs/amcc-common.h
21842
21843 This header now includes all common configuration options/defines which
21844 are removed from the board specific headers.
21845
21846 The reason for this is ease of maintenance and unified look and feel
21847 of all AMCC boards.
21848
21849 Signed-off-by: Stefan Roese <sr@denx.de>
21850
21851commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
21852Author: Stefan Roese <sr@denx.de>
21853Date: Fri Jun 6 15:54:31 2008 +0200
21854
21855 ppc4xx: Unify AMCC's board config files (part 1/3)
21856
21857 This patch series unifies the AMCC eval board ports by introducing
21858 a common include header for all AMCC eval boards:
21859
21860 include/configs/amcc-common.h
21861
21862 This header now includes all common configuration options/defines which
21863 are removed from the board specific headers.
21864
21865 The reason for this is ease of maintenance and unified look and feel
21866 of all AMCC boards.
21867
21868 Signed-off-by: Stefan Roese <sr@denx.de>
21869
21870commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
21871Author: Remy Bohmer <linux@bohmer.net>
21872Date: Thu Jun 5 13:03:36 2008 +0200
21873
21874 DM9000 fix status check fail 0x6d error for trizeps board
21875
21876 According to the Application Notes of the DM9000, only the 2 bits 0:1 of
21877 the status byte need to be checked to identify a valid packet in the fifo
21878
21879 But, The several different Application Notes do not all speak the same
21880 language on these bits. They do not disagree, but only 1 Application Note
21881 noted explicitly that only these 2 bits need to be checked.
21882 Even the datasheets do not mention anything about these 2 bits.
21883
21884 Because the old code, and the kernel check the whole byte, I left this piece
21885 untouched.
21886
21887 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
21888 it should work.
21889
21890 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
21891 in the fifo) is much shorter now, compared to the older U-boot driver code,
21892 so that we can maybe run into a hardware condition now that was never seen
21893 before, or maybe was seen very unfrequently.
21894
21895 Additionaly added a cleanup of a stack variable.
21896
21897 Signed-off-by: Remy Bohmer <linux@bohmer.net>
21898 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
21899
21900commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
21901Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21902Date: Thu Jun 5 22:29:00 2008 +0900
21903
21904 [MIPS] Update <asm/addrspace.h> header
21905
21906 - Fix traditional KSEG names
21907 - Replace PHYSADDR with CPHYSADDR
21908
21909 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21910
21911commit f0d5a6f060d00358b85c62a921a423ea8df71184
21912Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21913Date: Thu Jun 5 22:29:00 2008 +0900
21914
21915 [MIPS] mips_config.mk: Misc fixes
21916
21917 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
21918 - Modify comments
21919
21920 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21921
21922commit 5f64d21c9a2998794f255b469165b91f092dfc2d
21923Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21924Date: Thu Jun 5 22:29:00 2008 +0900
21925
21926 [MIPS] Kill unused <version.h> inclusions
21927
21928 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21929
21930commit a55d48174cfd1a5bc184159513f48dcbbe409c83
21931Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21932Date: Thu Jun 5 22:29:00 2008 +0900
21933
21934 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
21935
21936 MIPS port has two problems in timer routines. One is now we assume CFG_HZ
21937 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
21938 in the U-Boot system.
21939
21940 The other is we don't have a proper time management counter like timestamp
21941 other ARCHs have. We need the 32-bit millisecond clock counter.
21942
21943 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
21944 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
21945 of calculated CP0 counter cycles in a CFG_HZ.
21946
21947 STRATEGY:
21948
21949 * Fix improper CFG_HZ value to have 1000
21950
21951 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
21952
21953 * timer_init: initialize timestamp and set up the first timer expiration.
21954 Note that we don't need to initialize CP0 count/compare registers here
21955 as they have been already zeroed out on the system reset. Leave them as
21956 they are.
21957
21958 * get_timer: calculate how many timestamps have been passed, then return
21959 base-relative timestamp. Make sure we can easily count missed timestamps
21960 regardless of CP0 count/compare value.
21961
21962 * get_ticks: return the current timestamp, that is get_timer(0).
21963
21964 Most parts are from good old Linux v2.6.16 kernel.
21965
21966 v2:
21967 - Remove FIXME comments as they turned out to be trivial.
21968 - Use CP0 compare register as a global variable for expirelo.
21969 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
21970 instead.
21971
21972 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21973
21974commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
21975Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21976Date: Thu Jun 5 22:29:00 2008 +0900
21977
21978 [MIPS] lib_mips/time.c: Fix udelay
21979
21980 What we have to do is just to wait for given micro-seconds. No need to
21981 take into account current time, get_timer and CFG_HZ.
21982
21983 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21984
21985commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
21986Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21987Date: Thu Jun 5 22:28:59 2008 +0900
21988
21989 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
21990
21991 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
21992 This patch replaces mips_{compare,count}_set and mips_count_get with
21993 existing macros.
21994
21995 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21996
21997commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
21998Author: Remy Bohmer <linux@bohmer.net>
21999Date: Tue Jun 3 15:48:17 2008 +0200
22000
22001 Get rid of annoying/superfluous bad-checksum warning message
22002
22003 U-boot can complain a lot about 'checksum bad' when it is attached to the network.
22004 It is annoying for ordinary users who start to doubt the network connection
22005 in general when they see messages like this.
22006
22007 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
22008 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
22009 now before checking the checksum.
22010
22011 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22012 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22013
22014commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
22015Author: Remy Bohmer <linux@bohmer.net>
22016Date: Wed Jun 4 10:47:25 2008 +0200
22017
22018 Fix order for reading rx-status registers in 32bit mode of DM9000
22019
22020 A last minute cleanup before submitting the DM9000A patch series yesterday introduced
22021 a bug in reading the rx-status registers in 32bit mode only.
22022 This patch repairs this.
22023
22024 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22025 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22026
22027commit 98291e2e689096420465074cce926b226d2e71b4
22028Author: Remy Bohmer <linux@bohmer.net>
22029Date: Tue Jun 3 15:26:26 2008 +0200
22030
22031 DM9000: Some minor code cleanups
22032
22033 Some lines of the U-boot DM9000x driver are longer than 80 characters, or
22034 need some other minor cleanup.
22035
22036 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22037 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22038
22039commit 850ba7555dbd4ca8d14fc475b864d534797adab3
22040Author: Remy Bohmer <linux@bohmer.net>
22041Date: Tue Jun 3 15:26:25 2008 +0200
22042
22043 DM9000: Make driver work properly for DM9000A
22044
22045 The DM9000A network controller does not work with the U-boot DM9000x driver.
22046 Analysis showed that many incoming packets are lost.
22047
22048 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
22049 check for a valid rx packet be done on the interrupt status register, not
22050 directly by performing the dummy read and the rx status check as is currently
22051 the case in the u-boot driver.
22052
22053 When the recommended poll is done as suggested the driver starts working
22054 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
22055 can be more than 1 package in the fifo at the same time.
22056
22057 The driver must perform the rx-status check in a loop and read and handle all
22058 packages until there is no more left _after_ the interrupt RX flag is set.
22059
22060 This change has been tested with DM9000A, DM9000E, DM9000EP.
22061
22062 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22063 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22064
22065commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
22066Author: Remy Bohmer <linux@bohmer.net>
22067Date: Tue Jun 3 15:26:24 2008 +0200
22068
22069 DM9000: Improve eth_reset() routine
22070
22071 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
22072 reset procedure must be done twice to properly reset the DM9000 by means of software.
22073 This errata is not needed anymore for the DM9000A, but it does not bother it.
22074
22075 This change has been tested with DM9000A, DM9000E, DM9000EP.
22076
22077 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22078 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22079
22080commit acba31847fad9ae40708cc2c9f3a634ec35f3416
22081Author: Remy Bohmer <linux@bohmer.net>
22082Date: Tue Jun 3 15:26:23 2008 +0200
22083
22084 DM9000: improve eth_send() routine
22085
22086 The eth_send routine of the U-boot DM9000x driver does not match the
22087 DM9000 or DM9000A application notes/programming guides.
22088
22089 This change improves the stability of the DM9000A network controller.
22090
22091 This change has been tested with DM9000A, DM9000E, DM9000EP.
22092
22093 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22094 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22095
22096commit 134e266253c02a7832560da59d394989c4f64453
22097Author: Remy Bohmer <linux@bohmer.net>
22098Date: Tue Jun 3 15:26:22 2008 +0200
22099
22100 DM9000: repair debug logging
22101
22102 It seems that the debugging code of the DM9000x driver in U-boot has not been
22103 compiled for a long time, because it cannot compile...
22104
22105 Also rearranged some loglines to get more useful info while debugging.
22106
22107 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22108 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22109
22110commit a101361bfe23c120321e45d114c0603b8e0763e9
22111Author: Remy Bohmer <linux@bohmer.net>
22112Date: Tue Jun 3 15:26:21 2008 +0200
22113
22114 DM9000: Add data bus-width auto detection.
22115
22116 The U-boot DM9000x driver contains a compile time bus-width definition for
22117 the databus connected to the network controller.
22118
22119 This compile check makes the code unclear, inflexible and is unneccessary.
22120 It can be asked to the network controller what its bus-width is by reading bits
22121 6 and 7 of the interrupt status register.
22122
22123 The linux kernel already uses a runtime mechanism to determine this bus-width,
22124 so the implementation below looks somewhat like that implementation.
22125
22126 This change has been tested with DM9000A, DM9000E, DM9000EP.
22127
22128 Signed-off-by: Remy Bohmer <linux@bohmer.net>
22129 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22130
22131commit 63a0afa0c32e5f4ea98a9439542870072437404d
22132Author: Stefan Roese <sr@denx.de>
22133Date: Wed Jun 4 19:19:20 2008 +0200
22134
22135 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
22136
22137 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
22138 introduced by the commit:
22139
22140 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
22141
22142 With this patch SDRAM will get initialized again and booting from NAND
22143 is working again.
22144
22145 Signed-off-by: Stefan Roese <sr@denx.de>
22146 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
22147
22148commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
22149Author: Wolfgang Denk <wd@denx.de>
22150Date: Tue May 27 14:19:30 2008 +0200
22151
22152 Socrates: Fix PCI bus frequency report
22153
22154 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
22155
22156commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
22157Author: Tor Krill <tor@excito.com>
22158Date: Thu May 29 11:10:30 2008 +0200
22159
22160 Fix incorrect switch for IF_TYPE in part.c
22161
22162 Use correct field in block_dev_desc_t when writing interface type in
22163 dev_print. Error introduced in 574b3195.
22164
22165 Also added fix from Martin Krause
22166
22167 Signed-off-by: Tor Krill <tor@excito.com>
22168
22169commit b64b8a0bd310935b70af69ac970952f2b364ae56
22170Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
22171Date: Tue May 27 10:25:39 2008 +0200
22172
22173 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
22174
22175 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
22176
22177commit 35ef877f0a8f6232cdef748f442fed5accb2b641
22178Author: Peter Tyser <ptyser@xes-inc.com>
22179Date: Thu May 22 18:56:52 2008 -0500
22180
22181 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
22182
22183 Removed unneeded command line history initialization. Also, the original
22184 code would access the 'initted' variable before relocation to SDRAM
22185 which resulted in erratic behavior since the bss is not initialized when
22186 executing from flash.
22187
22188 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
22189
22190commit 22f371b63038a4ecab04068877c1089e51a01ba1
22191Author: Grant Erickson <gerickson@nuovations.com>
22192Date: Wed May 21 13:28:30 2008 -0700
22193
22194 PPC4xx: Simplified post_word_{load, store}
22195
22196 This patch simplifies post_word_{load,store} by using the preprocessor
22197 to eliminate redundant, copy-and-pasted code.
22198
22199 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
22200
22201commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
22202Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
22203Date: Wed May 7 21:25:33 2008 +0400
22204
22205 cfi_flash: enable M18 flash chips family support.
22206
22207 Added new command set ID. Buffered write command processing is changed
22208 in order to support M18 flash chips family.
22209
22210 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
22211 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
22212
22213commit 93c56f212ccdadc182018f0769cb284426b88f1d
22214Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
22215Date: Wed May 7 21:24:44 2008 +0400
22216
22217 cfi_flash: support of long cmd in U-boot.
22218
22219 Some NOR flash chips needs support of commands with length grether than max
22220 value size of uchar. For example all M18 family chips use 0x1ff command in
22221 buffered write mode as value of program loops count.
22222
22223 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
22224 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
22225
22226commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
22227Author: Stefan Roese <sr@denx.de>
22228Date: Fri May 16 11:06:06 2008 +0200
22229
22230 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
22231
22232 On AD7414 the first value upon bootup is not read correctly.
22233 This is most likely because of the 800ms update time of the
22234 temp register in normal update mode. To get current values
22235 each time we issue the "dtt" command including upon powerup
22236 we switch into one-short mode.
22237
22238 This patch fixes the problem on AD7414 equipped boards (Sequoia,
22239 Canyonlands etc), that temp value printed in the bootup log was
22240 incorrect.
22241
22242 Signed-off-by: Stefan Roese <sr@denx.de>
22243
22244commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
22245Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22246Date: Fri May 30 16:55:06 2008 +0200
22247
22248 ppc4xx: Cleanup CPCI405 variant's config file
22249
22250 This patch removes some dead code from CPCI405 board's
22251 config files. JFFS2 support is also removed. It's not used and
22252 CPCI4052 does not build anymore without some size reduction.
22253
22254 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
22255
22256commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
22257Author: Kenneth Johansson <kenneth@southpole.se>
22258Date: Thu May 29 16:32:33 2008 +0200
22259
22260 Remove shell variable UNDEF_SYM.
22261
22262 UNDEF_SYM is a shell variable in the main Makefile used to force the
22263 linker to add all u-boot commands to the final image. It has no use here.
22264
22265 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
22266
22267commit 8c66497e06bf803489c589df58ee591d71033274
22268Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22269Date: Fri May 16 11:10:35 2008 +0200
22270
22271 Add support for environment in SPI flash
22272
22273 This is pretty incomplete...it doesn't handle reading the environment
22274 before relocation, it doesn't support redundant environment, and it
22275 doesn't support embedded environment. But apart from that, it does
22276 seem to work.
22277
22278 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22279
22280commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
22281Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22282Date: Fri May 16 11:10:34 2008 +0200
22283
22284 SPI Flash: Add "sf" command
22285
22286 This adds a new command, "sf" which can be used to manipulate SPI
22287 flash. Currently, initialization, reading, writing and erasing is
22288 supported.
22289
22290 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22291
22292commit d25ce7d24cc0f93881559f4009175ea305af65e8
22293Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22294Date: Fri May 16 11:10:33 2008 +0200
22295
22296 SPI Flash subsystem
22297
22298 This adds a new SPI flash subsystem.
22299
22300 Currently, only AT45 DataFlash in non-power-of-two mode is supported,
22301 but some preliminary support for other flash types is in place as
22302 well.
22303
22304 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22305
22306commit 60445cb5c3eb77ed1a07f2d908eef09174483698
22307Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
22308Date: Fri May 16 11:10:32 2008 +0200
22309
22310 atmel_spi: Driver for the Atmel SPI controller
22311
22312 This adds a driver for the SPI controller found on most AT91 and AVR32
22313 chips, implementing the new SPI API.
22314
22315 Changed in v4:
22316 - Update to new API
22317 - Handle zero-length transfers appropriately. The user may send a
22318 zero-length SPI transfer with SPI_XFER_END set in order to
22319 deactivate the chip select after a series of transfers with chip
22320 select active. This is useful e.g. when polling the status
22321 register of DataFlash.
22322
22323 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22324
22325commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
22326Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
22327Date: Fri May 16 11:10:31 2008 +0200
22328
22329 SPI API improvements
22330
22331 This patch gets rid of the spi_chipsel table and adds a handful of new
22332 functions that makes the SPI layer cleaner and more flexible.
22333
22334 Instead of the spi_chipsel table, each board that wants to use SPI
22335 gets to implement three hooks:
22336 * spi_cs_activate(): Activates the chipselect for a given slave
22337 * spi_cs_deactivate(): Deactivates the chipselect for a given slave
22338 * spi_cs_is_valid(): Determines if the given bus/chipselect
22339 combination can be activated.
22340
22341 Not all drivers may need those extra functions however. If that's the
22342 case, the board code may just leave them out (assuming they know what
22343 the driver needs) or rely on the linker to strip them out (assuming
22344 --gc-sections is being used.)
22345
22346 To set up communication parameters for a given slave, the driver needs
22347 to call spi_setup_slave(). This returns a pointer to an opaque
22348 spi_slave struct which must be passed as a parameter to subsequent SPI
22349 calls. This struct can be freed by calling spi_free_slave(), but most
22350 driver probably don't want to do this.
22351
22352 Before starting one or more SPI transfers, the driver must call
22353 spi_claim_bus() to gain exclusive access to the SPI bus and initialize
22354 the hardware. When all transfers are done, the driver must call
22355 spi_release_bus() to make the bus available to others, and possibly
22356 shut down the SPI controller hardware.
22357
22358 spi_xfer() behaves mostly the same as before, but it now takes a
22359 spi_slave parameter instead of a spi_chipsel function pointer. It also
22360 got a new parameter, flags, which is used to specify chip select
22361 behaviour. This may be extended with other flags in the future.
22362
22363 This patch has been build-tested on all powerpc and arm boards
22364 involved. I have not tested NIOS since I don't have a toolchain for it
22365 installed, so I expect some breakage there even though I've tried
22366 fixing up everything I could find by visual inspection.
22367
22368 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
22369 DataFlash drivers posted as a follow-up. I'd like some help testing
22370 other boards that use the existing SPI API.
22371
22372 But most of all, I'd like some comments on the new API. Is this stuff
22373 usable for everyone? If not, why?
22374
22375 Changed in v4:
22376 - Build fixes for various boards, drivers and commands
22377 - Provide common struct spi_slave definition that can be extended by
22378 drivers
22379 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
22380 - Make default bus and mode build-time configurable
22381 - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
22382
22383 Changed in v3:
22384 - Add opaque struct spi_slave for controller-specific data associated
22385 with a slave.
22386 - Add spi_claim_bus() and spi_release_bus()
22387 - Add spi_free_slave()
22388 - spi_setup() is now called spi_setup_slave() and returns a
22389 struct spi_slave
22390 - soft_spi now supports four SPI modes (CPOL|CPHA)
22391 - Add bus parameter to spi_setup_slave()
22392 - Convert the new i.MX32 SPI driver
22393 - Convert the new MC13783 RTC driver
22394
22395 Changed in v2:
22396 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
22397 new API.
22398
22399 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
22400 Tested-by: Guennadi Liakhovetski <lg@denx.de>
22401
22402commit 289011207d999b2e4085150d2aa30d547ad9b800
22403Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22404Date: Fri May 16 11:10:30 2008 +0200
22405
22406 Move definition of container_of() to common.h
22407
22408 AVR32 and AT91SAM9 both have their own identical definitions of
22409 container_of() taken from the Linux kernel. Move it to common.h so
22410 that all architectures can use it.
22411
22412 container_of() is already used by some drivers, and will be used
22413 extensively by the new and improved SPI API.
22414
22415 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22416
22417commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
22418Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22419Date: Fri May 16 11:08:11 2008 +0200
22420
22421 soft_i2c: Pull SDA high before reading
22422
22423 Spotted by Dean Capindale.
22424
22425 Systems that support open-drain GPIO properly are allowed provide an
22426 empty I2C_TRISTATE define. However, this means that we need to be
22427 careful not to drive SDA low when the slave is expected to respond.
22428
22429 This patch adds a missing I2C_SDA(1) to read_byte() required to
22430 tristate the SDA line on systems that support open-drain GPIO.
22431
22432 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22433
22434commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
22435Author: Stefan Roese <sr@denx.de>
22436Date: Mon May 19 11:34:53 2008 +0200
22437
22438 ppc4xx: Remove implementations of testdram()
22439
22440 This patch removes the used testdram() implementations of the board
22441 that are maintained by myself.
22442
22443 Signed-off-by: Stefan Roese <sr@denx.de>
22444
22445commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
22446Author: Stefan Roese <sr@denx.de>
22447Date: Mon Jun 2 17:37:28 2008 +0200
22448
22449 ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
22450
22451 Historically the 405 U-Boot port had a dram_init() call in early init
22452 stage. This function was still called from start.S and most of the time
22453 coded in assembler. This is not needed anymore (since a long time) and
22454 boards should implement the common initdram() function in C instead.
22455
22456 This patch now removed the dram_init() call from start.S and removes the
22457 empty implementations that are scattered through most of the 405 board
22458 ports. Some older board ports really implement this dram_init() though.
22459 These are:
22460
22461 csb272
22462 csb472
22463 ERIC
22464 EXBITGEN
22465 W7OLMC
22466 W7OLMG
22467
22468 I changed those boards to call this assembler dram_init() function now
22469 from their board specific initdram() instead. This *should* work, but please
22470 test again on those platforms. And it is perhaps a good idea that those
22471 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
22472 some time. So further patches welcome here.
22473
22474 Signed-off-by: Stefan Roese <sr@denx.de>
22475
22476commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
22477Author: Stefan Roese <sr@denx.de>
22478Date: Mon Jun 2 17:22:11 2008 +0200
22479
22480 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
22481
22482 Signed-off-by: Stefan Roese <sr@denx.de>
22483
22484commit 39b32be18cd33b53a84065edcd4e465165cc5564
22485Author: Stefan Roese <sr@denx.de>
22486Date: Mon Jun 2 17:20:03 2008 +0200
22487
22488 ppc4xx: Fix common ECC generation code for 440GP style platforms
22489
22490 This patch makes the common 4xx ECC code really usable on 440GP style
22491 platforms.
22492
22493 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
22494 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
22495 we need to make some processor dependant defines used later on by the
22496 driver.
22497
22498 Signed-off-by: Stefan Roese <sr@denx.de>
22499
22500commit ec724f883ee3f3925e6c55027e8ffa70ada83303
22501Author: Stefan Roese <sr@denx.de>
22502Date: Mon Jun 2 17:13:55 2008 +0200
22503
22504 ppc4xx: Change Kilauea to use the common DDR2 init function
22505
22506 This patch changes the kilauea and kilauea_nand (for NAND booting)
22507 board port to not use a board specific DDR2 init routine anymore. Now
22508 the common code from cpu/ppc4xx is used.
22509
22510 Thanks to Grant Erickson for all his basic work on this 405EX early
22511 bootup.
22512
22513 Signed-off-by: Stefan Roese <sr@denx.de>
22514
22515commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
22516Author: Stefan Roese <sr@denx.de>
22517Date: Mon Jun 2 14:59:21 2008 +0200
22518
22519 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
22520
22521 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
22522 ppc4xx related SDRAM/DDR/DDR2 controller defines.
22523
22524 Signed-off-by: Stefan Roese <sr@denx.de>
22525
22526commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
22527Author: Stefan Roese <sr@denx.de>
22528Date: Mon Jun 2 14:57:41 2008 +0200
22529
22530 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
22531
22532 This patch removes all SDRAM related defines from the PPC4xx headers
22533 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
22534 the same SDRAM controller as 440 systems do (like 405EX and 440SP).
22535
22536 It also introduces new defines for the equipped SDRAM controller based on
22537 which PPC variant is used. There new defines are:
22538
22539 used on 405GR/CR/EP and some Xilinx Virtex boards.
22540
22541 used on 440GP/GX/EP/GR.
22542
22543 used on 440EPx/GRx.
22544
22545 used on 405EX/r/440SP/SPe/460EX/GT.
22546
22547 Signed-off-by: Stefan Roese <sr@denx.de>
22548
22549commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
22550Author: Stefan Roese <sr@denx.de>
22551Date: Mon Jun 2 14:35:44 2008 +0200
22552
22553 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
22554
22555 This patch consolidates the 405 and 440 parts of the NAND booting code
22556 selected via CONFIG_NAND_SPL. Now common code is used to initialize the
22557 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
22558 Only *after* running from this location, nand_boot() is called.
22559
22560 Please note that the initsdram() call is now moved from nand_boot.c
22561 to start.S. I experienced problems with some boards like Kilauea
22562 (405EX), which don't have internal SRAM (OCM) and relocation needs to
22563 be done to SDRAM before the NAND controller can get accessed. When
22564 initdram() is called later on in nand_boot(), this can lead to problems
22565 with variables in the bss sections like nand_ecc_pos[].
22566
22567 Signed-off-by: Stefan Roese <sr@denx.de>
22568 Acked-by: Scott Wood <scottwood@freescale.com>
22569
22570commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
22571Author: Grant Erickson <gerickson@nuovations.com>
22572Date: Thu May 22 14:44:24 2008 -0700
22573
22574 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
22575
22576 This patch (Part 2 of 2):
22577
22578 * Rolls up a suite of changes to enable correct primordial stack and
22579 global data handling when the data cache is used for such a purpose
22580 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
22581
22582 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
22583 eliminating redundant ECC initialization implementations and moving
22584 redundant SDRAM initialization out of board code into shared 4xx
22585 code.
22586
22587 * Enables MCSR visibility on the 405EX(r).
22588
22589 * Enables the use of the data cache for initial RAM on
22590 both AMCC's Kilauea and Makalu and removes a redundant
22591 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
22592
22593 - Removed, per Stefan Roese's request, defunct memory.c file for
22594 Makalu and rolled sdram_init from it into makalu.c.
22595
22596 With respect to the 4xx DDR initialization and ECC unification, there
22597 is certainly more work that can and should be done (file renaming,
22598 etc.). However, that can be handled at a later date on a second or
22599 third pass. As it stands, this patch moves things forward in an
22600 incremental yet positive way for those platforms that utilize this
22601 code and the features associated with it.
22602
22603 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
22604 Signed-off-by: Stefan Roese <sr@denx.de>
22605
22606commit c821b5f120bedf73867513466412587c6912a8f8
22607Author: Grant Erickson <gerickson@nuovations.com>
22608Date: Thu May 22 14:44:14 2008 -0700
22609
22610 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
22611
22612 This patch (Part 1 of 2):
22613
22614 * Rolls up a suite of changes to enable correct primordial stack and
22615 global data handling when the data cache is used for such a purpose
22616 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
22617
22618 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
22619 eliminating redundant ECC initialization implementations and moving
22620 redundant SDRAM initialization out of board code into shared 4xx
22621 code.
22622
22623 * Enables MCSR visibility on the 405EX(r).
22624
22625 * Enables the use of the data cache for initial RAM on
22626 both AMCC's Kilauea and Makalu and removes a redundant
22627 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
22628
22629 - Removed, per Stefan Roese's request, defunct memory.c file for
22630 Makalu and rolled sdram_init from it into makalu.c.
22631
22632 With respect to the 4xx DDR initialization and ECC unification, there
22633 is certainly more work that can and should be done (file renaming,
22634 etc.). However, that can be handled at a later date on a second or
22635 third pass. As it stands, this patch moves things forward in an
22636 incremental yet positive way for those platforms that utilize this
22637 code and the features associated with it.
22638
22639 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
22640 Signed-off-by: Stefan Roese <sr@denx.de>
22641
22642commit a439680019e06171d4a5694b7992accce87f590e
22643Author: Grant Erickson <gerickson@nuovations.com>
22644Date: Wed May 21 13:28:30 2008 -0700
22645
22646 PPC4xx: Simplified post_word_{load, store}
22647
22648 This patch simplifies post_word_{load,store} by using the preprocessor
22649 to eliminate redundant, copy-and-pasted code.
22650
22651 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
22652
22653commit f979690ee337450b2030aba128f95b7a8d9881c0
22654Author: Kumar Gala <galak@kernel.crashing.org>
22655Date: Thu May 15 15:13:08 2008 -0500
22656
22657 Fix warnings from gcc-4.3.0 build on a ppc host
22658
22659 * The cfi_flash.c memset fix actual allows the board to boot so there is
22660 a bit more going on here than just resolving warnings associated with
22661 uninitialized variables.
22662
22663 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
22664 inline function 'ext2_find_next_zero_bit' which is not static
22665
22666 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22667
22668commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
22669Author: Becky Bruce <becky.bruce@freescale.com>
22670Date: Wed May 14 13:09:51 2008 -0500
22671
22672 MPC512x: Change traps.c to not reference non-addressable memory
22673
22674 Currently, END_OF_RAM is used by the trap code to determine if
22675 we should attempt to access the stack pointer or not. However,
22676 on systems with a lot of RAM, only a subset of the RAM is
22677 guaranteed to be mapped in and accessible. Change END_OF_RAM
22678 to use get_effective_memsize() instead of using the raw ram
22679 size out of the bd.
22680
22681 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22682
22683commit 81673e9ae14b771cd13faf19947192599cae3959
22684Author: Kumar Gala <galak@kernel.crashing.org>
22685Date: Tue May 13 19:01:54 2008 -0500
22686
22687 Make sure common.h is the first include.
22688
22689 If common.h isn't first we can get CONFIG_ options defined in the
22690 board config file ignored. This can cause an issue if any of those
22691 config options impact the size of types of data structures
22692 (eg CONFIG_PHYS_64BIT).
22693
22694 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22695
22696commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
22697Author: Marian Balakowicz <m8@semihalf.com>
22698Date: Tue May 13 15:53:29 2008 +0200
22699
22700 Avoid initrd and logbuffer area overlaps
22701
22702 Add logbuffer to reserved LMB areas to prevent initrd allocation
22703 from overlaping with it.
22704
22705 Make sure to use correct logbuffer base address.
22706
22707 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22708
22709commit 6956d53d9934862507f83f0e3255dfd4662e7482
22710Author: Sascha Laue <sascha.laue@liebherr.com>
22711Date: Tue May 13 13:29:54 2008 +0200
22712
22713 lwmon5: add memory-pattern-test to FPGA POST.
22714
22715commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
22716Author: Becky Bruce <becky.bruce@freescale.com>
22717Date: Thu May 8 19:02:51 2008 -0500
22718
22719 PPC: 86xx Add bat registers to reginfo command
22720
22721 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22722
22723commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
22724Author: Becky Bruce <becky.bruce@freescale.com>
22725Date: Fri May 9 15:41:35 2008 -0500
22726
22727 PPC: Add print_bats() to lib_ppc/bat_rw.c
22728
22729 This function prints the values of all the BAT register
22730 pairs - I needed this for debug earlier this week; adding it to
22731 lib_ppc so others can use it (and add it to reginfo commands
22732 if so desired).
22733
22734 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22735
22736commit c148f24c15743a02e855636e6bed013bd121f7f2
22737Author: Becky Bruce <becky.bruce@freescale.com>
22738Date: Thu May 15 21:29:04 2008 -0500
22739
22740 PPC: Change lib_ppc/bat_rw.c to use high bats
22741
22742 Currently, this code only deals with BATs 0-3, which makes
22743 it useless on systems that support BATs 4-7. Add the
22744 support for these registers.
22745
22746 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
22747
22748commit 31d826722434931e1152a09d140187dcf72f8aac
22749Author: Becky Bruce <becky.bruce@freescale.com>
22750Date: Thu May 8 19:02:12 2008 -0500
22751
22752 PPC: Create and use CONFIG_HIGH_BATS
22753
22754 Change all code that conditionally operates on high bat
22755 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
22756 instead of the myriad ways this is done now. Define the option
22757 for every config for which high bats are supported (and
22758 enabled by early boot, on parts where they're not always
22759 enabled)
22760
22761 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
22762
22763commit aa3b8bf9c30065bb2ea852799d32db5020598495
22764Author: Wolfgang Grandegger <wg@grandegger.com>
22765Date: Wed May 28 19:55:19 2008 +0200
22766
22767 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
22768
22769 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
22770 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22771
22772commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
22773Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22774Date: Wed May 28 13:06:25 2008 -0500
22775
22776 ColdFire: Add 10 base ethernet support for mcf5445x
22777
22778 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
22779 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
22780
22781commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
22782Author: Jason McMullan <mcmullan@netapp.com>
22783Date: Fri May 30 00:53:38 2008 +0900
22784
22785 mips: Add an 'include/asm/errno.h', like all other architectures
22786
22787 All other u-boot architectures have an include/asm/errno.h, so
22788 this change adds it to the mips include/asm-mips headers also.
22789
22790 Stolen from Linux 2.6.25.
22791
22792 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
22793
22794commit e2ad8426624bac457acc6925b6ff408e9bf20466
22795Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22796Date: Fri May 30 00:53:38 2008 +0900
22797
22798 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
22799
22800 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22801
22802commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
22803Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22804Date: Fri May 30 00:53:38 2008 +0900
22805
22806 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
22807
22808 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22809
22810commit bf462ae450a7f2eeeddc699ed345b391e3263540
22811Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22812Date: Fri May 30 00:53:37 2008 +0900
22813
22814 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
22815
22816 No functional changes.
22817
22818 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22819
22820commit 89a1550ec6b74452274a7a23127936e2c7eec711
22821Author: Jason McMullan <mcmullan@netapp.com>
22822Date: Fri May 30 00:53:37 2008 +0900
22823
22824 mips: If CONFIG_CMD_SPI is defined, call spi_init()
22825
22826 The mips architecture currently does not call 'spi_init()' in the generic
22827 board initialization routine is CONFIG_CMD_SPI is defined.
22828
22829 This patch rectifies that problem.
22830
22831 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
22832 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22833
22834commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
22835Author: Jason McMullan <mcmullan@netapp.com>
22836Date: Fri May 30 00:53:37 2008 +0900
22837
22838 [MIPS] lib_mips/board.c: Add nand_init
22839
22840 This patch adds the standard 'nand_init()' call to the mips generic
22841 'board_init_r()' call, bringing MIPS in line with the other architectures.
22842
22843 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
22844 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22845
22846commit d6ac2ed893c2168738aee01579d6283af8d37045
22847Author: Scott Wood <scottwood@freescale.com>
22848Date: Thu May 22 10:49:46 2008 -0500
22849
22850 Remove prototypes of nand_init() in favor of including nand.h.
22851
22852 Likewise with onenand_init().
22853
22854 Signed-off-by: Scott Wood <scottwood@freescale.com>
22855
22856commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
22857Author: Scott Wood <scottwood@freescale.com>
22858Date: Thu May 22 10:49:00 2008 -0500
22859
22860 Make onenand_uboot.h self-sufficient.
22861
22862 Don't assume types are provided by previously included headers.
22863
22864 Signed-off-by: Scott Wood <scottwood@freescale.com>
22865
22866commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
22867Author: Dirk Behme <dirk.behme@gmail.com>
22868Date: Wed Jan 16 14:26:59 2008 +0100
22869
22870 nand: Correct NAND erase percentage output
22871
22872 For NAND erase sizes smaller than one NAND erase block, erase
22873 percentage output becomes grater than 100% e.g.
22874
22875 -- cut --
22876 > nand info
22877 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
22878 > nand erase 0x100000 0x2000
22879 NAND erase: device 0 offset 0x100000, size 0x2000
22880 Erasing at 0x100000 -- 200% complete.
22881 OK
22882 >
22883 -- cut --
22884
22885 Correct this and give user a warning that more is erased than specified:
22886
22887 -- cut --
22888 > nand erase 0x100000 0x2000
22889 NAND erase: device 0 offset 0x100000, size 0x2000
22890 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
22891 Erasing 0x00004000 instead
22892 Erasing at 0x100000 -- 100% complete.
22893 OK
22894 >
22895 -- cut --
22896
22897 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
22898
22899commit 5922db6c0948506be91e0de44e7a6863a18a417f
22900Author: Stelian Pop <stelian@popies.net>
22901Date: Tue May 13 17:31:24 2008 +0200
22902
22903 Cleanup nand_info[] declaration.
22904
22905 The nand_info array is declared as extern in several .c files.
22906 Those days, nand.h contains a reference to the array, so there is
22907 no need to declare it elsewhere.
22908
22909 Signed-off-by: Stelian Pop <stelian@popies.net>
22910 Signed-off-by: Scott Wood <scottwood@freescale.com>
22911
22912commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
22913Author: Scott Wood <scottwood@freescale.com>
22914Date: Mon May 19 09:30:43 2008 -0500
22915
22916 NAND: Provide a sane default for NAND_MAX_CHIPS.
22917
22918 This allows the header to be included regardless of whether a board's
22919 config file provides NAND-related defininitions.
22920
22921 Signed-off-by: Scott Wood <scottwood@freescale.com>
22922
22923commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
22924Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22925Date: Mon May 26 12:19:10 2008 +0200
22926
22927 avr32: Fix theoretical race in udelay()
22928
22929 If the specified delay is very short, the cycle counter may go past the
22930 "end" time we are waiting for before we get around to reading it.
22931
22932 Fix it by checking the different between the cycle count "now" and the
22933 cycle count at the beginning. This will work as long as the delay
22934 measured in number of cycles is below 2^31.
22935
22936 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22937
22938commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
22939Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22940Date: Wed May 21 13:01:09 2008 +0200
22941
22942 avr32: Compile atmel_mci.o conditionally
22943
22944 Remove #ifdef CONFIG_MMC from the source file and use conditional
22945 compilation in the Makefile instead.
22946
22947 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22948
22949commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
22950Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22951Date: Thu May 22 12:28:25 2008 +0200
22952
22953 avr32: Fix wrong error flags in atmel_mci driver
22954
22955 Make sure we check for CRC errors when sending commands that use CRC
22956 checking.
22957
22958 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
22959 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22960
22961commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
22962Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22963Date: Wed May 21 11:10:59 2008 +0200
22964
22965 avr32: Fix two warnings in atmel_mci.c
22966
22967 The warnings are harmless but annoying. Let's fix them.
22968
22969 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22970
22971commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
22972Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22973Date: Mon May 19 11:36:28 2008 +0200
22974
22975 avr32: Rework SDRAM initialization code
22976
22977 This cleans up the SDRAM initialization and related code a bit, and
22978 allows faster booting.
22979
22980 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
22981 * Remove memory test from sdram_init() and make caller responsible
22982 for verifying the SDRAM and determining its size.
22983 * Remove base_address member from struct sdram_config (was sdram_info)
22984 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
22985 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
22986
22987 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22988
22989commit 95107b7c028806919630bf02c653aa8f4f867c94
22990Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22991Date: Mon May 19 11:27:37 2008 +0200
22992
22993 avr32: Do stricter stack checking in the exception handler
22994
22995 Don't do a stack dump if the stack pointer is outside the memory area
22996 reserved for stack.
22997
22998 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
22999
23000commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
23001Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23002Date: Fri May 2 15:32:57 2008 +0200
23003
23004 avr32: Use the same entry point for reset and exception handling
23005
23006 Since the reset vector is always aligned to a very large boundary, we
23007 can save a couple of KB worth of alignment padding by placing the
23008 exception vectors at the same address.
23009
23010 Deciding which one it is is easy: If we're handling an exception, the
23011 CPU is in Exception mode. If we're starting up after reset, the CPU is
23012 in Supervisor mode. So this adds a very minimal overhead to the reset
23013 path (only executed once) and the exception handling path (normally
23014 never executed at all.)
23015
23016 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23017
23018commit 0c16eed2189a190bd5655b33c029f809a9b31128
23019Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23020Date: Fri May 2 15:24:22 2008 +0200
23021
23022 avr32: Put memset in its own section
23023
23024 All C code is compiled with -ffunction-sections -fdata-sections.
23025 Assembly functions should get their own sections as well so that
23026 everything looks consistent.
23027
23028 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23029
23030commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
23031Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23032Date: Fri May 2 15:21:40 2008 +0200
23033
23034 avr32: Rename pm_init() as clk_init() and make SoC-specific
23035
23036 pm_init() was always more about clock initialization than anything
23037 else. Dealing with PLLs, clock gating and such is also inherently
23038 SoC-specific, so move it into a SoC-specific directory.
23039
23040 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23041
23042commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
23043Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23044Date: Wed Apr 30 16:15:57 2008 +0200
23045
23046 avr32: Use new-style Makefile for the at32ap platform
23047
23048 This makes it easier to avoid compiling certain files later.
23049
23050 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23051
23052commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
23053Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23054Date: Wed Apr 30 14:36:47 2008 +0200
23055
23056 avr32: Remove unused file cpu/at32ap/pm.c
23057
23058 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23059
23060commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
23061Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23062Date: Wed Apr 30 14:19:28 2008 +0200
23063
23064 avr32: Clean up the HMATRIX code
23065
23066 Rework the HMATRIX configuration interface so that it becomes easier
23067 to configure the HMATRIX for boards with special needs, and add new
23068 parts.
23069
23070 The HMATRIX header file has been split into a general,
23071 chip-independent part with register definitions, etc. and a
23072 chip-specific part with SFR bitfield definitions and master/slave
23073 identifiers.
23074
23075 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23076
23077commit 0a2e48792dd372c90b80059f3235e67a567e16fc
23078Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23079Date: Thu Nov 22 12:14:11 2007 +0100
23080
23081 avr32: Add support for the ATSTK1006 board
23082
23083 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
23084 board. It's currently in production and will be available soon.
23085
23086 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23087
23088commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
23089Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23090Date: Tue Apr 29 12:53:05 2008 +0200
23091
23092 avr32: Get rid of the .flashprog section
23093
23094 The .flashprog section was only needed back when we were running
23095 directly from flash, and it's even more useless on NGW100 since it
23096 uses the CFI flash driver which never used this workaround in the
23097 first place.
23098
23099 Remove it on STK1000 as well, and get rid of all the associated code and
23100 annotations.
23101
23102 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23103
23104commit cdd42c0c7a5205fc380912d83229069a71ea3abf
23105Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23106Date: Wed Apr 30 13:09:56 2008 +0200
23107
23108 avr32: Use correct condition around macb clock accessors
23109
23110 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
23111 the chip has a MACB controller, not when it has a USART.
23112
23113 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23114
23115commit f793a3581901ff39c2abb94012d9bbc8573ccf02
23116Author: David Brownell <david-b@pacbell.net>
23117Date: Wed Apr 16 22:57:58 2008 -0700
23118
23119 avr32: Disable the AP7000 internal watchdog on startup
23120
23121 This patch forces the watchdog off in all cases. That will at least
23122 get rid of the constant reboot cycle, though it won't let the watchdog
23123 actually run in the new kernels: its probe() comes up with a polite
23124 warning.
23125
23126 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23127
23128commit 55ac7a7490b55da56659f95d82a0c83b9756df27
23129Author: David Brownell <david-b@pacbell.net>
23130Date: Fri Feb 22 12:54:39 2008 -0800
23131
23132 avr32: stk1002 and ngw100 convergence
23133
23134 Make STK1002 and NGW100 boards act more alike:
23135 - STK boards can use as many arguments as NGW
23136 - STK boards don't need to manage FPGAs either
23137 - NGW commands should match STK ones
23138
23139 Also spell U-Boot right in prompts for STK1002 and NGW100.
23140
23141 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
23142 [haavard.skinnemoen@atmel.com: update STK100[34] as well]
23143 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
23144
23145commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
23146Author: Sergei Poselenov <sposelenov@emcraft.com>
23147Date: Tue May 27 13:47:00 2008 +0200
23148
23149 Socrates: Fix PCI bus frequency report
23150
23151 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23152
23153commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
23154Author: Sergei Poselenov <sposelenov@emcraft.com>
23155Date: Tue May 27 11:49:13 2008 +0200
23156
23157 Socrates: Added USB support.
23158
23159 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23160
23161commit 5a904e5637cff1d708dc67098004f83ba9e84c54
23162Author: Sergei Poselenov <sposelenov@emcraft.com>
23163Date: Tue May 27 11:35:02 2008 +0200
23164
23165 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
23166
23167 In case of several PCI USB controllers on a board this variable
23168 specifys which controller to use.
23169 See doc/README.generic_usb_ohci for details.
23170
23171 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23172
23173commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
23174Author: Sergei Poselenov <sposelenov@emcraft.com>
23175Date: Tue May 27 10:36:07 2008 +0200
23176
23177 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
23178
23179 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23180
23181commit 83e9d7a2614d4006b92690afa3390c291734267e
23182Author: Sergei Poselenov <sposelenov@emcraft.com>
23183Date: Mon May 26 18:16:04 2008 +0200
23184
23185 Socrates: Config file cleanup.
23186
23187 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23188
23189commit 602cac1389b755b223272f2328a47e6f8c240848
23190Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23191Date: Sat May 24 12:47:46 2008 +0200
23192
23193 MAKEALL: add at91 list
23194
23195 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23196
23197commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
23198Author: Ron Madrid <ron_madrid@sbcglobal.net>
23199Date: Fri May 23 15:37:05 2008 -0700
23200
23201 Add Marvell 88E1118 support for TSEC
23202
23203 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
23204 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23205
23206commit 557b377d8bfc8b833b6e749457bcdfa298331a24
23207Author: Jens Gehrlein <sew_s@tqs.de>
23208Date: Mon May 5 14:06:11 2008 +0200
23209
23210 smc911x: add 16 bit support
23211
23212 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
23213 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
23214
cd82919e
WD
23215commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
23216Author: Christian Eggers <ceggers@gmx.de>
23217Date: Wed May 21 21:29:10 2008 +0200
23218
23219 Fix endianess conversion in usb_ohci.c
23220
23221 Sorry, I forgot this line:
23222
23223 Signed-off-by: Christian Eggers <ceggers@gmx.de>
23224
23225 I think this must be swapped (result may be equal).
23226
01db232d
WD
23227commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
23228Author: Christian Eggers <ceggers@gmx.de>
23229Date: Wed May 21 22:12:00 2008 +0200
23230
23231 USB: replace old swap_ with proper endianess conversion macros
23232
23233 Signed-off-by: Christian Eggers <ceggers@gmx.de>
23234 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
23235
23236commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
23237Author: Christian Eggers <ceggers@gmx.de>
23238Date: Wed May 21 21:29:10 2008 +0200
23239
23240 Fix endianess conversion in usb_ohci.c
23241
23242 Signed-off-by: Christian Eggers <ceggers@gmx.de>
23243 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
23244
23245commit 477434c63c2ea5baa5c6c4e43500786f436511ff
23246Author: Sergei Poselenov <sposelenov@emcraft.com>
23247Date: Thu May 22 01:15:53 2008 +0200
23248
23249 USB: add support for multiple PCI OHCI controllers
23250
23251 Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
23252 In case of several PCI USB controllers on a board this variable
23253 specifys which controller to use.
23254
23255 Also add USB support for sokrates board.
23256
23257 See doc/README.generic_usb_ohci for details.
23258
23259 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23260 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
23261
23262commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
23263Author: Wolfgang Denk <wd@denx.de>
23264Date: Wed May 21 16:56:08 2008 +0200
23265
23266 Fix some whitespace issues
23267
23268 introduced by 53677ef18 "Big white-space cleanup."
23269
23270 Signed-off-by: Wolfgang Denk <wd@denx.de>
23271
23272commit 4416603aeb06861b468b06a981e52c3ff805db7b
23273Author: York Sun <yorksun@freescale.com>
23274Date: Mon May 12 14:36:39 2008 -0500
23275
23276 Make ads5121 out-of-tree compiling safe
23277
23278 Reuse the existing DIU driver in board/freescale/common.
23279
23280 Signed-off-by: York Sun <yorksun@freescale.com>
23281
23282commit 0e1bad47cd345c76c91a64caf41011e431b62599
23283Author: York Sun <yorksun@freescale.com>
23284Date: Mon May 5 10:20:01 2008 -0500
23285
23286 Adding DIU support for Freescale 5121ADS
23287
23288 Add DIU and cfb console support to FSL 5121ADS board.
23289
23290 Use #define CONFIG_VIDEO in config file to enable fb console.
23291
23292 Signed-off-by: York Sun <yorksun@freescale.com>
23293
23294commit a48ff68d235e671176f6b496c44246dbe5e0a93f
23295Author: York Sun <yorksun@freescale.com>
23296Date: Mon May 5 10:20:00 2008 -0500
23297
23298 Replace DPRINTF with debug
23299
23300 Remove DPRINTF macro and replace it with generic debug macro.
23301
23302 Signed-off-by: York Sun <yorksun@freescale.com>
23303
23304commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
23305Author: York Sun <yorksun@freescale.com>
23306Date: Mon May 5 10:19:59 2008 -0500
23307
23308 Move pixel clock setting to board file
23309
23310 The clock divider has different format in 5121 and 8610. This patch moves it to
23311 board specific code.
23312
23313 Signed-off-by: York Sun <yorksun@freescale.com>
23314
23315commit 53677ef18e25c97ac613349087c5cb33ae5a2741
23316Author: Wolfgang Denk <wd@denx.de>
23317Date: Tue May 20 16:00:29 2008 +0200
23318
23319 Big white-space cleanup.
23320
23321 This commit gets rid of a huge amount of silly white-space issues.
23322 Especially, all sequences of SPACEs followed by TAB characters get
23323 removed (unless they appear in print statements).
23324
23325 Also remove all embedded "vim:" and "vi:" statements which hide
23326 indentation problems.
23327
23328 Signed-off-by: Wolfgang Denk <wd@denx.de>
23329
23330commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
23331Author: Sergei Poselenov <sposelenov@emcraft.com>
23332Date: Thu May 8 17:46:23 2008 +0200
23333
23334 socrates: fix second TSEC configuration (it is actually TSEC3)
23335
23336 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23337
23338commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
23339Author: Sergei Poselenov <sposelenov@emcraft.com>
23340Date: Thu May 8 14:17:08 2008 +0200
23341
23342 Fixed reset for socrates
23343
23344 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23345
23346commit e18575d5f589a62e19c70d471d4b4e27cad3af56
23347Author: Sergei Poselenov <sposelenov@emcraft.com>
23348Date: Wed May 7 15:10:49 2008 +0200
23349
23350 socrates: changes to support FDT
23351
23352 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23353 Signed-off-by: Wolfgang Denk <wd@denx.de>
23354
23355commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
23356Author: Sergei Poselenov <sposelenov@emcraft.com>
23357Date: Wed Apr 30 11:42:50 2008 +0200
23358
23359 Initial support for "Socrates" board
23360
23361 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
23362
23363commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
23364Author: Yuri Tikhonov <yur@emcraft.com>
23365Date: Thu May 8 15:46:42 2008 +0200
23366
23367 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
23368
23369 This way we become able to utilize the full post_log_word for POST
23370 activities (overwise, POST ECC, which has 0x8000 ID, could be
23371 erroneously treated as started in post_output_backlog() even if there
23372 was actually no POST ECC run (because of OCM POST failure, for
23373 example).
23374
23375 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23376
23377commit 7845d49094c81321021b50a4dbb8864d2f3777e4
23378Author: Yuri Tikhonov <yur@emcraft.com>
23379Date: Thu May 8 15:46:02 2008 +0200
23380
23381 POST: mark OCM test as POST_STOP
23382
23383 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
23384
23385commit 28a385065882d6cb6ac5f443311ff87887ed7c13
23386Author: Yuri Tikhonov <yur@emcraft.com>
23387Date: Thu May 8 15:45:26 2008 +0200
23388
23389 POST: add POST_STOP flag
23390
23391 Don't run futher tests in case of a test fails that is marked as
23392 POST_STOP.
23393
23394 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
23395 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23396
23397commit a525145d8110d15b4389d23c3ea8a78f22509d3f
23398Author: Yuri Tikhonov <yur@emcraft.com>
23399Date: Thu May 8 15:44:16 2008 +0200
23400
23401 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
23402
23403 Switch the OCM testid with the codec one. The reason is that current
23404 implementation requires the POST_ROM testid to fit into lower 16
23405 bits, and the codec test will never run with POST_ROM hopefully.
23406
23407 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
23408
23409commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
23410Author: Yuri Tikhonov <yur@emcraft.com>
23411Date: Thu May 8 15:43:28 2008 +0200
23412
23413 lwmon5: enable OCM post test on lwmon5 board
23414
23415 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
23416
23417commit 6e8ec682268493b8d098f99e17b1ce71b4448977
23418Author: Yuri Tikhonov <yur@emcraft.com>
23419Date: Thu May 8 15:42:47 2008 +0200
23420
23421 POST: OCM test added.
23422
23423 Added OCM test to POST layer. This version runs before all other tests
23424 but doesn't yet interrupt post sequence on failure.
23425
23426 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
23427 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23428
23429commit 6891260bdd935a382c95d9fa333922b0dfded68a
23430Author: Yuri Tikhonov <yur@emcraft.com>
23431Date: Thu May 8 15:40:39 2008 +0200
23432
23433 POST: typo fix
23434
23435 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
23436
23437commit 727f63334676e760877d43bfb8f0e9331ac8b101
23438Author: Hebbar <gururajakr@sanyo.co.in>
23439Date: Tue May 20 02:16:36 2008 -0700
23440
23441 common/usb.c: fix incorrect escape sequence
23442
23443 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
23444
23445commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
23446Author: York Sun <yorksun@freescale.com>
23447Date: Thu May 15 15:26:27 2008 -0500
23448
23449 Fix 8313ERDB board configuration
23450
23451 Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
23452 Correct TSEC1 vs TSEC2 assignment.
23453 Define ETHADDR and ETH1ADDR always.
23454
23455 Signed-off-by: York Sun <yorksun@freescale.com>
23456 Signed-off-by: Timur Tabi <timur@freescale.com>
23457
23458commit 2c289e320dcfb3760e99cf1d765cb067194a1202
23459Author: Jon Loeliger <jdl@freescale.com>
23460Date: Mon May 19 09:47:25 2008 -0500
23461
23462 mpc86xx: Removed unused and unconfigured memory test code.
23463
23464 Besides, other common code exists.
23465
23466 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23467
23468commit 180a90abdae72587c0f679edf8991455e559440d
23469Author: Wolfgang Denk <wd@denx.de>
23470Date: Mon May 19 12:47:11 2008 +0200
23471
23472 Release v1.3.3
23473
23474 Update CHANGELOG for release.
23475
23476 Signed-off-by: Wolfgang Denk <wd@denx.de>
23477
180a90ab
WD
23478commit 16bedc661de0dae767b1377d8413373a3fbcfa79
23479Author: Stefan Roese <sr@denx.de>
23480Date: Mon May 19 07:14:38 2008 +0200
23481
23482 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
23483
23484 When SATA is selected (via jumper J6) we need to disable the first PCIe
23485 node in the device tree, so that Linux doesn't initialize it. Otherwise
23486 the Linux SATA driver will fail to detect the devices.
23487
23488 The same goes the other way around too. So if PCIe is selected we need
23489 to disable the SATA node in the device tree.
23490
23491 This is because PCIe port 0 and SATA on 460EX share the same pins
23492 (multiplexed) and we have to configure in U-Boot which peripheral is
23493 enabled.
23494
23495 Signed-off-by: Stefan Roese <sr@denx.de>
23496
23497commit 3cc27b426aeefe2930f911692e9df3143fb2565f
23498Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23499Date: Sun May 18 19:09:58 2008 +0200
23500
23501 i386: Fix multiple definitions of __show_boot_progress
23502
23503 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23504
23505commit 311f3446930c1e64c12026c1cfd00500b05be52d
23506Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23507Date: Sun May 18 19:09:57 2008 +0200
23508
23509 sc530_spunk: add missing SOBJS entry
23510
23511 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23512
23513commit a559317143b4f95927b08cd388707e6f077e95fa
23514Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23515Date: Sun May 18 19:09:56 2008 +0200
23516
23517 sc520_spunk: Fix flash
23518
23519 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
23520 flash.c:398: error: label at end of compound statement
23521
23522 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23523
23524commit 91f221317af64191ee8caf303ea9305943158691
23525Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23526Date: Sun May 18 19:09:49 2008 +0200
23527
23528 drivers/pcmcia: add missing i82365
23529
23530 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23531
23532commit dd223944132f97ffa52977ea95e5a52428f5cc2f
23533Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23534Date: Sun May 18 19:09:47 2008 +0200
23535
23536 i386/bootm: remove unused var
23537
23538 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23539
23540commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
23541Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23542Date: Sun May 18 19:09:45 2008 +0200
23543
23544 example/gitignore: update with all generated examples
23545
23546 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23547
23548commit a38dc3ea8614f8b0c41e432b445a9959b9711295
23549Author: Wolfgang Denk <wd@denx.de>
23550Date: Thu May 15 00:42:45 2008 +0200
23551
23552 TQM8272: fix out-of-tree building
23553
23554 ...and add to MAKEALL script
23555
23556 Signed-off-by: Wolfgang Denk <wd@denx.de>
23557
23558commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
23559Author: Wolfgang Denk <wd@denx.de>
23560Date: Wed May 14 23:34:53 2008 +0200
23561
23562 environment: fix bug introduced by commit a8409f4f1ac8
23563
23564 env_get_char is not a function, but a pointer to one.
23565
23566 Signed-off-by: Wolfgang Denk <wd@denx.de>
23567
01db232d
WD
23568commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
23569Author: Gary Jennejohn <garyj@denx.de>
23570Date: Wed May 14 13:39:22 2008 +0200
23571
23572 ppc4xx: QUAD100HD: Allow the environment to be put into flash.
23573
23574 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also
23575 use a redundant environment.
23576
23577 Signed-off-by: Gary Jennejohn <garyj@denx.de>
23578
180a90ab
WD
23579commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
23580Author: Wolfgang Denk <wd@denx.de>
23581Date: Wed May 14 13:55:30 2008 +0200
23582
23583 Fix config files for out-of-tree building
23584
23585 Several board/<...>/config.mk files include dynamically built (by
23586 the Makefile) config files but used the wrong file name of
23587 $(TOPDIR)/board/$(BOARDDIR)/config.tmp
23588 instead if the correct
23589 $(OBJTREE)/board/$(BOARDDIR)/config.tmp
23590
23591 The bug is nasty because the build result is correct for the (normal)
23592 in-tree builds, and because 'sinclude' is used no errors get raised
23593 even for out-of-tree build tests. But out-of-tree builds use an
23594 incomplete and thus usually incorrect configuration...
23595
23596 Signed-off-by: Wolfgang Denk <wd@denx.de>
23597
23598commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
23599Author: Stefan Roese <sr@denx.de>
23600Date: Wed May 14 13:40:03 2008 +0200
23601
23602 ppc4xx: Fix bogus Canyonlands config.mk
23603
23604 This patch fixes the canyonlands config.mk file to enable correct
23605 out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
23606
23607 Signed-off-by: Stefan Roese <sr@denx.de>
23608
23609commit fdd1247a66d788a3446244f6fde9955a93c26322
23610Author: Stefan Roese <sr@denx.de>
23611Date: Wed May 14 10:32:32 2008 +0200
23612
23613 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
23614
23615 Canyonlands has a file ddr2_fixed.c which needs special treatment when
23616 building in separate directory. It has to be linked to build directory
23617 otherwise it is not seen.
23618
23619 Signed-off-by: Stefan Roese <sr@denx.de>
23620
23621commit a8409f4f1ac84c36273c1a1e341189662521bcfb
23622Author: Wolfgang Denk <wd@denx.de>
23623Date: Wed May 14 12:22:49 2008 +0200
23624
23625 environment: cleanup prototype declarations of env functions.
23626
23627 Signed-off-by: Wolfgang Denk <wd@denx.de>
23628
23629commit cf39b07948015c480b72a6e732cf7d839aa93a9e
23630Author: Wolfgang Denk <wd@denx.de>
23631Date: Wed May 14 12:21:48 2008 +0200
23632
23633 linkstation_HGLAN: Fix out of tree building.
23634
23635 Signed-off-by: Wolfgang Denk <wd@denx.de>
23636
23637commit 085551c05ca09e6c491ea11a1c6727a36776a545
23638Author: Stefan Roese <sr@denx.de>
23639Date: Wed May 14 10:32:32 2008 +0200
23640
23641 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
23642
23643 Canyonlands has a file ddr2_fixed.c which needs special treatment when
23644 building in separate directory. It has to be linked to build directory
23645 otherwise it is not seen.
23646
23647 Signed-off-by: Stefan Roese <sr@denx.de>
23648
23649commit 1510b82d50615f344e89d42533e8224cce067dc0
23650Author: Wolfgang Denk <wd@denx.de>
23651Date: Tue May 13 23:15:52 2008 +0200
23652
23653 Makefile: fix "error: version_autogenerated.h: No such file or directory"
23654
23655 Signed-off-by: Wolfgang Denk <wd@denx.de>
23656
01db232d
WD
23657commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
23658Author: Stelian Pop <stelian@popies.net>
23659Date: Tue May 13 17:31:24 2008 +0200
23660
23661 Cleanup nand_info[] declaration.
23662
23663 The nand_info array is declared as extern in several .c files.
23664 Those days, nand.h contains a reference to the array, so there is
23665 no need to declare it elsewhere.
23666
23667 Signed-off-by: Stelian Pop <stelian@popies.net>
23668 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23669
180a90ab
WD
23670commit 70fab1908fc1734a403711eaabbef546bc4b77dc
23671Author: Stefan Roese <sr@denx.de>
23672Date: Tue May 13 20:22:01 2008 +0200
23673
23674 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
23675
23676 Signed-off-by: Stefan Roese <sr@denx.de>
23677
23678commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
23679Author: Wolfgang Denk <wd@denx.de>
23680Date: Mon May 12 01:11:21 2008 +0200
23681
23682 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
23683
23684 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
23685 which broke many PowerPC boards.
23686
23687commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
23688Author: Wolfgang Denk <wd@denx.de>
23689Date: Mon May 12 00:56:28 2008 +0200
23690
23691 Revert "Avoid initrd and logbuffer area overlaps"
23692
23693 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
23694 which breaks building on all PPC boards that don't use a log buffer.
23695
23696commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
23697Author: Nick Spence <nick.spence@freescale.com>
23698Date: Sat May 10 14:02:04 2008 -0700
23699
23700 Fix offset calculation for multi-type legacy images.
23701
23702 Calculation of tail was incorrect when size % 4 == 0.
23703
23704 New code removes the conditional and does the same thing but with arithmetic
23705
23706 Signed-off-by: Nick Spence <nick.spence@freescale.com>
23707
23708commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
23709Author: Wolfgang Denk <wd@denx.de>
23710Date: Mon May 12 00:40:58 2008 +0200
23711
23712 Revert "Change env_get_char from a global function ptr to a function."
23713
23714 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
23715 which is known to break booting from dataflash and NAND.
23716
23717commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
23718Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23719Date: Sun May 11 23:13:57 2008 +0200
23720
23721 API: remove duplicate syscall check
23722
23723 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23724
01db232d
WD
23725commit 67e3beb52c320b0a31cf030716c99392cde2d532
23726Author: Stelian Pop <stelian@popies.net>
23727Date: Fri May 9 21:46:51 2008 +0200
23728
23729 AT91: Cleanup unused config header file definitions.
23730
23731 CONFIG_ENV_OVERWRITE is commented out in the config header files,
23732 so let's cleanup the files by removing the whole definition.
23733
23734 Signed-off-by: Stelian Pop <stelian@popies.net>
23735 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23736
23737commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
23738Author: Stelian Pop <stelian@popies.net>
23739Date: Thu May 8 14:52:34 2008 +0200
23740
23741 Support AT91CAP9 revC CPUs
23742
23743 The AT91CAP9 revC CPU has a few differences over the previous,
23744 revB CPU which was distributed in small quantities only (revA was
23745 an internal Atmel product only).
23746
23747 The revC silicon needs a special initialisation sequence to
23748 switch from the internal (imprecise) RC oscillator to the
23749 external 32k clock.
23750
23751 Signed-off-by: Stelian Pop <stelian@popies.net>
23752 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23753
23754commit 098b7b4b441b12c2a64dd517930f43c793542759
23755Author: Stelian Pop <stelian@popies.net>
23756Date: Thu May 8 14:52:33 2008 +0200
23757
23758 Use custom logo for Atmel boards
23759
23760 This patch adds a custom vendor logo for the Atmel AT91 boards.
23761
23762 Signed-off-by: Stelian Pop <stelian@popies.net>
23763 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23764
23765commit 761c70b80cdd3bead40146b96a8e713d6ae01632
23766Author: Stelian Pop <stelian@popies.net>
23767Date: Thu May 8 14:52:32 2008 +0200
23768
23769 AT91SAM9RLEK: hook up the ATMEL LCD driver
23770
23771 This patch makes the necessary adaptations (PIO configurations and
23772 defines in config header file) to hook up the Atmel LCD driver to the
23773 AT91SAM9RLEK board.
23774
23775 Signed-off-by: Stelian Pop <stelian@popies.net>
23776 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23777
23778commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
23779Author: Stelian Pop <stelian@popies.net>
23780Date: Thu May 8 14:52:31 2008 +0200
23781
23782 AT91SAM9263EK: hook up the ATMEL LCD driver
23783
23784 This patch makes the necessary adaptations (PIO configurations and
23785 defines in config header file) to hook up the Atmel LCD driver to the
23786 AT91SAM9263EK board.
23787
23788 Signed-off-by: Stelian Pop <stelian@popies.net>
23789 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23790
23791commit 820f2a958325061a446115f3035e48e4726b3390
23792Author: Stelian Pop <stelian@popies.net>
23793Date: Thu May 8 14:52:30 2008 +0200
23794
23795 AT91SAM9261EK: hook up the ATMEL LCD driver
23796
23797 This patch makes the necessary adaptations (PIO configurations and
23798 defines in config header file) to hook up the Atmel LCD driver to the
23799 AT91SAM9261EK board.
23800
23801 Signed-off-by: Stelian Pop <stelian@popies.net>
23802 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23803
23804commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
23805Author: Stelian Pop <stelian@popies.net>
23806Date: Thu May 8 14:52:29 2008 +0200
23807
23808 AT91CAP9ADK: hook up the ATMEL LCD driver
23809
23810 This patch makes the necessary adaptations (PIO configurations and
23811 defines in config header file) to hook up the Atmel LCD driver to the
23812 AT91CAP9ADK board.
23813
23814 Signed-off-by: Stelian Pop <stelian@popies.net>
23815 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23816
23817commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
23818Author: Stelian Pop <stelian@popies.net>
23819Date: Fri May 9 21:57:18 2008 +0200
23820
23821 Add ATMEL LCD driver
23822
23823 This patch adds support for the ATMEL LCDC driver which is used on some
23824 AT91 and AVR platforms.
23825
23826 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
23827 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
23828
23829 Signed-off-by: Stelian Pop <stelian@popies.net>
23830 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23831
23832commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
23833Author: Stelian Pop <stelian@popies.net>
23834Date: Thu May 8 18:52:25 2008 +0200
23835
23836 AT91SAM9RLEK support
23837
23838 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
23839 board.
23840
23841 Signed-off-by: Stelian Pop <stelian@popies.net>
23842 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23843
23844commit 8e429b3eee23927c1222679f6b6f53667b21595c
23845Author: Stelian Pop <stelian@popies.net>
23846Date: Thu May 8 18:52:23 2008 +0200
23847
23848 AT91SAM9263EK support
23849
23850 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
23851 board.
23852
23853 Signed-off-by: Stelian Pop <stelian@popies.net>
23854 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23855
23856commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
23857Author: Stelian Pop <stelian@popies.net>
23858Date: Thu May 8 20:52:22 2008 +0200
23859
23860 AT91SAM9261EK support
23861
23862 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
23863 board.
23864
23865 Signed-off-by: Stelian Pop <stelian@popies.net>
23866 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23867
23868commit 86c8c8a414988c50104a3b02c29f50af2be738c0
23869Author: Stelian Pop <stelian@popies.net>
23870Date: Thu May 8 20:52:21 2008 +0200
23871
23872 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
23873
23874 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
23875 in order to cope with the changes in DataFlash partitionning scheme
23876 (cset c3a60cb3).
23877
23878 Signed-off-by: Stelian Pop <stelian@popies.net>
23879 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23880
23881commit 96996ac25d5222611a8888968db6e53a6d3726da
23882Author: Stelian Pop <stelian@popies.net>
23883Date: Thu May 8 20:52:20 2008 +0200
23884
23885 AT91SAM9260EK: Normalize BOOTARGS
23886
23887 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
23888 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
23889 variable.
23890
23891 Signed-off-by: Stelian Pop <stelian@popies.net>
23892 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23893
23894commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
23895Author: Stelian Pop <stelian@popies.net>
23896Date: Thu May 8 20:52:19 2008 +0200
23897
23898 AT91SAM9260EK: Normalize SPI timings
23899
23900 This patch changes the SPI timings to closely match the ones
23901 used by the Linux kernel and the Atmel's own bootstrap project.
23902
23903 Signed-off-by: Stelian Pop <stelian@popies.net>
23904 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23905
23906commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
23907Author: Stelian Pop <stelian@popies.net>
23908Date: Thu May 8 20:52:18 2008 +0200
23909
23910 AT91SAM9260EK: Handle 8 or 16 bit NAND
23911
23912 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
23913 makes the support configurable in the board config header file
23914 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
23915
23916 Signed-off-by: Stelian Pop <stelian@popies.net>
23917 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23918
23919commit ab52640fc01624e208424e527af0b7b3a5a65a12
23920Author: Stelian Pop <stelian@popies.net>
23921Date: Thu May 8 20:52:17 2008 +0200
23922
23923 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
23924
23925 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
23926 in order to cope with the changes in DataFlash partitionning scheme
23927 (cset c3a60cb3).
23928
23929 Signed-off-by: Stelian Pop <stelian@popies.net>
23930 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23931
23932commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
23933Author: Stelian Pop <stelian@popies.net>
23934Date: Thu May 8 20:52:16 2008 +0200
23935
23936 AT91CAP9ADK: Normalize BOOTARGS
23937
23938 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
23939 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
23940 variable.
23941
23942 Signed-off-by: Stelian Pop <stelian@popies.net>
23943 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23944
23945commit 93da48b910511911ce110656e17ed733c8ac4c45
23946Author: Stelian Pop <stelian@popies.net>
23947Date: Thu May 8 20:52:15 2008 +0200
23948
23949 AT91CAP9ADK: Normalize SPI timings
23950
23951 This patch changes the SPI timings to closely match the ones
23952 used by the Linux kernel and the Atmel's own bootstrap project.
23953
23954 Signed-off-by: Stelian Pop <stelian@popies.net>
23955 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23956
23957commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
23958Author: Stelian Pop <stelian@popies.net>
23959Date: Thu May 8 20:52:14 2008 +0200
23960
23961 AT91CAP9ADK: Handle 8 or 16 bit NAND
23962
23963 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
23964 makes the support configurable in the board config header file
23965 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
23966
23967 Signed-off-by: Stelian Pop <stelian@popies.net>
23968 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23969
23970commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
23971Author: Stelian Pop <stelian@popies.net>
23972Date: Thu May 8 20:52:13 2008 +0200
23973
23974 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
23975
23976 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
23977 below avoids the duplication of u-boot.lds by putting the file in the
23978 cpu directory instead of the board one.
23979
23980 Signed-off-by: Stelian Pop <stelian@popies.net>
23981 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23982
23983commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
23984Author: Stelian Pop <stelian@popies.net>
23985Date: Thu May 8 20:52:12 2008 +0200
23986
23987 Add proper copyright notices in Atmel boards Makefiles
23988
23989 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
23990 copyright notice. This patch adds the missing pieces.
23991
23992 Signed-off-by: Stelian Pop <stelian@popies.net>
23993 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23994
23995commit e817a042cef6164bf26fee86f90326f2ec9e6745
23996Author: Stelian Pop <stelian@popies.net>
23997Date: Thu May 8 20:52:11 2008 +0200
23998
23999 Add copyright information in Atmel boards partition.c
24000
24001 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
24002 the new created files. This patch fixes the problem.
24003
24004 Signed-off-by: Stelian Pop <stelian@popies.net>
24005 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24006
24007commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
24008Author: Stelian Pop <stelian@popies.net>
24009Date: Thu May 8 20:52:10 2008 +0200
24010
24011 Update origin and copyright information in arch-at91sam9 header files
24012
24013 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
24014 copied from the Linux kernel sources. This patch explicitly specifies
24015 this origin for all the copied headers, and for those missing copyright
24016 information, adds it.
24017
24018 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
24019 in the latest kernel sources by 'at91sam9_smc.h'.
24020
24021 The copyright information has been confirmed by the AT91 Linux kernel
24022 maintainer, Andrew Victor <avictor.za@gmail.com>.
24023
24024 Signed-off-by: Stelian Pop <stelian@popies.net>
24025 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24026
180a90ab
WD
24027commit 79dd1712689d6a5031d7cbff54957049680751c7
24028Author: Markus Klotzbücher <mk@denx.de>
24029Date: Thu May 8 16:00:55 2008 +0200
24030
24031 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
24032
24033 When using dhcp/bootp the "netmask" environment variable is not set
24034 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
24035 desireable, so the following patch adds this this option to the board
24036 config.
24037
24038 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
24039 Signed-off-by: Stefan Roese <sr@denx.de>
24040
24041commit 869d14b4cc2e47de2ddcb117bad0407a44436684
24042Author: Stefan Roese <sr@denx.de>
24043Date: Sat May 10 10:30:36 2008 +0200
24044
24045 ppc4xx: Update Makalu defconfig to use device-tree booting as default
24046
24047 This patch reworks the default environment on Makalu. Now "net_nfs" for
24048 example uses the device-tree style booting formerly know as "net_nfs_fdt".
24049 Also the addresses in RAM were changed because of the new image booting
24050 support, which check for image overwriting. So the addresses needed to
24051 get adjusted.
24052
24053 Signed-off-by: Stefan Roese <sr@denx.de>
24054
24055commit f3612a7b199cab3942f60d9c1392eb39d58cc699
24056Author: Becky Bruce <bgill@freescale.com>
24057Date: Wed May 7 13:28:16 2008 -0500
24058
24059 PPC: fix map_physmem build warning
24060
24061 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
24062 enabled. This quiets the warning.
24063
24064 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
24065
24066commit 36f32675f40292002ee1fed252c180a43022d2d4
24067Author: Becky Bruce <bgill@freescale.com>
24068Date: Wed May 7 13:24:57 2008 -0500
24069
24070 Update pci code to use phys_addr_t
24071
24072 Physical addrs need to be represented by phys_addr_t, not
24073 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT
24074 are going to fail mightily.
24075
24076 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
24077
24078commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
24079Author: Nick Spence <nick.spence@freescale.com>
24080Date: Thu May 8 22:32:22 2008 -0700
24081
24082 Support legacy multi-type images without FDT section.
24083
24084 This patch enables legacy multi-type images containing only a Linux kernel
24085 and root file system to be loaded, maintaining compatibility with previous
24086 versions of u-boot.
24087
24088 This is required when using old image files such as a Linux 2.4 kernel /
24089 filesystem.
24090
24091 Signed-off-by: Nick Spence <nick.spence@freescale.com>
24092 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
24093
24094commit 881031d9732783b7aeae2198fc7eb480ae8974a6
24095Author: Wolfgang Denk <wd@denx.de>
24096Date: Sat May 10 00:38:02 2008 +0200
24097
24098 Update CHANGELOG.
24099
24100 Signed-off-by: Wolfgang Denk <wd@denx.de>
24101
881031d9
WD
24102commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
24103Author: Wolfgang Denk <wd@denx.de>
24104Date: Sat May 10 00:36:09 2008 +0200
24105
24106 post/cpu/ppc4xx/Makefile: line length cleanup
24107
24108 Signed-off-by: Wolfgang Denk <wd@denx.de>
24109
24110commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
24111Author: Stelian Pop <stelian@popies.net>
24112Date: Thu May 8 22:52:09 2008 +0200
24113
24114 Fix @ -> <at> substitution
24115
24116 When applying the AT91CAP9 patches upstream, something transformed
24117 the '@' character into the ' <at> ' sequence.
24118
24119 The patch below restores the original form in all the places where
24120 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
24121 were copied from AT91CAP9, and a couple of other files where the
24122 ' <at> ' sequence was present).
24123
24124 Signed-off-by: Stelian Pop <stelian@popies.net>
24125
24126commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
24127Author: Stelian Pop <stelian@popies.net>
24128Date: Thu May 8 22:52:10 2008 +0200
24129
24130 Update origin and copyright information in arch-at91sam9 header files
24131
24132 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
24133 copied from the Linux kernel sources. This patch explicitly specifies
24134 this origin for all the copied headers, and for those missing copyright
24135 information, adds it.
24136
24137 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
24138 in the latest kernel sources by 'at91sam9_smc.h'.
24139
24140 The copyright information has been confirmed by the AT91 Linux kernel
24141 maintainer, Andrew Victor <avictor.za@gmail.com>.
24142
24143 Signed-off-by: Stelian Pop <stelian@popies.net>
24144
24145commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
24146Author: Stelian Pop <stelian@popies.net>
24147Date: Thu May 8 22:52:11 2008 +0200
24148
24149 Add copyright information in Atmel boards partition.c
24150
24151 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
24152 the new created files. This patch fixes the problem.
24153
24154 Signed-off-by: Stelian Pop <stelian@popies.net>
24155
24156commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
24157Author: Guennadi Liakhovetski <lg@denx.de>
24158Date: Thu May 8 10:09:27 2008 +0200
24159
24160 mx31ads: fix 32kHz clock handling
24161
24162 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
24163 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
24164 Also fix a typo when verifying a jumper configuration. While at it, make
24165 two needlessly global functions static.
24166
24167 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
24168
24169commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
24170Author: Marian Balakowicz <m8@semihalf.com>
24171Date: Wed May 7 13:10:04 2008 +0200
24172
24173 Avoid initrd and logbuffer area overlaps
24174
24175 Add logbuffer to reserved LMB areas to prevent initrd allocation
24176 from overlaping with it.
24177
24178 Make sure to use correct logbuffer base address.
24179
24180 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24181
24182commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
24183Author: Marian Balakowicz <m8@semihalf.com>
24184Date: Wed May 7 13:08:54 2008 +0200
24185
24186 ppc: Cleanup get_effective_memsize() use
24187
24188 Removed duplicated effective memory size calculation code.
24189
24190 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24191
24192commit 273c37d843d5b581090378016cd12dd9c586907b
24193Author: Marian Balakowicz <m8@semihalf.com>
24194Date: Wed May 7 09:03:53 2008 +0200
24195
24196 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
24197
24198 Recent modifcations to LOGBUFFER handling code were incorrecly
24199 introduced to fit_check_kernel() routine during
24200 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
24201 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
24202
24203 This patch cleans up this merge issue.
24204
24205 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24206
24207commit bc11756daff89a3de09ca80adac962b88cf06e6e
24208Author: Grant Erickson <gerickson@nuovations.com>
24209Date: Tue May 6 20:16:15 2008 -0700
24210
24211 Propagate Error Status to the Shell on fw_printenv Errors
24212
24213 Changed implementation such that fw_printenv returns failure status
24214 when one or more specified variables do not exist or when incorrect
24215 command syntax is used.
24216
24217 This aids scripting fw_printenv such that the script can key of the
24218 return status rather than relying on standard error "scraping".
24219
24220 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
24221 Signed-off-by: Wolfgang Denk <wd@denx.de>
24222
24223commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
24224Author: Grant Erickson <gerickson@nuovations.com>
24225Date: Tue May 6 16:18:00 2008 -0700
24226
24227 Fix Compilation Errors with 'tools/env/fw_printenv'
24228
24229 In the current top-of-tree, 1.3.3.-rc2, the optional tool
24230 'tools/env/fw_printenv' fails to compile for two reasons:
24231
24232 1) The header watchdog.h cannot be found.
24233 2) The header zlib.h is picked up from the tool chain rather than the
24234 project causing a prototype conflict for crc32.
24235
24236 This patch addresses both of these issues.
24237
24238 Platforms Tested On:
24239 - AMCC "Kilauea"
24240
24241 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
24242
24243commit 597f6c26a18b389903a64692bacbf9a1ca69355b
24244Author: James Yang <James.Yang@freescale.com>
24245Date: Mon May 5 10:22:53 2008 -0500
24246
24247 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
24248
24249 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
24250 work before relocating to RAM because command history is written into
24251 a global array that is not writable before relocation. This patch
24252 defers to the no-editing and no-history code in readline_into_buffer()
24253 if it is called before relocation.
24254
24255 Signed-off-by: James Yang <James.Yang@freescale.com>
24256 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24257
24258commit 726c0f1e5f108dccea052965123b95837d2bd402
24259Author: Detlev Zundel <dzu@denx.de>
24260Date: Mon May 5 16:11:22 2008 +0200
24261
24262 cosmetic: Adjust coding style for switch statements to be consistent
24263
24264 Signed-off-by: Detlev Zundel <dzu@denx.de>
24265
24266commit 574b319512b13e10800f0045e39b993f4ca25e42
24267Author: Detlev Zundel <dzu@denx.de>
24268Date: Mon May 5 16:11:21 2008 +0200
24269
24270 Fix disk type output in disk/part.c
24271
24272 Signed-off-by: Detlev Zundel <dzu@denx.de>
24273
24274commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
24275Author: Vlad Lungu <vlad.lungu@windriver.com>
24276Date: Mon May 5 14:20:03 2008 +0300
24277
24278 Mail address change, documentation modified
24279
24280 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
24281
24282commit 4d49b28038e2819088e8356a77212fc95a89ce5a
24283Author: Michal Simek <monstr@monstr.eu>
24284Date: Sun May 4 15:42:41 2008 +0200
24285
24286 microblaze: Repare intc handling
24287
24288 Signed-off-by: Michal Simek <monstr@monstr.eu>
24289
24290commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
24291Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24292Date: Sun May 4 15:17:52 2008 +0200
24293
24294 include/gitignore: update to all architectures
24295
24296 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24297
24298commit 1df368aed3b8bc240fe1595d290b0e91b22961da
24299Author: Marcel Ziswiler <marcel@ziswiler.com>
24300Date: Mon May 5 02:12:06 2008 +0200
24301
24302 ide: Remove spurious second include of io.h
24303
24304 Removed the second include, with all the #ifdef around as suggested by Wolfgang.
24305
24306 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24307
24308commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
24309Author: Adrian Filipi <adrian.filipi@eurotech.com>
24310Date: Tue May 6 16:46:37 2008 -0400
24311
24312 Fix some typos
24313
24314 This patch fixes three typos.
24315 The first is a repetition of CONFIG_CMD_BSP.
24316 The second makes the #endif comment match its #if.
24317 The third is a spelling error.
24318
24319 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
24320
24321commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
24322Author: Grant Erickson <gerickson@nuovations.com>
24323Date: Sun May 4 16:45:01 2008 -0700
24324
24325 Recognize 'powerpc' As an Alias for IH_ARCH_PPC
24326
24327 Add support for the recognition of 'powerpc' as an alias for the PowerPC
24328 architecture type since Linux is already trending in that direction,
24329 preferring 'powerpc' to 'ppc'.
24330
24331 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
24332
24333commit f5a24259190c388c2527bdc49fee34577d862cc7
24334Author: Wheatley Travis <Travis.Wheatley@freescale.com>
24335Date: Fri May 2 13:35:15 2008 -0700
24336
24337 7450 and 86xx L2 cache invalidate bug corrections
24338
24339 The 7610 and related parts have an L2IP bit in the L2CR that is
24340 monitored to signal when the L2 cache invalidate is complete whereas the
24341 7450 and related parts utilize L2I for this purpose. However, the
24342 current code does not account for this difference. Additionally the 86xx
24343 L2 cache invalidate code used an "andi" instruction where an "andis"
24344 instruction should have been used.
24345
24346 This patch addresses both of these bugs.
24347
24348 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
24349 Acked-By: Jon Loeliger <jdl@freescale.com>
24350
24351commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
24352Author: Wolfgang Denk <wd@denx.de>
24353Date: Fri May 9 10:16:13 2008 +0200
24354
24355 Avoid infinite loop "Generating include/autoconf.mk"
24356
24357 Fix a bogus circular dependency that caused an infinite loop of
24358 "Generating include/autoconf.mk" again and again.
24359
24360 Signed-off-by: Wolfgang Denk <wd@denx.de>
24361
01db232d
WD
24362commit 567fb852178dbf59529d7301620a3f3732a4b02d
24363Author: Stelian Pop <stelian@popies.net>
24364Date: Thu May 8 22:52:09 2008 +0200
24365
24366 Fix @ -> <at> substitution
24367
24368 When applying the AT91CAP9 patches upstream, something transformed
24369 the '@' character into the ' <at> ' sequence.
24370
24371 The patch below restores the original form in all the places where
24372 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
24373 were copied from AT91CAP9, and a couple of other files where the
24374 ' <at> ' sequence was present).
24375
24376 Signed-off-by: Stelian Pop <stelian@popies.net>
24377 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24378
24379commit 73ccb3410a0785593cda7aee455dfc51f790e281
24380Author: Gary Jennejohn <gary.jennejohn@freenet.de>
24381Date: Mon Apr 28 14:04:32 2008 +0200
24382
24383 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
24384
24385 Signed-off-by: Gary Jennejohn <garyj@denx.de>
24386 Signed-off-by: Stefan Roese <sr@denx.de>
24387
881031d9
WD
24388commit ef2642625cbfb1c3695e3478d08ae515052a4950
24389Author: Stefan Roese <sr@denx.de>
24390Date: Thu May 8 11:10:46 2008 +0200
24391
24392 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
24393
24394 Signed-off-by: Stefan Roese <sr@denx.de>
24395
24396commit a00eccfebc954ad9485161efeca7d9aaf626d530
24397Author: Stefan Roese <sr@denx.de>
24398Date: Thu May 8 11:05:15 2008 +0200
24399
24400 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
24401
24402 This patch adds fdt (flattened device tree) support to all remaining AMCC
24403 eval boards. Most newer boards already support device tree. With this patch,
24404 all AMCC boards now enable device tree passing from U-Boot to Linux
24405 arch/powerpc kernels.
24406
24407 Signed-off-by: Stefan Roese <sr@denx.de>
24408
24409commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
24410Author: Stefan Roese <sr@denx.de>
24411Date: Thu May 8 11:01:09 2008 +0200
24412
24413 ppc4xx: Add weak default ft_board_setup() routine
24414
24415 This patch adds a default ft_board_setup() routine to the 4xx fdt code.
24416 This routine is defined as weak and can be overwritten by a board specific
24417 one if needed.
24418
24419 Signed-off-by: Stefan Roese <sr@denx.de>
24420
24421commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
24422Author: Stefan Roese <sr@denx.de>
24423Date: Thu May 8 10:48:58 2008 +0200
24424
24425 ppc4xx: acadia: Add fdt support and fix section overlap problem
24426
24427 This patch adds fdt (flattened device tree) support to the AMCC
24428 Acadia eval board. This increases the image size and it doesn't
24429 fit anymore into 256kByte. Since we didn't want to remove features
24430 from the configuration, we decided to increase the U-Boot image size
24431 (add one flash sector).
24432
24433 Also changed the default environment definition to make it
24434 independent of such changes.
24435
24436 Signed-off-by: Stefan Roese <sr@denx.de>
24437
24438commit 4adb3023de75bc150f088c8935db340930ad38c8
24439Author: Ira Snyder <iws@ovro.caltech.edu>
24440Date: Tue Apr 29 11:18:54 2008 -0700
24441
24442 ppc4xx: Add device tree support to AMCC Yosemite
24443
24444 Add support for booting with a device tree blob. This is needed to boot
24445 ARCH=powerpc kernels. Also add support for setting the eth0 mac address
24446 via the ethaddr variable.
24447
24448 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
24449 Signed-off-by: Stefan Roese <sr@denx.de>
24450
24451commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
24452Author: Dave Mitchell <dmitchell@amcc.com>
24453Date: Wed May 7 09:00:23 2008 -0700
24454
24455 ppc4xx: Fix typos in 460GT/EX FBDV array
24456
24457 Corrected two typos in the 460GT/EX FBDV array.
24458
24459 Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
24460 Signed-off-by: Stefan Roese <sr@denx.de>
24461
24462commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
24463Author: Andy Fleming <afleming@freescale.com>
24464Date: Wed May 7 16:54:31 2008 -0500
24465
24466 85xx: Limit CPU2 workaround to parts that have the errata
24467
24468 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
24469 Signed-off-by: Andy Fleming <afleming@freescale.com>
24470
24471commit a5fe514e8ace564300d2c1d73846ddff49654243
24472Author: Lee Nipper <lee.nipper@freescale.com>
24473Date: Fri Apr 25 15:44:45 2008 -0500
24474
24475 mpc83xx: system performance settings for MPC8349EMDS.
24476
24477 These same settings are used on MPC8349ITX, and
24478 improve performance on MPC8349EMDS.
24479
24480 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
24481 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
24482
24483commit 49387dba910e485640b575e920ee463b7e611dc3
24484Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24485Date: Tue May 6 13:22:52 2008 +0900
24486
24487 [MIPS] cpu/mips/cache.S: Fix build warning
24488
24489 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
24490 warns illegal global symbol references by bal (and jal also) instruction.
24491 This does not happen with the latest binutils v2.18.
24492
24493 Here's an example on gth2_config:
24494
24495 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
24496 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
24497 c -EB -c -o cache.o cache.S
24498 cache.S: Assembler messages:
24499 cache.S:243: Warning: Pretending global symbol used as branch target is local.
24500 cache.S:250: Warning: Pretending global symbol used as branch target is local.
24501
24502 In principle, gas might be sensitive to global symbol references in PIC
24503 code because they should be processed through GOT (global offset table).
24504 But if `bal' instruction is used, it results in PC-based offset jump.
24505 This is the cause of this warning.
24506
24507 In practice, we know it doesn't matter whether PC-based reference or GOT-
24508 based. As for this case, both will work before/after relocation. But let's
24509 fix the code.
24510
24511 This patch explicitly sets up a target address, then jump there.
24512 Here's an example of disassembled code with/without this patch.
24513
24514 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20>
24515 9000066c: ac80fffc sw zero,-4(a0)
24516 90000670: 01402821 move a1,t2
24517 -90000674: 0411ffba bal 90000560 <mips_init_icache>
24518 -90000678: 01803021 move a2,t4
24519 -9000067c: 01602821 move a1,t3
24520 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache>
24521 -90000684: 01a03021 move a2,t5
24522 -90000688: 03000008 jr t8
24523 -9000068c: 00000000 nop
24524 +90000674: 01803021 move a2,t4
24525 +90000678: 8f8f83ec lw t7,-31764(gp)
24526 +9000067c: 01e0f809 jalr t7
24527 +90000680: 00000000 nop
24528 +90000684: 01602821 move a1,t3
24529 +90000688: 01a03021 move a2,t5
24530 +9000068c: 8f8f81e0 lw t7,-32288(gp)
24531 +90000690: 01e0f809 jalr t7
24532 +90000694: 00000000 nop
24533 +90000698: 03000008 jr t8
24534 +9000069c: 00000000 nop
24535
24536 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24537
24538commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
24539Author: Vlad Lungu <vlad.lungu@windriver.com>
24540Date: Mon May 5 14:04:00 2008 +0300
24541
24542 Allow building mips versions with ELDK 3.1.1
24543
24544 .gpword works only with local symbols on certain binutils versions
24545
24546 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
24547
24548commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
24549Author: Wolfgang Denk <wd@denx.de>
24550Date: Mon May 5 12:52:36 2008 +0200
24551
24552 MAKEALL: add inka4x0 board
24553
24554 Signed-off-by: Wolfgang Denk <wd@denx.de>
24555
24556commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
24557Author: Wolfgang Denk <wd@denx.de>
24558Date: Sun May 4 21:34:23 2008 +0200
24559
24560 kb9202 board: fix build problem.
24561
24562 Signed-off-by: Wolfgang Denk <wd@denx.de>
24563
24564commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
24565Author: Wolfgang Denk <wd@denx.de>
24566Date: Sun May 4 12:10:33 2008 +0200
24567
24568 Prepare for v1.3.3-rc3
24569
24570 Update ChNAGELOG, minor white space cleanup.
24571
24572 Signed-off-by: Wolfgang Denk <wd@denx.de>
24573
6adf61dc
WD
24574commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
24575Author: Wolfgang Denk <wd@denx.de>
24576Date: Sun May 4 00:35:15 2008 +0200
24577
24578 drivers/net/tsec.c: Fix typo.
24579
24580 Signed-off-by: Wolfgang Denk <wd@denx.de>
24581
24582commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
24583Author: Mike Frysinger <vapier@gentoo.org>
24584Date: Fri May 2 21:45:12 2008 -0400
24585
24586 version_autogenerated.h: use printf rather than echo -n
24587
24588 Some systems are dumb and do not implement the -n flag to echo (like OS X).
24589 Convert the Makefile to use printf as this should work everywhere.
24590
24591 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24592 Signed-off-by: Wolfgang Denk <wd@denx.de>
24593
24594commit 4acc2a108ad0a669165924704a6cb083f9138242
24595Author: Mike Frysinger <vapier@gentoo.org>
24596Date: Fri May 2 18:17:50 2008 -0400
24597
24598 fix building when saveenv is disabled in some setups
24599
24600 If you enable environment in the flash, but disable the embedded
24601 option, and you disable the saveenv command, then the #if nested
24602 logic will trigger a compile failure:
24603 env_flash.c: In function 'env_relocate_spec':
24604 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
24605 The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
24606
24607 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24608
24609commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
24610Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
24611Date: Fri May 2 16:10:04 2008 -0400
24612
24613 SBC8548: fix address mask to allow 64M flash
24614
24615 Fix incorrect mask to enable all 64MB of onboard flash.
24616 Previously U-Boot incorrectly mapped only 8MB of flash, this
24617 patch correctly maps all the available flash.
24618
24619 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
24620
24621commit 3648085c464c8c22ef76fab006ca4344d3796124
24622Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24623Date: Fri May 2 19:48:56 2008 +0200
24624
24625 qemu_mips: add README
24626
24627 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24628
24629commit 6fdd002689190a0022c7b3dbab37fcba724580ce
24630Author: Marcel Ziswiler <marcel@ziswiler.com>
24631Date: Fri May 2 02:35:59 2008 +0200
24632
24633 Fix misspelled comment
24634
24635 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24636
24637commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
24638Author: Mike Frysinger <vapier@gentoo.org>
24639Date: Thu May 1 04:13:05 2008 -0400
24640
24641 mkimage: make mmap() checks consistent
24642
24643 The mmap() related code is full of inconsistent casts/constants when
24644 it comes to error checking, and may break when building on some
24645 systems (like ones that do not implicitly define the caddr_t type).
24646 Let's just avoid the whole mess by writing the code nice and clean in
24647 the first place.
24648
24649 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24650
24651commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
24652Author: Marcel Ziswiler <marcel@ziswiler.com>
24653Date: Thu May 1 09:05:34 2008 +0200
24654
24655 Fix defined but not used build warning
24656
24657 - warning: 'srom' defined but not used
24658
24659 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24660
24661commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
24662Author: Marcel Ziswiler <marcel@ziswiler.com>
24663Date: Thu May 1 09:05:26 2008 +0200
24664
24665 Fix implicit declaration build warnings
24666
24667 - warning: implicit declaration of function ‘serial_initialize’
24668
24669 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
24670
24671commit 9acde129cc3f9c1b3bc11a821480dd446774d618
24672Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
24673Date: Tue Apr 29 19:18:32 2008 +0200
24674
24675 TSEC: add config options for VSC8601 RGMII PHY
24676
24677 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
24678 and Tx clock lines. They are configured using 2 bits in extended
24679 register 0x17.
24680 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
24681 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
24682
24683 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
24684 Acked-by: Andy Fleming <afleming@freescale.com>
24685 Acked-by: Ben Warren <biggerbadderben@gmail.com>
24686 --
24687
24688 drivers/net/tsec.c | 6 ++++++
24689 drivers/net/tsec.h | 3 +++
24690 2 files changed, 9 insertions(+), 0 deletions(-)
24691
24692commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
24693Author: Wolfgang Denk <wd@denx.de>
24694Date: Sat May 3 23:07:15 2008 +0200
24695
24696 Revert "ColdFire: Get information from the correct GCC"
24697
24698 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
24699 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
24700
24701commit c4e5f52a58d278eebb87f476e353972c5dacea40
24702Author: Wolfgang Denk <wd@denx.de>
24703Date: Sat May 3 22:25:00 2008 +0200
24704
24705 config.mk: use correct (cross) compiler
24706
24707 Some config.mk files reference $(CC) to test for specific tool chain
24708 features, so make sure $(CC) gets set before including any such
24709 config files.
24710
24711 This patch replaces commit b7166e05a5 ("ColdFire: Get information from
24712 the correct GCC").
24713
24714 Signed-off-by: Wolfgang Denk <wd@denx.de>
24715
24716commit 27c38689d0cfde0e444239345f97b5eecc9f4067
24717Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24718Date: Thu May 1 02:13:44 2008 +0200
24719
24720 pxa: fix previous definition on cpu init
24721
24722 start.S:183:1: warning: "ICMR" redefined
24723 In file included from start.S:33:
24724 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
24725 start.S:187:1: warning: "RCSR" redefined
24726 ...
24727
24728 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24729
24730commit 6d12e697de794d700767f22f950e3026ccf4daf6
24731Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24732Date: Thu May 1 02:13:43 2008 +0200
24733
24734 pxa: fix pcmcia operation on 'i' may be undefined
24735
24736 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24737 Signed-off-by: Wolfgang Denk <wd@denx.de>
24738
24739commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
24740Author: Kumar Gala <galak@kernel.crashing.org>
24741Date: Wed Apr 30 16:24:35 2008 -0500
24742
24743 MPC8610HPCD: Drop -O2 from the build flags
24744
24745 Make the flags use -Os like all other boards
24746
24747 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24748
24749commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
24750Author: Stefan Roese <sr@denx.de>
24751Date: Wed Apr 30 15:50:39 2008 +0200
24752
24753 RTC: Fix month offset by one problem in M41T62 RTC driver
24754
24755 This patch fixes a problem with the month being read and written
24756 incorrectly (offset by one). This only gets visible by also using
24757 the Linux driver (rtc-m41t80).
24758
24759 Tested on AMCC Canyonlands.
24760
24761 Signed-off-by: Stefan Roese <sr@denx.de>
24762
24763commit 141ba1cad8e6598a2466e7e2976c6a12285df619
24764Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24765Date: Sat May 3 13:51:44 2008 +0900
24766
24767 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
24768
24769 Current trick to pick up GNU assembler minor version uses a dot(.) as a
24770 delimiter, and take the second field to obtain minor version number. But
24771 as can be expected, this doesn't work with a version string which has
24772 dots more than needs.
24773
24774 Here's an example:
24775
24776 $ mips-linux-gnu-as --version | grep 'GNU assembler'
24777 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
24778 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
24779 2-129) 2
24780 $
24781
24782 This patch restricts the version format to 2.XX.XX... This will work
24783 in most cases.
24784
24785 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
24786 2.18.50.20080215
24787 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
24788 18
24789 $
24790
24791 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24792
24793commit ea638951acead7f1086c908c0b9f086beab82a22
24794Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24795Date: Sat May 3 13:51:28 2008 +0900
24796
24797 [MIPS] cpu/mips/cache.S: Add dcache_enable
24798
24799 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
24800 "allow ports to override bootelf behavior") requires ports to have this
24801 function.
24802
24803 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24804 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24805
24806commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
24807Author: Wolfgang Denk <wd@denx.de>
24808Date: Thu May 1 21:30:16 2008 +0200
24809
24810 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
24811
24812 Onenand needs a version of memcpy() which performs 16 bit accesses
24813 only; make sure the name does not conflict with the standard
24814 function.
24815
24816 Signed-off-by: Wolfgang Denk <wd@denx.de>
24817
24818commit 12bc4e94251c369c529ffa505cf58b148c372f7f
24819Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24820Date: Wed Apr 30 22:38:17 2008 +0200
24821
24822 cmd_nand: fix warning: str2long ncompatible pointer type
24823
24824 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24825
24826commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
24827Author: Timur Tabi <timur@freescale.com>
24828Date: Fri Apr 4 11:16:11 2008 -0500
24829
24830 Fix calculation of I2C clock for some 86xx chips
24831
24832 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
24833 There is no pattern that can be used to determine which chips use which
24834 frequency, so the only way to determine is to look up the actual SOC
24835 designation and use the right value for that SOC.
24836
24837 Signed-off-by: Timur Tabi <timur@freescale.com>
24838
24839commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
24840Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24841Date: Wed Apr 30 12:11:19 2008 -0500
24842
24843 ColdFire: Fix ethernet hang issue for mcf547x_8x
24844
24845 The ethernet hang is caused by receiving buffer in DRAM is not
24846 yet ready due to access cycles require longer time in DRAM.
24847 Relocate DMA buffer descriptors from DRAM to internal SRAM.
24848
24849 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24850
24851commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
24852Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24853Date: Wed Apr 30 12:10:47 2008 -0500
24854
24855 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
24856
24857 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
24858 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24859
24860commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
24861Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24862Date: Wed Apr 30 12:10:23 2008 -0500
24863
24864 ColdFire: Get information from the correct GCC
24865
24866 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
24867 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
24868
24869commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
24870Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
24871Date: Wed Apr 30 18:02:59 2008 +0200
24872
24873 Fix warning in env_nand.c if compiled for DaVinci Schmoogie
24874
24875 Fix warnings
24876
24877 nv_nand.c: In function 'saveenv':
24878 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
24879 env_nand.c: In function 'env_relocate_spec':
24880 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
24881
24882 if compiled for davinci_schmoogie_config.
24883
24884 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
24885 Ack by: Sergey Kubushyn <ksi@koi8.net>
24886
24887commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
24888Author: Anatolij Gustschin <agust@denx.de>
24889Date: Wed Apr 30 13:34:40 2008 +0200
24890
24891 Fix warnings while compiling net/net.c for MPC8610HPCD board
24892
24893 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
24894 causing overriding default -Os option. New gcc (ver. 4.2.2)
24895 produces warnings while compiling net/net.c file with -O2
24896 option. The patch is an attempt to fix this.
24897
24898 Signed-off-by: Anatolij Gustschin <agust@denx.de>
24899
24900commit 58b575e575c25fdf8c88141e145db201f3092149
24901Author: Sascha Laue <Sascha.Laue@gmx.biz>
24902Date: Wed Apr 30 15:23:38 2008 +0200
24903
24904 lwmon5: fix offset error in sysmon0 POST
24905
24906 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
24907 Signed-off-by: Wolfgang Denk <wd@denx.de>
24908
24909commit e7419b243a373de4ee042f7d4f45f66de787240d
24910Author: Sascha Laue <Sascha.Laue@gmx.biz>
24911Date: Wed Apr 30 15:16:35 2008 +0200
24912
24913 lwmon5: fix manual merge error in POST
24914
24915 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
24916
24917commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
24918Author: Wolfgang Denk <wd@denx.de>
24919Date: Wed Apr 30 17:46:26 2008 +0200
24920
24921 cmd_nand.c: fix another 'incompatible pointer type' warning.
24922
24923 Signed-off-by: Wolfgang Denk <wd@denx.de>
24924
24925commit de109d909707e2dfe806be5efc3cdb103b47c8ad
24926Author: Wolfgang Denk <wd@denx.de>
24927Date: Wed Apr 30 17:25:07 2008 +0200
24928
24929 Makefile: fix parallel builds
24930
24931 This problem shows up with parallel builds only; it results in
24932 somewhat cryptic error messages like
24933
24934 $ JOBS=-j6 MAKEALL netstar
24935 Configuring for netstar board...
24936 arm-linux-ld: cannot find -lgeneric
24937 make[1]: *** [eeprom.srec] Error 1
24938
24939 A few boards (like netstar and voiceblue) need some libraries for
24940 building; however, the board Makefile does not contain any such
24941 dependencies which may cause problems with parallel builds. Adding
24942 such dependencies is difficult as we would also have to provide build
24943 rules, which already exist in the respective library Makefiles.
24944
24945 To solve this, we make sure that all libraries get built before the
24946 board code.
24947
24948 Signed-off-by: Wolfgang Denk <wd@denx.de>
24949
24950commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
24951Author: Stefan Roese <sr@denx.de>
24952Date: Wed Apr 30 14:51:36 2008 +0200
24953
24954 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
24955
24956 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
24957 used for NAND booting to match the values needed for the new 512MB
24958 DIMM modules shipped with the productions boards:
24959
24960 Crucial: CT6464AC667.8FB
24961
24962 Signed-off-by: Stefan Roese <sr@denx.de>
24963
24964commit ea9202a659dc75996facf1475f1866a19a9d3129
24965Author: Stefan Roese <sr@denx.de>
24966Date: Wed Apr 30 10:49:43 2008 +0200
24967
24968 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
24969
24970 This patch fixes a problem with DIMMs that have 8 banks. Now the
24971 MCIF0_MBxCF register will be setup correctly for this setup too.
24972
24973 This was noticed with the 512MB DIMM on Canyonlands/Glacier.
24974
24975 Signed-off-by: Stefan Roese <sr@denx.de>
24976
24977commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
24978Author: Wolfgang Denk <wd@denx.de>
24979Date: Tue Apr 29 23:41:06 2008 +0200
24980
24981 Prepare v1.3.3-rc2, again.
24982
24983 Signed-off-by: Wolfgang Denk <wd@denx.de>
24984
76617299
WD
24985commit b7fcc4c13993782342cf5cd20d237a6281648a0b
24986Author: Wolfgang Denk <wd@denx.de>
24987Date: Tue Apr 29 23:35:24 2008 +0200
24988
24989 Prepare v1.3.3-rc2
24990
24991 Signed-off-by: Wolfgang Denk <wd@denx.de>
24992
b7fcc4c1
WD
24993commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
24994Author: Wolfgang Denk <wd@denx.de>
24995Date: Tue Apr 29 23:32:20 2008 +0200
24996
24997 common/env_nand.c: fix one more incompatible pointer type issue
24998
24999 Signed-off-by: Wolfgang Denk <wd@denx.de>
25000
25001commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
25002Author: Wolfgang Denk <wd@denx.de>
25003Date: Tue Apr 29 21:33:08 2008 +0200
25004
25005 post/board/lwmon5/sysmon.c: fix manual merge error.
25006
25007 Signed-off-by: Wolfgang Denk <wd@denx.de>
25008
25009commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
25010Author: Kumar Gala <galak@kernel.crashing.org>
25011Date: Tue Apr 29 12:54:59 2008 -0500
25012
25013 85xx: Add -mno-spe to e500/85xx builds
25014
25015 Newer gcc's might be configured to enable autovectorization by default.
25016 If we happen to build with one of those compilers we will get SPE
25017 instructions in random code.
25018
25019 -mno-spe disables the compiler for automatically generating SPE
25020 instructions without our knowledge.
25021
25022 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25023
25024commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
25025Author: Kumar Gala <galak@kernel.crashing.org>
25026Date: Tue Apr 29 10:18:34 2008 -0500
25027
25028 Update .gitignore for zlib.h
25029
25030 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25031
25032commit 45239cf4152109caa925145ccd433529902df887
25033Author: Kumar Gala <galak@kernel.crashing.org>
25034Date: Tue Apr 29 10:27:08 2008 -0500
25035
25036 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
25037
25038 All the 85xx and 86xx UM describe the register as timing_cfg_3
25039 not as ext_refrec.
25040
25041 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25042
25043commit ef7d30b14394e4c4a153118f5845760cadada02a
25044Author: Kumar Gala <galak@kernel.crashing.org>
25045Date: Tue Apr 29 10:28:34 2008 -0500
25046
25047 85xx/86xx: Rename DDR init address and init extended address register
25048
25049 Rename init_addr and init_ext_addr to match the docs between
25050 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'.
25051
25052 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25053
25054commit cf6cc014270549684873a5972d2595052c468cb6
25055Author: Kumar Gala <galak@kernel.crashing.org>
25056Date: Mon Apr 28 02:24:04 2008 -0500
25057
25058 85xx: Additional fixes and cleanup of MP code
25059
25060 * adjust __spin_table alignment to match ePAPR v0.94 spec
25061 * loop over all cpus when determing who is up. This fixes an issue if
25062 the "boot cpu" isn't core0. The "boot cpu" will already be in the
25063 cpu_up_mask so there is no harm
25064 * Added some protection in the code to ensure proper behavior. These
25065 changes are explicitly needed but don't hurt:
25066 - Added eieio to ensure the "hot word" of the table is written after
25067 all other table updates have occurred.
25068 - Added isync to ensure we don't prefetch loading of table entries
25069 until we a released
25070
25071 These issues we raised by Dave Liu.
25072
25073 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25074
25075commit b2d527a8b9fb50afccbaf79b5540952585cdc760
25076Author: Yuri Tikhonov <yur@emcraft.com>
25077Date: Tue Apr 29 15:06:41 2008 +0200
25078
25079 lwmon5: minor clean-up to include/configs/lwmon5.h
25080
25081 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
25082 the CFG_DSPIC_TEST_ADDR definition more readable.
25083
25084 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25085
25086commit f4c4d21a885ccc222fd0acdf653b683249e85117
25087Author: Stefan Roese <sr@denx.de>
25088Date: Tue Apr 29 16:08:05 2008 +0200
25089
25090 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
25091
25092 Signed-off-by: Stefan Roese <sr@denx.de>
25093
25094commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
25095Author: Yuri Tikhonov <yur@emcraft.com>
25096Date: Tue Apr 29 13:32:45 2008 +0200
25097
25098 ppc flush_cache: add watch-dog triggering into the loops.
25099
25100 Some boards (e.g. lwmon5) need rather a frequent watch-dog
25101 kicking. Since the time it takes for the flush_cache() function
25102 to complete its job depends on the size of data being flushed, one
25103 may encounter watch-dog resets on such boards when, for example,
25104 download big files over ethernet.
25105
25106 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25107
25108commit cab99d6f3281ab6784feccf98b9b425daa58418a
25109Author: Stefan Roese <sr@denx.de>
25110Date: Tue Apr 29 14:44:54 2008 +0200
25111
25112 ppc4xx: Fix compilation warning in denali_spd_ddr2.c
25113
25114 Signed-off-by: Stefan Roese <sr@denx.de>
25115
25116commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
25117Author: Stefan Roese <sr@denx.de>
25118Date: Tue Apr 29 14:12:07 2008 +0200
25119
25120 ppc4xx: Fix Katmai CFG_MONITOR_LEN
25121
25122 Signed-off-by: Stefan Roese <sr@denx.de>
25123
25124commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
25125Author: Stefan Roese <sr@denx.de>
25126Date: Tue Apr 29 13:57:07 2008 +0200
25127
25128 ppc4xx: Complete remove bogus dflush()
25129
25130 Since the current dflush() implementation is know to have some problems
25131 (as seem on lwmon5 ECC init) this patch removes it completely and replaces
25132 it by using clean_dcache_range().
25133
25134 Tested on Katmai with ECC DIMM.
25135
25136 Signed-off-by: Stefan Roese <sr@denx.de>
25137
25138commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
25139Author: Stefan Roese <sr@denx.de>
25140Date: Tue Apr 29 13:36:51 2008 +0200
25141
25142 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
25143
25144 As it seems the "old" ECC initialization routine by using dflush() didn't
25145 write all lines in the dcache back to memory on lwmon5. This could lead
25146 to ECC error upon Linux booting. This patch changes the program_ecc()
25147 routine to now use clean_dcache_range() instead of dflush().
25148 clean_dcache_range() uses dcbst which is exactly what we want in this
25149 case.
25150
25151 Since dflush() is known is cause problems, this routine will be
25152 removed completely and replaced by clean_dcache_range() with an
25153 additional patch.
25154
25155 Signed-off-by: Stefan Roese <sr@denx.de>
25156
25157commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
25158Author: Yuri Tikhonov <yur@emcraft.com>
25159Date: Mon Apr 28 18:19:34 2008 +0200
25160
25161 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
25162
25163 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25164
25165commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
25166Author: Markus Brunner <super.firetwister@googlemail.com>
25167Date: Mon Apr 28 08:47:47 2008 +0200
25168
25169 ppc4xx: Fixup ebc clock in FDT for 405GP/EP
25170
25171 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
25172 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
25173 doesn't exist.
25174
25175 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
25176
76617299
WD
25177commit 2ef7503a593c77a80c2a054011970227c4b62774
25178Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25179Date: Thu Apr 24 07:57:17 2008 +0200
25180
25181 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
25182
25183 Move non-inlied functions into specific drivers file
25184 Set get_prom as weak
25185
25186 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25187 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
25188 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25189
25190commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
25191Author: Guennadi Liakhovetski <lg@denx.de>
25192Date: Thu Apr 3 17:04:19 2008 +0200
25193
25194 net: make ARP timeout configurable
25195
25196 Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
25197 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
25198 to the boards get lost, which typically are ARP replies. By configuring
25199 the timeout to a lower value we significantly improve the first network
25200 transfer time on this board. The timeout is specified in milliseconds,
25201 later internally it is converted to deciseconds, because it has to be
25202 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
25203 different boards.
25204
25205 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25206 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25207
25208commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
25209Author: Guennadi Liakhovetski <lg@denx.de>
25210Date: Thu Apr 3 13:36:18 2008 +0200
25211
25212 minor cs8900 driver clean up
25213
25214 Remove a redundant register definition, clean up some coding style
25215 violations.
25216
25217 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25218 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25219
b7fcc4c1
WD
25220commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
25221Author: Wolfgang Denk <wd@denx.de>
25222Date: Mon Apr 28 22:01:04 2008 +0200
25223
25224 jffs2_1pass.c: fix incompatible pointer type warning
25225
25226 Signed-off-by: Wolfgang Denk <wd@denx.de>
25227
25228commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
25229Author: Sascha Laue <Sascha.Laue@gmx.biz>
25230Date: Tue Apr 1 10:10:18 2008 +0200
25231
25232 lwmon5: update dsPIC POST spezification
25233
25234 The specification for the lwmon5 board dsPIC POST got changed.
25235 Also add defines for the temperatures and voltages.
25236
25237 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
25238
25239commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
25240Author: Sascha Laue <Sascha.Laue@gmx.biz>
25241Date: Tue Apr 1 15:13:03 2008 +0200
25242
25243 Fix watchdog POST for lwmon5
25244
25245 If the hardware watchdog detects a voltage error, the watchdog sets
25246 GPIO62 to low. The watchdog POST has to detect this low level.
25247
25248 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
25249 Signed-off-by: Wolfgang Denk <wd@denx.de>
25250
25251commit dd5748bcd669f46aeb6686c1b341323843738ccc
25252Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
25253Date: Mon Apr 28 14:37:14 2008 +0200
25254
25255 rtl8169: fix compiler warnings
25256
25257 Fix multiple compiler warnings related to argument type mismatch.
25258
25259 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
25260
25261commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
25262Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
25263Date: Mon Apr 28 14:36:06 2008 +0200
25264
25265 IDE: fix compiler warnings
25266
25267 The IDE driver can use 32-bit addresses in LBA mode, in which case it
25268 spits multiple warnings during compilation. Fix them.
25269
25270 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
25271
25272commit db9084de28c46ac81c8f681722cb0d7411be4d7f
25273Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
25274Date: Mon Apr 28 14:35:57 2008 +0200
25275
25276 LinkStation: fix compiler warning, add a maintainer
25277
25278 out_8 wants a pointer to an unsigned as the first argument. Add a
25279 maintainer for Linkstation boards.
25280
25281 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
25282
25283commit c71abba3cb67b063f789f17abf6c7447727c0cd5
25284Author: Wolfgang Denk <wd@denx.de>
25285Date: Mon Apr 28 14:55:12 2008 +0200
25286
25287 cmd_nand.c: fix "differ in signedness" problem
25288
25289 Signed-off-by: Wolfgang Denk <wd@denx.de>
25290
25291commit f2c288a35341ad02ac03b1563d786763c9c8f159
25292Author: Wolfgang Denk <wd@denx.de>
25293Date: Mon Apr 28 12:48:47 2008 +0200
25294
25295 pcnet.c: fix a merge issue
25296
25297 Signed-off-by: Wolfgang Denk <wd@denx.de>
25298
25299commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
25300Author: Wolfgang Denk <wd@denx.de>
25301Date: Mon Apr 28 12:08:18 2008 +0200
25302
25303 NAND: fix some strict-aliasing compiler warnings
25304
25305 Signed-off-by: Wolfgang Denk <wd@denx.de>
25306
25307commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
25308Author: Stefan Roese <sr@denx.de>
25309Date: Mon Apr 28 11:37:14 2008 +0200
25310
25311 ppc4xx: Fix compile warning of hcu4 board
25312
25313 Signed-off-by: Stefan Roese <sr@denx.de>
25314
25315commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
25316Author: Wolfgang Denk <wd@denx.de>
25317Date: Mon Apr 28 11:31:23 2008 +0200
25318
25319 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
25320
25321 Signed-off-by: Wolfgang Denk <wd@denx.de>
25322
25323commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
25324Author: Guennadi Liakhovetski <lg@denx.de>
25325Date: Mon Apr 28 00:25:32 2008 +0200
25326
25327 mx31ads: fix loadaddr environment variable define
25328
25329 Arithmetic expressions do not get evaluated under stringification. Remove
25330 default network configuration, add DHCP command support. Thanks to Felix
25331 Radensky for reporting.
25332
25333 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25334
25335commit 144eec777ac07bcb12bd38245a5a289f694a7f98
25336Author: Wolfgang Denk <wd@denx.de>
25337Date: Mon Apr 28 10:55:24 2008 +0200
25338
25339 katmai: fix section overlap problem
25340
25341 Since we didn't want to remove features from the configuration, we
25342 decided to increase the U-Boot image size (add one flash sector).
25343
25344 Also changed the default environment definition to make it
25345 independent of such changes.
25346
25347 Signed-off-by: Wolfgang Denk <wd@denx.de>
25348 Acked-by: Stefan Roese <sr@denx.de>
25349
25350commit 941d696d25624e3cc65ebf924199541acf52d74e
25351Author: Wolfgang Denk <wd@denx.de>
25352Date: Mon Apr 28 10:55:24 2008 +0200
25353
25354 katmai: fix section overlap problem
25355
25356 Since we didn't want to remove features from the configuration, we
25357 decided to increase the U-Boot image size (add one flash sector).
25358
25359 Also changed the default environment definition to make it
25360 independent of such changes.
25361
25362 Signed-off-by: Wolfgang Denk <wd@denx.de>
25363 Acked-by: Stefan Roese <sr@denx.de>
25364
25365commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
25366Author: Kumar Gala <galak@kernel.crashing.org>
25367Date: Sat Apr 26 11:44:44 2008 -0500
25368
25369 post: Fix building with O=
25370
25371 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25372
25373commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
25374Author: Wolfgang Denk <wd@denx.de>
25375Date: Sat Apr 26 01:55:00 2008 +0200
25376
25377 Prepare v1.3.3-rc1
25378
25379 Signed-off-by: Wolfgang Denk <wd@denx.de>
25380
fd7531c1
WD
25381commit 19cf2ec90d8ce52da60c1693693c4048cb810967
25382Author: Wolfgang Denk <wd@denx.de>
25383Date: Sat Apr 26 01:25:39 2008 +0200
25384
25385 post/Makefile: make sure to use the correct flags
25386
25387 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
25388 messages to be printed.
25389
25390 Signed-off-by: Wolfgang Denk <wd@denx.de>
25391
25392commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
25393Author: Wolfgang Denk <wd@denx.de>
25394Date: Sat Apr 26 00:34:42 2008 +0200
25395
25396 Coding Style cleanup, update CHANGELOG
25397
25398 Signed-off-by: Wolfgang Denk <wd@denx.de>
25399
7ed40117
WD
25400commit f9204e15173834ff8d123e36279ce49c3c6c74fc
25401Author: Magnus Lilja <lilja.magnus@gmail.com>
25402Date: Sun Apr 20 10:38:12 2008 +0200
25403
25404 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
25405
25406 This patch enables SPI and MC13783/RTC support for the Litekit board.
25407
25408 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
25409
25410commit f97abbfb47d9e407354e157cae3f6369e460cd37
25411Author: Ed Swarthout <Ed.Swarthout@freescale.com>
25412Date: Fri Apr 25 01:08:32 2008 -0500
25413
25414 MPC8544DS: decode pcie3 end-point configuration correctly.
25415
25416 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
25417 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25418
25419commit 292188e15523c165c4269403fdcd33c26d89176e
25420Author: Roy Zang <tie-fei.zang@freescale.com>
25421Date: Fri Apr 25 00:55:09 2008 -0500
25422
25423 MPC8544DS: Removes the unknown flash message information
25424
25425 This patch removes the unknown flash message information:
25426 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
25427 This unknown flash message is caused by PromJet.
25428 Some of the board user is unhappy with this information.
25429
25430 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
25431 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25432
25433commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
25434Author: Kim Phillips <kim.phillips@freescale.com>
25435Date: Thu Apr 24 14:07:38 2008 -0500
25436
25437 mpc83xx: bump loadaddr over fdtaddr to 0x500000
25438
25439 this seems as a good compromise between human memory, typing,
25440 and last but not least, to accommodate for current and future kernel bloat.
25441
25442 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25443 Acked-by: Dave Liu <daveliu@freescale.com>
25444
25445commit be5a7190265a34d968578ff266549c60f6f57654
25446Author: Dave Liu <r63238@freescale.com>
25447Date: Tue Apr 15 13:12:23 2008 +0800
25448
25449 mpc83xx: clean up the readme for 83xx boards
25450
25451 1. correct the typo
25452 2. correct the memory map for 837xerdb board
25453
25454 Signed-off-by: Dave Liu <daveliu@freescale.com>
25455
25456commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
25457Author: Dave Liu <r63238@freescale.com>
25458Date: Tue Apr 15 13:11:11 2008 +0800
25459
25460 mpc83xx: remove the unused CPM's stuff
25461
25462 The MPC83xx family never have CPM block, so remove it from 83xx.
25463
25464 Signed-off-by: Dave Liu <daveliu@freescale.com>
25465
25466commit c63ad6325a8ac0097a54b418a3288926b0484b18
25467Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25468Date: Fri Apr 18 16:29:40 2008 +0200
25469
25470 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
25471
25472 This patch adds a configurable flash auto protection list that can be used
25473 to make U-Boot protect flash regions in flash_init().
25474
25475 The idea has been discussed on the u-boot mailing list starting
25476 on Nov 18th, 2007.
25477
25478 Even this patch brings a new feature it is used as a bugfix for 4xx
25479 platforms where flash_init() does not completely protect the
25480 monitor's flash range in all situations.
25481
25482 U-Boot protects the flash range from CFG_MONITOR_BASE to
25483 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not
25484 include the reset vector at 0xfffffffc.
25485
25486 Example:
25487 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
25488
25489 This config option will auto protect the last 512k of flash that
25490 contains the bootloader on board like APC405 and PMC405.
25491
25492 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25493
25494commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
25495Author: Stefan Roese <sr@denx.de>
25496Date: Fri Apr 25 13:59:03 2008 +0200
25497
25498 ppc4xx: Remove double defines in lwmon5.h
25499
25500 introduced with latest lwmon5/POST merge
25501
25502 Signed-off-by: Stefan Roese <sr@denx.de>
25503
25504commit 7590378fb9c686709492ceb142825cd058255956
25505Author: Bartlomiej Sieka <tur@semihalf.com>
25506Date: Fri Apr 25 13:54:02 2008 +0200
25507
25508 Use watchdog-aware functions when calculating hashes of images - take two
25509
25510 Some files didn't get updated properly with the "Use watchdog-aware
25511 functions when calculating hashes of images" commit, this commit
25512 fixes this.
25513
25514 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25515 Signed-off-by: Wolfgang Denk <wd@denx.de>
25516
25517commit 8e048c438e20ec89b49da5f085f8f756eba6e587
25518Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25519Date: Fri Apr 25 12:01:39 2008 +0200
25520
25521 ppc4xx: Add bootcount limit handling for APC405 boards
25522
25523 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25524
25525commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
25526Author: Bartlomiej Sieka <tur@semihalf.com>
25527Date: Fri Apr 25 12:10:09 2008 +0200
25528
25529 Use watchdog-aware functions when calculating hashes of images
25530
25531 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25532
25533commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
25534Author: Wolfgang Denk <wd@denx.de>
25535Date: Fri Apr 25 12:44:08 2008 +0200
25536
25537 USB: fix more GCC 4.2.x aliasing warnings
25538
25539 Signed-off-by: Wolfgang Denk <wd@denx.de>
25540 Acked-by: Markus Klotzbuecher <mk@denx.de>
25541
25542commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
25543Author: Wolfgang Denk <wd@denx.de>
25544Date: Fri Apr 25 12:41:53 2008 +0200
25545
25546 lib_generic/crc32.c: add missing #include <watchdog.h>
25547
25548 Signed-off-by: Wolfgang Denk <wd@denx.de>
25549
25550commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
25551Author: Wolfgang Denk <wd@denx.de>
25552Date: Fri Apr 25 11:52:21 2008 +0200
25553
25554 lib_generic/crc32.c: fix compile problem
25555
25556 Signed-off-by: Wolfgang Denk <wd@denx.de>
25557
25558commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
25559Author: Stefan Roese <sr@denx.de>
25560Date: Tue Apr 22 12:20:32 2008 +0200
25561
25562 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
25563
25564 The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
25565 environment variable will now get passed to the Linux kernel by setting
25566 the device_type property of the PCIe device tree node. For normal root-
25567 complex configuration it will keep its defaults value of "pci" and for
25568 endpoint configuration it will get changed to "pci-endpoint".
25569
25570 Signed-off-by: Stefan Roese <sr@denx.de>
25571
25572commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
25573Author: Yuri Tikhonov <yur@emcraft.com>
25574Date: Thu Apr 24 10:30:53 2008 +0200
25575
25576 lwmon5: watchdog POST fix
25577
25578 Use the GPT0_MASKx registers as the temporary storage for watch-dog
25579 timer POST test instead of GPT0_COMPx. The latter
25580 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
25581
25582 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
25583 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25584
25585commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
25586Author: Kim Phillips <kim.phillips@freescale.com>
25587Date: Mon Apr 21 18:10:14 2008 -0500
25588
25589 lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
25590
25591 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
25592 proven problematic getting right from the start at least on 83xx and
25593 4xx.
25594
25595 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25596
25597commit a99715b8ebfc500f3f40e01b36b64d473938443d
25598Author: Detlev Zundel <dzu@denx.de>
25599Date: Fri Apr 18 14:50:01 2008 +0200
25600
25601 Realining some header definitions.
25602
25603 Signed-off-by: Detlev Zundel <dzu@denx.de>
25604
25605commit 4acbc6c7f993cae409c424615415a3e76820f13d
25606Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25607Date: Thu Apr 24 07:57:16 2008 +0200
25608
25609 NE2000: coding style cleanup
25610
25611 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25612
25613commit b4aff1ffaf7120032c653357c007faa14f74d29d
25614Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25615Date: Wed Apr 23 00:11:47 2008 +0900
25616
25617 qemu-mips.h: Add CFI support
25618
25619 CONFIG_ENV_OVERWRITE is also added.
25620
25621 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
25622
25623 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25624 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25625
25626commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
25627Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25628Date: Tue Apr 22 22:47:27 2008 +0900
25629
25630 doc/README.mips: Add MIPS notes
25631
25632 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25633
25634commit 215b01bba8bc662d35f72b084700b192d367dfb4
25635Author: Bartlomiej Sieka <tur@semihalf.com>
25636Date: Tue Apr 22 12:27:56 2008 +0200
25637
25638 Add support for calculating hashes with watchdog triggering
25639
25640 Implement watchodg-aware variants of hash calculation functions:
25641 - crc32_wd()
25642 - md5_wd()
25643 - sha1_csum_wd()
25644 The above functions calculate the hash of the input buffer in chunks,
25645 triggering the watchdog after processing each chunk. The chunk size
25646 is given as a function call parameter.
25647
25648 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25649
25650commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
25651Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
25652Date: Wed Apr 23 11:02:12 2008 +0900
25653
25654 qemu-mips: Cleanup whitespace, indentation, etc.
25655
25656 No functional change.
25657
25658 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
25659 Then I re-created from scratch, and changed more lines than the original.
25660
25661 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25662 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
25663
25664commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
25665Author: Vlad Lungu <vlad@comsys.ro>
25666Date: Wed Oct 10 23:02:09 2007 +0300
25667
25668 Fixed pcnet io_base
25669
25670 Bus and phys address are not always the same
25671
25672 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
25673
25674commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
25675Author: Wolfgang Denk <wd@denx.de>
25676Date: Thu Apr 24 23:44:26 2008 +0200
25677
25678 drivers/net/pcnet.c: Coding Style cleanup.
25679
25680 Signed-off-by: Wolfgang Denk <wd@denx.de>
25681
25682commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
25683Author: Vlad Lungu <vlad@comsys.ro>
25684Date: Wed Oct 10 23:04:23 2007 +0300
25685
25686 Added Am79C970A chip id to pcnet
25687
25688 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
25689
25690commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
25691Author: Magnus Lilja <lilja.magnus@gmail.com>
25692Date: Sun Apr 20 10:35:03 2008 +0200
25693
25694 i.MX31: Fix architecture numbers for ADS and Litekit boards
25695
25696 Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
25697
25698 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
25699
25700commit e7ae84d6c7288790e88639f57cb60daf89c11369
25701Author: Magnus Lilja <lilja.magnus@gmail.com>
25702Date: Sun Apr 20 10:36:36 2008 +0200
25703
25704 i.MX31: Use symbolic names for Litekit membases.
25705
25706 Use symbolic names instead of hard coded addresses for Litekit membases.
25707
25708 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
25709
25710commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
25711Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25712Date: Sat Apr 19 17:59:20 2008 +0200
25713
25714 Fix show_boot_progress prototype
25715
25716 in commit fad634071 "make show_boot_progress () weak."
25717 show_boot_progress is supposed to be declared as weak but declared as
25718 inline instead.
25719
25720 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25721
25722commit edbed247a14d70b94958010f736621212285de91
25723Author: Bartlomiej Sieka <tur@semihalf.com>
25724Date: Fri Apr 18 12:39:23 2008 +0200
25725
25726 Memory footprint optimizations
25727
25728 As suggested by Wolfgang Denk:
25729 - image printing functions:
25730 - remove wrappers
25731 - remove indentation prefix from functions' signatures
25732 - merge getenv_verify and getenv_autostart into one parametrized function
25733
25734 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
25735
25736commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
25737Author: Guennadi Liakhovetski <lg@denx.de>
25738Date: Tue Apr 15 13:33:11 2008 +0200
25739
25740 MX31ADS environment variable update, spi and rtc support
25741
25742 Update MX31ADS default environment to better match the flash layout and
25743 the memory map, support SPI and RTC.
25744
25745 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
25746
25747commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
25748Author: Kumar Gala <galak@kernel.crashing.org>
25749Date: Mon Apr 21 09:28:36 2008 -0500
25750
25751 85xx: Round up frequency calculations to get reasonable output
25752
25753 eg. because of rounding error we can get 799Mhz instead of 800Mhz.
25754
25755 Introduced DIV_ROUND_UP and roundup taken from linux kernel.
25756
25757 Signed-off-by: Dejan Minic <minic@freescale.com>
25758 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
25759 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25760 Acked-by: Andy Fleming <afleming@freescale.com>
25761
25762commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
25763Author: Kumar Gala <galak@kernel.crashing.org>
25764Date: Wed Apr 23 16:58:04 2008 -0500
25765
25766 fsl_pci: Only modify registers if we have them
25767
25768 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
25769
25770 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25771
25772commit 83fe32334337def160b302aa9d152d808bfcc68e
25773Author: Markus Klotzbücher <mk@denx.de>
25774Date: Wed Apr 23 10:57:33 2008 +0200
25775
25776 USB: remove a cpu bug workaround for an unsupported architecture.
25777
25778 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25779
25780commit f957576cb53e6cfab412709cfc8db1afd39d21c3
25781Author: Markus Klotzbücher <mk@denx.de>
25782Date: Wed Apr 23 10:53:23 2008 +0200
25783
25784 USB: fix those pesky aliasing warnings issued by gcc-4.2
25785
25786 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
25787 Signed-off-by: Detlev Zundel <dzu@denx.de>
25788
25789commit 89cdab788f3716b335fefb60b836ebcf975aceab
25790Author: Mike Frysinger <vapier@gentoo.org>
25791Date: Mon Mar 31 11:02:01 2008 -0400
25792
25793 crc32: use uint32_t rather than unsigned long
25794
25795 The envcrc.c does sizeof(unsigned long) when calculating the crc, but
25796 this is done with the build toolchain instead of the target tool
25797 chain, so if the build is a 64bit system but the target is 32bits,
25798 the size will obviously be wrong. This converts all unsigned long
25799 stuff related to crc32 to uint32_t types. Compile tested only: output
25800 of ./tools/envcrc when run on a 32bit build system matches that of a
25801 64bit build system.
25802
25803 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
25804 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25805
25806commit 80c40b765b3642ddb9f3392b7898715aab44a29c
25807Author: Dirk Behme <dirk.behme@googlemail.com>
25808Date: Wed Mar 26 09:53:29 2008 +0100
25809
25810 ARM: Davinci: Fix DM644x timer overflow handling and cleanup
25811
25812 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
25813
25814 Changes:
25815
25816 - Remove *_masked() functions as noted by Wolfgang
25817
25818 - Adapt register naming to recent TI spec (sprue26, March 2007)
25819
25820 - Fix reset_timer() handling
25821
25822 - 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.
25823
25824 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
25825
25826 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
25827
25828 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
25829
25830 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
25831
25832 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
25833 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
25834
25835commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
25836Author: Sergei Poselenov <sposelenov@emcraft.com>
25837Date: Wed Apr 9 16:09:41 2008 +0200
25838
25839 Added watchdog triggering calls in the "mtest" test function.
25840
25841 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
25842
25843commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
25844Author: Yuri Tikhonov <yur@emcraft.com>
25845Date: Sun Apr 6 19:19:14 2008 +0200
25846
25847 lwmon5 watchdog: limit trigger rate
25848
25849 Limit the rate of h/w watch-dog triggering on the LWMON5 board by
25850 the CONFIG_WD_MAX_RATE value.
25851
25852 Note that an earlier version of this patch which used microseconds
25853 instead of ticks dis not work. The problem was that we used
25854 usec2ticks() to convert microseconds into ticks. usec2ticks() uses
25855 get_tbclk(), which in turn calls get_sys_info(). It turns out that
25856 this function does a lot of prolonged operations (like divisions)
25857 which take too much time so we do not trigger the watchdog in time,
25858 and it resets the system.
25859
25860 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25861
25862commit 2d2b994a30bb100774dc747ae9865b7f95285a88
25863Author: Yuri Tikhonov <yur@emcraft.com>
25864Date: Mon Mar 31 10:51:37 2008 +0200
25865
25866 POST: move CONFIG_POST to Makefiles
25867
25868 Introduce the new logical option CONFIG_HAS_POST which is set when the
25869 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
25870 to determine should the POST libs be compiled for the selected target
25871 platform, or not.
25872
25873 To avoid breaking u-boot linking process, the empty post/libpost.a file is
25874 created for platforms which do not have POSTs.
25875
25876 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25877 Signed-off-by: Wolfgang Denk <wd@denx.de>
25878
25879commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
25880Author: Yuri Tikhonov <yur@emcraft.com>
25881Date: Mon Mar 31 10:49:34 2008 +0200
25882
25883 POST: preparations for moving CONFIG_POST to Makefiles
25884
25885 Remove CONFIG_POST ifdefs from the post/ source files.
25886
25887 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
25888 Signed-off-by: Wolfgang Denk <wd@denx.de>
25889
25890commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
25891Author: Stefan Roese <sr@denx.de>
25892Date: Tue Apr 22 14:14:20 2008 +0200
25893
25894 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
25895
25896 This patch fixes the Canyonlands and Glacier default environment to better
25897 fit to the arch/powerpc device-tree kernels. The variables dealing with
25898 arch/ppc booting are removed, since these boards are supported only in
25899 arch/powerpc. Glacier uses the same config file as Canyonlands.
25900
25901 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
25902
25903 Signed-off-by: Stefan Roese <sr@denx.de>
25904
25905commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
25906Author: Stefan Roese <sr@denx.de>
25907Date: Tue Apr 22 14:06:42 2008 +0200
25908
25909 ppc4xx: Small coding style cleanup for the latest esd patches
25910
25911 Signed-off-by: Stefan Roese <sr@denx.de>
25912
25913commit 79941d63bc03aed8c48d7602f18217cc200ee931
25914Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25915Date: Mon Apr 21 18:01:07 2008 +0200
25916
25917 ppc4xx: Update CPU strapping for PMC440 boards
25918
25919 This patch removes the temporary 'test' strapping option
25920 of the sbe command. The '667' strapping option now uses
25921 a PLB/PCI divider of 3.
25922
25923 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25924
25925commit f00cf3193a6635355b121e90debb2f54e777e7da
25926Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25927Date: Mon Apr 21 14:42:21 2008 +0200
25928
25929 ppc4xx: Remove unused APC405 strataflash driver
25930
25931 The APC405 board support has been migrated to use the common
25932 CFI flash driver.
25933
25934 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25935
25936commit 1c686676a86473bbd92151f0544e109413f6ed06
25937Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25938Date: Mon Apr 21 14:42:17 2008 +0200
25939
25940 ppc4xx: Update APC405 configuration
25941
25942 - enable esd's auto_update mechanism
25943 - support alternative flash layout on rev. 1.8 boards
25944 - update default environment
25945 - use common CFI flash driver
25946 - coding style cleanup
25947
25948 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25949
25950commit 0b9872515a521bf7866dc24b85ddce708e60d702
25951Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25952Date: Mon Apr 21 14:42:11 2008 +0200
25953
25954 ppc4xx: Update APC405 board support
25955
25956 - enable esd's auto_update mechanism
25957 - fix LCD support on latest hardware revision (uses other LCD controller)
25958 - support alternative flash layout on rev. 1.8 boards
25959 - coding style cleanup
25960
25961 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25962
25963commit 83975d02e225e231960784972e7820a8b303756b
25964Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25965Date: Mon Apr 21 14:42:06 2008 +0200
25966
25967 ppc4xx: update esd's common auto_update code for 405 boards
25968
25969 - Coding style cleanup (long lines)
25970 - improve handling of protected flash regions
25971 - remove dead code
25972
25973 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25974
25975commit b9233fe5d59cb25d975071616bd1035d6f4c2285
25976Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25977Date: Mon Apr 21 14:41:59 2008 +0200
25978
25979 ppc4xx: Update esd's common LCD code for 405 boards
25980
25981 - Coding style cleanup (long lines)
25982 - Add s1d13505 support
25983 - Make some functions return a result code instead of void
25984
25985 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25986
25987commit dea68189424c3f1242427a8146a3861bf093173c
25988Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25989Date: Mon Apr 21 11:36:55 2008 +0200
25990
25991 ppc4xx: Update FPGA image for APC405 boards
25992
25993 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25994
25995commit 2a05b152924acfcec3b037693329e517e6d3578f
25996Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25997Date: Mon Apr 21 11:36:08 2008 +0200
25998
25999 ppc4xx: Update bootlogo for APC405 boards
26000
26001 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26002
26003commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
26004Author: Stefan Roese <sr@denx.de>
26005Date: Fri Apr 18 16:41:31 2008 +0200
26006
26007 ppc4xx: Add dcache_enable() for 440
26008
26009 dcache_enable() was missing for 440 and the patch
26010 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
26011 "] behavior uses this function.
26012
26013 Note: Currently the cache handling functions like
26014 d/icache_disable/enable() are NOP's on 440. This may be changed in the
26015 future.
26016
26017 Signed-off-by: Stefan Roese <sr@denx.de>
26018
26019commit a49e0d177a0749614b316ec847fb623f09c82c07
26020Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26021Date: Mon Apr 21 11:19:04 2008 +0200
26022
26023 video: Add missing free for logo memory
26024
26025 This patch adds two missing free()s.
26026
26027 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26028
26029commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
26030Author: Troy Kisky <troy.kisky@boundarydevices.com>
26031Date: Mon Sep 24 16:41:43 2007 -0700
26032
26033 PATCH - Fix oob data copied into supplied buffer
26034
26035 This patch correctly sets the oobavail variable
26036 and fixes a bug where the oob data was not valid when
26037 there where multiple groups in oobfree.
26038
26039 First segment fixes a typo
26040 Second segment fixes a bug where oob data may be copied incorrectly.
26041 Third segment adds an error message when exiting due to write protect.
26042 Forth segment fixes a bug where oobavail may be set incorrectly.
26043
26044 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
26045
26046commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
26047Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26048Date: Fri Apr 18 17:24:32 2008 +0200
26049
26050 ppc4xx: Fix sys_get_info() for 405GP(r)
26051
26052 This patch assigns the correct EBC clock for 405GP(r) CPUs
26053 to PPC4xx_SYS_INFO structure. Without this patch U-Boot
26054 uses an uninitialized EBC clock in its startup message.
26055
26056 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26057
26058commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
26059Author: Wolfgang Denk <wd@denx.de>
26060Date: Sun Apr 20 15:39:38 2008 -0700
26061
26062 Makefile: remove nand_spl/System.map when cleaning up.
26063
26064commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
26065Author: Wolfgang Denk <wd@denx.de>
26066Date: Sun Apr 20 15:35:52 2008 -0700
26067
26068 MAKEALL: sort entries / lists.
26069
26070 Signed-off-by: Wolfgang Denk <wd@denx.de>
26071
26072commit 0878af169b181868a105b5c33f3a6423e2c9fd60
26073Author: Kumar Gala <galak@kernel.crashing.org>
26074Date: Fri Apr 18 11:29:01 2008 -0500
26075
26076 85xx: Fix size of cpu-release-addr property
26077
26078 The cpu-release-addr is defined as always being a 64-bit quanity regardless
26079 if we are running on a 32-bit or 64-bit machine.
26080
26081commit 88353a985109562a639b2f8a0c90d77011bfe374
26082Author: Timur Tabi <timur@freescale.com>
26083Date: Fri Apr 4 11:15:58 2008 -0500
26084
26085 Fix calculation of I2C clock for some 85xx chips
26086
26087 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and
26088 some use CCB/3. There is no pattern that can be used to determine which
26089 chips use which frequency, so the only way to determine is to look up the
26090 actual SOC designation and use the right value for that SOC.
26091
26092 Update immap_85xx.h to include the GUTS PORDEVSR2 register.
26093
26094 Signed-off-by: Timur Tabi <timur@freescale.com>
26095
26096commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
26097Author: Wolfgang Denk <wd@denx.de>
26098Date: Fri Apr 18 11:44:27 2008 -0700
26099
26100 Fix build breakage casued by commit c0559be371b2
26101
26102 Change env_get_char from a global function ptr to a function.
26103
26104 Signed-off-by: Wolfgang Denk <wd@denx.de>
26105
26106commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
26107Author: Wolfgang Denk <wd@denx.de>
26108Date: Fri Apr 18 10:53:41 2008 -0700
26109
26110 Coding Style cleanup, update CHANGELOG.
26111
26112 Signed-off-by: Wolfgang Denk <wd@denx.de>
26113
268a804d
WD
26114commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
26115Author: Mike Frysinger <vapier@gentoo.org>
26116Date: Tue Apr 8 14:00:57 2008 -0400
26117
26118 Add support for u-boot in svn and localversion-* files
26119
26120 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26121
26122commit d23ff6827decf121461fbc5622612fd7effe207e
26123Author: Guennadi Liakhovetski <lg@denx.de>
26124Date: Thu Apr 3 17:04:22 2008 +0200
26125
26126 MX31ADS network and flash updates
26127
26128 This patch allows U-Boot to use buffered writes to the Spansion NOR
26129 flash installed on this board, and eliminates long delays in network
26130 transfers after the board startup.
26131
26132 Also modify flash layout to embed main and redundant environment
26133 blocks in the U-Boot image.
26134
26135 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26136
26137commit b5dc9b304d289831f291843ff88a45cbdf1a6290
26138Author: Guennadi Liakhovetski <lg@denx.de>
26139Date: Mon Apr 14 10:53:12 2008 +0200
26140
26141 Support for the MX31ADS evaluation board from Freescale
26142
26143 This patch adds support for the MX31ADS evaluation board from Freescale,
26144 initialization code is copied from RedBoot sources, also provided by
26145 Freescale.
26146
26147 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26148
7ed40117
WD
26149commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
26150Author: Stefan Roese <sr@denx.de>
26151Date: Tue Apr 8 10:33:29 2008 +0200
26152
26153 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
26154
26155 Signed-off-by: Stefan Roese <sr@denx.de>
26156
26157commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
26158Author: Stefan Roese <sr@denx.de>
26159Date: Tue Apr 8 10:33:28 2008 +0200
26160
26161 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
26162
26163 Signed-off-by: Stefan Roese <sr@denx.de>
26164
26165commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
26166Author: Stefan Roese <sr@denx.de>
26167Date: Tue Apr 8 10:33:27 2008 +0200
26168
26169 ppc4xx: Add Glacier NAND booting target
26170
26171 Signed-off-by: Stefan Roese <sr@denx.de>
26172
26173commit 46f373838e384a4c23d13581b1dfa5acb66b5810
26174Author: Stefan Roese <sr@denx.de>
26175Date: Tue Apr 8 10:31:00 2008 +0200
26176
26177 nand_spl: Update nand_spl to support 2k page size NAND devices
26178
26179 This patch adds support for booting from 2k page sized NAND device
26180 (e.g. Micron 29F2G08AAC).
26181
26182 Tested on AMCC Canyonlands.
26183
26184 Signed-off-by: Stefan Roese <sr@denx.de>
26185
268a804d
WD
26186commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
26187Author: Anatolij Gustschin <agust@denx.de>
26188Date: Thu Apr 17 18:18:00 2008 +0200
26189
26190 Fix crash on sequoia in ppc_4xx_eth_init
26191
26192 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
26193 with cache enabled (TLB Parity exeption). This patch
26194 fixes the problem.
26195
26196 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26197
26198commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
26199Author: Anatolij Gustschin <agust@denx.de>
26200Date: Thu Apr 17 18:15:27 2008 +0200
26201
26202 ppc4xx: Fix crash on sequoia with cache enabled
26203
26204 Currently U-Boot crashes on sequoia board in CPU POST if
26205 cache is enabled (CONFIG_4xx_DCACHE defined). The cache
26206 won't be disabled by change_tlb before CPU POST because
26207 there is an insufficient adress range check since
26208 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
26209 this problem.
26210
26211 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26212
26213commit 43c509254fab375c49936498da944658117ed07c
26214Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26215Date: Thu Apr 17 23:35:13 2008 +0900
26216
26217 Use jr as register jump instruction
26218
26219 Current assembler codes are inconsistent in the way of register jump
26220 instruction usage; some use jr, some use j. Of course GNU as allows both
26221 usages, but as can be expected from `Jump Register' the mnemonic `jr' is
26222 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
26223 at all.
26224
26225 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
26226
26227commit 7ce63709828d37b08866e537339a169bd0db2bd3
26228Author: Guennadi Liakhovetski <lg@denx.de>
26229Date: Tue Apr 15 14:15:30 2008 +0200
26230
26231 RTC driver for MC13783
26232
26233 MC13783 is a multifunction IS with an SPI interface to the host. This
26234 driver handles the RTC controller in this chip.
26235
26236 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26237
26238commit 38254f45b0b412332726c90d3184ad47479fcffb
26239Author: Guennadi Liakhovetski <lg@denx.de>
26240Date: Tue Apr 15 14:14:25 2008 +0200
26241
26242 New i.MX31 SPI driver
26243
26244 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
26245 only implemented and tested on i.MX31, can with a modified register layout
26246 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
26247 controllers too.
26248
26249 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26250
26251commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
26252Author: Magnus Lilja <lilja.magnus@gmail.com>
26253Date: Tue Apr 15 19:09:10 2008 +0200
26254
26255 Fix name of i.MX31 boards in config file header
26256
26257 Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
26258
26259 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
26260
26261commit a49864593e083a5d0779fb9ca98e5a0f2053183d
26262Author: Mike Frysinger <vapier@gentoo.org>
26263Date: Sun Apr 13 19:42:19 2008 -0400
26264
26265 allow ports to override go behavior
26266
26267 Split the arch-specific logic out of the common go code and into a dedicated
26268 weak function called do_go_exec() that lives in cpu directories. This will
26269 need review from i386/nios people to make sure I didn't break them.
26270
26271commit 017e9b7925f74878d0e9475388cca9bda5ef9482
26272Author: Mike Frysinger <vapier@gentoo.org>
26273Date: Sun Apr 13 19:42:18 2008 -0400
26274
26275 allow ports to override bootelf behavior
26276
26277 Change the bootelf setup function into a dedicated weak function called
26278 do_bootelf_exec. This way ports can control the behavior however they
26279 like before/after calling the ELF entry point.
26280
26281commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
26282Author: Ulf Samuelsson <ulf@atmel.com>
26283Date: Sat Apr 12 20:56:03 2008 +0200
26284
26285 Reorder ARM boards in Makefile
26286
26287 Rearrange ARM boards in Makefile so that ARM926EJ-S boards
26288 are no longer under ARM92xT header.
26289
26290 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
26291 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26292
26293commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
26294Author: Ulf Samuelsson <ulf@atmel.com>
26295Date: Sat Apr 12 20:29:44 2008 +0200
26296
26297 Clean up dataflash partitioning
26298
26299 This patch removes the board dependent parts from
26300 "drivers/mtd/dataflash.c".
26301 Each board relying on this, will have the appropriate
26302 code in a new file, "partition.c" in the board directory.
26303 board Makefiles updated to use the file.
26304
26305 The dataflash partitions are aligned on sector/page boundaries.
26306
26307 The CONFIG_NEW_DF_PARTITION was used to create named partitions
26308 This is now the default operation, and the CONFIG variable is removed.
26309
26310 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
26311
26312commit 51ecde946fec511a16346e498204ca10ad71080d
26313Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26314Date: Sat Apr 12 14:08:45 2008 +0200
26315
26316 gitignore: udpate stgit generated and .patch file
26317
26318 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26319
26320commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
26321Author: Wolfgang Denk <wd@denx.de>
26322Date: Fri Apr 18 00:15:36 2008 -0700
26323
26324 Get rid of redundant copy of renamed header file.
26325
26326 Signed-off-by: Wolfgang Denk <wd@denx.de>
26327
26328commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
26329Author: Vlad Lungu <vlad@comsys.ro>
26330Date: Fri Apr 11 21:20:14 2008 +0300
26331
26332 Fix dependency generation for older gcc versions
26333
26334 With gcc 3.3.3 at least, compilation fails with
26335
26336 Generating include/autoconf.mk
26337 gcc: compilation of header file requested
26338 make: *** [include/autoconf.mk] Error 1
26339
26340 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
26341
26342 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
26343
26344commit cb1c4896905ab22fcd982e6a8a539f0031942e71
26345Author: Marian Balakowicz <m8@semihalf.com>
26346Date: Fri Apr 11 11:07:49 2008 +0200
26347
26348 Restore the ability to continue booting after legacy image overwrite
26349
26350 Before new uImage code was merged, bootm code allowed for the kernel image to
26351 get overwritten during decompresion. new uImage introduced a check for image
26352 overwrites and refused to boot the image that got overwritten. This patch
26353 restores the old behavior. It also adds a warning when the image overwriten is
26354 a multi-image file, because in such case accessing componentes other than the
26355 first one will fail.
26356
26357 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26358
26359commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
26360Author: Marian Balakowicz <m8@semihalf.com>
26361Date: Fri Apr 11 11:07:43 2008 +0200
26362
26363 ppc: Fix ftd_blob variable init when processing raw blob
26364
26365 Set fdt_blob variable before its value is printed out.
26366
26367 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
26368
26369commit 3d36be030043cd841a2551d00a395135e363a64b
26370Author: Jason Wessel <jason.wessel@windriver.com>
26371Date: Thu Apr 10 14:30:16 2008 -0500
26372
26373 Remove all the search paths from the .lds files.
26374
26375 The cross compiler is responsible for providing the correct libraries
26376 and the logic to find the linking libraries.
26377
26378 Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
26379
26380commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
26381Author: Bartlomiej Sieka <tur@semihalf.com>
26382Date: Mon Apr 14 15:44:16 2008 +0200
26383
26384 Boot-related documentation update
26385
26386 - document 'bootm_low' and 'bootm_size' environment variables
26387 - update inaccurate CFG_BOOTMAPSZ entry
26388
26389 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
26390
26391commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
26392Author: Guennadi Liakhovetski <lg@denx.de>
26393Date: Wed Apr 9 17:34:08 2008 +0200
26394
26395 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
26396
26397 Restore logic reverted by commit
26398
26399 commit 80767a6cead9990d9e77e62be947843c2c72f469
26400 Author: Peter Pearse <peter.pearse@arm.com>
26401 Date: Wed Sep 5 16:04:41 2007 +0100
26402
26403 Changed API name to coloured_led.h
26404 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
26405 Tidied other cpu/arm920t/start.S code
26406
26407 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26408
26409commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
26410Author: Mike Frysinger <vapier@gentoo.org>
26411Date: Tue Apr 8 10:24:24 2008 -0400
26412
26413 Remove conflicting NAND ID
26414
26415 There are two NAND entries with ID 0xDC and this obviously causes problems.
26416 In the kernel, they punted the first entry, so we should do the same.
26417
26418 See this upstream e-mail for more info:
26419 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
26420
26421 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
26422 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26423
26424commit 188e94c370621708d13547d58dbc6ed3c5602aa8
26425Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26426Date: Tue Apr 8 16:20:35 2008 +0900
26427
26428 cpu/mips/cpu.c: Fix flush_cache bug
26429
26430 Cache operations have to take line address (addr), not start_addr.
26431 I noticed this bug when debugging ping failure.
26432
26433 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26434
26435commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
26436Author: Martin Krause <martin.krause@tqs.de>
26437Date: Thu Apr 3 14:29:01 2008 +0200
26438
26439 TQM5200: fix default IDE reset level
26440
26441 Before the first call of ide_reset(), the level of the IDE reset
26442 signal on the TQM5200 is low (reset asserted). This patch sets the
26443 default value to high (reset not asserted).
26444
26445 Currently this patch fixes no real problem, but it is cleaner to
26446 assert the reset signal only on demand, and not permanently.
26447
26448 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26449
26450commit c61e033d6e8abb7b4060ee36060961e1399f6079
26451Author: Detlev Zundel <dzu@denx.de>
26452Date: Thu Apr 3 14:18:48 2008 +0200
26453
26454 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
26455
26456 Signed-off-by: Detlev Zundel <dzu@denx.de>
26457
26458commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
26459Author: Detlev Zundel <dzu@denx.de>
26460Date: Thu Apr 3 14:18:47 2008 +0200
26461
26462 mgcoge, mgsuv: rename 'addcon' to 'addcons'
26463
26464 The latter name with 13 users is already established, so we will use
26465 that.
26466
26467 Signed-off-by: Detlev Zundel <dzu@denx.de>
26468
26469commit e175eacc87c3a9e4dad0799fee0e95732520afc7
26470Author: Martin Krause <martin.krause@tqs.de>
26471Date: Thu Apr 3 13:37:56 2008 +0200
26472
26473 IDE: fix bug in reset sequence
26474
26475 According to the ata (ata5) specification the RESET- signal
26476 shall be asserted for at least 25 us. Without this patch,
26477 the RESET- signal is asserted on some boards for only < 1 us
26478 (e. g. on the TQM5200). This patch adds a general delay of
26479 25 us to the RESET- signal.
26480
26481 Without this patch a Platinum 4 GiB CF card is not recognised
26482 properly on boards with a TQM5200 (STK52xx, TB5200).
26483
26484 Signed-off-by: Martin Krause <martin.krause@tqs.de>
26485
26486commit 813bea96a960916c72b4a3a7df840151529c26ce
26487Author: Sascha Laue <Sascha.Laue@gmx.biz>
26488Date: Thu Apr 3 14:43:11 2008 +0200
26489
26490 lwmon5: disable CONFIG_ZERO_BOOTDELAY
26491
26492 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
26493
26494commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
26495Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26496Date: Wed Apr 2 08:03:58 2008 +0200
26497
26498 ds174x: Fix warning on return in rtc_get and rtc_set functions
26499
26500 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26501
26502commit a253b38bf50c85227c33ca0febc870ee49d1588e
26503Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26504Date: Wed Apr 2 08:03:57 2008 +0200
26505
26506 cmd_log.c: Fix assignment differ in signedness
26507
26508 In function 'logbuff_init_ptrs':
26509 cmd_log.c:79: warning: pointer targets in assignment differ in signedness
26510
26511 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26512
26513commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
26514Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
26515Date: Wed Apr 2 11:04:43 2008 +0530
26516
26517 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
26518
26519 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
26520
26521commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
26522Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26523Date: Tue Apr 1 14:07:10 2008 +0200
26524
26525 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
26526
26527 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26528
26529commit c08fb3ea36d19b1640b7906264581e9105534399
26530Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
26531Date: Tue Apr 15 10:24:14 2008 +0200
26532
26533 Additional PCI IDs for IDE and network controllers
26534
26535 These PCI IDs are required by the Linkstation platforms.
26536
26537 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
26538
26539commit c0559be371b2a64b1a817088c3308688e2182f93
26540Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
26541Date: Mon Apr 14 23:01:50 2008 +0200
26542
26543 Change env_get_char from a global function ptr to a function.
26544
26545 This avoids an early global data reference.
26546
26547 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
26548
26549commit 3e0f331c05d72f140715c1e9fca991927e44d422
26550Author: Guennadi Liakhovetski <lg@denx.de>
26551Date: Tue Apr 29 12:35:08 2008 +0000
26552
26553 Clean up smsc911x driver
26554
26555 Replace direct register address derefencing with accessor functions.
26556 Restrict explicitly 32-bit bus-width, extend affected configurations
26557 respectively.
26558
26559 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26560 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26561
26562commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
26563Author: Sascha Hauer <s.hauer@pengutronix.de>
26564Date: Tue Apr 15 00:08:20 2008 -0400
26565
26566 This patch adds a driver for the following smsc network controllers:
26567 LAN9115
26568 LAN9116
26569 LAN9117
26570 LAN9215
26571 LAN9216
26572 LAN9217
26573
26574 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
26575 Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
26576 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26577
26578commit 3dfd4aab929cccddb63d9ea509967861e1333b52
26579Author: Sascha Laue <Sascha.Laue@gmx.biz>
26580Date: Tue Apr 1 15:13:03 2008 +0200
26581
26582 Fix watchdog POST for lwmon5
26583
26584 If the hardware watchdog detects a voltage error, the watchdog sets
26585 GPIO62 to low. The watchdog POST has to detect this low level.
26586
26587 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
26588
26589commit 24b448448a917e52806f82660a5c9d47608894fb
26590Author: Dave Liu <r63238@freescale.com>
26591Date: Tue Apr 1 15:22:11 2008 +0800
26592
26593 ata: update the libata.h from ata.h of linux kernel
26594
26595 Current libata.h of u-boot is out of sync from linux kernel,
26596 this patch make it be consistent with linux kernel.
26597
26598 Signed-off-by: Dave Liu <daveliu@freescale.com>
26599 Signed-off-by: Tor Krill <tor@excito.com>
26600
26601commit f8f9dc98883f66f59eb0601da65808e6b139c87c
26602Author: Kumar Gala <galak@kernel.crashing.org>
26603Date: Mon Mar 31 11:59:27 2008 -0500
26604
26605 Allow use of ARCH=powerpc when building
26606
26607 The linux kernel is now mostly ARCH=powerpc, so to make life easier
26608 allow use to use ARCH=powerpc and convert it to ARCH=ppc.
26609
26610 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26611
26612commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
26613Author: Kyungmin Park <kmpark@infradead.org>
26614Date: Mon Mar 31 10:40:54 2008 +0900
26615
26616 Add apollon board MAINTAINERS entry
26617
26618 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26619
26620commit 77e475cc0ed1832160017d364be32a0be9ff02a9
26621Author: Kyungmin Park <kmpark@infradead.org>
26622Date: Mon Mar 31 10:40:36 2008 +0900
26623
26624 Fix OneNAND read
26625
26626 It should access with 16-bit instead of 8-bit
26627
26628 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
26629
26630 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26631
26632commit a9da2b41079d230db3a5641625311983f85ce1fb
26633Author: Kyungmin Park <kmpark@infradead.org>
26634Date: Mon Mar 31 10:40:19 2008 +0900
26635
26636 Fix OneNAND erase command
26637
26638 It mis-calculates the block address.
26639 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
26640
26641 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26642
26643commit 61525f2ffa156665a66908fda47dbf29d65ea579
26644Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
26645Date: Mon Mar 31 01:32:15 2008 +0200
26646
26647 Support for LinkStation / KuroBox HD and HG PPC models
26648
26649 This patch is based on the port by Mihai Georgian (see linkstation.c for
26650 Copyright information) and implements support for LinkStation / KuroBox HD
26651 and HG PPC models from Buffalo Technology, whereby HD is deactivated at
26652 the moment, pending network driver fixing.
26653
26654 Notice to users: this is pretty much a barebone port. Support for network
26655 on HG models is already in the U-Boot mainline, but you might also want
26656 patches to switch fan / phy modes depending on the negotiated ethernet
26657 parameters. This patch also doesn't support console switching, booting EM
26658 mode, Buffalo specific ext2 magic number. So, if you want to use any of
26659 those, you need additional patches. Otherwise this patche provides a fully
26660 functional u-boot with a network console on your system.
26661
26662 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26663
26664commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
26665Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26666Date: Sun Mar 30 01:22:13 2008 -0500
26667
26668 Add CONFIG_MII_INIT support to related boards
26669
26670 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
26671 cmd_init.c. Add CONFIG_MII_INIT to board configuration files
26672 that use mii_init() in cmd_init.c.
26673
26674 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26675 Acked-by: Ben Warren <biggerbadderben@gmail.com>
26676
26677commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
26678Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26679Date: Sun Mar 30 01:19:06 2008 -0500
26680
26681 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
26682
26683 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
26684 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
26685
26686 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26687
26688commit e99ccb488181d012248c6be30b2093e950319fc5
26689Author: Kumar Gala <galak@kernel.crashing.org>
26690Date: Thu Mar 27 11:46:38 2008 -0500
26691
26692 Introduce phys_size_t and move phys_addr_t into asm/types.h
26693
26694 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
26695 that have larger physical addresses like 44x, 85xx, and 86xx.
26696
26697 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26698
26699commit 20a14a42a25f72e379f38460b8a8484667536795
26700Author: Andy Fleming <afleming@freescale.com>
26701Date: Wed Apr 2 16:19:07 2008 -0500
26702
26703 Rename include/md5.h to include/u-boot/md5.h
26704
26705 Some systems have md5.h installed in /usr/include/. This isn't the
26706 desired file (we want the one in include/md5.h). This will avoid the
26707 conflict. This fixes the host tools building problem by creating a new
26708 directory for U-Boot specific header files.
26709
26710 [Patch by Andy Fleming, modified to use separate directory by Wolfgang
26711 Denk]
26712
26713 Signed-off-by: Wolfgang Denk <wd@denx.de>
26714 Signed-off-by: Andy Fleming <afleming@freescale.com>
26715 Acked-by: Timur Tabi <timur@freescale.com>
26716
26717commit f297b7a1ec87433f66320d89d993e1bc738c66b8
26718Author: Dave Liu <r63238@freescale.com>
26719Date: Thu Mar 27 18:51:17 2008 +0800
26720
26721 drivers: code clean up
26722
26723 Signed-off-by: Dave Liu <daveliu@freescale.com>
26724
26725commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
26726Author: Dave Liu <r63238@freescale.com>
26727Date: Thu Mar 27 18:50:41 2008 +0800
26728
26729 drivers: clean up the ata_piix.h
26730
26731 Signed-off-by: Dave Liu <daveliu@freescale.com>
26732
26733commit e8f7ba404f1409606962815ecc955a06984b08b3
26734Author: Dave Liu <r63238@freescale.com>
26735Date: Thu Mar 27 18:49:56 2008 +0800
26736
26737 doc: english polishing for README.sata
26738
26739 according to gvb's suggestion, polishing for the doc.
26740
26741 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
26742 Signed-off-by: Dave Liu <daveliu@freescale.com>
26743
26744commit 3e3f766a5274d204780460e1879723b565296d34
26745Author: Kumar Gala <galak@kernel.crashing.org>
26746Date: Wed Mar 26 18:53:28 2008 -0500
26747
26748 Fix warnings introduced by I2C bus speed setting patch
26749
26750 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26751
26752commit 3c735e7437150e8615f26930c7819db85634276d
26753Author: eran liberty <eran.liberty@gmail.com>
26754Date: Thu Mar 27 00:50:49 2008 +0100
26755
26756 Altera Stratix II support
26757
26758 Adds Support for Altera's Stratix II.
26759
26760 Within your board specific init file you will have to call
26761
26762 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
26763 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
26764
26765 Altera_desc* contines (for example):
26766 {
26767 Altera_StratixII, /* part type */
26768 passive_serial, /* interface type */
26769 1, /* bytes of data part can accept */
26770 (void *)(&funcs), /* interface function table */
26771 0L, /* base interface address */
26772 0 /* implementation specific cookie */
26773 }
26774
26775 funcs is the interface. It is of type altera_board_specific_func.
26776 It looks like this:
26777 altera_board_specific_func func = {
26778 pre_fn,
26779 config_fn,
26780 status_fn,
26781 done_fn,
26782 clk_fn,
26783 data_fn,
26784 abort_fn,
26785 post_fn,
26786 };
26787
26788 you will have to implement these functions, which is usually bit
26789 banging some gpio.
26790
26791 Signed-off-by: Eran Liberty <liberty@extricom.com>
26792
26793commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
26794Author: Wolfgang Denk <wd@denx.de>
26795Date: Sun Apr 13 14:32:54 2008 -0700
26796
26797 Update CHANGELOG
26798
26799 Signed-off-by: Wolfgang Denk <wd@denx.de>
26800
5ece9ec9
WD
26801commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
26802Author: Sascha Hauer <s.hauer@pengutronix.de>
26803Date: Wed Mar 26 20:41:17 2008 +0100
26804
26805 Phytec Phycore-i.MX31 support
26806
26807 This patch adds support for the Phytec Phycore-i.MX31 board
26808
26809 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
26810 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26811
26812commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
26813Author: Sascha Hauer <s.hauer@pengutronix.de>
26814Date: Wed Mar 26 20:41:09 2008 +0100
26815
26816 mx31 litekit support
26817
26818 This patch adds support for the mx31 litekit board
26819
26820 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
26821 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26822
26823commit cdace0661208754a53019ea0dc7b803a040e0939
26824Author: Sascha Hauer <s.hauer@pengutronix.de>
26825Date: Wed Mar 26 20:40:49 2008 +0100
26826
26827 add an i2c driver for mx31
26828
26829 This patch adds an i2c driver for Freescale i.MX processors
26830
26831 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
26832 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26833
26834commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
26835Author: Sascha Hauer <s.hauer@pengutronix.de>
26836Date: Wed Mar 26 20:40:42 2008 +0100
26837
26838 core support for Freescale mx31
26839
26840 This patch adds the core support for Freescale mx31
26841
26842 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
26843 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26844
26845commit 7ec68862a27c8f6f6d566228de8f6724d964a939
26846Author: Wolfgang Denk <wd@denx.de>
26847Date: Sun Apr 13 14:19:23 2008 -0700
26848
26849 Fix compile error
26850
26851 ...as suggested by Peter Pearse
26852
26853 Signed-off-by: Wolfgang Denk <wd@denx.de>
26854
26855commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
26856Author: Sascha Hauer <s.hauer@pengutronix.de>
26857Date: Wed Mar 26 20:40:36 2008 +0100
26858
26859 Separate omap24xx specific code from arm1136
26860
26861 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
26862 to cpu/arm1136/omap24xx.
26863
26864 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
26865 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26866
26867commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
26868Author: Mike Frysinger <vapier@gentoo.org>
26869Date: Tue Jan 29 18:21:05 2008 -0500
26870
26871 disable caches before booting an app for Blackfin apps
26872
26873 It isn't generally save to execute applications outside of U-Boot with caches
26874 enabled due to the way the Blackfin processor handles caches (requires
26875 software assistance). This patch disables caches before booting an ELF or
26876 just booting raw code. The previous discussion on the patch was that we
26877 wanted to use weaks instead, but that proved to not be feasible when multiple
26878 symbols are involved, which puts us back at the ifdef solution. I've
26879 minimized the ugliness by moving the setup step outside of the main function.
26880
26881 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
26882
26883commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
26884Author: Wolfgang Denk <wd@denx.de>
26885Date: Sun Apr 13 10:03:54 2008 -0700
26886
26887 ppc: Get rid of unused machine type definitions
26888
26889 Signed-off-by: Wolfgang Denk <wd@denx.de>
26890
26891commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
26892Author: Wolfgang Denk <wd@denx.de>
26893Date: Sun Apr 13 09:59:26 2008 -0700
26894
26895 Coding Style cleanup; update CHANGELOG
26896
26897 Signed-off-by: Wolfgang Denk <wd@denx.de>
26898
1aeed8d7
WD
26899commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
26900Author: Larry Johnson <lrj@acm.org>
26901Date: Thu Feb 21 13:58:11 2008 -0500
26902
26903 LM73 bug fix for negative temperatures and cleanup
26904
26905 When the LM73 temperature sensor measures a temperature below 0 C, the
26906 current driver does not perform sign extension, so the result returned is
26907 512 C too high. This patch fixes the problem, and does general cleanup
26908 of the code.
26909
26910 Signed-off-by: Larry Johnson <lrj@acm.org>
26911
26912commit 96ef831f713289afba19da0c8f905e99da2b23e0
26913Author: Guennadi Liakhovetski <lg@denx.de>
26914Date: Thu Apr 3 13:36:02 2008 +0200
26915
26916 cfi_flash: Support buffered writes on non-standard Spansion NOR flash
26917
26918 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
26919 series require different addresses for buffered write commands. Define a
26920 configuration option to support buffered writes on those chips. A more
26921 elegant solution would be to automatically detect those chips by parsing
26922 their CFI records, but that would require introduction of a fixup table
26923 into the cfi_flash driver.
26924
26925 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
26926
26927commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
26928Author: Lee Nipper <lee.nipper@freescale.com>
26929Date: Thu Apr 10 09:35:06 2008 -0500
26930
26931 mpc83xx: Update DIMM data bus width test to support 40-bit width
26932
26933 32-bit wide ECC memory modules report 40-bit width.
26934 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
26935
26936 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
26937 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26938
26939commit 5fb5a689d822ca61e814bd523fc930af335242fa
26940Author: Dave Liu <r63238@freescale.com>
26941Date: Mon Mar 31 17:05:12 2008 +0800
26942
26943 mpc83xx: Fix the bug of serdes initialization
26944
26945 Currently the serdes will not be initializated due to the
26946 partid's error.
26947
26948 Signed-off-by: Dave Liu <daveliu@freescale.com>
26949 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26950
26951commit 2000784818f043db7ca60e2846a72d097766b894
26952Author: Dave Liu <r63238@freescale.com>
26953Date: Thu Apr 3 16:28:29 2008 +0800
26954
26955 mpc83xx: Fix the SATA clock setting of 837x targets
26956
26957 Currently the SATA controller clock is configured as CSB clock,
26958 usually the CSB clock is 400/333/266MHz.
26959
26960 However, The SATA IP block is only guaranteed to operate up to
26961 200 MHz as stated in the HW spec.
26962
26963 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
26964
26965 This patch makes the SATA clock as half of CSB clock.
26966
26967 Signed-off-by: Dave Liu <daveliu@freescale.com>
26968 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26969
26970commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
26971Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26972Date: Wed Apr 2 13:41:21 2008 +0200
26973
26974 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
26975
26976 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26977 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26978
26979commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
26980Author: Kumar Gala <galak@kernel.crashing.org>
26981Date: Wed Apr 9 04:20:57 2008 -0500
26982
26983 85xx: Fix detection of MP cpu spin up
26984
26985 We were looking at the wrong memory offset to determine of a secondary
26986 cpu had been spun up or not. Also added a warning message if the
26987 all the secondary cpus we expect don't spin up.
26988
26989 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26990
26991commit f3e04bdc3f360c66801a9048956e61e41a16edba
26992Author: Kumar Gala <galak@kernel.crashing.org>
26993Date: Tue Apr 8 10:45:50 2008 -0500
26994
26995 85xx: Use SVR_SOC_VER instead of SVR_VER
26996
26997 The recent change introduced by 'Update SVR numbers to expand support'
26998 now requires that we use SVR_SOC_VER instead of SVR_VER if we want
26999 to compare against a particular processor id.
27000
27001 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27002
27003commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
27004Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
27005Date: Fri Apr 11 10:00:35 2008 -0400
27006
27007 ppc4xx: Fix power mgt definitions for PPC440
27008
27009 Corrected DCR addresses of PPC440EP power management registers.
27010
27011 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
27012
27013commit 950a392464e616b4590bc4501be46e2d7d162dea
27014Author: Wolfgang Denk <wd@denx.de>
27015Date: Fri Apr 11 15:11:26 2008 +0200
27016
27017 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
27018
27019 Reverting became necessary after it turned out that the patches in
27020 the u-boot-arm repo were modified, and in some cases corrupted.
27021
27022 This reverts the following commits:
27023
27024 066bebd6353e33af3adefc3404560871699e9961
27025 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
27026 c88ae20580b2b01487b4cdcc8b2a113f551aee36
27027 a147e56f03871bba4f05058d5e04ce7deb010b04
27028 d6674e0e2a6a1f033945f78838566210d3f28c95
27029 8c8463cce44d849e37744749b32d38e1dfb12e50
27030 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
27031 8bf69d81782619187933a605f1a95ee1d069478d
27032 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
27033 a574a73852a527779234e73e17e7597fd8128882
27034 1377b5583a48021d983e1fd565f7d40c89e84d63
27035 1704dc20917b4f71e373e2c888497ee666d40380
27036
27037 Signed-off-by: Wolfgang Denk <wd@denx.de>
27038
27039commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
27040Author: Stefan Roese <sr@denx.de>
27041Date: Fri Apr 11 07:02:29 2008 +0200
27042
27043 ppc4xx: Update Kilauea defconfig to use device-tree booting as default
27044
27045 This patch reworks the default environment on Kilauea/Haleakala. Now
27046 "net_nfs" for exmaple uses the device-tree style booting formerly know
27047 as "net_nfs_fdt". Also the addresses in RAM were changed because of the
27048 new image booting support, which check for image overwriting. So the
27049 addresses needed togeet adjusted.
27050
27051 Signed-off-by: Stefan Roese <sr@denx.de>
27052
27053commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
27054Author: Stefan Roese <sr@denx.de>
27055Date: Wed Apr 9 11:58:02 2008 +0200
27056
27057 ppc4xx: Fix Canyonlands default environment to work with new image support
27058
27059 Since the new image support checks for image overwriting, the default
27060 environment needs to get adjusted to use correct addresses.
27061
27062 Signed-off-by: Stefan Roese <sr@denx.de>
27063
27064commit dfc6c7b647dba7ab86749616f0e9e5740deed422
27065Author: Stefan Roese <sr@denx.de>
27066Date: Wed Apr 9 11:54:11 2008 +0200
27067
27068 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
27069
27070 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
27071 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
27072 on 4xx systems _start currently cannot be used for this calculation.
27073 So revert back to the original version for now.
27074
27075 Signed-off-by: Stefan Roese <sr@denx.de>
27076
27077commit f91374f65eae8b42cac329e06ba1c54728278efb
27078Author: Michal Simek <monstr@monstr.eu>
27079Date: Fri Mar 28 12:49:52 2008 +0100
27080
27081 microblaze: Sort microblaze boards in MAKEALL script
27082
27083commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
27084Author: Michal Simek <monstr@monstr.eu>
27085Date: Fri Mar 28 11:58:45 2008 +0100
27086
27087 microblaze: clean microblaze_config.mk
27088
27089 FLAGS are generated by U-BOOT generator.
27090 Board specific FLAGS are in board directory
27091
27092 Signed-off-by: Michal Simek <monstr@monstr.eu>
27093
27094commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
27095Author: Michal Simek <monstr@monstr.eu>
27096Date: Fri Mar 28 12:47:19 2008 +0100
27097
27098 microblaze: xupv2p fix config file for supporting FDT
27099
27100commit 188dc16b189143573b1ed90e584bf866d75cdd12
27101Author: Michal Simek <monstr@monstr.eu>
27102Date: Fri Mar 28 11:53:02 2008 +0100
27103
27104 microblaze: ml401 fix config file for supporting FDT
27105
27106 Signed-off-by: Michal Simek <monstr@monstr.eu>
27107
27108commit 4c6a6f02e239236261333759997eeaf86b30b54c
27109Author: Michal Simek <monstr@monstr.eu>
27110Date: Fri Mar 28 11:22:48 2008 +0100
27111
27112 microblaze: ml401 - add ifdef for GPIO
27113
27114 Signed-off-by: Michal Simek <monstr@monstr.eu>
27115
27116commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
27117Author: Michal Simek <monstr@monstr.eu>
27118Date: Fri Mar 28 12:13:03 2008 +0100
27119
27120 microblaze: clean uart16550 and uartlite handling
27121
27122 Signed-off-by: Michal Simek <monstr@monstr.eu>
27123
27124commit 0b20f250877441460fb79d72192954abe8498834
27125Author: Michal Simek <monstr@monstr.eu>
27126Date: Fri Mar 28 11:08:31 2008 +0100
27127
27128 microblaze: Add Emaclite driver to Makefile
27129
27130 Signed-off-by: Michal Simek <monstr@monstr.eu>
27131
27132commit 868cde5310f88234b774878e4f06e79df10a88b3
27133Author: Michal Simek <monstr@monstr.eu>
27134Date: Fri Mar 28 11:08:01 2008 +0100
27135
27136 microblaze: Add Emac driver to Makefile
27137
27138 Signed-off-by: Michal Simek <monstr@monstr.eu>
27139
27140commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
27141Author: Michal Simek <monstr@monstr.eu>
27142Date: Fri Mar 28 12:42:29 2008 +0100
27143
27144 microblaze: add Emac ethernet driver
27145
27146commit 89c53891b18cbafd29ab8931b40e27ad231b6085
27147Author: Michal Simek <monstr@monstr.eu>
27148Date: Fri Mar 28 12:41:56 2008 +0100
27149
27150 microblaze: add Emaclite ethernet driver
27151
27152commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
27153Author: Michal Simek <monstr@monstr.eu>
27154Date: Fri Mar 28 11:04:01 2008 +0100
27155
27156 microblaze: ML401 and XUPV2P remove emac and emaclite reference
27157
27158 Signed-off-by: Michal Simek <monstr@monstr.eu>
27159
27160commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
27161Author: Michal Simek <monstr@monstr.eu>
27162Date: Fri Mar 28 10:59:32 2008 +0100
27163
27164 microblaze: remove old setting for emac driver
27165
27166 Signed-off-by: Michal Simek <monstr@monstr.eu>
27167
27168commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
27169Author: Michal Simek <monstr@monstr.eu>
27170Date: Fri Mar 28 10:58:15 2008 +0100
27171
27172 microblaze: Clean Makefile from ancient emac driver
27173
27174 Signed-off-by: Michal Simek <monstr@monstr.eu>
27175
27176commit ab68f921d9c741830f721c3d879c13a0c5597183
27177Author: Daniel Hellstrom <daniel@gaisler.com>
27178Date: Fri Mar 28 10:20:43 2008 +0100
27179
27180 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
27181
27182 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27183
27184commit 6ed8a43a19bb0275501bc286007daafa923552cf
27185Author: Daniel Hellstrom <daniel@gaisler.com>
27186Date: Wed Mar 26 23:38:48 2008 +0100
27187
27188 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.
27189
27190 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27191
27192commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
27193Author: Daniel Hellstrom <daniel@gaisler.com>
27194Date: Wed Mar 26 23:34:47 2008 +0100
27195
27196 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
27197
27198 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27199
27200commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
27201Author: Daniel Hellstrom <daniel@gaisler.com>
27202Date: Fri Mar 28 10:06:52 2008 +0100
27203
27204 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
27205
27206 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27207
27208commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
27209Author: Daniel Hellstrom <daniel@gaisler.com>
27210Date: Wed Mar 26 23:26:48 2008 +0100
27211
27212 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
27213
27214 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27215
27216commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
27217Author: Daniel Hellstrom <daniel@gaisler.com>
27218Date: Fri Mar 28 10:00:33 2008 +0100
27219
27220 SPARC: Added support for SPARC LEON2 SOC Processor.
27221
27222 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27223
27224commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
27225Author: Daniel Hellstrom <daniel@gaisler.com>
27226Date: Wed Mar 26 23:00:38 2008 +0100
27227
27228 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.
27229
27230 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27231
27232commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
27233Author: Daniel Hellstrom <daniel@gaisler.com>
27234Date: Wed Mar 26 22:51:29 2008 +0100
27235
27236 SPARC: Added support for SPARC LEON3 SOC processor.
27237
27238 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27239
27240commit bf3d8b31169546fcddb4737391e1893fb12d033a
27241Author: Daniel Hellstrom <daniel@gaisler.com>
27242Date: Fri Mar 28 08:29:26 2008 +0100
27243
27244 SPARC: added SPARC support for new uimage in common code.
27245
27246 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27247
27248commit 00ab32c85405a4fe65fd4128243086210fc90a21
27249Author: Daniel Hellstrom <daniel@gaisler.com>
27250Date: Wed Mar 26 22:36:03 2008 +0100
27251
27252 SPARC: added SPARC board information to the command bdinfo.
27253
27254 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27255
27256commit c2f02da21a3f37f0878554eebc785e04fdc4e128
27257Author: Daniel Hellstrom <daniel@gaisler.com>
27258Date: Fri Mar 28 09:47:00 2008 +0100
27259
27260 SPARC: Added generic support for SPARC architecture.
27261
27262 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27263
27264commit e54ec0f016803e4d9524ff71f7971bda0c51b287
27265Author: Stefan Roese <sr@denx.de>
27266Date: Thu Apr 3 14:50:34 2008 +0200
27267
27268 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
27269
27270 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
27271 has 2 RGMII instances and we need to configure the 2nd RGMII instance
27272 for the EMAC2+3 channels.
27273
27274 Signed-off-by: Stefan Roese <sr@denx.de>
27275
27276commit c2a545ce33b26d80337f80b533828839249fb1c9
27277Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27278Date: Wed Apr 2 08:03:56 2008 +0200
27279
27280 MPC8xx: Fix libfdt support introduced in commit 77ff7b74
27281
27282 fdt.c: In function 'ft_cpu_setup':
27283 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
27284 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
27285 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
27286 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
27287
27288 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27289
27290commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
27291Author: Andy Fleming <afleming@freescale.com>
27292Date: Mon Mar 31 20:45:56 2008 -0500
27293
27294 Fix fdt set command to conform to dts spec
27295
27296 The fdt set command was treating properties specified as <00> and <0011>
27297 as byte streams, rather than as an array of cells. As we already have
27298 syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
27299 we should use the <> syntax to describe arrays of cells, which are always
27300 32-bits per element. If we imagine this likely (IMHO) scenario:
27301
27302 > fdt set /ethernet-phy@1 reg <1>
27303
27304 With the old code, this would create a bad fdt, since the reg cell would be
27305 made to be one byte in length. But the cell must be 4 bytes, so this would
27306 break mysteriously.
27307
27308 Also, the dts spec calls for constants inside the angle brackets (<>)
27309 to conform to C constant standards as they pertain to base.
27310 Take this scenario:
27311
27312 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
27313
27314 The old fdt command would complain that it couldn't parse that. Or, if you
27315 wanted to specify that a certain clock ran at 33 MHz, you'd be required to
27316 do this:
27317
27318 > fdt set /mydev clock <1f78a40>
27319
27320 Whereas the new code will accept decimal numbers.
27321
27322 While I was in there, I extended the fdt command parser to handle property
27323 strings which are split across multiple arguments:
27324
27325 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
27326 > fdt p /ethernet@f00
27327 ethernet@f00 {
27328 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
27329 };
27330
27331 Lastly, the fdt print code was rearranged slightly to print arrays of cells
27332 if the length of the property is a multiple of 4 bytes, and to not print
27333 leading zeros.
27334
27335 Signed-off-by: Andy Fleming <afleming@freescale.com>
27336
27337commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
27338Author: Stefan Roese <sr@denx.de>
27339Date: Wed Apr 2 08:39:33 2008 +0200
27340
27341 ppc4xx: Canyonlands: Init SATA/PCIe port correctly
27342
27343 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
27344 interface. This usage can be configured with the jumper J6. This patch
27345 correctly configures the SATA/PCIe PHY for SATA usage when this jumper
27346 is installed.
27347
27348 Signed-off-by: Stefan Roese <sr@denx.de>
27349
27350commit 6fe2946f198481254a6ee9600d7456b8316a4083
27351Author: Kim Phillips <kim.phillips@freescale.com>
27352Date: Fri Mar 28 17:37:49 2008 -0500
27353
27354 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
27355
27356 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
27357 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
27358 started.
27359
27360 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27361
27362commit b5873f1732b92a25690e1513b90dfb0d644f6697
27363Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27364Date: Tue Apr 1 07:30:51 2008 +0200
27365
27366 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
27367
27368 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27369
27370commit 2d934ea51f276522b532f870a820e844ff480b5b
27371Author: Tor Krill <tor@excito.com>
27372Date: Fri Mar 28 15:29:45 2008 +0100
27373
27374 Add Vitesse 8601 support to TSEC driver
27375
27376 Add phy_info for Vitesse VSC8601.
27377 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
27378
27379 Signed-off-by: Tor Krill <tor@excito.com>
27380 Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
27381 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27382
27383commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
27384Author: Daniel Hellstrom <daniel@gaisler.com>
27385Date: Mon Mar 31 14:25:00 2008 +0000
27386
27387 SPARC: added SMC91111 driver in and out macros for LEON processors.
27388
27389 This patch makes SPARC/LEON processors able to read and write
27390 to the SMC91111 chip using the chip external I/O bus of the memory
27391 controller. This patchs defines the standard in and out macros
27392 expected by the SMC9111 driver.
27393
27394 To access that I/O bus one must set up the memory controller
27395 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
27396 up this correctly when the other MCTRL parameters are set up. It
27397 can be set up from the board configuration header file.
27398
27399 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27400 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27401
27402commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
27403Author: Stelian Pop <stelian@popies.net>
27404Date: Wed Mar 26 18:52:34 2008 +0100
27405
27406 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
27407
27408 Signed-off-by: Stelian Pop <stelian@popies.net>
27409
27410commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
27411Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27412Date: Mon Mar 31 21:31:04 2008 +0200
27413
27414 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
27415
27416 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27417
27418commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
27419Author: Stelian Pop <stelian@popies.net>
27420Date: Wed Mar 26 18:52:33 2008 +0100
27421
27422 Add support for AT91SAM9260EK
27423
27424 Support for booting from internal DataFlash, external DataFlash card
27425 or NAND flash is available.
27426
27427 Signed-off-by: Stelian Pop <stelian@popies.net>
27428
27429commit 1762f13b4aab88b685b1722f17dada247945624b
27430Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27431Date: Mon Mar 31 21:20:49 2008 +0200
27432
27433 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
27434
27435 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27436
27437commit 761712188b353494defb2b644491ff73d0daaa6f
27438Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27439Date: Mon Mar 31 21:12:17 2008 +0200
27440
27441 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
27442
27443 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27444
27445commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
27446Author: Stelian Pop <stelian@popies.net>
27447Date: Wed Mar 26 20:52:32 2008 +0100
27448
27449 Port AT91CAP9 to the new headers
27450
27451 Adapt the existing AT91CAP9 code to the new headers and APIs.
27452
27453 Signed-off-by: Stelian Pop <stelian@popies.net>
27454
27455commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
27456Author: Stelian Pop <stelian@popies.net>
27457Date: Wed Mar 26 19:52:31 2008 +0100
27458
27459 Finish header files reworking
27460
27461 Replace AT91CAP9.h file with several splitted header files coming
27462 from the Linux kernel.
27463
27464 This is part 2 of the replacement: more header imports and edits.
27465
27466 Signed-off-by: Stelian Pop <stelian@popies.net>
27467
27468commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
27469Author: Stelian Pop <stelian@popies.net>
27470Date: Wed Mar 26 19:52:30 2008 +0100
27471
27472 Import several header files from Linux
27473
27474 Replace AT91CAP9.h file with several splitted header files coming
27475 from the Linux kernel.
27476
27477 This is part 1 of the replacement: pristine header files import.
27478
27479 Signed-off-by: Stelian Pop <stelian@popies.net>
27480
27481commit a8a78f2d99dc1bd30dc3595da118539b506c6118
27482Author: Stelian Pop <stelian@popies.net>
27483Date: Wed Mar 26 20:52:28 2008 +0100
27484
27485 Move at91cap9 specific files to at91sam9 directory
27486
27487 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
27488 common infrastructure can be used. Let this infrastructure be
27489 named after the AT91SAM9 family, and move the existing AT91CAP9
27490 files to the new place.
27491
27492 Signed-off-by: Stelian Pop <stelian@popies.net>
27493
27494commit 61106a565870ff503f92b251b94bd7afef889a04
27495Author: Stelian Pop <stelian@popies.net>
27496Date: Wed Mar 26 21:52:27 2008 +0100
27497
27498 Use timer_init() instead of board supplied interrupt_init()
27499
27500 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
27501 the board, so use timer_init() instead of interrupt_init().
27502
27503 Signed-off-by: Stelian Pop <stelian@popies.net>
27504
27505commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
27506Author: Stelian Pop <stelian@popies.net>
27507Date: Wed Mar 26 21:52:36 2008 +0100
27508
27509 Cleanup DataFlash partition handling
27510
27511 DataFlash partition information has become a mess. This patch
27512 defines a single partition scheme for Atmel DataFlashes. This partition
27513 scheme will be used by all AT91CAP9 and AT91SAM9 boards.
27514
27515 Signed-off-by: Stelian Pop <stelian@popies.net>
27516
27517commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
27518Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27519Date: Fri Mar 28 08:47:45 2008 -0500
27520
27521 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
27522
27523 When the version_string function in start.S is not 4-byte align,
27524 it will cause the compiler generates "unaligned opcodes detected
27525 in executable segment". This issue affects all ColdFire CPUs.
27526 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
27527 it is not aligned.
27528
27529 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27530 Acked-by: John Rigby <jrigby@freescale.com>
27531
27532commit bae61eefe15b4d454060a7140e49ae58322be803
27533Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27534Date: Tue Mar 25 15:41:15 2008 -0500
27535
27536 ColdFire: Add dspi and serial flash support for MCF5445x
27537
27538 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27539 Acked-by: John Rigby <jrigby@freescale.com>
27540
27541commit 48ead7a7a922fceaf494e352abfab8216a41b417
27542Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27543Date: Tue Mar 18 17:37:01 2008 -0500
27544
27545 ColdFire: Remove R5200 board
27546
27547 This board never went into production
27548
27549 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
27550 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27551 Acked-by: John Rigby <jrigby@freescale.com>
27552
27553commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
27554Author: Matthew Fettke <[matthew.fettke@gmail.com]>
27555Date: Thu Jan 24 14:02:32 2008 -0600
27556
27557 ColdFire: Added M5275EVB support.
27558
27559 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
27560 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27561 Acked-by: John Rigby <jrigby@freescale.com>
27562
27563commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
27564Author: Matthew Fettke <[matthew.fettke@gmail.com]>
27565Date: Mon Feb 4 15:38:20 2008 -0600
27566
27567 ColdFire: Added MCF5275 cpu support.
27568
27569 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
27570 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27571 Acked-by: John Rigby <jrigby@freescale.com>
27572
27573commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
27574Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27575Date: Mon Mar 17 12:14:11 2008 -0500
27576
27577 ColdFire: Define bootdelay in configuration file for M52277EVB
27578
27579 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
27580 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27581 Acked-by: John Rigby <jrigby@freescale.com>
27582
27583commit 77878f16cedee17161ff2336990970fffc6cea35
27584Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27585Date: Mon Mar 17 12:09:07 2008 -0500
27586
27587 ColdFire: Fix second memory Chipselect for M5475EVB
27588
27589 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27590 Acked-by: John Rigby <jrigby@freescale.com>
27591
27592commit 43d60642395a550956cb21d287c8cfa563913d28
27593Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27594Date: Thu Mar 13 14:26:32 2008 -0500
27595
27596 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
27597
27598 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27599 Acked-by: John Rigby <jrigby@freescale.com>
27600
27601commit eb14ebe813a0cb5d47905228da446a5ad692473b
27602Author: Larry Johnson <lrj@acm.org>
27603Date: Sun Mar 30 20:33:04 2008 -0500
27604
27605 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
27606
27607 Signed-off-by: Larry Johnson <lrj@acm.org>
27608
27609commit 02e3892021112f21067d9ed1d04ae4182725ba52
27610Author: Stefan Roese <sr@denx.de>
27611Date: Mon Mar 31 12:20:48 2008 +0200
27612
27613 ppc4xx: Small whitespace fix of esd patches
27614
27615 Signed-off-by: Stefan Roese <sr@denx.de>
27616
27617commit 034394abb524785047c815f00dde8cdbdc1593c5
27618Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27619Date: Sun Mar 30 18:52:44 2008 +0200
27620
27621 ppc4xx: Cleanup PMC440 board support
27622
27623 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27624
27625commit a6cc6c37188d85c25d167a4515da86f48d9a583e
27626Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27627Date: Sun Mar 30 18:52:06 2008 +0200
27628
27629 ppc4xx: Add ptm configuration variables for PMC440
27630
27631 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
27632 environment variables.
27633
27634 Cleanup pci_target_init.
27635
27636 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27637
27638commit 7c91f51a2fe296909147f1646a1412729dd10b1d
27639Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27640Date: Sun Mar 30 18:01:15 2008 +0200
27641
27642 ppc4xx: Minor updates for DU440 boards
27643
27644 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27645
27646commit d5bffeb868d6b4d462f558dac43011027b6644b7
27647Author: Mike Frysinger <vapier@gentoo.org>
27648Date: Tue Feb 19 00:54:20 2008 -0500
27649
27650 Blackfin: cleanup and overhaul common board init functions
27651
27652 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27653
27654commit b86b3416f874358acaf07519e7620cdb2145f75b
27655Author: Mike Frysinger <vapier@gentoo.org>
27656Date: Tue Feb 19 00:50:58 2008 -0500
27657
27658 Blackfin: cleanup lib_blackfin/cache.c
27659
27660 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27661
27662commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
27663Author: Mike Frysinger <vapier@gentoo.org>
27664Date: Sun Mar 30 15:46:13 2008 -0400
27665
27666 Blackfin: unify cpu and boot modes
27667
27668 All of the duplicated code for Blackfin processors and boot modes have been
27669 unified. After all, the core is the same for all processors, just the
27670 peripheral set differs (which gets handled in the drivers).
27671
27672 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27673
27674commit 880cc4381ea8360248cddcdf87a64566745a5724
27675Author: Stelian Pop <stelian@popies.net>
27676Date: Wed Mar 26 22:52:35 2008 +0100
27677
27678 Fix CFG_NO_FLASH compilation.
27679
27680 Many Atmel boards have no "real" (NOR) flash on board, and rely only
27681 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
27682 be present in a board configuration file, while still enabling flash
27683 commands like 'flinfo', 'protect', etc.
27684
27685 Signed-off-by: Stelian Pop <stelian@popies.net>
27686
27687commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
27688Author: Mike Frysinger <vapier@gentoo.org>
27689Date: Tue Feb 19 00:58:13 2008 -0500
27690
27691 Blackfin: BF537-stamp: cleanup spi flash driver
27692
27693 This punts the old spi flash driver for a new/generalized one until the
27694 common one can be integrated.
27695
27696 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27697
27698commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
27699Author: Ben Warren <biggerbadderben@gmail.com>
27700Date: Sun Mar 30 11:34:34 2008 -0400
27701
27702 Fix macro typo in common/cmd_mii.c
27703
27704 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I
27705 actually applied the wrong patch.
27706
27707 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27708
27709commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
27710Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27711Date: Sun Mar 30 16:39:53 2008 +0200
27712
27713 use correct at91rm9200 register name in m501sk board
27714
27715 This fixes a naming bug for at91rm9200 lowlevel init code:
27716 NOR boot flash is on chipselect 0, not chipselect 2. This
27717 makes code use the register name from chip datasheets.
27718
27719 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27720
27721commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
27722Author: David Brownell <david-b@pacbell.net>
27723Date: Fri Jan 18 12:55:00 2008 -0800
27724
27725 use correct at91rm9200 register name
27726
27727 This fixes a naming bug for at91rm9200 lowlevel init code:
27728 NOR boot flash is on chipselect 0, not chipselect 2. This
27729 makes code use the register name from chip datasheets.
27730
27731 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
27732
27733commit a3543d6dc52b0ba9c64016687cf32d600b31a476
27734Author: David Brownell <david-b@pacbell.net>
27735Date: Fri Jan 18 12:45:45 2008 -0800
27736
27737 add missing ARM boards to MAKEALL
27738
27739 Add some missing ARM boards to MAKEALL. These build correctly,
27740 unlike several of the boards already listed.
27741
27742 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
27743
27744commit 066bebd6353e33af3adefc3404560871699e9961
27745Author: Peter Pearse <peter.pearse@arm.com>
27746Date: Sun Mar 30 11:34:09 2008 +0100
27747
27748 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
27749 to prevent compilation error.
27750
27751 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
27752
27753commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
27754Author: Guennadi Liakhovetski <[lg@denx.de]>
27755Date: Sun Mar 30 11:32:30 2008 +0100
27756
27757 Support for the MX31ADS evaluation board from Freescale
27758
27759 This patch adds support for the MX31ADS evaluation board from Freescale,
27760 initialization code is copied from RedBoot sources, also provided by Freescale.
27761
27762 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27763
27764commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
27765Author: Sascha Hauer <s.hauer@pengutronix.de>
27766Date: Sun Mar 30 11:32:27 2008 +0100
27767
27768 Phytec Phycore-i.MX31 support
27769
27770 This patch adds support for the Phytec Phycore-i.MX31 board
27771
27772 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
27773 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27774
27775commit a147e56f03871bba4f05058d5e04ce7deb010b04
27776Author: Sascha Hauer <s.hauer@pengutronix.de>
27777Date: Sun Mar 30 11:32:24 2008 +0100
27778
27779 mx31 litekit support
27780
27781 This patch adds support for the mx31 litekit board
27782
27783 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
27784 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27785
27786commit d6674e0e2a6a1f033945f78838566210d3f28c95
27787Author: Sascha Hauer <s.hauer@pengutronix.de>
27788Date: Sun Mar 30 11:32:21 2008 +0100
27789
27790 add SMSC LAN9x1x Network driver
27791
27792 This patch adds a driver for the following smsc network controllers:
27793 LAN9115
27794 LAN9116
27795 LAN9117
27796 LAN9215
27797 LAN9216
27798 LAN9217
27799
27800 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
27801 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27802
27803commit 8c8463cce44d849e37744749b32d38e1dfb12e50
27804Author: Sascha Hauer <s.hauer@pengutronix.de>
27805Date: Sun Mar 30 11:32:16 2008 +0100
27806
27807 add an i2c driver for mx31
27808
27809 This patch adds an i2c driver for Freescale i.MX processors
27810
27811 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
27812 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27813
27814commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
27815Author: Sascha Hauer <s.hauer@pengutronix.de>
27816Date: Sun Mar 30 11:30:43 2008 +0100
27817
27818 core support for Freescale mx31
27819
27820 This patch adds the core support for Freescale mx31
27821
27822 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
27823 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27824
27825commit 8bf69d81782619187933a605f1a95ee1d069478d
27826Author: Sascha Hauer <s.hauer@pengutronix.de>
27827Date: Sun Mar 30 11:28:46 2008 +0100
27828
27829 Separate omap24xx specific code from arm1136
27830
27831 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
27832
27833 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
27834 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27835
27836commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
27837Author: Peter Pearse <peter.pearse@arm.com>
27838Date: Sun Mar 30 11:23:05 2008 +0100
27839
27840 Add pmdra into MAKEALL
27841
27842 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
27843
27844commit a574a73852a527779234e73e17e7597fd8128882
27845Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
27846Date: Sun Mar 30 11:21:58 2008 +0100
27847
27848 Adds support for the Prodrive PMDRA board, based on a DM6441
27849
27850 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
27851
27852commit 1377b5583a48021d983e1fd565f7d40c89e84d63
27853Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
27854Date: Sun Mar 30 11:11:34 2008 +0100
27855
27856 Removes all board specific code from the arch. part for DM644x (DaVinci) boards
27857
27858 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
27859
27860commit 1704dc20917b4f71e373e2c888497ee666d40380
27861Author: Dirk Behme <dirk.behme@gmail.com>
27862Date: Sun Mar 30 11:09:01 2008 +0100
27863
27864 - Remove *_masked() functions as noted by Wolfgang
27865 - Adapt register naming to recent TI spec (sprue26, March 2007)
27866 - Fix reset_timer() handling
27867 - As reported by Pieter [1] the overflow fix introduced a
27868 delay of factor 16 (e.g 2 seconds became 32). While the
27869 overflow fix is basically okay, it missed to divide udelay by
27870 16, too. Fix this.
27871 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
27872 - Remove software division of timer count value (DIV(x)
27873 macro) and do it in hardware (TIM_CLK_DIV).
27874 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
27875 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
27876 the hints & testing!
27877
27878 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
27879
27880 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
27881
27882commit ac3315c26e143c31680750c9c13f027efbcc887e
27883Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
27884Date: Thu Mar 6 16:45:44 2008 +0100
27885
27886 new PHY @ e1000 - 2nd try
27887
27888 Add 82541ER device with latest integrated IGP2 PHY.
27889 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
27890
27891 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
27892 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27893
27894commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
27895Author: Daniel Hellstrom <daniel@gaisler.com>
27896Date: Fri Mar 28 20:22:53 2008 +0100
27897
27898 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
27899
27900 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
27901 a debug link (EDCL). The GRETH core is documented in GRIP.pdf
27902 available at www.gaisler.com.
27903
27904 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
27905 offloading etc.) can be determined by a bit in the control register.
27906 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
27907
27908 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27909 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27910
27911commit 233a8bcd94997f3f345833a3b82e836222f2a206
27912Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
27913Date: Mon Mar 17 17:08:22 2008 -0500
27914
27915 Add CONFIG_MII_INIT in cmd_mii.c
27916
27917 Provide common configuration in do_mii() to execute mii_init()
27918 for all cpu architectures
27919
27920 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27921 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27922
27923commit f605479de2deb11e834f31dfdb0af107c86aced6
27924Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
27925Date: Mon Mar 17 17:08:16 2008 -0500
27926
27927 ColdFire: Fix FEC transmit issue for MCF5275
27928
27929 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
27930 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27931
27932commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
27933Author: Aras Vaichas <arasv@magtech.com.au>
27934Date: Wed Mar 26 09:43:57 2008 +1100
27935
27936 DHCP request fix for Windows Server 2003
27937
27938 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
27939 delay before sending "DHCP Request" in net/bootp.c. Required to overcome
27940 interoperability problems with Windows Server 200x DHCP server when U-Boot
27941 client responds too fast for server to handle.
27942
27943 Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
27944 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27945
27946commit 97bf85d784fbed485e652eb907589ad0d5cb7262
27947Author: Daniel Hellstrom <daniel@gaisler.com>
27948Date: Fri Mar 28 20:40:19 2008 +0100
27949
27950 MTD/CFI: flash_read64 is defined a weak function (for SPARC)
27951
27952 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
27953 SPARC CPUs implement flash_read64 which calls __raw_readq.
27954
27955 For current SPARC architectures (LEON2 and LEON3) each read from the
27956 FLASH must lead to a cache miss. This is because FLASH can not be set
27957 non-cacheable since program code resides there, and alternatively disabling
27958 cache is poor from performance view, or doing a cache flush between each
27959 read is even poorer.
27960
27961 Forcing a cache miss on a SPARC is done by a special instruction "lda" -
27962 load alternative space, the alternative space number (ASI) is processor
27963 implementation spcific and can be found by including <asm/processor.h>.
27964
27965 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
27966
27967commit 70431e8a7393b6b793f77957f95b999fc9a269b8
27968Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
27969Date: Fri Mar 28 15:41:25 2008 +0100
27970
27971 Make MPC83xx one step closer to full relocation.
27972
27973 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
27974 and use GOT relative reference.
27975
27976 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
27977 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27978
27979commit 5b2793a3f3de34d439232b05acc8af67a028fd35
27980Author: Michael Barkowski <michael.barkowski@freescale.com>
27981Date: Thu Mar 27 14:34:43 2008 -0400
27982
27983 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
27984
27985 This patch fixes eeprom page size so that you can now write more than
27986 64 bytes at a time.
27987
27988 It also makes the board take MAC addresses, if found, from EEPROM.
27989
27990 User should place up to 4 addresses at offset 0x7f00, for
27991 eth{,1,2,3}addr. Any unused addresses should be zero. This group of
27992 four six-byte values should have it's CRC at the end. crc32 and
27993 eeprom commands can be used to accomplish this.
27994
27995 If CRC fails, MAC addresses come from the environment. If CRC
27996 succeeds, the environment is overwritten at startup.
27997
27998 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
27999 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28000
28001commit 8f325cff31f6e745e6540014b131b9a97f61944c
28002Author: Michael Barkowski <michael.barkowski@freescale.com>
28003Date: Fri Mar 28 15:15:38 2008 -0400
28004
28005 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
28006
28007 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
28008 controller on the PCI bus in Linux on the MPC8323ERDB.
28009
28010 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
28011 config file.
28012
28013 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
28014 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28015
28016commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
28017Author: Kim Phillips <kim.phillips@freescale.com>
28018Date: Fri Mar 28 10:19:07 2008 -0500
28019
28020 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
28021
28022 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
28023 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
28024 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
28025 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
28026 convenience macros.
28027
28028 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28029
28030commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
28031Author: Kim Phillips <kim.phillips@freescale.com>
28032Date: Fri Mar 28 10:18:53 2008 -0500
28033
28034 mpc83xx: display ddr frequency in board_add_ram_info banner
28035
28036 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28037
28038commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
28039Author: Kim Phillips <kim.phillips@freescale.com>
28040Date: Fri Mar 28 10:18:40 2008 -0500
28041
28042 mpc83xx: unreinvent mem_clk
28043
28044 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to
28045 mem_*_clk for consistency's sake.
28046
28047 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28048
28049commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
28050Author: Kim Phillips <kim.phillips@freescale.com>
28051Date: Fri Mar 28 14:31:23 2008 -0500
28052
28053 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
28054
28055 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28056
28057commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
28058Author: Dave Liu <r63238@freescale.com>
28059Date: Wed Mar 26 22:57:19 2008 +0800
28060
28061 mpc83xx: enable the SATA interface on mpc837xemds board
28062
28063 Enable the first two SATA interfaces on MPC837xEMDS board,
28064 The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
28065
28066 Signed-off-by: Dave Liu <daveliu@freescale.com>
28067 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28068
28069commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
28070Author: Dave Liu <r63238@freescale.com>
28071Date: Wed Mar 26 22:56:36 2008 +0800
28072
28073 mpc83xx: initialize serdes for MPC837xEMDS boards
28074
28075 This patch is stolen from Anton Vorontsov's patch
28076 for mpc837xerdb boards.
28077
28078 The reference clk and xcorevdd voltage of serdes1/2
28079 is same between mpc837xemds and mpc837xerdb.
28080
28081 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE
28082 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE
28083 8379E: LYNX1- 2 SATA LYNX2- 2 SATA
28084
28085 Signed-off-by: Dave Liu <daveliu@freescale.com>
28086 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28087
28088commit cc8e839abc80887ae832767b5930d40edd6d7eb7
28089Author: Stefan Roese <sr@denx.de>
28090Date: Fri Mar 28 14:09:04 2008 +0100
28091
28092 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
28093
28094 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
28095 interface. This usage can be configured with the jumper J6. This patch
28096 displays the current configuration upon bootup and changes the PCIe
28097 init loop, to only initialize the availabel PCIe slots.
28098
28099 Signed-off-by: Stefan Roese <sr@denx.de>
28100
28101commit 90447ecbbac8572457b6d8903073ac3f120995ba
28102Author: Tor Krill <tor@excito.com>
28103Date: Fri Mar 28 11:29:10 2008 +0100
28104
28105 MTD/CFI: Add support for 16bit legacy AMD flash
28106
28107 Add entry for 512Kx16 AMD flash to jedec_table.
28108 Read out 16bit device id if chipwidth is 16bit.
28109 Fixed coding style after Stefans feedback
28110
28111 Signed-off-by: Tor Krill <tor@excito.com>
28112
28113commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
28114Author: Stefan Roese <sr@denx.de>
28115Date: Fri Mar 28 11:02:53 2008 +0100
28116
28117 ppc: Small change to CFG_MEM_TOP_HIDE description
28118
28119 Signed-off-by: Stefan Roese <sr@denx.de>
28120
28121commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
28122Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28123Date: Thu Mar 27 15:44:12 2008 +0900
28124
28125 sh: Add support stat structure and stat.h
28126
28127 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28128
28129commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
28130Author: Mark Jonas <toertel@gmail.com>
28131Date: Sat Mar 22 19:27:52 2008 +0100
28132
28133 sh: Removed warning when compiling drivers/serial/serial_sh.c.
28134
28135 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
28136 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28137
28138commit f309fa38929ffba71230c02330ffa42f4bba6333
28139Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28140Date: Wed Mar 12 18:02:57 2008 +0900
28141
28142 sh: Remove disable_ctrlc function from R7780MP
28143
28144 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28145
28146commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
28147Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28148Date: Wed Mar 12 17:55:15 2008 +0900
28149
28150 sh: Add maintainer of R7780MP to MAINTAINER file
28151
28152 Update MAINTAINER entry for R7780MP. And fix maintainer's name.
28153
28154 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28155
28156commit f5e2466f7baa887a7df0c536333eea8231333497
28157Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28158Date: Tue Mar 25 17:11:24 2008 +0900
28159
28160 sh: Add support Renesas Solutions R2D plus board
28161
28162 R2D plus is SH reference board used with SH7751R.
28163 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
28164 one PCI bus, VGA, and two Ethernet controller.
28165
28166 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28167
28168commit e92c95180bb5bc5fd4051598a9d60beaba48988d
28169Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28170Date: Wed Mar 12 12:15:29 2008 +0900
28171
28172 sh: Add support SH4 cache control
28173
28174 Add support SH4 cache control and flash_cache function
28175
28176 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28177
28178commit 28e5efde4d925fcb34901d0030d0648de2da7e89
28179Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28180Date: Mon Mar 24 01:53:01 2008 +0900
28181
28182 sh: Add support PCI host driver for SH7751/SH7751R
28183
28184 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28185
28186commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
28187Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28188Date: Mon Mar 24 02:11:26 2008 +0900
28189
28190 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
28191
28192 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28193
28194commit 566933278101c144d75361ea682678a326c1290d
28195Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28196Date: Wed Mar 12 12:10:28 2008 +0900
28197
28198 sh: Add support SuperH SH7751/SH7751R
28199
28200 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28201
28202commit 3313e0e26224fc9a0c445124f3455058c696df84
28203Author: Mark Jonas <toertel@gmail.com>
28204Date: Mon Mar 10 11:37:10 2008 +0100
28205
28206 sh: Added support for SH7720 based board MPR2.
28207
28208 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
28209 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28210
28211commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
28212Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28213Date: Thu Mar 6 14:05:53 2008 +0900
28214
28215 sh: Fix receive FIFO level register of SH4A
28216
28217 Receive FIFO level register is different in SH4A.
28218 Because register is different, cannot occasionally receive data.
28219
28220 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28221
28222commit c133c1fb0b590662206b0eba70f4478ee0300a9a
28223Author: Yusuke Goda <goda.yusuke@renesas.com>
28224Date: Tue Mar 11 12:55:12 2008 +0900
28225
28226 sh: Add support Renesas Solutions R7780MP
28227
28228 Renesas Solutions R7780MP is a reference board on SH7780.
28229 This board has serial, 10/100 base Ethernet deivice, CF slot
28230 and VGA devices. This board can set extension board.
28231 Extension board has 10/100/1000 base Ethernet device, PCI slot,
28232 S-ATA, iDVR slot.
28233
28234 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
28235 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28236
28237commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
28238Author: Yusuke Goda <goda.yusuke@renesas.com>
28239Date: Wed Mar 5 14:30:02 2008 +0900
28240
28241 sh: Add support PCI of SuperH and SH7780
28242
28243 This patch add support PCI of SuperH base code and SH7780 specific code.
28244
28245 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
28246 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28247
28248commit b55523efff2ae11f0b9ae3cc405893c32eb78156
28249Author: Yusuke Goda <goda.yusuke@renesas.com>
28250Date: Wed Mar 5 14:23:26 2008 +0900
28251
28252 sh: Add support SH7780
28253
28254 SH7780 is CPU of Renesas Technology.
28255 This CPU has
28256 - CPU clock 400MHz
28257 - PCI support
28258 - DDR-SDRAM controller
28259 - etc ...
28260
28261 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
28262 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28263
28264commit c2042f5952a686c414031309b8f244513bf578f0
28265Author: goda.yusuke <goda.yusuke@renesas.com>
28266Date: Fri Jan 25 20:46:36 2008 +0900
28267
28268 sh: Add support Renesas Solutions Migo-R board
28269
28270 Migo-R is a board based on SH7722 and has may devices.
28271 In this patch, supported SCIF, NOR flash and Ethernet.
28272
28273 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
28274 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
28275
28276commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
28277Author: Bartlomiej Sieka <tur@semihalf.com>
28278Date: Thu Mar 27 15:06:40 2008 +0100
28279
28280 Fix host tool build breakage, take two
28281
28282 Revert commit 87c8431f and fix build breakage so that the build continues
28283 to work on FC systems.
28284
28285 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
28286
28287commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
28288Author: Stefan Roese <sr@denx.de>
28289Date: Wed Mar 19 09:36:47 2008 +0100
28290
28291 ppc4xx: Enable ECC on LWMON5
28292
28293 Since all ECC related problems seem to be resolved on LWMON5, this patch
28294 now enables ECC support.
28295
28296 We have to write the ECC bytes by zeroing and flushing in smaller
28297 steps, since the whole 256MByte takes too long for the external
28298 watchdog.
28299
28300 Signed-off-by: Stefan Roese <sr@denx.de>
28301
28302commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
28303Author: Larry Johnson <lrj@acm.org>
28304Date: Mon Mar 17 11:10:35 2008 -0500
28305
28306 ppc4xx: Updates to Korat-specific code
28307
28308 This patch contains updates for changes for the Korat PPC440EPx board.
28309 These changes include:
28310
28311 (1) Support for "permanent" and "upgradable" copies of U-Boot, as
28312 described in the new "doc/README.korat" file;
28313
28314 (2) a new memory map for the registers in the board's CPLD;
28315
28316 (3) a revised format for manufacturer's data in serial EEPROM; and
28317
28318 (4) changes to track updates to U-Boot for the Sequoia board.
28319
28320 Signed-off-by: Larry Johnson <lrj@acm.org>
28321
28322commit f766cdf89b3a2a7634b8c5869f606150e332036c
28323Author: Markus Brunner <super.firetwister@gmail.com>
28324Date: Thu Mar 27 10:46:25 2008 +0100
28325
28326 ppc4xx: PPC405EP Set EMAC noise filter bits
28327
28328 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
28329 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
28330 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
28331
28332 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
28333 Signed-off-by: Stefan Roese <sr@denx.de>
28334
28335commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
28336Author: Mike Nuss <mike@terascala.com>
28337Date: Wed Feb 20 11:54:20 2008 -0500
28338
28339 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
28340
28341 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
28342 after startup to change the speed of the clocks. This patch adds the
28343 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
28344 initialization code will reconfigure the PLL to run the system with a CPU
28345 frequency of 667MHz and PLB frequency of 166MHz, without the need for an
28346 external EEPROM.
28347
28348 Signed-off-by: Mike Nuss <mike@terascala.com>
28349 Acked-by: Stefan Roese <sr@denx.de>
28350
28351commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
28352Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28353Date: Thu Mar 27 09:12:40 2008 +0100
28354
28355 new-image: Fix host tool build breakage
28356
28357 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
28358
28359commit 6fb4b640562a10daff0dbe537638d511b5b48650
28360Author: Stefan Roese <sr@denx.de>
28361Date: Thu Mar 27 10:24:03 2008 +0100
28362
28363 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
28364
28365 Signed-off-by: Stefan Roese <sr@denx.de>
28366
28367commit 9462732a3ec551c11862450902cd8ee1bedea6d9
28368Author: Stefan Roese <sr@denx.de>
28369Date: Wed Mar 19 10:23:43 2008 +0100
28370
28371 ppc4xx: Add fdt support to Prodrive alpr
28372
28373 Since this board will probably be ported to arch/powerpc in the
28374 near future, we add device tree support now. This way we are
28375 "ready" for arch/powerpc from now on.
28376
28377 Signed-off-by: Stefan Roese <sr@denx.de>
28378
28379commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
28380Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
28381Date: Mon Mar 17 09:27:56 2008 +0100
28382
28383 ppc4xx: Enable cache support on the ALPR board
28384
28385 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
28386
28387commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
28388Author: Stefan Roese <sr@denx.de>
28389Date: Wed Mar 26 10:14:11 2008 +0100
28390
28391 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
28392
28393 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
28394 memory area will get subtracted from the top (end) of ram and won't get
28395 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
28396 should gets passed the now "corrected" memory size and won't touch it
28397 either. This should work for arch/ppc and arch/powerpc. Only Linux board
28398 ports in arch/powerpc with bootwrapper support, which recalculate the
28399 memory size from the SDRAM controller setup, will have to get fixed
28400 in Linux additionally.
28401
28402 This patch enables this config option on some PPC440EPx boards as a workaround
28403 for the CHIP 11 errata. Here the description from the AMCC documentation:
28404
28405 CHIP_11: End of memory range area restricted access.
28406 Category: 3
28407
28408 Overview:
28409 The 440EPx DDR controller does not acknowledge any
28410 transaction which is determined to be crossing over the
28411 end-of-memory-range boundary, even if the starting address is
28412 within valid memory space. Any such transaction from any PLB4
28413 master will result in a PLB time-out on PLB4 bus.
28414
28415 Impact:
28416 In case of such misaligned bursts, PLB4 masters will not
28417 retrieve any data at all, just the available data up to the
28418 end of memory, especially the 440 CPU. For example, if a CPU
28419 instruction required an operand located in memory within the
28420 last 7 words of memory, the DCU master would burst read 8
28421 words to update the data cache and cross over the
28422 end-of-memory-range boundary. Such a DCU read would not be
28423 answered by the DDR controller, resulting in a PLB4 time-out
28424 and ultimately in a Machine Check interrupt. The data would
28425 be inaccessible to the CPU.
28426
28427 Workaround:
28428 Forbid any application to access the last 256 bytes of DDR
28429 memory. For example, make your operating system believe that
28430 the last 256 bytes of DDR memory are absent. AMCC has a patch
28431 that does this, available for Linux.
28432
28433 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
28434 lwmon5, korat, sequoia
28435
28436 The other remaining 440EPx board were intentionally not included
28437 since it is not clear to me, if they use the end of ram for some
28438 other purpose. This is unclear, since these boards have CONFIG_PRAM
28439 defined and even comments like this:
28440
28441 PMC440.h:
28442 /* esd expects pram at end of physical memory.
28443 * So no logbuffer at the moment.
28444 */
28445
28446 It is strongly recommended to not use the last 256 bytes on those
28447 boards too. Patches from the board maintainers are welcome.
28448
28449 Signed-off-by: Stefan Roese <sr@denx.de>
28450
28451commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
28452Author: Stefan Roese <sr@denx.de>
28453Date: Thu Mar 27 10:09:05 2008 +0100
28454
28455 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
28456
28457 Signed-off-by: Stefan Roese <sr@denx.de>
28458
28459commit d56a3ce179688cde61073a3690e21703d68fafd7
28460Author: Stefan Roese <sr@denx.de>
28461Date: Tue Mar 25 17:51:13 2008 +0100
28462
28463 ppc4xx: Correctly pass phyiscal FLASH base address into dtb
28464
28465 The routine ft_board_setup() configures the EBC NOR mappings for the
28466 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
28467 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
28468 problem, we need to pass the corrected address here too.
28469
28470 Signed-off-by: Stefan Roese <sr@denx.de>
28471
28472commit 9ad31989de12ce5c67b07c4867ead47465655c4b
28473Author: Stefan Roese <sr@denx.de>
28474Date: Wed Mar 19 16:35:12 2008 +0100
28475
28476 ppc4xx: Fix compilation warning in 4xx_enet.c
28477
28478 Signed-off-by: Stefan Roese <sr@denx.de>
28479
28480commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
28481Author: Stefan Roese <sr@denx.de>
28482Date: Wed Mar 19 16:20:49 2008 +0100
28483
28484 ppc4xx: Add AMCC Glacier 406GT eval board support
28485
28486 This patch adds support for the AMCC Glacier 460GT eval board.
28487 The main difference to the Canyonlands board are listed here:
28488
28489 - 4 ethernet ports instead of 2
28490 - no SATA port
28491 - no USB port
28492
28493 Currently EMAC2+3 are not working. This will be fixed in a later
28494 release.
28495
28496 Signed-off-by: Stefan Roese <sr@denx.de>
28497
28498commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
28499Author: Stefan Roese <sr@denx.de>
28500Date: Thu Mar 27 08:47:26 2008 +0100
28501
28502 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
28503
28504 Signed-off-by: Stefan Roese <sr@denx.de>
28505
28506commit b9670dd85be6e0496ef2e231043c23cad9b1d903
28507Author: Anatolij Gustschin <agust@denx.de>
28508Date: Wed Mar 26 21:05:43 2008 +0100
28509
28510 Fix out of tree building issue
28511
28512 Currently U-Boot building in some external directory
28513 doesn't work. This patch tries to fix the problem.
28514
28515 Signed-off-by: Anatolij Gustschin <agust@denx.de>
28516
28517commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
28518Author: Anatolij Gustschin <agust@denx.de>
28519Date: Wed Mar 26 18:13:33 2008 +0100
28520
28521 README: update documentation (availability, links, etc.)
28522
28523 Fix typo in README
28524
28525 Signed-off-by: Anatolij Gustschin <agust@denx.de>
28526
28527commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
28528Author: Anatolij Gustschin <agust@denx.de>
28529Date: Wed Mar 26 17:47:44 2008 +0100
28530
28531 Fix compilation error in cmd_usb.c
28532
28533 This patch fixes compilation error
28534 cmd_usb.c: In function 'do_usb':
28535 cmd_usb.c:552: error: void value not ignored as it ought to be
28536
28537 Signed-off-by: Anatolij Gustschin <agust@denx.de>
28538
28539commit d8c82db482d6b535d12b419d6440b88bf7091c9b
28540Author: Timur Tabi <timur@freescale.com>
28541Date: Fri Mar 14 17:45:29 2008 -0500
28542
28543 Add support for setting the I2C bus speed in fsl_i2c.c
28544
28545 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
28546 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro,
28547 but fsl_i2c.c ignores it and uses conservative value when programming the
28548 I2C bus speed.
28549
28550 Signed-off-by: Timur Tabi <timur@freescale.com>
28551 Acked-by: Andy Fleming <afleming@freescale.com>
28552
28553commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
28554Author: Wolfgang Denk <wd@denx.de>
28555Date: Thu Mar 27 00:03:57 2008 +0100
28556
28557 Coding style cleanup, update CHANGELOG
28558
28559 Signed-off-by: Wolfgang Denk <wd@denx.de>
28560
d049cc7f
WD
28561commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
28562Author: Dave Liu <r63238@freescale.com>
28563Date: Wed Mar 26 22:55:32 2008 +0800
28564
28565 drivers: add the support for Freescale SATA controller
28566
28567 Add the Freescale on-chip SATA controller driver to u-boot,
28568 The SATA controller is used on the 837x and 8315 targets,
28569 The driver can be used to load kernel, fs and dtb.
28570
28571 The features list:
28572 - 1.5/3 Gbps link speed
28573 - LBA48, LBA28 support
28574 - DMA and FPDMA support
28575 - Two ports support
28576
28577 Signed-off-by: Dave Liu <daveliu@freescale.com>
28578
28579commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
28580Author: Dave Liu <r63238@freescale.com>
28581Date: Wed Mar 26 22:54:44 2008 +0800
28582
28583 ata: add the readme for SATA command line
28584
28585 Signed-off-by: Dave Liu <daveliu@freescale.com>
28586
28587commit cd54081cd479e542fc399b8a40651ff11a1ad849
28588Author: Dave Liu <r63238@freescale.com>
28589Date: Wed Mar 26 22:53:24 2008 +0800
28590
28591 ata: enable the sata initialize on boot up
28592
28593 Signed-off-by: Dave Liu <daveliu@freescale.com>
28594
28595commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
28596Author: Dave Liu <r63238@freescale.com>
28597Date: Wed Mar 26 22:52:36 2008 +0800
28598
28599 ata: add the fis struct for SATA
28600
28601 Signed-off-by: Dave Liu <daveliu@freescale.com>
28602
28603commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
28604Author: Dave Liu <r63238@freescale.com>
28605Date: Wed Mar 26 22:51:44 2008 +0800
28606
28607 ata: add the libata support
28608
28609 add simple libata support in u-boot
28610
28611 Signed-off-by: Dave Liu <daveliu@freescale.com>
28612
28613commit 8e9bb43429e50df55fa41932cbe65841ff579220
28614Author: Dave Liu <r63238@freescale.com>
28615Date: Wed Mar 26 22:50:45 2008 +0800
28616
28617 ata: make the ata_piix driver using new SATA framework
28618
28619 original ata_piix driver is using IDE framework, not real
28620 SATA framework. For now, the ata_piix driver is only used
28621 by x86 sc520_cdp board. This patch makes the ata_piix driver
28622 use the new SATA framework, so
28623
28624 - remove the duplicated command stuff
28625 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
28626 - add the CONFIG_CMD_SATA define to sc520_cdp.h
28627
28628 Signed-off-by: Dave Liu <daveliu@freescale.com>
28629
28630commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
28631Author: Dave Liu <r63238@freescale.com>
28632Date: Wed Mar 26 22:49:44 2008 +0800
28633
28634 ata: add the support for SATA framework
28635
28636 - add the SATA framework
28637 - add the SATA command line
28638
28639 Signed-off-by: Dave Liu <daveliu@freescale.com>
28640
28641commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
28642Author: Dave Liu <r63238@freescale.com>
28643Date: Wed Mar 26 22:48:18 2008 +0800
28644
28645 ata: merge the header of ata_piix driver
28646
28647 move the sata.h from include/ to drivers/block/ata_piix.h
28648
28649 Signed-off-by: Dave Liu <daveliu@freescale.com>
28650
28651commit 9eef62804d9695425b24c87b46a61a7fa74afee0
28652Author: Dave Liu <r63238@freescale.com>
28653Date: Wed Mar 26 22:47:06 2008 +0800
28654
28655 ata: merge the ata_piix driver
28656
28657 move the cmd_sata.c from common/ to drivers/ata_piix.c,
28658 the cmd_sata.c have some part of ata_piix controller drivers.
28659 consolidate the driver to have better framework.
28660
28661 Signed-off-by: Dave Liu <daveliu@freescale.com>
28662
1aeed8d7
WD
28663commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
28664Author: Markus Klotzbuecher <mk@denx.de>
28665Date: Wed Mar 26 18:26:43 2008 +0100
28666
28667 USB, Storage: fix a bug introduced in commit
28668 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
28669 to only print only information on one storage device, but not for
28670 multiple.
28671
28672 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28673
28674commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
28675Author: Anatolij Gustschin <agust@denx.de>
28676Date: Wed Mar 26 17:47:44 2008 +0100
28677
28678 Fix compilation error in cmd_usb.c
28679
28680 This patch fixes compilation error
28681 cmd_usb.c: In function 'do_usb':
28682 cmd_usb.c:552: error: void value not ignored as it ought to be
28683
28684 Signed-off-by: Anatolij Gustschin <agust@denx.de>
28685 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28686
28687commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
28688Author: Kumar Gala <galak@kernel.crashing.org>
28689Date: Wed Mar 26 08:53:53 2008 -0500
28690
28691 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
28692
28693 Provide a board_lmb_reserve helper function to ensure we reserve
28694 the page of memory we are using for the boot page translation code.
28695
28696 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28697
28698commit 79679d80021ab095e639e250ca472fe526da02e2
28699Author: Kumar Gala <galak@kernel.crashing.org>
28700Date: Wed Mar 26 08:34:25 2008 -0500
28701
28702 85xx: Update multicore boot mechanism to ePAPR v0.81 spec
28703
28704 The following changes are needed to be inline with ePAPR v0.81:
28705
28706 * r4, r5 and now always set to 0 on boot release
28707 * r7 is used to pass the size of the initial map area (IMA)
28708 * EPAPR_MAGIC value changed for book-e processors
28709 * changes in the spin table layout
28710 * spin table supports a 64-bit physical release address
28711
28712 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28713
28714commit 25eedb2c1958a13110c7de1fc809b624053cc69c
28715Author: Jon Loeliger <jdl@freescale.com>
28716Date: Wed Mar 19 15:02:07 2008 -0500
28717
28718 FSL: Clean up board/freescale/common/Makefile
28719
28720 Each file that can be built here now follows some
28721 CONFIG_ option so that they are appropriately built
28722 or not, as needed. And CONFIG_ defines were added
28723 to various board config files to make sure that happens.
28724
28725 The other board/freescale/*/Makefiles no longer need
28726 to reach up and over into ../common to build their
28727 individually needed files any more.
28728
28729 Boards that are CDS specific were renamed with cds_ prefix.
28730
28731 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28732
28733commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
28734Author: Kumar Gala <galak@kernel.crashing.org>
28735Date: Wed Feb 27 22:00:27 2008 -0600
28736
28737 85xx: Fix merge duplication
28738
28739 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate.
28740
28741 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28742
28743commit 5893b3d0a4084f87a06a5d3dc03db91206818941
28744Author: James Yang <James.Yang@freescale.com>
28745Date: Tue Feb 12 16:35:07 2008 -0600
28746
28747 85xx: Expand CCSR space with more DDR controller registers.
28748
28749 Signed-off-by: James Yang <James.Yang@freescale.com>
28750 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28751 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28752
28753commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
28754Author: James Yang <James.Yang@freescale.com>
28755Date: Fri Feb 8 18:05:08 2008 -0600
28756
28757 85xx: Speed up get_ddr_freq() and get_bus_freq()
28758
28759 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
28760 called. However, get_sys_info() recalculates extraneous information when
28761 called each time. Have get_ddr_freq() and get_bus_freq() return memoized
28762 values from global_data instead.
28763
28764 Signed-off-by: James Yang <James.Yang@freescale.com>
28765 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28766
28767commit e9ea679918fbc9a53fa2f2a904aac874ea736036
28768Author: James Yang <James.Yang@freescale.com>
28769Date: Fri Feb 8 16:46:27 2008 -0600
28770
28771 85xx: Show DDR memory data rate in addition to the memory clock frequency.
28772
28773 Show the DDR memory data rate in addition to the memory clock
28774 frequency. For DDR/DDR2 memories the memory data rate is 2x the
28775 memory clock.
28776
28777 Signed-off-by: James Yang <James.Yang@freescale.com>
28778 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28779
28780commit 591933ca6eabc440e6ed6967233aaf56fce464a3
28781Author: James Yang <James.Yang@freescale.com>
28782Date: Fri Feb 8 16:44:53 2008 -0600
28783
28784 85xx: get_tbclk() speed up and rounding fix
28785
28786 Speed up get_tbclk() by referencing pre-computed bus clock
28787 frequency value from global data instead of sys_info_t. Fix
28788 rounding of result to nearest; previously it was rounding
28789 upwards.
28790
28791 Signed-off-by: James Yang <James.Yang@freescale.com>
28792 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28793
28794commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
28795Author: Andy Fleming <afleming@freescale.com>
28796Date: Wed Feb 6 01:19:40 2008 -0600
28797
28798 Update SVR numbers to expand support
28799
28800 FSL has taken to using SVR[16:23] as an SOC sub-version field. This
28801 is used to distinguish certain variants within an SOC family. To
28802 account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
28803 constants to reflect the larger value. We also add SVR numbers for all
28804 of the current variants. Finally, to make things neater, rather than
28805 use an enormous switch statement to print out the CPU type, we create
28806 and array of SVR/name pairs (using a macro), and print out the CPU name
28807 that matches the SVR SOC version.
28808
28809 Signed-off-by: Andy Fleming <afleming@freescale.com>
28810
28811commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
28812Author: Andy Fleming <afleming@freescale.com>
28813Date: Wed Feb 6 01:12:57 2008 -0600
28814
28815 Add the Freescale PCI device IDs
28816
28817 Signed-off-by: Andy Fleming <afleming@freescale.com>
28818
28819commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
28820Author: Kumar Gala <galak@kernel.crashing.org>
28821Date: Thu Feb 14 11:04:23 2008 -0600
28822
28823 85xx: Added support for multicore boot mechanism
28824
28825 Added the cpu command that provides a generic mechanism to get status,
28826 reset, and release secondary cores in multicore processors.
28827
28828 Added support for using the ePAPR defined spin-table mechanism on 85xx.
28829
28830 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28831 Signed-off-by: Andy Fleming <afleming@freescale.com>
28832
28833commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
28834Author: Kumar Gala <galak@kernel.crashing.org>
28835Date: Thu Jan 17 16:48:33 2008 -0600
28836
28837 85xx: Added support for multicore boot mechanism
28838
28839 Added the cpu command that provides a generic mechanism to get status,
28840 reset, and release secondary cores in multicore processors.
28841
28842 Added support for using the ePAPR defined spin-table mechanism on 85xx.
28843
28844 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28845
28846commit f69766e4b5d47ecd3aa58677a8da875694f364f2
28847Author: Kumar Gala <galak@kernel.crashing.org>
28848Date: Wed Jan 30 14:55:14 2008 -0600
28849
28850 85xx: Add the concept of CFG_CCSRBAR_PHYS
28851
28852 When we go to 36-bit physical addresses we need to keep the concept of
28853 the physical CCSRBAR address seperate from the virtual one.
28854
28855 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
28856
28857 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28858
d049cc7f
WD
28859commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
28860Author: Wolfgang Denk <wd@denx.de>
28861Date: Wed Mar 26 15:38:47 2008 +0100
28862
28863 Coding style cleanup.
28864
28865 Signed-off-by: Wolfgang Denk <wd@denx.de>
28866
28867commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
28868Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28869Date: Wed Mar 26 13:02:13 2008 +0100
28870
28871 Add CFG_RTC_DS1337_NOOSC to turn off OSC output
28872
28873 The default settings for RTC DS1337 keeps the OSC
28874 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
28875 turn it off.
28876
28877 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28878
28879commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
28880Author: Wolfgang Denk <wd@denx.de>
28881Date: Wed Mar 26 11:48:46 2008 +0100
28882
28883 Cleanup coding style, update CHANGELOG
28884
28885 Signed-off-by: Wolfgang Denk <wd@denx.de>
28886
438a4c11
WD
28887commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
28888Author: Wolfgang Denk <wd@denx.de>
28889Date: Wed Mar 26 10:40:12 2008 +0100
28890
28891 README: update documentation (availability, links, etc.)
28892
28893 Signed-off-by: Wolfgang Denk <wd@denx.de>
28894
28895commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
28896Author: Aras Vaichas <arasv@magtech.com.au>
28897Date: Tue Mar 25 12:09:07 2008 +1100
28898
28899 USB Storage, add meaningful return value
28900
28901 This patch changes the "usb storage" command to return success if it
28902 finds a USB storage device, otherwise it returns error.
28903
28904 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28905
28906commit 18e69a35efbb078403db0c0063986470dad7d082
28907Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28908Date: Fri Mar 14 23:20:18 2008 +0300
28909
28910 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
28911
28912 Linux understands "host" (default), "peripheral" and "otg" (broken).
28913 Though, U-Boot doesn't restrict dr_mode variable to these values (think
28914 of renames in future).
28915
28916 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28917 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28918
28919commit c7604783b236e368f225efb7b3efb418fe20b404
28920Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28921Date: Fri Mar 14 23:20:30 2008 +0300
28922
28923 tsec: fix link detection for the RTL8211B PHY
28924
28925 RTL8211B sets link state register after autonegotiation complete,
28926 so with bootdelay=0 RTL8211B will report lack of the link.
28927
28928 To fix this, we should wait for aneg to complete, even if the
28929 link is currently down.
28930
28931 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28932 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28933
28934commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
28935Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28936Date: Mon Mar 24 20:47:09 2008 +0300
28937
28938 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
28939
28940 device_type = "soc" is being deprecated, newer device trees will use
28941 "fsl,soc" and/or "fsl,immr" for the soc nodes.
28942
28943 This patch also adds clock-frequency property for soc nodes (the same
28944 value as bus-frequency).
28945
28946 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28947
28948commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
28949Author: Joe D'Abbraccio <ljd015@freescale.com>
28950Date: Mon Mar 24 13:00:59 2008 -0400
28951
28952 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
28953
28954 With the original value of 1/2 clock cycle delay, the system ran relatively
28955 stable except when we run benchmarks that are intensive users of memory.
28956 When I run samba connected disk with a HDBENCH test, the system locks-up
28957 or reboots sporadically.
28958
28959 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
28960
28961commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
28962Author: Scott Wood <scottwood@freescale.com>
28963Date: Mon Mar 24 12:44:13 2008 -0500
28964
28965 mpc83xx: Set PCI I/O bus-address base to zero.
28966
28967 The device trees for these boards describe PCI I/O as starting from
28968 address zero from the device's perspective.
28969
28970 Placing I/O elsewhere may cause problems with certain PCI boards, and may
28971 cause problems with Linux.
28972
28973 Signed-off-by: Scott Wood <scottwood@freescale.com>
28974
28975commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
28976Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28977Date: Mon Mar 24 20:47:05 2008 +0300
28978
28979 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
28980
28981 At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
28982 This patch fixes "system time drifting" problem.
28983
28984 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28985
28986commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
28987Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28988Date: Mon Mar 24 20:47:02 2008 +0300
28989
28990 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
28991
28992 This is needed to update /choosen/linux,stdout-path properly.
28993
28994 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28995
28996commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
28997Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28998Date: Mon Mar 24 20:47:00 2008 +0300
28999
29000 mpc83xx: MPC8360E-RDK: add dhcp command
29001
29002 Plus modify environment to use it and remove bootfile env variable,
29003 it is internal and CONFIG_BOOTFILE is used for these purposes.
29004
29005 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29006
29007commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
29008Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29009Date: Mon Mar 24 20:46:57 2008 +0300
29010
29011 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
29012
29013 Current DDR setup easily causes memory corruption, this patch fixes it.
29014
29015 Also fix TIMING_CFG0_MRS_CYC definition.
29016
29017 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29018
29019commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
29020Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29021Date: Mon Mar 24 20:46:53 2008 +0300
29022
29023 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
29024
29025 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
29026 controller and FHCI (QE USB).
29027
29028 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29029
29030commit 7ad959490962e6842648d87d4bd795ea6cdcce67
29031Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29032Date: Mon Mar 24 20:46:51 2008 +0300
29033
29034 mpc83xx: MPC8360E-RDK: add support for NAND
29035
29036 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29037
29038commit 9a3e832aeb491861d029991241572ebdf4b5b61b
29039Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29040Date: Mon Mar 24 20:46:46 2008 +0300
29041
29042 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
29043
29044 This is needed for BCM PHYs to work on this board.
29045
29046 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29047
29048commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
29049Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29050Date: Mon Mar 24 20:46:34 2008 +0300
29051
29052 uec: add support for Broadcom BCM5481 Gigabit PHY
29053
29054 This patch adds basic support for Broadcom BCM5481 PHY.
29055
29056 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
29057 Peter Barada <peterb@logicpd.com>.
29058
29059 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29060
29061commit 6a600c3a1876bc203445df4f0fd6b12648259666
29062Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29063Date: Mon Mar 24 20:46:28 2008 +0300
29064
29065 uec: add support for RGMII_RXID interface mode
29066
29067 PHY drivers will use it to setup software delay between RXD and RXC
29068 signals.
29069
29070 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29071
29072commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
29073Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29074Date: Mon Mar 24 20:46:24 2008 +0300
29075
29076 uec: add support for gbit mii status readings
29077
29078 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29079
29080commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
29081Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29082Date: Mon Mar 24 17:40:47 2008 +0300
29083
29084 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
29085
29086 This is primarily for the early console support.
29087
29088 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29089
29090commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
29091Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29092Date: Mon Mar 24 17:40:43 2008 +0300
29093
29094 83xx: initialize serdes for MPC837XRDB boards
29095
29096 On the MPC8377ERDB: 2 SATA and 2 PCI-E.
29097 On the MPC8378ERDB: 2 PCI-E
29098 On the MPC8379ERDB: 4 SATA
29099
29100 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29101
29102commit 453316a2a19642d8afcbca7452e40a6b44a197b1
29103Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29104Date: Mon Mar 24 17:40:32 2008 +0300
29105
29106 83xx: serdes setup routines
29107
29108 This patch adds few routines to configure serdes on 837x targets.
29109
29110 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29111
29112commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
29113Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29114Date: Mon Mar 24 17:40:27 2008 +0300
29115
29116 83xx: split COBJS onto separate lines
29117
29118 ..plus get rid of some #ifdefs in the .c files.
29119
29120 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29121
29122commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
29123Author: Anton Vorontsov <avorontsov@ru.mvista.com>
29124Date: Mon Mar 24 17:40:23 2008 +0300
29125
29126 83xx: nand support for MPC837XRDB boards
29127
29128 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
29129
29130commit 82e45a204190593e8613145a928f998fb8c909c4
29131Author: Jerry Van Baren <gvb.uboot@gmail.com>
29132Date: Tue Mar 18 21:44:41 2008 -0400
29133
29134 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
29135
29136 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
29137 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29138
29139commit 0fa7a1b4719e325fce332689fb8754ec166191ff
29140Author: Michael Barkowski <michael.barkowski@freescale.com>
29141Date: Thu Mar 20 13:15:39 2008 -0400
29142
29143 mpc8323erdb: remove RTC and add EEPROM
29144
29145 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
29146
29147 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
29148 Acked-by: Kim Phillips <kim.phillips@freescale.com>
29149
29150commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
29151Author: Michael Barkowski <michael.barkowski@freescale.com>
29152Date: Thu Mar 20 13:15:34 2008 -0400
29153
29154 mpc8323erdb: Improve the system performance
29155
29156 The following changes are based on kernel UCC ethernet performance:
29157
29158 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode
29159 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT
29160 switch to enable this setting.
29161
29162 The following changes are based on the App Note AN3369 and
29163 verified to improve memory latency using LMbench:
29164
29165 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0
29166 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting
29167 previously.
29168 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on
29169 Twr=15ns, and this was already the setting in DDR_MODE)
29170 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
29171 Trp=15ns)
29172 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
29173 Tras=40ns)
29174 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
29175 Trcd=15ns)
29176 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on
29177 Trfc=75ns)
29178 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based
29179 on Tfaw=50ns)
29180 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
29181 on CL=3 and WL=2).
29182
29183 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
29184 Acked-by: Kim Phillips <kim.phillips@freescale.com>
29185
29186commit fc549c871f43933396a5b3e21d897023d4b31b8d
29187Author: Michael Barkowski <michael.barkowski@freescale.com>
29188Date: Thu Mar 20 13:15:28 2008 -0400
29189
29190 mpc8323erdb: use readable DDR config macros
29191
29192 Use available shift/mask macros to define DDR configuration.
29193
29194 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
29195 Acked-by: Kim Phillips <kim.phillips@freescale.com>
29196
29197commit 89c7784ed90ba50301eec521144f95111e472906
29198Author: Timur Tabi <timur@freescale.com>
29199Date: Fri Feb 8 13:15:55 2008 -0600
29200
29201 83xx: Add Vitesse VSC7385 firmware uploading
29202
29203 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
29204 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
29205 Cleaned up the board header files to make selecting the VSC7385 easier to
29206 control.
29207
29208 Signed-off-by: Timur Tabi <timur@freescale.com>
29209 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
29210
29211commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
29212Author: Timur Tabi <timur@freescale.com>
29213Date: Fri Feb 8 13:15:54 2008 -0600
29214
29215 NET: Add Vitesse VSC7385 firmware uploading
29216
29217 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
29218 and other boards. A small firwmare must be uploaded to its on-board memory
29219 before it can be enabled. This patch adds the code which uploads firmware
29220 (but not the firmware itself).
29221
29222 Previously, this feature was provided by a U-Boot application that was
29223 made available only on Freescale BSPs. The VSC7385 firmware must still
29224 be obtained separately, but at least there is no longer a need for a separate
29225 application.
29226
29227 Signed-off-by: Timur Tabi <timur@freescale.com>
29228 Acked-by: Ben Warren <biggerbadderben@gmail.com>
29229
29230commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
29231Author: Wolfgang Denk <wd@denx.de>
29232Date: Wed Mar 26 00:52:10 2008 +0100
29233
29234 Coding Style cleanyp; update CHANGELOG
29235
29236 Signed-off-by: Wolfgang Denk <wd@denx.de>
29237
aa6f6d17
WD
29238commit 43ddd9c820fec44816188f53346b464e20b3142d
29239Author: Jerry Van Baren <gvb.uboot@gmail.com>
29240Date: Sat Mar 22 14:23:49 2008 -0400
29241
29242 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
29243
29244 These defines embedded the u-boot env variables and/or the bd_t structure
29245 in the fdt blob. The conclusion of discussion on the u-boot email list
29246 was that embedding these in the fdt blob is not useful: there are better
29247 ways of passing the data (in fact, the fdt blob itself replaces the
29248 bd_t struct).
29249
29250 The only board that enables these is the stxxtc and they don't appear
29251 to be used by linux.
29252
29253 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
29254 Acked-by: Kim Phillips <kim.phillips@freescale.com>
29255
29256commit 22ed2285743359fd1fe73e411dff914b2256e68f
29257Author: Stefan Roese <sr@denx.de>
29258Date: Mon Mar 17 10:49:25 2008 +0100
29259
29260 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
29261
29262 Signed-off-by: Stefan Roese <sr@denx.de>
29263
29264commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
29265Author: Kyungmin Park <kmpark@infradead.org>
29266Date: Mon Mar 17 08:54:06 2008 +0900
29267
29268 Add Flex-OneNAND booting support
29269
29270 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
29271 using a NOR Flash interface. This on-chip integration enables system designers
29272 to reduce external system logic and use high-density NAND Flash
29273 in applications that would otherwise have to use more NOR components.
29274
29275 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
29276 in more flexible way. While MLC area of Flex-OneNAND can be used to store data
29277 that require low reliability and high density, SLC area of Flex-OneNAND
29278 to store data that need high reliability and high performance. Flex-OneNAND
29279 can let users take advantage of storing these two different types of data
29280 into one chip, which is making Flex-OneNAND more cost- and space-effective.
29281
29282 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
29283
29284commit c512389cc4a10253249271ff6c887c6dab1f0db2
29285Author: André Schwarz <andre.schwarz@matrix-vision.de>
29286Date: Thu Mar 13 13:50:52 2008 +0100
29287
29288 MPC5200: support setup without FEC
29289
29290 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
29291 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
29292
29293 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
29294 Acked-by: Grant Likely <grant.likely@secretlab.ca>
29295
29296commit aa3511e422946041ef626f80a05ae5e8bfc700e6
29297Author: Jon Loeliger <jdl@freescale.com>
29298Date: Wed Mar 5 18:05:46 2008 -0600
29299
29300 FSL: Move board/mpc8266ads under board/freescale
29301
29302 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29303
29304commit 7f1d846e5c5754449c286587d099d85246062772
29305Author: Jon Loeliger <jdl@freescale.com>
29306Date: Wed Mar 5 18:05:47 2008 -0600
29307
29308 FSL: Move board/mpc7448hpc2 under board/freescale
29309
29310 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29311
29312commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
29313Author: Jon Loeliger <jdl@freescale.com>
29314Date: Wed Mar 5 18:05:45 2008 -0600
29315
29316 FSL: Move board/mpc8260ads under board/freescale
29317
29318 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29319
29320commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
29321Author: goda.yusuke <goda.yusuke@renesas.com>
29322Date: Wed Mar 5 17:08:33 2008 +0900
29323
29324 net: Add support AX88796L ethernet device
29325
29326 AX88796L is device of NE2000 compatible.
29327 This patch support AX88796L ethernet device.
29328
29329 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
29330 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29331
29332commit e0a6140dd381e1eed1ada2291166ef2616d8822b
29333Author: Wolfgang Denk <wd@denx.de>
29334Date: Tue Mar 25 22:50:41 2008 +0100
29335
29336 ne2000 driver: change #ifdef to Makefile conditional compilation
29337
29338 Signed-off-by: Wolfgang Denk <wd@denx.de>
29339
29340commit e710185aae90c64d39c2d453e40e58ceefe4f250
29341Author: goda.yusuke <goda.yusuke@renesas.com>
29342Date: Wed Mar 5 17:08:20 2008 +0900
29343
29344 net: Divided code of NE2000 ethernet driver
29345
29346 There are more devices of the NE2000 base.
29347 A present code is difficult for us to support more devices.
29348 To support more NE2000 clone devices, separated the function.
29349
29350 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
29351 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29352
29353commit 395bce4f59a507a60a475f7ee46bed47de9482df
29354Author: Mike Frysinger <vapier@gentoo.org>
29355Date: Sun Feb 24 23:58:13 2008 -0500
29356
29357 net/Blackfin: move on-chip MAC driver into drivers/net/
29358
29359 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
29360 directory, but it is not board specific, so relocate it to the drivers dir
29361 so that other Blackfin ports can utilize it.
29362
29363 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29364
29365commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
29366Author: Mike Frysinger <vapier@gentoo.org>
29367Date: Sun Feb 24 23:52:35 2008 -0500
29368
29369 smc91111: use SSYNC() rather than asm(ssync) for Blackfin
29370
29371 Since the "ssync" instruction may have hardware anomalies associated with
29372 it, have the smc91111 driver use the SSYNC macro rather than invoking it
29373 directly. We workaround all the anomalies via this macro.
29374
29375 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
29376
29377commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
29378Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
29379Date: Sun Feb 17 22:57:47 2008 +0000
29380
29381 8xx: Update OF support on 8xx
29382
29383 This patch does some shifting around of OF support on 8xx.
29384
29385 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
29386
29387commit 9c666a7db0b2285a270c68810889ce7d5dba304b
29388Author: Kumar Gala <galak@kernel.crashing.org>
29389Date: Fri Feb 15 15:16:18 2008 -0600
29390
29391 ppc: Allow boards to specify how much memory they can map
29392
29393 For historical reasons we limited the stack to 256M because some boards
29394 could only map that much via BATS. However newer boards are capable of
29395 mapping more memory (for example 85xx is capble of doing up to 2G).
29396
29397 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29398
29399commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
29400Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
29401Date: Fri Feb 15 01:05:58 2008 +0000
29402
29403 8xx : Add OF support to Adder875 board port - resubmit
29404
29405 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
29406
29407commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
29408Author: Kumar Gala <galak@kernel.crashing.org>
29409Date: Thu Feb 14 20:44:42 2008 -0600
29410
29411 Add setexpr command
29412
29413 Add a simple expr style command that will set an env variable as the result
29414 of the command. This allows us to do simple math in shell. The following
29415 operations are supported: &, |, ^, +, -, *, /.
29416
29417 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29418
29419commit 3f105faa64b9826e088711fdfcaa70cb1230397a
29420Author: Jon Loeliger <jdl@freescale.com>
29421Date: Wed Mar 5 17:27:48 2008 -0600
29422
29423 FSL: Move board/mpc7448hpc2 under board/freescale
29424
29425 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29426
29427commit 449c703374a8868453425e15da7e2f76221b72e4
29428Author: Jon Loeliger <jdl@freescale.com>
29429Date: Wed Mar 5 17:21:43 2008 -0600
29430
29431 FSL: Move board/mpc8266ads under board/freescale
29432
29433 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29434
29435commit 5863577989ad689427bb750107e9a75f1c1645d2
29436Author: Jon Loeliger <jdl@freescale.com>
29437Date: Wed Mar 5 16:41:41 2008 -0600
29438
29439 FSL: Move board/mpc8260ads under board/freescale
29440
29441 Signed-off-by: Jon Loeliger <jdl@freescale.com>
29442
29443commit 8a773983957ee6c4aa344469b742f29c7d26afbd
29444Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29445Date: Tue Mar 25 21:30:08 2008 +0900
29446
29447 [MIPS] Move gth2_config from ARM section to MIPS
29448
29449 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29450
29451commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
29452Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29453Date: Tue Mar 25 21:30:07 2008 +0900
29454
29455 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
29456
29457 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29458
29459commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
29460Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29461Date: Tue Mar 25 21:30:07 2008 +0900
29462
29463 [MIPS] Fix dcache_status()
29464
29465 You can't judge UNCACHED by Config.K0 LSB.
29466
29467 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29468
29469commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
29470Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29471Date: Tue Mar 25 21:30:07 2008 +0900
29472
29473 [MIPS] Introduce _machine_restart
29474
29475 Handles machine specific functions by using weak functions.
29476
29477 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29478
29479commit decaba6f5cf386d569ac3997bebb871b966c6b18
29480Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29481Date: Tue Mar 25 21:30:07 2008 +0900
29482
29483 [MIPS] Cleanup CP0 Status initialization
29484
29485 Add setup_c0_status from Linux. For the moment we disable interrupts, set
29486 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
29487 reset-time configuration and will work well across most processors.
29488
29489 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29490
29491commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
29492Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29493Date: Tue Mar 25 21:30:07 2008 +0900
29494
29495 [MIPS] Initialize CP0 Cause before setting up CP0 Status register
29496
29497 Without this change, we'll be suffering from deffered WATCH exception
29498 once Status.EXL is cleared. Make sure Cause.WP is cleared.
29499
29500 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29501
29502commit 26138623230ca2bad3c78e05a65527ea70c8b688
29503Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29504Date: Tue Mar 25 21:30:07 2008 +0900
29505
29506 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
29507
29508 Move things to appropriate place.
29509
29510 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29511
29512commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
29513Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29514Date: Tue Mar 25 21:30:06 2008 +0900
29515
29516 [MIPS] Implement flush_cache()
29517
29518 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
29519 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
29520 function is used not only in U-Boot specfic programs but also at loading
29521 target binaries.
29522
29523 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29524
29525commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
29526Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29527Date: Tue Mar 25 21:30:06 2008 +0900
29528
29529 [MIPS] Fix I-/D-cache initialization loops
29530
29531 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
29532 again per a loop for I-cache initialization. But according to 'See MIPS
29533 Run', we're encouraged to use three separate loops rather than combining
29534 them *for both I- and D-cache*. This patch tries to fix this.
29535
29536 In accordance with fixing above, mips_init_[id]cache are separated from
29537 mips_cache_reset(), and rewrite cache loops are completely rewritten with
29538 useful macros.
29539
29540 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29541
29542commit 1898840797c7f50799377bd5b285a8a93a82c419
29543Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29544Date: Tue Mar 25 21:30:06 2008 +0900
29545
29546 [MIPS] Replace memory clearance code with f_fill64
29547
29548 This routine fills memory with zero by 64 bytes, and is 64-bit capable.
29549
29550 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29551
29552commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
29553Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29554Date: Tue Mar 25 21:30:06 2008 +0900
29555
29556 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
29557
29558 This patch replaces the current function definitions with NESTED, LEAF
29559 and END macro. They specify some more additional information about the
29560 function; an alignment of symbol, type of symbol, stack frame usage, etc.
29561 These information explicitly tells the assembler and the debugger about
29562 the types of code we want to generate.
29563
29564 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29565
29566commit 282223a607c611425fa33f5428f8eae6636972bb
29567Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29568Date: Tue Mar 25 11:43:17 2008 +0900
29569
29570 [MIPS] asm headers' updates
29571
29572 Make some asm headers adjusted to the latest Linux kernel.
29573
29574 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29575
29576commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
29577Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29578Date: Tue Mar 25 11:39:29 2008 +0900
29579
29580 [MIPS] Request for the 'mips_cache_lock()' removal
29581
29582 The initial intension of having mips_cache_lock() was to use the cache
29583 as memory for temporary stack use so that a C environment can be set up
29584 as early as possible.
29585
29586 But now mips_cache_lock() follow lowlevel_init(). We've already have the
29587 real memory initilaized at this point, therefore we could/should use it.
29588 No reason to lock at all.
29589
29590 Other problems:
29591
29592 Cache locking is not consistent across MIPS implementaions. Some imple-
29593 mentations don't support locking at all. The style of locking varies -
29594 some support per line locking, others per way, etc. Some parts use bits
29595 in status registers instead of cache ops. Current mips_cache_lock() is
29596 not necessarily general-purpose.
29597
29598 And this is worthy of special mention; once U-Boot/MIPS locks the lines,
29599 they are never get unlocked, so the code relies on whatever gets loaded
29600 after U-Boot to re-initialize the cache and clear the locks. We're sup-
29601 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
29602 but leave the situation as it is for a long time.
29603
29604 For these reasons, I proposed the removal of mips_cache_lock() from the
29605 global start-up code.
29606
29607 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
29608 *things have changed*. If he wants the same behavior as before, he needs
29609 to have CFG_INIT_RAM_LOCK_MIPS in his config file.
29610
29611 If we don't have any regression report through several releases, then
29612 we'll remove codes entirely.
29613
29614 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
29615 Acked-by: Andrew Dyer <amdyer@gmail.com>
29616
29617commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
29618Author: Yuri Tikhonov <yur@emcraft.com>
29619Date: Mon Mar 24 11:30:54 2008 +0100
29620
29621 lwmon5 SYSMON POST: fix backlight control
29622
29623 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
29624 run on the board, then the SYSMON POST controls the display backlight
29625 (doesn't switch backlight ON if POST FAILED, and does switch the
29626 backlight ON if PASSED).
29627
29628 If not, then the video driver controls the display backlight (just
29629 switch ON the backlight upon initialization).
29630
29631 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29632
29633commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
29634Author: Yuri Tikhonov <yur@emcraft.com>
29635Date: Mon Mar 24 11:29:14 2008 +0100
29636
29637 lwmon5 SYSMON POST: fix handling of negative temperatures
29638
29639 Fix errors in the LWMON5 Sysmon POST for negative temperatures.
29640
29641 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29642
29643commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
29644Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29645Date: Fri Mar 7 16:04:25 2008 +0900
29646
29647 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
29648
29649 In current source code, when the device number of PCI is 0, process PCI
29650 bridge without fail. However, when the device number is 0, it is not PCI
29651 always bridge. There are times when device of PCI allocates.
29652
29653 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
29654 use this patch.
29655
29656 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29657 Acked-by: Stefan Roese <sr@denx.de>
29658
29659commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
29660Author: Yuri Tikhonov <yur@emcraft.com>
29661Date: Fri Mar 21 09:18:40 2008 +0100
29662
29663 LWMON5: fix dsPIC POST
29664
29665 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
29666
29667 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
29668
438a4c11
WD
29669commit 388b82fddc7c05596f3f615f190da0448227dc82
29670Author: Bartlomiej Sieka <tur@semihalf.com>
29671Date: Thu Mar 20 23:23:13 2008 +0100
29672
29673 [new uImage] Enable new uImage support for the pcs440ep board.
29674
29675 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29676
29677commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
29678Author: Bartlomiej Sieka <tur@semihalf.com>
29679Date: Thu Mar 20 23:23:13 2008 +0100
29680
29681 [new uImage] Do not compile new uImage format support by default
29682
29683 Disable default building of new uImage format support in preparation
29684 for merge with the master. Support for new format can be enabled on
29685 a per-board basis, by defining the following in the board's config file:
29686
29687 #define CONFIG_FIT 1
29688 #define CONFIG_OF_LIBFDT 1
29689
29690 This can be optionally defined to give more verbose output:
29691
29692 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
29693
29694 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29695
29696commit dafaede8a46c7159310239e036c93e31c6374487
29697Author: Bartlomiej Sieka <tur@semihalf.com>
29698Date: Thu Mar 20 23:20:31 2008 +0100
29699
29700 [new uImage] Disable debuging output in preparation for merge with master
29701
29702 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29703
29704commit fbe7a155027beacebaee9b32e1ada781fe924bca
29705Author: Bartlomiej Sieka <tur@semihalf.com>
29706Date: Thu Mar 20 19:38:45 2008 +0100
29707
29708 [new uImage] Compilation and new uImage handling fixes for imxtract
29709
29710 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
29711 include/config_cmd_default.h. Fix few warnings and handling of new format
29712 images.
29713
29714 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29715
29716commit 36cc8cbb3379d5166f882641123521735c469f92
29717Author: Bartlomiej Sieka <tur@semihalf.com>
29718Date: Thu Mar 20 23:10:19 2008 +0100
29719
29720 [new uImage] Fix autoscr command used with new uImage format
29721
29722 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29723
29724commit 43142e817f0597be412e7cbe19413f5532eafa5d
29725Author: Bartlomiej Sieka <tur@semihalf.com>
29726Date: Thu Mar 20 23:10:19 2008 +0100
29727
29728 [new uImage] Fix *.its files location in documentation
29729
29730 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29731
aa6f6d17
WD
29732commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
29733Author: Wolfgang Denk <wd@denx.de>
29734Date: Thu Mar 20 22:01:38 2008 +0100
29735
29736 lwmon5 POST: remove unreachable code
29737
29738 plus some coding style cleanup
29739
29740 Signed-off-by: Wolfgang Denk <wd@denx.de>
29741
29742commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
29743Author: Yuri Tikhonov <yur@emcraft.com>
29744Date: Thu Mar 20 17:56:04 2008 +0300
29745
29746 LWMON5: POST RTC fix
29747
29748 Modify the RTC API to provide one a status for the time reported by
29749 the rtc_get() function:
29750 0 - a reliable time is guaranteed,
29751 < 0 - a reliable time isn't guaranteed (power fault, clock issues,
29752 and so on).
29753
29754 The RTC chip drivers are responsible for providing this info if the
29755 corresponding chip supports such functionality. If not - always
29756 report that the time is reliable.
29757
29758 The POST RTC test was modified to detect the RTC faults utilizing
29759 this new rtc_get() feature.
29760
29761 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29762
29763commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
29764Author: Martin Krause <martin.krause@tqs.de>
29765Date: Wed Mar 19 14:25:14 2008 +0100
29766
29767 TQM5200B: update MTD partition layout
29768
29769 - insert partition for dtb blob to TQM5200B MTD layout
29770 - set env variables dependent on the configured board
29771 (TQM5200 or TQM5200B)
29772
29773 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29774
29775commit f0105727d132f56a21fa3ed8b162309cca6cac44
29776Author: Stefan Roese <sr@denx.de>
29777Date: Wed Mar 19 07:09:26 2008 +0100
29778
29779 CFI: Small cleanup for FLASH_SHOW_PROGRESS
29780
29781 With this patch we don't need that many #ifdef's in the code. It moves
29782 the subtraction into the macro and defines a NOP-macro when
29783 CONFIG_FLASH_SHOW_PROGRESS is not defined.
29784
29785 Signed-off-by: Stefan Roese <sr@denx.de>
29786 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
29787
29788commit 9a042e9ca512beaaa2cb450274313fc477141241
29789Author: Jerry Van Baren <gvb.uboot@gmail.com>
29790Date: Sat Mar 8 13:48:01 2008 -0500
29791
29792 Flash programming progress countdown.
29793
29794 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
29795
438a4c11
WD
29796commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
29797Author: Bartlomiej Sieka <tur@semihalf.com>
29798Date: Wed Mar 19 10:00:06 2008 +0100
29799
29800 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
29801
29802 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29803
aa6f6d17
WD
29804commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
29805Author: David Gibson <david@gibson.dropbear.id.au>
29806Date: Mon Feb 18 18:09:04 2008 +1100
29807
29808 libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
29809
29810 Since fdt_node_offset_by_compatible() was converted to the new
29811 fdt_next_node() iterator, a chunk of initialization code became
29812 redundant, but was not removed by oversight. This patch cleans it up.
29813
29814 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29815
29816commit d0ccb9b140b472039732de102fc14597eedb14df
29817Author: David Gibson <david@gibson.dropbear.id.au>
29818Date: Mon Feb 18 18:06:31 2008 +1100
29819
29820 libfdt: Trivial cleanup for CHECK_HEADER)
29821
29822 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
29823 However, there are a handful of functions (fdt_move, rw_check_header,
29824 fdt_open_into) from other files which could also use it (currently
29825 they open-code something more-or-less identical). Therefore, this
29826 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
29827 places.
29828
29829 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29830
29831commit fe30a354cdbb808b5f15366a935b151a4ccee74f
29832Author: Kumar Gala <galak@kernel.crashing.org>
29833Date: Wed Feb 20 14:32:36 2008 -0600
29834
29835 Fix fdt boardsetup command parsing
29836
29837 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
29838
29839 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29840
29841commit 804887e6001e2f00bea11431bf34d6d472512cda
29842Author: Kumar Gala <galak@kernel.crashing.org>
29843Date: Fri Feb 15 03:34:36 2008 -0600
29844
29845 Add sub-commands to fdt
29846
29847 fdt header - Display header info
29848 fdt bootcpu <id> - Set boot cpuid
29849 fdt memory <addr> <size> - Add/Update memory node
29850 fdt rsvmem print - Show current mem reserves
29851 fdt rsvmem add <addr> <size> - Add a mem reserve
29852 fdt rsvmem delete <index> - Delete a mem reserves
29853
29854 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29855
29856commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
29857Author: David Gibson <david@gibson.dropbear.id.au>
29858Date: Thu Feb 14 16:50:34 2008 +1100
29859
29860 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
29861
29862 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
29863 node which has NOP tags interspersed with its properties. In this
29864 case fdt_add_subnode_namelen() will put the new subnode before the
29865 first NOP tag, even if there are properties after it, which will
29866 result in an invalid blob.
29867
29868 This patch fixes the bug, and adds a testcase for it.
29869
29870 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29871
29872commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
29873Author: David Gibson <david@gibson.dropbear.id.au>
29874Date: Tue Feb 12 11:58:31 2008 +1100
29875
29876 libfdt: Add and use a node iteration helper function.
29877
29878 This patch adds an fdt_next_node() function which can be used to
29879 iterate through nodes of the tree while keeping track of depth. This
29880 function is used to simplify the iteration code in a lot of other
29881 functions, and is also exported for use by library users.
29882
29883 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29884
29885commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
29886Author: David Gibson <david@gibson.dropbear.id.au>
29887Date: Fri Jan 11 14:55:05 2008 +1100
29888
29889 libfdt: Add fdt_set_name() function
29890
29891 This patch adds an fdt_set_name() function to libfdt, mirroring
29892 fdt_get_name(). This is a r/w function which alters the name of a
29893 given device tree node.
29894
29895 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
29896
29897commit 23e20aa6488e6c0622496549861bfdc74108debe
29898Author: Yuri Tikhonov <yur@pollux.denx.de>
29899Date: Tue Mar 18 13:33:30 2008 +0100
29900
29901 lwmon5: Fix register test logic to match the specific GDC h/w.
29902
29903 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
29904 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29905
29906commit 46bc0a938779aa1d664b847d36b08aa00f22e539
29907Author: Yuri Tikhonov <yur@pollux.denx.de>
29908Date: Tue Mar 18 13:27:57 2008 +0100
29909
29910 Fix backlight in the lwmon5 POST.
29911
29912 Backlight was switched on even when temperature was too low.
29913
29914 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
29915 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29916
29917commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
29918Author: Yuri Tikhonov <yur@pollux.denx.de>
29919Date: Wed Feb 6 18:48:36 2008 +0100
29920
29921 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).
29922
29923 To enable this, alternative, configuration the U-Boot board configuration
29924 file for lwmon5 includes the definitions of alternative addresses for header
29925 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
29926
29927 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
29928 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
29929 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
29930
29931 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29932
29933commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
29934Author: Yuri Tikhonov <yur@pollux.denx.de>
29935Date: Mon Feb 4 17:11:53 2008 +0100
29936
29937 Add support for the lwmon5 board reset via GPIO58.
29938
29939 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
29940 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29941
29942commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
29943Author: Yuri Tikhonov <yur@pollux.denx.de>
29944Date: Mon Feb 4 17:09:55 2008 +0100
29945
29946 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
29947
29948 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
29949 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29950
29951commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
29952Author: Yuri Tikhonov <yur@pollux.denx.de>
29953Date: Mon Feb 4 14:11:03 2008 +0100
29954
29955 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.
29956
29957 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
29958 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29959
29960commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
29961Author: Yuri Tikhonov <yur@pollux.denx.de>
29962Date: Mon Feb 4 14:10:42 2008 +0100
29963
29964 The patch adds new POST tests for the Lwmon5 board. These are:
29965
29966 * External Watchdog test;
29967 * dsPIC tests;
29968 * FPGA test;
29969 * GDC test;
29970 * Sysmon tests.
29971
29972 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
29973 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29974
29975commit c2ed33efbfff5767bca236828e021c55fd547b6c
29976Author: Yuri Tikhonov <yur@pollux.denx.de>
29977Date: Mon Feb 4 14:10:01 2008 +0100
29978
29979 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
29980
29981 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
29982
7ed40117
WD
29983commit 3a5d1e7f1309998791702b2a559e3126781746b9
29984Author: Yuri Tikhonov <yur@pollux.denx.de>
29985Date: Tue Mar 18 13:33:30 2008 +0100
29986
29987 lwmon5: Fix register test logic to match the specific GDC h/w.
29988
29989 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
29990 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
29991
29992commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
29993Author: Yuri Tikhonov <yur@pollux.denx.de>
29994Date: Tue Mar 18 13:27:57 2008 +0100
29995
29996 Fix backlight in the lwmon5 POST.
29997
29998 Backlight was switcehd on even when temperature was too low.
29999
30000 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
30001 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30002
30003commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
30004Author: Yuri Tikhonov <yur@pollux.denx.de>
30005Date: Wed Feb 6 18:48:36 2008 +0100
30006
30007 The patch introduces the alternative configuration of the log buffer for
30008 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
30009 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
30010 PPC440EPX_GPT0_COMP5).
30011
30012 To enable this, alternative, configuration the U-Boot board configuration
30013 file for lwmon5 includes the definitions of alternative addresses for header
30014 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
30015
30016 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
30017 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
30018 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
30019
30020 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30021
30022commit ff818b21b069f4bc9cb73373cc5a16014be101b7
30023Author: Yuri Tikhonov <yur@pollux.denx.de>
30024Date: Mon Feb 4 17:11:53 2008 +0100
30025
30026 Add support for the lwmon5 board reset via GPIO58.
30027
30028 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
30029 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30030
30031commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
30032Author: Yuri Tikhonov <yur@pollux.denx.de>
30033Date: Mon Feb 4 17:09:55 2008 +0100
30034
30035 Some fixes to dspic, fpga, and gdc post tests for lwmon5.
30036 Disable external watch-dog for now.
30037
30038 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
30039 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30040
30041commit e262efe35742c1ad4b0966ff501efc26f34a0aec
30042Author: Yuri Tikhonov <yur@pollux.denx.de>
30043Date: Mon Feb 4 14:11:03 2008 +0100
30044
30045 The patch introduces the CRITICAL feature of POST tests. If the test
30046 marked as POST_CRITICAL fails then the alternative, post_critical,
30047 boot-command is used. If this command is not defined then U-Boot
30048 enters into interactive mode.
30049
30050 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
30051 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30052
30053commit 65b20dcefc89618193fa51947968dada91e4c778
30054Author: Yuri Tikhonov <yur@pollux.denx.de>
30055Date: Mon Feb 4 14:10:42 2008 +0100
30056
30057 The patch adds new POST tests for the Lwmon5 board.
30058 These are:
30059
30060 * External Watchdog test;
30061 * dsPIC tests;
30062 * FPGA test;
30063 * GDC test;
30064 * Sysmon tests.
30065
30066 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
30067 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
30068
30069commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
30070Author: Yuri Tikhonov <yur@pollux.denx.de>
30071Date: Mon Feb 4 14:10:01 2008 +0100
30072
30073 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
30074
30075 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
30076
aa6f6d17
WD
30077commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
30078Author: Wolfgang Denk <wd@denx.de>
30079Date: Tue Mar 18 17:35:51 2008 +0100
30080
30081 HMI1001: fix compile problem.
30082
30083 Signed-off-by: Wolfgang Denk <wd@denx.de>
30084
30085commit 1f2a9970109cebf7446e0503b10b71f8673045ee
30086Author: Mike Frysinger <vapier@gentoo.org>
30087Date: Mon Feb 18 05:32:30 2008 -0500
30088
30089 Blackfin: BF537-stamp: drop board-specific flash driver for CFI
30090
30091 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
30092 for the board specific driver at all. Just use the common CFI driver.
30093
30094 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30095
30096commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
30097Author: Mike Frysinger <vapier@gentoo.org>
30098Date: Tue Feb 19 00:36:14 2008 -0500
30099
30100 Blackfin: add proper ELF markings to some assembly functions
30101
30102 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30103
30104commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
30105Author: Mike Frysinger <vapier@gentoo.org>
30106Date: Tue Feb 19 00:35:17 2008 -0500
30107
30108 Blackfin: new cplbinfo command for viewing cplb tables
30109
30110 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30111
30112commit aadb72503cd1602349a5fe53356d5f55ecc1b900
30113Author: Mike Frysinger <vapier@gentoo.org>
30114Date: Mon Feb 18 05:37:51 2008 -0500
30115
30116 Blackfin: update MAINTAINERS list
30117
30118 Add maintainer information for the Blackfin boards.
30119
30120 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30121
30122commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
30123Author: Mike Frysinger <vapier@gentoo.org>
30124Date: Mon Feb 18 05:26:48 2008 -0500
30125
30126 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
30127
30128 Stop tying things to the processor that should be tied to other defines and
30129 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
30130 system to select the -mcpu option.
30131
30132 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30133
30134commit 86a20fb920bd198105acf7b1191117f566d637ed
30135Author: Mike Frysinger <vapier@gentoo.org>
30136Date: Sat Feb 16 07:40:36 2008 -0500
30137
30138 Blackfin: move bootldr command to common code
30139
30140 This moves the Blackfin-common bootldr command out of the BF537-STAMP
30141 specific board directory and into the common directory so that all Blackfin
30142 boards may utilize it.
30143
30144 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
30145
30146commit decbe029b2a9d3333d02c433389b1c821eea96d7
30147Author: Heiko Schocher <hs@denx.de>
30148Date: Fri Mar 14 11:05:20 2008 +0100
30149
30150 mgcoge: update configuration
30151
30152 Fix configuration for mgcoge board
30153
30154 Signed-off-by: Heiko Schocher <hs@denx.de>
30155
30156commit c136724cda0219c49f1d4b346f00da29b14fdf14
30157Author: Wolfgang Denk <wd@denx.de>
30158Date: Sun Mar 16 01:22:59 2008 +0100
30159
30160 drivers/rtc/Makefile: keep list sorted
30161
30162 Signed-off-by: Wolfgang Denk <wd@denx.de>
30163
30164commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
30165Author: Tor Krill <tor@excito.com>
30166Date: Sat Mar 15 15:40:26 2008 +0100
30167
30168 Add support for Intersil isl1208 RTC
30169
30170 Signed-off-by: Tor Krill <tor@excito.com>
30171
30172commit 0210cff3d079d97b2156b13685ee8de368e68a1a
30173Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30174Date: Sat Mar 15 17:36:41 2008 +0100
30175
30176 cramfs: Fix ifdef
30177
30178 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30179
30180commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
30181Author: Wolfgang Denk <wd@denx.de>
30182Date: Sun Mar 16 01:12:58 2008 +0100
30183
30184 Conding style cleanup
30185
30186 Signed-off-by: Wolfgang Denk <wd@denx.de>
30187
0b8f2a27
WD
30188commit 41712b4e8c95dff23354bcd620e1f9477160c190
30189Author: Stefan Roese <sr@denx.de>
30190Date: Wed Mar 5 12:31:53 2008 +0100
30191
30192 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
30193
30194 This patch adds USB OHCI support to the Canyonlands board port. It also
30195 enables EXT2 support.
30196
30197 Signed-off-by: Stefan Roese <sr@denx.de>
30198
30199commit 2596f5b9d353ff3e4387a3325d05740f16958038
30200Author: Stefan Roese <sr@denx.de>
30201Date: Wed Mar 5 12:29:32 2008 +0100
30202
30203 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
30204
30205 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
30206 way a board just needs to define this new option to enable the "force
30207 NoPowerSwitching mode" instead of adding new CPU/architecture defines
30208 to the USB source itself.
30209
30210 This new option will be used first with the new AMCC 460EX Canyonlands
30211 board port, which will be posted in a few days.
30212
30213 This patch also fixes a small compilation problem when DEBUG is enabled.
30214
30215 Signed-off-by: Stefan Roese <sr@denx.de>
30216
30217commit 71665ebf88408ff2acb762af47989fd4365b321a
30218Author: Stefan Roese <sr@denx.de>
30219Date: Mon Mar 3 17:27:02 2008 +0100
30220
30221 ppc4xx: Add Canyonlands NAND booting support
30222
30223 460EX doesn't support a fixed bootstrap option to boot from 512 byte page
30224 NAND devices. The only bootstrap option for NAND booting is option F for
30225 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
30226 EEPROM needs to be programmed accordingly.
30227
30228 This patch adds basic NAND booting support for the AMCC Canyonlands aval
30229 board and also adds support to the "bootstrap" command, to enable NAND
30230 booting I2C setting.
30231
30232 Tested with 512 byte page NAND device (32MByte) on Canyonlands.
30233
30234 Signed-off-by: Stefan Roese <sr@denx.de>
30235
30236commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
30237Author: Stefan Roese <sr@denx.de>
30238Date: Tue Mar 11 16:53:00 2008 +0100
30239
30240 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
30241
30242 This patch adds support for the AMCC Canyonlands 460EX evaluation
30243 board.
30244
30245 Signed-off-by: Stefan Roese <sr@denx.de>
30246
30247commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
30248Author: Stefan Roese <sr@denx.de>
30249Date: Tue Mar 11 16:52:24 2008 +0100
30250
30251 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
30252
30253 This patch adds support for the AMCC Canyonlands 460EX evaluation
30254 board.
30255
30256 Signed-off-by: Stefan Roese <sr@denx.de>
30257
30258commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
30259Author: Stefan Roese <sr@denx.de>
30260Date: Tue Mar 11 16:51:17 2008 +0100
30261
30262 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
30263
30264 This patch adds support for the AMCC Canyonlands 460EX evaluation
30265 board.
30266
30267 Signed-off-by: Stefan Roese <sr@denx.de>
30268
30269commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
30270Author: Stefan Roese <sr@denx.de>
30271Date: Tue Mar 11 15:11:43 2008 +0100
30272
30273 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
30274
30275 This patch adds basic support for the AMCC 460EX/460GT PPC's.
30276
30277 Signed-off-by: Stefan Roese <sr@denx.de>
30278
30279commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
30280Author: Stefan Roese <sr@denx.de>
30281Date: Tue Mar 11 15:11:18 2008 +0100
30282
30283 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
30284
30285 This patch adds basic support for the AMCC 460EX/460GT PPC's.
30286
30287 Signed-off-by: Stefan Roese <sr@denx.de>
30288
30289commit 999ecd5aca381984d8ebbeb207ece82a1c275577
30290Author: Stefan Roese <sr@denx.de>
30291Date: Tue Mar 11 15:07:10 2008 +0100
30292
30293 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
30294
30295 This patch adds basic support for the AMCC 460EX/460GT PPC's.
30296
30297 Signed-off-by: Stefan Roese <sr@denx.de>
30298
30299commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
30300Author: Stefan Roese <sr@denx.de>
30301Date: Tue Mar 11 15:05:50 2008 +0100
30302
30303 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
30304
30305 This patch adds basic support for the AMCC 460EX/460GT PPC's.
30306
30307 Signed-off-by: Stefan Roese <sr@denx.de>
30308
30309commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
30310Author: Stefan Roese <sr@denx.de>
30311Date: Tue Mar 11 15:05:26 2008 +0100
30312
30313 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
30314
30315 This patch adds basic support for the AMCC 460EX/460GT PPC's.
30316
30317 Signed-off-by: Stefan Roese <sr@denx.de>
30318
30319commit 56e410178375d9f20be25fb24e180974f0ae120b
30320Author: Stefan Roese <sr@denx.de>
30321Date: Tue Feb 19 22:07:57 2008 +0100
30322
30323 ppc4xx: interrupt.c reworked
30324
30325 This patch is a rework of the 4xx interrupt handling done while
30326 adding the 460EX/GT support. Interrupts are needed on 4xx for the
30327 EMAC driver.
30328
30329 Signed-off-by: Stefan Roese <sr@denx.de>
30330
30331commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
30332Author: Stefan Roese <sr@denx.de>
30333Date: Tue Feb 19 22:01:57 2008 +0100
30334
30335 ppc4xx: program_tlb now uses 64bit physical addess
30336
30337 This patch changes the physical addess parameter from 32bit to 64bit.
30338 This is needed for 36bit 4xx platforms to access areas located
30339 beyond the 4GB border, like SoC peripherals (EBC etc.).
30340
30341 Signed-off-by: Stefan Roese <sr@denx.de>
30342
30343commit c3307fa186af85771924c434997089b8104c0a46
30344Author: Stefan Roese <sr@denx.de>
30345Date: Tue Feb 19 21:58:25 2008 +0100
30346
30347 ppc4xx: miiphy.c reworked
30348
30349 While adding the 460EX/GT support I reworked the 4xx miiphy code. It
30350 badly neede some cleanup.
30351
30352 Signed-off-by: Stefan Roese <sr@denx.de>
30353
30354commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
30355Author: Stefan Roese <sr@denx.de>
30356Date: Tue Feb 19 16:21:49 2008 +0100
30357
30358 rtc: Add M41T62 support
30359
30360 This patch add support for the STM M41T62 RTC. It is used and tested
30361 on the AMCC Canyonlands 406EX platform.
30362
30363 Signed-off-by: Stefan Roese <sr@denx.de>
30364
30365commit 217d383e201adc7f2271145ae345ea5eae2b7170
30366Author: Niklaus Giger <niklaus.giger@netstal.com>
30367Date: Mon Feb 25 18:46:43 2008 +0100
30368
30369 ppc4xx: Add 405GPr based MCU25 board specific files
30370
30371 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30372
30373commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
30374Author: Niklaus Giger <niklaus.giger@netstal.com>
30375Date: Mon Feb 25 18:46:42 2008 +0100
30376
30377 ppc4xx: Add 405GPr based MCU25 board config file
30378
30379 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30380
30381commit b05f35436b733a240559e77e46bed8439665ecc5
30382Author: Niklaus Giger <niklaus.giger@netstal.com>
30383Date: Mon Feb 25 18:46:41 2008 +0100
30384
30385 ppc4xx: Add 405GPr based MCU25 board. Global files
30386
30387 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30388
30389commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
30390Author: Niklaus Giger <niklaus.giger@netstal.com>
30391Date: Mon Feb 25 18:37:02 2008 +0100
30392
30393 ppc4xx: HCU4/5. remove obsolete hcu_flash.c
30394
30395 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30396
30397commit a079494853cc2bfeddb26673219db0b4b2b31566
30398Author: Niklaus Giger <niklaus.giger@netstal.com>
30399Date: Mon Feb 25 18:37:01 2008 +0100
30400
30401 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
30402
30403 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
30404 the FLASH_CFI_LEGACY et al. config options.
30405
30406 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
30407
30408commit e4170e5a50c8110f792bc37472833ae669d69951
30409Author: Stefan Roese <sr@denx.de>
30410Date: Tue Mar 11 13:52:25 2008 +0100
30411
30412 ppc4xx: Fix comment in 405EX DDR2 init code
30413
30414 Signed-off-by: Stefan Roese <sr@denx.de>
30415
438a4c11
WD
30416commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
30417Author: Bartlomiej Sieka <tur@semihalf.com>
30418Date: Fri Mar 14 16:22:34 2008 +0100
30419
30420 Add MD5 support to the new uImage format
30421
30422 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30423
30424commit 0ede0c383530a418cf98be9122371a86573cd0db
30425Author: Bartlomiej Sieka <tur@semihalf.com>
30426Date: Fri Mar 14 16:22:34 2008 +0100
30427
30428 Add the MD5 algorithm
30429
30430 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
30431 calculated using the md5() function -- see include/md5.h for details.
30432
30433 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30434
0b8f2a27
WD
30435commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
30436Author: Wolfgang Denk <wd@denx.de>
30437Date: Fri Mar 14 16:04:54 2008 +0100
30438
30439 tools/setlocalversion: use a git-describe-ish format
30440
30441 Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
30442 where 'nnnnn' is the number of commits since the last tag (i.e.,
30443 1.3.2-rc3). This makes it much easier to recognize "newer" versions
30444 and to see how much has been changed since the referenced tag.
30445
30446 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
30447
30448 Signed-off-by: Wolfgang Denk <wd@denx.de>
30449
30450commit c6dc21c84de0f159a1752c5ebd33cff843f63609
30451Author: Wolfgang Denk <wd@denx.de>
30452Date: Thu Mar 13 14:32:03 2008 +0100
30453
30454 HMI1001: add support for MPC5200 Rev. B processors.
30455
30456 Signed-off-by: Wolfgang Denk <wd@denx.de>
30457
30458commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
30459Author: Wolfgang Denk <wd@denx.de>
30460Date: Thu Mar 13 14:29:49 2008 +0100
30461
30462 TQM5200: remove dead code
30463
30464 This board never used a MGT5100 processor.
30465
30466 Signed-off-by: Wolfgang Denk <wd@denx.de>
30467
438a4c11
WD
30468commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
30469Author: Marian Balakowicz <m8@semihalf.com>
30470Date: Wed Mar 12 12:14:15 2008 +0100
30471
30472 [new uImage] Fix build issue on ARM
30473
30474 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
30475
30476 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30477
30478commit 3310c549a73a949430bfda90876df7552a1dab0c
30479Author: Marian Balakowicz <m8@semihalf.com>
30480Date: Wed Mar 12 12:13:13 2008 +0100
30481
30482 [new uImage] Add new uImage format documentation and examples
30483
30484 Create doc/uImage.FIT documentation directory with the following files:
30485 - command_syntax_extensions.txt : extended command syntax description
30486 - howto.txt : short usage howto
30487 - source_file_format.txt : internal new uImage format description
30488
30489 Add example image source files:
30490 - kernel.its
30491 - kernel_fdt.its
30492 - multi.its
30493
30494 Update README appropriately.
30495
30496 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30497 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30498
30499commit 1ec73761d2e247078f4520a265d463e8b73391a2
30500Author: Marian Balakowicz <m8@semihalf.com>
30501Date: Wed Mar 12 10:35:52 2008 +0100
30502
30503 [new uImage] Fix definition of common bootm_headers_t fields
30504
30505 verify, autostart and lmb fields are used regardless of CONFIG_FIT
30506 setting, move their definitions to common section.
30507
30508 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30509
30510commit 1d1cb4270edc6a99276834064069717f9782c491
30511Author: Marian Balakowicz <m8@semihalf.com>
30512Date: Wed Mar 12 10:35:51 2008 +0100
30513
30514 [new uImage] Fix build problems on trab board
30515
30516 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30517
30518commit f773bea8e11f4a11c388dcee956b2444203e6b65
30519Author: Marian Balakowicz <m8@semihalf.com>
30520Date: Wed Mar 12 10:35:46 2008 +0100
30521
30522 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
30523
30524 Save FIT configuration provied in the first bootm argument and use it
30525 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
30526 arguments are not specified.
30527
30528 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30529
30530commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
30531Author: Marian Balakowicz <m8@semihalf.com>
30532Date: Wed Mar 12 10:33:01 2008 +0100
30533
30534 [new uImage] More verbose kernel image uncompress error message
30535
30536 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30537
30538commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
30539Author: Marian Balakowicz <m8@semihalf.com>
30540Date: Wed Mar 12 10:33:01 2008 +0100
30541
30542 [new uImage] Use show_boot_progress() for new uImage format
30543
30544 This patch allocates a set of show_boot_progress() IDs for new uImage format
30545 and adds show_boot_progress() calls in new uImage format handling code.
30546
30547 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30548
30549commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
30550Author: Marian Balakowicz <m8@semihalf.com>
30551Date: Wed Mar 12 10:33:01 2008 +0100
30552
30553 [new uImage] Add new uImage fromat support to fpga command
30554
30555 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30556
30557commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
30558Author: Marian Balakowicz <m8@semihalf.com>
30559Date: Wed Mar 12 10:33:01 2008 +0100
30560
30561 [new uImage] Add new uImage format handling to other bootm related commands
30562
30563 Updated commands:
30564
30565 docboot - cmd_doc.c
30566 fdcboot - cmd_fdc.c
30567 diskboot - cmd_ide.c
30568 nboot - cmd_nand.c
30569 scsiboot - cmd_scsi.c
30570 usbboot - cmd_usb.c
30571
30572 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30573
30574commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
30575Author: Marian Balakowicz <m8@semihalf.com>
30576Date: Wed Mar 12 10:33:00 2008 +0100
30577
30578 [new uImage] Add new uImage format support to imgextract command
30579
30580 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30581
30582commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
30583Author: Marian Balakowicz <m8@semihalf.com>
30584Date: Wed Mar 12 10:33:00 2008 +0100
30585
30586 [new uImage] Add new uImage format support to autoscript routine
30587
30588 autoscript() routine is updated to accept second argument, which
30589 is only used for FIT images and provides a FIT subimage unit name.
30590
30591 autoscript() routine callers must now pass two arguments. For
30592 non-interactive use (like in cmd_load.c, cmd_net.c), new environment
30593 variable 'autoscript_uname' is introduced and used as a FIT
30594 subimage unit name source.
30595
30596 autoscript command accepts extended syntax of the addr argument:
30597 addr:<subimg_uname>
30598
30599 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30600
30601commit cd7c596e9f561dbbc17b717277438aee78cde14f
30602Author: Marian Balakowicz <m8@semihalf.com>
30603Date: Wed Mar 12 10:33:00 2008 +0100
30604
30605 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
30606
30607 This patch updates architecture specific implementations of
30608 do_bootm_linux() adding new uImage format handling for
30609 operations like get kernel entry point address, get kernel
30610 image data start address.
30611
30612 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30613
30614commit 3dfe110149311425919e6d6a14b561b4207498f1
30615Author: Marian Balakowicz <m8@semihalf.com>
30616Date: Wed Mar 12 10:32:59 2008 +0100
30617
30618 [new uImage] Add node offsets for FIT images listed in struct bootm_headers
30619
30620 This patch adds new node offset fields to struct bootm_headers
30621 and updates bootm_headers processing code to make use of them.
30622 Saved node offsets allow to avoid repeating fit_image_get_node() calls.
30623
30624 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30625
30626commit bc8ed486b125452ba3bd8344f052f437329150c5
30627Author: Marian Balakowicz <m8@semihalf.com>
30628Date: Wed Mar 12 10:32:53 2008 +0100
30629
30630 [new uImage] ppc: Add new uImage format support to FDT handling routines
30631
30632 Support for new (FIT) format uImages is added to powerpc specific
30633 boot_get_fdt() routine which now recognizes, sanity checks FIT image
30634 and is able to access data sections of the requested component image.
30635
30636 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30637
30638commit a44a269a905f924b420020506a4d7d7eedcc0eaf
30639Author: Marian Balakowicz <m8@semihalf.com>
30640Date: Wed Mar 12 10:14:57 2008 +0100
30641
30642 [new uImage] Re-enable interrupts for non automatic booting
30643
30644 Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
30645 environment variable is not set to 'yes'.
30646
30647 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30648
30649commit d985c8498c4e47095820da97aa722381d39172c5
30650Author: Marian Balakowicz <m8@semihalf.com>
30651Date: Wed Mar 12 10:14:38 2008 +0100
30652
30653 [new uImage] Remove unnecessary arguments passed to ramdisk routines
30654
30655 boot_get_ramdisk() and image_get_ramdisk() do not need all
30656 cmdtp, flag, argc and argv arguments. Simplify routines definition.
30657
30658 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30659
30660commit c87796483bc7c2900470dc747c367f602577608d
30661Author: Marian Balakowicz <m8@semihalf.com>
30662Date: Wed Mar 12 10:12:37 2008 +0100
30663
30664 [new uImage] Add new uImage format support for ramdisk handling
30665
30666 This patch updates boot_get_ramdisk() routine adding format
30667 verification and handling for new (FIT) uImages.
30668
30669 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30670
30671commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
30672Author: Marian Balakowicz <m8@semihalf.com>
30673Date: Wed Mar 12 10:01:05 2008 +0100
30674
30675 [new uImage] Add new uImage format support for kernel booting
30676
30677 New format uImages are recognized by the bootm command,
30678 validity of specified kernel component image is checked and
30679 its data section located and used for further processing
30680 (uncompress, load, etc.)
30681
30682 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30683
30684commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
30685Author: Marian Balakowicz <m8@semihalf.com>
30686Date: Tue Mar 11 12:35:20 2008 +0100
30687
30688 [new uImage] Add new uImage format support for imls and iminfo commands
30689
30690 imls and iminfo can now recognize nad print out contents of the new (FIT)
30691 format uImages.
30692
30693 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30694
30695commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
30696Author: Bartlomiej Sieka <tur@semihalf.com>
30697Date: Tue Mar 11 12:34:47 2008 +0100
30698
30699 [new uImage] Add support for new uImage format to mkimage tool
30700
30701 Support for the new uImage format (FIT) is added to mkimage tool.
30702 Commandline syntax is appropriately extended:
30703
30704 mkimage [-D dtc_options] -f fit-image.its fit-image
30705
30706 mkimage (together with dtc) takes fit-image.its and referenced therein
30707 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
30708 final image that can be transferred to the target (e.g., via tftp) and then
30709 booted using the bootm command in U-Boot.
30710
30711 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30712
30713commit eb6175edd6c120d8b89678243e5a2be362ee8e40
30714Author: Marian Balakowicz <m8@semihalf.com>
30715Date: Mon Mar 10 17:53:49 2008 +0100
30716
30717 [new uImage] Make node unit names const in struct bootm_headers
30718
30719 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30720
30721commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
30722Author: Marian Balakowicz <m8@semihalf.com>
30723Date: Fri Feb 29 21:24:06 2008 +0100
30724
30725 [new uImage] New uImage low-level API
30726
30727 Add FDT-based functions for handling new format component images,
30728 configurations, node operations, property get/set, etc.
30729
30730 fit_ - routines handling global new format uImage operations
30731 like get/set top level property, process all nodes, etc.
30732 fit_image_ - routines handling component images subnodes
30733 fit_conf_ - routines handling configurations node
30734
30735 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
30736 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
30737
0b8f2a27
WD
30738commit 30f1806f60978d707b0cff2d7bf89d141fc24290
30739Author: Wolfgang Denk <wd@denx.de>
30740Date: Sun Mar 9 16:20:02 2008 +0100
30741
30742 Release v1.3.2
30743
30744 Update CHANGELOG for release.
30745
30746 Signed-off-by: Wolfgang Denk <wd@denx.de>
30747
30f1806f
WD
30748commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
30749Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30750Date: Sun Mar 9 14:52:11 2008 +0100
30751
30752 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
30753
30754 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30755 Signed-off-by: Wolfgang Denk <wd@denx.de>
30756
30757commit db695b78515ddb88a2d4f3357c120345efbf59ec
30758Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30759Date: Sun Mar 9 10:44:01 2008 +0100
30760
30761 scb9328: Fix flash warning: type qualifiers ignored on function return type
30762
30763 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30764
30765commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
30766Author: Wolfgang Denk <wd@denx.de>
30767Date: Sun Mar 9 10:50:41 2008 +0100
30768
30769 esd/common/fpga.c: fix indentation.
30770
30771 Signed-off-by: Wolfgang Denk <wd@denx.de>
30772
30773commit cc3843e36453e2b8db65d7e56de938ba045016a0
30774Author: Wolfgang Denk <wd@denx.de>
30775Date: Sun Mar 9 10:33:31 2008 +0100
30776
30777 common/kgdb.c: fix 'dereferencing type-punned pointer' warning
30778
30779 and get rid of a couple of unneeded casts.
30780
30781 Signed-off-by: Wolfgang Denk <wd@denx.de>
30782
30783commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
30784Author: Wolfgang Denk <wd@denx.de>
30785Date: Sun Mar 9 10:09:53 2008 +0100
30786
30787 esd/common/fpga.c: fix 'assignment of read-only location' error
30788
30789 Signed-off-by: Wolfgang Denk <wd@denx.de>
30790
30791commit c6fe4dabac066e8758345d249032768496983a3e
30792Author: Wolfgang Denk <wd@denx.de>
30793Date: Sun Mar 9 02:13:19 2008 +0100
30794
30795 Makefile: make build silently again.
30796
30797 Signed-off-by: Wolfgang Denk <wd@denx.de>
30798
30799commit 76babc86576f092573599334c85ec543fdbc6015
30800Author: Wolfgang Denk <wd@denx.de>
30801Date: Sun Mar 9 02:07:49 2008 +0100
30802
30803 m501sk: Fix out of tree building
30804
30805 Signed-off-by: Wolfgang Denk <wd@denx.de>
30806
30807commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
30808Author: Wolfgang Denk <wd@denx.de>
30809Date: Sun Mar 9 00:06:09 2008 +0100
30810
30811 ADS5121: fix out of tree build
30812
30813 and simplify Makefile a bit.
30814
30815 Signed-off-by: Wolfgang Denk <wd@denx.de>
30816
30817commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
30818Author: Wolfgang Denk <wd@denx.de>
30819Date: Sat Mar 8 22:35:31 2008 +0100
30820
30821 Release v1.3.2
30822
30823 Signed-off-by: Wolfgang Denk <wd@denx.de>
30824
30825commit 78a90f827df74520e939c794fc7413dace21c4db
30826Author: Wolfgang Denk <wd@denx.de>
30827Date: Sat Mar 8 22:35:04 2008 +0100
30828
30829 Update CHANGELOG
30830
30831 Signed-off-by: Wolfgang Denk <wd@denx.de>
30832
78a90f82
WD
30833commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
30834Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30835Date: Sat Mar 8 21:30:04 2008 +0100
30836
30837 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
30838
30839 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30840
30841commit d75469d48c05795144f4b8ba76addbb4920a7bba
30842Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30843Date: Sat Mar 8 09:25:49 2008 +0900
30844
30845 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
30846
30847 When rtl_recv() of rtl8169 is called, OWNbit of status register
30848 is not enable occasionally.
30849 rtl_recv() doesn't work normally when the driver doesn't do
30850 appropriate processing.
30851 This patch fix this problem.
30852
30853 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30854
30855commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
30856Author: Heiko Schocher <hs@denx.de>
30857Date: Fri Mar 7 08:15:28 2008 +0100
30858
30859 mgsuvd: update board configuration
30860
30861 initialize the UPIOx controller.
30862
30863 Signed-off-by: Heiko Schocher <hs@denx.de>
30864
30865commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
30866Author: Heiko Schocher <hs@denx.de>
30867Date: Fri Mar 7 08:13:41 2008 +0100
30868
30869 mgcoge: update board configuration
30870
30871 add support for the config Flash.
30872 initialize the UPIOx controller.
30873
30874 Signed-off-by: Heiko Schocher <hs@denx.de>
30875
30876commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
30877Author: Kim Phillips <kim.phillips@freescale.com>
30878Date: Fri Mar 7 12:27:31 2008 -0600
30879
30880 mpc83xx: make dtb basename file references equal those of linux
30881
30882 the dts file basenames were updated in linux - this helps avoid
30883 inadvertently loading any old dtbs laying around.
30884
30885 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30886
30887commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
30888Author: Kim Phillips <kim.phillips@freescale.com>
30889Date: Wed Feb 27 16:08:22 2008 -0600
30890
30891 net: uec_phy: actually increment the timeout counter
30892
30893 allow u-boot to recover (and, e.g., switch to another interface) in the
30894 case where a PHY does not report autonegotiation is complete within its
30895 two second timeout value.
30896
30897 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
30898
30899commit 772003e43957ee0c895abed7cd82cbe72820cbb8
30900Author: Markus Brunner <super.firetwister@googlemail.com>
30901Date: Wed Mar 5 21:38:12 2008 +0100
30902
30903 fix taihu soft spi_read
30904
30905 The taihu board used gpio_read_out_bit which reads the output register and not
30906 the pin state.
30907
30908 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
30909
30910commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
30911Author: Stefan Roese <sr@denx.de>
30912Date: Fri Mar 7 08:01:43 2008 +0100
30913
30914 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
30915
30916 Signed-off-by: Stefan Roese <sr@denx.de>
30917
30918commit bd4458cb47abecabd406b1210457be96c69fc49d
30919Author: Dave Liu <r63238@freescale.com>
30920Date: Tue Mar 4 16:59:22 2008 +0800
30921
30922 837xEMDS: Improve the system performance
30923
30924 1. Make the CSB bus pipeline depth as 4, and enable
30925 the repeat mode;
30926 2. Raise the eTSEC emergency priority;
30927 3. Use the highest IP blocks clock.
30928
30929 Signed-off-by: Dave Liu <daveliu@freescale.com>
30930
30931commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
30932Author: Detlev Zundel <dzu@denx.de>
30933Date: Thu Mar 6 16:45:53 2008 +0100
30934
30935 Replace "run load; run update" with conditionalized "run load update".
30936
30937 The latter version stops when "run load" fails for whatever reasons
30938 rendering the combination *a lot* more secure.
30939
30940 Signed-off-by: Detlev Zundel <dzu@denx.de>
30941
30942commit 6bc113886d7d316df1a4e459bec8baf027518551
30943Author: Stefan Roese <sr@denx.de>
30944Date: Tue Mar 4 17:40:41 2008 +0100
30945
30946 net: Print error message upon net usage when no ethernet-interface is found
30947
30948 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
30949 defined. Then no ethernet interface is available but a simple "tftp"
30950 command will return without any error message which is quite confusing.
30951
30952 Signed-off-by: Stefan Roese <sr@denx.de>
30953
30954commit a30a549a3553032d809e0356306b62de0b125901
30955Author: Jon Loeliger <jdl@freescale.com>
30956Date: Tue Mar 4 10:03:03 2008 -0600
30957
30958 Remove erroneous or extra spd.h #includers.
30959
30960 Many of the spd.h #includers don't need it,
30961 and wanted to have spd_sdram() declared instead.
30962 Since they didn't get that, some also had open
30963 coded extern declarations of it instead or as well.
30964 Fix it all up by using spd_sdram.h where needed.
30965
30966 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30967
30968commit a4475386cef14af3fd88f0518b688e755669486d
30969Author: Wolfgang Denk <wd@denx.de>
30970Date: Tue Mar 4 17:41:28 2008 +0100
30971
30972 PCS440EP: fix build problems (redundant #define)
30973
30974 Signed-off-by: Wolfgang Denk <wd@denx.de>
30975
30976commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
30977Author: Stefan Roese <sr@denx.de>
30978Date: Tue Mar 4 17:39:25 2008 +0100
30979
30980 net: Print error message upon net usage when no ethernet-interface is found
30981
30982 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
30983 defined. Then no ethernet interface is available but a simple "tftp"
30984 command will return without any error message which is quite confusing.
30985
30986 Signed-off-by: Stefan Roese <sr@denx.de>
30987
30988commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
30989Author: Wolfgang Denk <wd@denx.de>
30990Date: Tue Mar 4 17:38:50 2008 +0100
30991
30992 W7OLMC/W7OLMG: fix build problems (redundant #define)
30993
30994 Signed-off-by: Wolfgang Denk <wd@denx.de>
30995
30996commit f9301e1cda296245ba052d7b08321199c3d0af9d
30997Author: Wolfgang Denk <wd@denx.de>
30998Date: Tue Mar 4 14:58:31 2008 +0100
30999
31000 Makefile: fix problem with out-of-tree builds introduced by 5013c09f
31001
31002 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
31003 problem for out-of-tree builds which caused "make clean" to fail.
31004
31005 Signed-off-by: Wolfgang Denk <wd@denx.de>
31006
31007commit dfece9500556bed5d8244b1c15d973cec7c25bfe
31008Author: Wolfgang Denk <wd@denx.de>
31009Date: Tue Mar 4 11:58:26 2008 +0100
31010
31011 examples/Makefile: build "hello_world" on 8xx, too.
31012
31013 Signed-off-by: Wolfgang Denk <wd@denx.de>
31014
31015commit 74eb0222594fd23aafdf168e60e872814eea8b62
31016Author: Mike Nuss <mike@terascala.com>
31017Date: Mon Mar 3 15:27:05 2008 -0500
31018
31019 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
31020
31021 Every now and then a Sequoia board (or equivalent hardware) had
31022 problems connecting to a Gigabit capable network interface.
31023
31024 There were differences in the PHY setup between Linux and U-Boot.
31025
31026 This patch fixes the problem. Apparently "remote fault" is being set,
31027 which signals to some devices (on the other end of the cable) that a
31028 fault has occurred, while other devices ignore it. I believe the RF bit
31029 was causing the issue, but I removed T4 also, to match up with Linux.
31030
31031 Signed-off-by: Mike Nuss <mike@terascala.com>
31032
31033commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
31034Author: Timur Tabi <timur@freescale.com>
31035Date: Mon Mar 3 09:58:52 2008 -0600
31036
31037 fix QE firmware uploading limit
31038
31039 Fix a typo in qe_upload_firmware() that prevented uploading firmware on
31040 systems with more than one RISC core.
31041
31042 Signed-off-by: Timur Tabi <timur@freescale.com>
31043
31044commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
31045Author: Bernhard Nemec <bnemec@ganssloser.com>
31046Date: Mon Mar 3 11:57:23 2008 +0000
31047
31048 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
31049
31050 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
31051 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
31052
01db232d 31053 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
78a90f82
WD
31054
31055commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
31056Author: Kim B. Heino <Kim.Heino@bluegiga.com>
31057Date: Mon Mar 3 10:39:13 2008 +0200
31058
31059 fix copy from ram to dataflash
31060
31061 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
31062 routines instead of dataflash. This is because it checks "if source
31063 address is not dataflash" instead of target address.
31064
31065 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
31066
31067commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
31068Author: Wolfgang Denk <wd@denx.de>
31069Date: Mon Mar 3 12:16:44 2008 +0100
31070
31071 Fix quoting problem (preboot setting) in many board config files.
31072
31073 Signed-off-by: Wolfgang Denk <wd@denx.de>
31074
31075commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
31076Author: Wolfgang Denk <wd@denx.de>
31077Date: Mon Mar 3 12:36:49 2008 +0100
31078
31079 ADS5121: Fix default environment.
31080
31081 Signed-off-by: Wolfgang Denk <wd@denx.de>
31082
31083commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
31084Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31085Date: Sun Mar 2 16:12:31 2008 +0100
31086
31087 Makefile: Fix missing unconfig and mkconfig use
31088
31089 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31090
31091commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
31092Author: michael <trimarchi@gandalf.sssup.it>
31093Date: Sun Mar 2 23:33:46 2008 +0100
31094
31095 Fix checking fat32 cluster size.
31096
31097 This fixes the cluster size tests in the FAT32 file system.
31098 The current implementation of VFAT support doesn't work if the
31099 referred cluster has an offset > 16bit representation, causing
31100 "fatload" and "fatls" commands etc. to fail.
31101
31102 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
31103
31104commit 661bad63a076a96c39c64f136915f146725af92b
31105Author: Wolfgang Denk <wd@denx.de>
31106Date: Sun Mar 2 22:57:23 2008 +0100
31107
31108 Prepare v1.3.2-rc2 release candidate
31109
31110 Signed-off-by: Wolfgang Denk <wd@denx.de>
31111
661bad63
WD
31112commit 76957cb3d621bf664311908e5962e151c633c285
31113Author: Stefan Roese <sr@denx.de>
31114Date: Sat Mar 1 12:11:40 2008 +0100
31115
31116 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
31117
31118 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
31119 currently 4k/2k is configured. This patch fixes this issue.
31120
31121 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
31122
31123 Signed-off-by: Stefan Roese <sr@denx.de>
31124
31125commit 118978c8eb43803e2794233922df4249fa278b83
31126Author: Woodruff, Richard <r-woodruff2@ti.com>
31127Date: Fri Feb 29 17:34:35 2008 -0600
31128
31129 Fix alignment error on ARM for modules
31130
31131 Fix alignment fault on ARM when running modules. With out an explicit
31132 linker file gcc4.2.1 will half word align __bss_start's value. The word
31133 dereference will crash hello_world.
31134
31135 signed-off-by Richard Woodruff <r-woodruff2@ti.com>
31136
31137commit ce1120dd703e6f12c59e4eba9962356a0300b832
31138Author: Dave Liu <r63238@freescale.com>
31139Date: Fri Feb 29 17:45:31 2008 +0800
31140
31141 fs: Fix ext2 read issue
31142
31143 The ext2 aligned process will corrupt the key
31144 data struct, the patch fix this.
31145
31146 Signed-off-by: Dave Liu <daveliu@freescale.com>
31147
31148commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
31149Author: Wolfgang Denk <wd@denx.de>
31150Date: Sun Mar 2 22:45:33 2008 +0100
31151
31152 Makefile: cleanup "clean" target
31153
31154 Make sure CDPATH settings cannot interfere.
31155 Update CHANGELOG.
31156
31157 Signed-off-by: Wolfgang Denk <wd@denx.de>
31158
5013c09f
WD
31159commit ffda586fc1373243c9794babde69500f6293a8d8
31160Author: Li Yang <leoli@freescale.com>
31161Date: Fri Feb 29 11:46:05 2008 +0800
31162
31163 add cscope build target
31164
31165 Add cscope build target to generate cscope database for code browsing.
31166
31167 Signed-off-by: Li Yang <leoli@freescale.com>
31168
31169commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
31170Author: Kim Phillips <kim.phillips@freescale.com>
31171Date: Wed Feb 27 15:06:39 2008 -0600
31172
31173 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
31174
31175 erratum 5.6 states the autoneg completion bit is functional only if the
31176 autoneg bit is asserted.
31177
31178 This fixes any secondarily-issued networking commands on non-gigabit
31179 links on the mpc8360 mds board.
31180
31181 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
31182
31183commit 5f91db7f582ca17b1f19f10189c025696f333d2e
31184Author: John Rigby <jrigby@freescale.com>
31185Date: Tue Feb 26 09:38:14 2008 -0700
31186
31187 MPC5121e ADS PCI support take 3
31188
31189 Adds PCI support for MPC5121
31190
31191 Tested with drivers/net/rtl8139.c
31192
31193 Support is conditional since PCI on old silicon does not work.
31194
31195 ads5121_PCI_config turns on PCI
31196
31197 In this version, condition compilation of PCI code has been moved
31198 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
31199 suggested by Jean-Christophe PLAGNIOL-VILLARD
31200
31201 Signed-off-by: John Rigby <jrigby@freescale.com>
31202
31203commit 44b4dbed4133f657705b7c5193209da9978243a7
31204Author: Anatolij Gustschin <agust@denx.de>
31205Date: Mon Feb 25 23:53:07 2008 +0100
31206
31207 Fix warnings while compilation of post/drivers/memory.c
31208
31209 Fix warnings while compilation with new gcc in eldk-4.2
31210
31211 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31212
31213commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
31214Author: Anatolij Gustschin <agust@denx.de>
31215Date: Mon Feb 25 20:54:04 2008 +0100
31216
31217 ppc4xx: Fix problem in 4xx_enet.c driver
31218
31219 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
31220 enabled. To reproduce the problem ensure that 'ethrotate'
31221 environment variable isn't set to "no" and then run
31222 "tftp 200000 not_existent_file".
31223 This patch tries to fix the issue.
31224
31225 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31226
31227commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
31228Author: Anatolij Gustschin <agust@denx.de>
31229Date: Mon Feb 25 20:04:20 2008 +0100
31230
31231 POST: Disable cache while SPR POST
31232
31233 Currently (since commit b2e2142c) u-boot crashes on
31234 sequoia board while SPR test if CONFIG_4xx_DCACHE is
31235 enabled. This patch disables the cache while SPR test.
31236
31237 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31238
31239commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
31240Author: Martin Krause <martin.krause@tqs.de>
31241Date: Mon Feb 25 17:52:40 2008 +0100
31242
31243 TQM5200: use automatic fdt memory fixup (part 2)
31244
31245 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
31246 TB5200 and TB5200_B to fixup the /memory node with the memory values
31247 detected by U-Boot.
31248
31249 Signed-off-by: Martin Krause <martin.krause@tqs.de>
31250
31251commit 44ceec253ea941b301abf4b079d52324def69d92
31252Author: Martin Krause <martin.krause@tqs.de>
31253Date: Mon Feb 25 15:17:05 2008 +0100
31254
31255 TQM5200: use automatic fdt memory fixup
31256
31257 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
31258 TB5200 and TB5200_B to fixup the /memory node with the memory values
31259 detected by U-Boot.
31260
31261 Signed-off-by: Martin Krause <martin.krause@tqs.de>
31262
31263commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
31264Author: Martin Krause <martin.krause@tqs.de>
31265Date: Mon Feb 25 13:27:52 2008 +0100
31266
31267 TQM5200: fix bug in SDRAM initialization code
31268
31269 This patch fixes a bug in the SDRAM initialization code for the
31270 TQM5200. The hi_addr bit is now set correctly. Without this patch
31271 the hi_addr bit is always set to 1, if the second SDRAM bank is
31272 not populated.
31273
31274 For other MPC5200 boards a correspondig patch has already been applied
31275 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
31276
31277 Signed-off-by: Martin Krause <martin.krause@tqs.de>
31278 --
31279 Forget the first patch please. I confused flash with SDRAM in
31280 the comment ...
31281
31282commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
31283Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31284Date: Mon Feb 25 00:03:12 2008 +0100
31285
31286 mx1fs2/flash: Fix multiple compiler warnings
31287
31288 "pointer targets in assignment differ in signedness"
31289
31290 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31291
31292commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
31293Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31294Date: Mon Feb 25 00:03:11 2008 +0100
31295
31296 arm-imx: Fix register definitions
31297
31298 Sync register definitions with linux
31299
31300 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31301
31302commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
31303Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31304Date: Mon Feb 25 00:03:10 2008 +0100
31305
31306 actua1/actua2/actua3: Fix multiple unused variable warnings
31307
31308 - actua1:
31309 actux1.c: In function 'checkboard':
31310 actux1.c:92: warning: unused variable 'revision'
31311
31312 - actua2:
31313 actux2.c: In function 'checkboard':
31314 actux2.c:100: warning: unused variable 's'
31315 actux2.c:99: warning: unused variable 'revision'
31316 actux2.c: In function 'reset_phy':
31317 actux2.c:130: warning: unused variable 'i'
31318
31319 - actua3:
31320 actux3.c: In function 'checkboard':
31321 actux3.c:114: warning: unused variable 'revision'
31322
31323 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31324
31325commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
31326Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31327Date: Sun Feb 24 11:44:29 2008 +0900
31328
31329 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
31330
31331 The previous patch was lacking of i386, microblaze, nios and nios2. This
31332 patch tries to fix them.
31333
31334 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31335
438a4c11
WD
31336commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
31337Author: Marian Balakowicz <m8@semihalf.com>
31338Date: Fri Feb 29 22:22:46 2008 +0100
31339
31340 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
31341
31342 Do not use global fdt blob pointer, calculate blob size from routine
31343 argument blob pointer.
31344
31345 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31346
31347commit d1cc52879c8966507dad9fb575481e6d3985e64e
31348Author: David Gibson <david@gibson.dropbear.id.au>
31349Date: Tue Feb 12 00:58:31 2008 +1100
31350
31351 libfdt: Add and use a node iteration helper function.
31352
31353 This patch adds an fdt_next_node() function which can be used to
31354 iterate through nodes of the tree while keeping track of depth. This
31355 function is used to simplify the iteration code in a lot of other
31356 functions, and is also exported for use by library users.
31357
31358 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
31359
31360commit 8cf30809a82902a471866d2f07725ce3b8a22291
31361Author: Bartlomiej Sieka <tur@semihalf.com>
31362Date: Fri Feb 29 16:00:24 2008 +0100
31363
31364 [new uImage] Add libfdt support to mkimage
31365
31366 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31367
31368commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
31369Author: Bartlomiej Sieka <tur@semihalf.com>
31370Date: Fri Feb 29 16:00:23 2008 +0100
31371
31372 [new uImage] Add sha1.o object to mkimage binary build
31373
31374 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
31375
31376commit df6f1b895c997978f03afe04502ee76b7ba34ab9
31377Author: Marian Balakowicz <m8@semihalf.com>
31378Date: Fri Feb 29 16:00:06 2008 +0100
31379
31380 [new uImage] Fix component handling for legacy multi component images
31381
31382 Use uint32_t when accessing size table in image_multi_count() and
31383 image_multi_getimg() for multi component images.
31384
31385 Add missing uimage_to_cpu() endianness conversion.
31386
31387 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31388
31389commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
31390Author: Marian Balakowicz <m8@semihalf.com>
31391Date: Fri Feb 29 15:59:59 2008 +0100
31392
31393 [new uImage] Share common uImage code between mkimage and U-boot
31394
31395 This patch adds the following common routines:
31396
31397 1) Dedicated mkimage print_header() is replaced with common
31398 image_print_contents()
31399 image_print_contents_noindent()
31400
31401 2) Common os/arch/type/comp fields name <--> id translation routines
31402 genimg_get_os_name()
31403 genimg_get_arch_name()
31404 genimg_get_type_name()
31405 genimg_get_comp_name()
31406 genimg_get_os_id()
31407 genimg_get_arch_id()
31408 genimg_get_type_id()
31409 genimg_get_comp_id()
31410
31411 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31412
31413commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
31414Author: Marian Balakowicz <m8@semihalf.com>
31415Date: Fri Feb 29 14:58:34 2008 +0100
31416
31417 [new uImage] Update naming convention for bootm/uImage related code
31418
31419 This patch introduces the following prefix convention for the
31420 image format handling and bootm related code:
31421
31422 genimg_ - dual format shared code
31423 image_ - legacy uImage format specific code
31424 fit_ - new uImage format specific code
31425 boot_ - booting process related code
31426
31427 Related routines are renamed and a few pieces of code are moved around and
31428 re-grouped.
31429
31430 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31431
31432commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
31433Author: Kumar Gala <galak@kernel.crashing.org>
31434Date: Wed Feb 27 21:51:51 2008 -0600
31435
31436 [new uImage] Respect autostart setting in linux bootm
31437
31438 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31439 Acked-by: Marian Balakowicz <m8@semihalf.com>
31440
31441commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
31442Author: Kumar Gala <galak@kernel.crashing.org>
31443Date: Wed Feb 27 21:51:50 2008 -0600
31444
31445 [new uImage] Provide ability to restrict region used for boot images
31446
31447 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
31448 to restrict what memory range is used for bootm.
31449
31450 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31451 Acked-by: Marian Balakowicz <m8@semihalf.com>
31452
31453commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
31454Author: Kumar Gala <galak@kernel.crashing.org>
31455Date: Wed Feb 27 21:51:49 2008 -0600
31456
31457 [new uImage] Use lmb for bootm allocations
31458
31459 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
31460 functions over to using lmb for allocation of the ramdisk, command line
31461 and kernel bd info.
31462
31463 Convert PPC specific fdt_relocate() to use lmb for allocation of the device
31464 tree.
31465
31466 Provided a weak function that board code can call to do additional
31467 lmb reserves if needed.
31468
31469 Also introduce the concept of bootmap_base to specify the offset in
31470 physical memory that the bootmap is located at. This is used for
31471 allocations of the cmdline, kernel bd, and device tree as they should
31472 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
31473
31474 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31475
31476commit f5614e7926863bf0225ec860d9b319741a9c4004
31477Author: Kumar Gala <galak@kernel.crashing.org>
31478Date: Wed Feb 27 21:51:48 2008 -0600
31479
31480 [new uImage] Add autostart flag to bootm_headers structure
31481
31482 The autostart env variable was dropped as part of the initial new uImage
31483 cleanup. Add it back here so the arch specific code can decide if it
31484 wants to really boot or not.
31485
31486 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31487 Acked-by: Marian Balakowicz <m8@semihalf.com>
31488
31489commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
31490Author: Kumar Gala <galak@kernel.crashing.org>
31491Date: Wed Feb 27 21:51:47 2008 -0600
31492
31493 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
31494
31495 Introduce the LMB lib used on PPC in the kernel as a clean way to manage
31496 the memory spaces used by various boot images and structures. This code
31497 will allow us to simplify the code in bootm and its support functions.
31498
31499 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31500
31501commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
31502Author: Kumar Gala <galak@kernel.crashing.org>
31503Date: Tue Feb 19 22:03:47 2008 -0600
31504
31505 [new uImage] ppc: Allow boards to specify effective amount of memory
31506
31507 For historical reasons we limited the stack to 256M because some boards
31508 could only map that much via BATS. However newer boards are capable of
31509 mapping more memory (for example 85xx is capable of doing up to 2G).
31510
31511 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31512 Acked-by: Marian Balakowicz <m8@semihalf.com>
31513
31514commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
31515Author: Kumar Gala <galak@kernel.crashing.org>
31516Date: Wed Feb 27 21:51:46 2008 -0600
31517
31518 [new uImage] rework error handling so common functions don't reset
31519
31520 Changed image_get_ramdisk() to just return NULL on error and have
31521 get_ramdisk() propogate that error to the caller. It's left to the
31522 caller to call do_reset() if it wants to.
31523
31524 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
31525 to a common location. In the future we will change get_fdt() and
31526 fdt_relocate() to return success/failure and not call do_reset() at all.
31527
31528 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31529 Acked-by: Marian Balakowicz <m8@semihalf.com>
31530
31531commit d2bc095a639672def11d5d043b5688d0dbd692ec
31532Author: Kumar Gala <galak@kernel.crashing.org>
31533Date: Wed Feb 27 21:51:45 2008 -0600
31534
31535 [new uImage] ppc: Re-order ramdisk/fdt handling sequence
31536
31537 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
31538 however it does mean we have to go in and fixup the initrd info since
31539 we don't know where it will be.
31540
31541 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31542
31543commit 27953493ef025fb698d68c5dee39b36f01f4d530
31544Author: Kumar Gala <galak@kernel.crashing.org>
31545Date: Wed Feb 27 21:51:44 2008 -0600
31546
31547 [new uImage] ppc: Determine if we are booting an OF style
31548
31549 If we are bootin OF style than we can skip setting up some things
31550 that are used for the old boot method.
31551
31552 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31553 Acked-by: Marian Balakowicz <m8@semihalf.com>
31554
31555commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
31556Author: Kumar Gala <galak@kernel.crashing.org>
31557Date: Wed Feb 27 21:51:43 2008 -0600
31558
31559 [new uImage] Don't pass kdb to ramdisk_high since we may not have one
31560
31561 We don't actually need the kdb param as we are just using it to get
31562 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
31563 boot via OF we might not actually fill out a kdb.
31564
31565 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31566 Acked-by: Marian Balakowicz <m8@semihalf.com>
31567
31568commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
5013c09f
WD
31569Author: Kumar Gala <galak@kernel.crashing.org>
31570Date: Wed Feb 27 16:30:47 2008 -0600
31571
31572 85xx: Don't icbi when unlocking the cache
31573
31574 There is no reason to icbi when invalidating the temporary stack in
31575 the d-cache. Its impossible on e500 to have the i-cache contain
31576 any addresses in the temp stack and it can be problematic in generating
31577 transactions on the bus to non-valid addresses.
31578
31579 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31580
31581commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
31582Author: Andy Fleming <afleming@freescale.com>
31583Date: Wed Feb 27 15:50:50 2008 -0600
31584
31585 Fix source for ECM error IVPR
31586
31587 The source vector for the ECM was being set to 2,
31588 but that's what the source vector for DDR was being
31589 set to. Change it to 1.
31590
31591 Signed-off-by: Andy Fleming <afleming@freescale.com>
31592
31593commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
31594Author: Andy Fleming <afleming@freescale.com>
31595Date: Wed Feb 27 14:29:58 2008 -0600
31596
31597 Invalidate INIT_RAM TLB mappings
31598
31599 Commit 0db37dc... (and some others) changed the INIT_RAM TLB
31600 mappings to be unguarded. This collided with an existing "bug"
31601 where the mappings for the INIT_RAM were being kept around.
31602 This meant that speculative loads to those addresses were
31603 succeeding in the TLB, and going out to the bus, where they
31604 were causing an exception (there's nothing at that address). The
31605 Flash code was coincidentally causing such a speculative load.
31606 Rather than go back to mapping the INIT RAM as guarded, we fix
31607 it so that the entries for the INIT_RAM are invalidated. Thus
31608 the speculative loads will fail in the TLB, and have no effect.
31609
31610 Signed-off-by: Andy Fleming <afleming@freescale.com>
31611
31612commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
31613Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31614Date: Sun Feb 17 22:56:17 2008 +0100
31615
31616 sbc8548: Fix Revision reading and unused variable 'path'
31617
31618 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31619
31620commit 495d162374c472f46454453553382ad0735dc725
31621Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31622Date: Sun Feb 17 22:56:16 2008 +0100
31623
31624 sbc8548: Fix cfi flash bank declaration
31625
31626 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31627
438a4c11
WD
31628commit 4efbe9dbb129f857f27856936112c8c02f016be6
31629Author: Marian Balakowicz <m8@semihalf.com>
31630Date: Wed Feb 27 11:02:26 2008 +0100
31631
31632 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
31633
31634 Dual format image code must properly handle all three FDT passing methods:
31635 - raw FDT blob passed
31636 - FDT blob embedded in the legacy uImage
31637 - FDT blob embedded in the new uImage
31638
31639 This patch enables proper raw FDT handling when no FIT imaeg support
31640 is compiled in. This is a bit tricky as we must dected FIT format even
31641 when FIT uImage handling is not enabled as both FIT uImages and raw FDT
31642 blobs use tha same low level format (libfdt).
31643
31644 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31645
31646commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
31647Author: Marian Balakowicz <m8@semihalf.com>
31648Date: Wed Feb 27 11:02:26 2008 +0100
31649
31650 [new uImage] POWERPC: Add image_get_fdt() routine
31651
31652 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
31653 (3) or embedded in the new uImage. For the (2) case embedding image must be
31654 verified before we get FDT from it. This patch factors out legacy image
31655 specific verification routine to the separate helper routine.
31656
31657 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31658 Acked-by: Kumar Gala <galak@kernel.crashing.org>
31659
31660commit 1efd43601f90de21ec6c0ebb9880823e822927b1
31661Author: Marian Balakowicz <m8@semihalf.com>
31662Date: Wed Feb 27 11:02:07 2008 +0100
31663
31664 [new uImage] Add image_get_kernel() routine
31665
31666 Legacy image specific verification is factored out to a separate helper
31667 routine to keep get_kernel() generic and simple.
31668
31669 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31670 Acked-by: Kumar Gala <galak@kernel.crashing.org>
31671
31672commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
31673Author: Marian Balakowicz <m8@semihalf.com>
31674Date: Wed Feb 27 11:01:04 2008 +0100
31675
31676 [new uImage] Move image verify flag to bootm_headers structure
31677
31678 Do not pass image verification flag directly to related routines.
31679 Simplify argument passing and move it to the bootm_header structure which
31680 contains curently processed image specific data and is already being passed
31681 on the argument list.
31682
31683 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31684 Acked-by: Kumar Gala <galak@kernel.crashing.org>
31685
31686commit 823afe7cefe00dafefc6696c1cc7aa828c394234
31687Author: Marian Balakowicz <m8@semihalf.com>
31688Date: Wed Feb 27 11:00:47 2008 +0100
31689
31690 [Makefile] Sort COBJS in lib_<arch> Makefiles
31691
31692 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31693
31694commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
31695Author: Marian Balakowicz <m8@semihalf.com>
31696Date: Wed Feb 27 11:00:47 2008 +0100
31697
31698 [new uImage] Optimize gen_get_image() flow control
31699
31700 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
31701 to do, update its control flow to better reflect that simple case.
31702
31703 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31704 Acked-by: Kumar Gala <galak@kernel.crashing.org>
31705
31706commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
31707Author: Marian Balakowicz <m8@semihalf.com>
31708Date: Mon Feb 4 08:28:17 2008 +0100
31709
31710 [new uImage] POWERPC: Split get_fdt() into get and relocate routines
31711
31712 PPC specific FDT blob handling code is divided into two separate routines:
31713
31714 get_fdt() - find and verify a FDT blob (either raw or image embedded)
31715 fdt_relocate() - move FDT blob to within BOOTMAP if needed
31716
31717 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31718 Acked-by: Kumar Gala <galak@kernel.crashing.org>
31719
5013c09f
WD
31720commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
31721Author: Jon Loeliger <jdl@freescale.com>
31722Date: Mon Feb 25 13:13:37 2008 -0600
31723
31724 86xx: Fix renamed GUR symbols in sbc8641d board.
31725
31726 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
31727 (86xx: Fix GUR PCI config registers properly), we should have
31728 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
31729 symbols in the sbc8641d board as well. Fix this oversight.
31730
31731 Signed-off-by: Jon Loeliger <jdl@freescale.com>
31732
31733commit 64cd594e623c39f73964d18787763e4533f791f7
31734Author: Stefan Roese <sr@denx.de>
31735Date: Mon Feb 25 16:50:48 2008 +0100
31736
31737 ppc4xx: Fix acadia_nand build problem
31738
31739 Don't include testdram() on NAND-booting target acadia_nand. This saves
31740 a few bytes and makes the target build clean again.
31741
31742 Signed-off-by: Stefan Roese <sr@denx.de>
31743
31744commit 14e099e698d41e8179d05c2b2dbcf704a236f748
31745Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31746Date: Sun Feb 24 23:03:12 2008 +0000
31747
31748 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
31749
31750 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31751
31752commit 724902c8464e610642b3a170278b99710325888e
31753Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31754Date: Sun Feb 24 23:03:11 2008 +0000
31755
31756 arm-imx: Fix registers definition
31757
31758 Sync registers definition with linux
31759
31760 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31761
31762commit 4cd288b589ea1178947c6e364453c32b3dede6b7
31763Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31764Date: Sun Feb 24 23:03:10 2008 +0000
31765
31766 actua1/actua2/actua3: Fix multipleunused variable
31767
31768 - actua1:
31769 actux1.c: In function 'checkboard':
31770 actux1.c:92: warning: unused variable 'revision'
31771
31772 - actua2:
31773 actux2.c: In function 'checkboard':
31774 actux2.c:100: warning: unused variable 's'
31775 actux2.c:99: warning: unused variable 'revision'
31776 actux2.c: In function 'reset_phy':
31777 actux2.c:130: warning: unused variable 'i'
31778
31779 - actua3:
31780 actux3.c: In function 'checkboard':
31781 actux3.c:114: warning: unused variable 'revision'
31782
31783 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31784
438a4c11
WD
31785commit d5934ad7756f038a393a9cfab76a4fe306d9d930
31786Author: Marian Balakowicz <m8@semihalf.com>
31787Date: Mon Feb 4 08:28:09 2008 +0100
31788
31789 [new uImage] Add dual format uImage support framework
31790
31791 This patch adds framework for dual format images. Format detection is added
31792 and the bootm controll flow is updated to include cases for new FIT format
31793 uImages.
31794
31795 When the legacy (image_header based) format is detected appropriate
31796 legacy specific handling is invoked. For the new (FIT based) format uImages
31797 dual boot framework has a minial support, that will only print out a
31798 corresponding debug messages. Implementation of the FIT specific handling will
31799 be added in following patches.
31800
31801 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31802
5013c09f
WD
31803commit b29661fc1151077776454288051bc9a488351ce8
31804Author: Wolfgang Denk <wd@denx.de>
31805Date: Sun Feb 24 15:21:36 2008 +0100
31806
31807 Coding style cleanup. Prepare v1.3.2-rc2 release candidate
31808
31809 Signed-off-by: Wolfgang Denk <wd@denx.de>
31810
b29661fc
WD
31811commit 00b48a48424894daa589d166d73277830b1c6ac4
31812Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31813Date: Sat Feb 23 12:15:56 2008 +0100
31814
31815 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
31816
31817 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31818
31819commit b075d74efb70ff68c49a2532f26b56d6703b69c1
31820Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31821Date: Sat Feb 23 17:24:16 2008 +0900
31822
31823 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
31824
31825 ----------------------------------------------------------------
31826 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
31827
31828 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
31829 32bit targets.
31830
31831 GCC can be made to warn about usage of long long types with ISO C90
31832 (-ansi), but only with -pedantic. You can write this in a way that even
31833 then it doesn't cause warnings, namely by:
31834
31835 #ifdef __GNUC__
31836 __extension__ typedef __signed__ long long __s64;
31837 __extension__ typedef unsigned long long __u64;
31838 #endif
31839
31840 The __extension__ keyword in front of this switches off any pedantic
31841 warnings for this expression.
31842
31843 Signed-off-by: Olaf Hering <olh@suse.de>
31844 Cc: <linux-arch@vger.kernel.org>
31845 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
31846 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
31847 ----------------------------------------------------------------
31848
31849 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31850
31851commit 208acd112e6517b21fc30c420396902b103563ac
31852Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31853Date: Sat Feb 23 17:07:57 2008 +0900
31854
31855 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
31856
31857 This will reduce the build time.
31858
31859 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31860
31861commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
31862Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31863Date: Sat Feb 23 17:05:00 2008 +0900
31864
31865 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
31866
31867 This will reduce the build time.
31868
31869 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31870
31871commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
31872Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31873Date: Sat Feb 23 16:58:41 2008 +0900
31874
31875 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
31876
31877 This reduces the build time by ~10%. Here's the gth2_config example.
31878
31879 BEFORE AFTER
31880 real 0m31.441s 0m27.833s
31881 user 0m24.766s 0m23.045s
31882 sys 0m10.425s 0m7.468s
31883
31884 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31885
31886commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
31887Author: Marcel Moolenaar <marcelm@juniper.net>
31888Date: Fri Feb 22 10:48:07 2008 -0800
31889
31890 make define2mk.sed work on FreeBSD
31891
31892 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
31893 the define2mk.sed script was identified as the source of the link
31894 failure on FreeBSD. The problem is that sed(1) does not always support
31895 the '+' operator. It isn't on FreeBSD. The attach patch implements the
31896 equivalent, using the '*' operator instead and should work everywhere.
31897
31898 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
31899
31900commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
31901Author: Detlev Zundel <dzu@denx.de>
31902Date: Fri Feb 22 17:21:32 2008 +0100
31903
31904 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
31905
31906 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
31907 final traces of long-deprecated "ramdisk" kernel parm") makes these
31908 changes neccessary.
31909
31910 Signed-off-by: Detlev Zundel <dzu@denx.de>
31911
31912commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
31913Author: Larry Johnson <lrj@acm.org>
31914Date: Thu Feb 21 13:58:16 2008 -0500
31915
31916 LM75 bug fix for negative temperatures
31917
31918 When the LM75 temperature sensor measures a temperature below 0 C, the
31919 current driver does not perform sign extension, so the result returned is
31920 256 C too high. This patch fixes the problem.
31921
31922 Signed-off-by: Larry Johnson <lrj@acm.org>
31923
31924commit 5a910c224b13e413bda41922379add6d75c32da3
31925Author: Heiko Schocher <hs@denx.de>
31926Date: Thu Feb 21 18:33:45 2008 +0100
31927
31928 IDS8247: update MAINTAINER entry.
31929
31930 Signed-off-by: Heiko Schocher <hs@denx.de>
31931
31932commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
31933Author: Heiko Schocher <hs@denx.de>
31934Date: Thu Feb 21 18:31:15 2008 +0100
31935
31936 Fix device tree for mgsuvd board.
31937
31938 Rename the "scc" node in "ethernet" for the mgsuvd board.
31939
31940 Signed-off-by: Heiko Schocher <hs@denx.de>
31941
31942commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
31943Author: Yuri Tikhonov <yur@emcraft.com>
31944Date: Thu Feb 21 14:23:42 2008 +0100
31945
31946 lwmon5: enable hardware watchdog
31947
31948 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
31949 causing it to reboot the board if U-Boot does a long busy-wait with
31950 udelay(). Thus, for these boards we have to restart WD more
31951 frequently.
31952
31953 This patch splits the busy-wait udelay() into smaller, predefined,
31954 intervals, so that the watchdog timer may be resetted with the
31955 configurable (CONFIG_WD_PERIOD) interval.
31956
31957 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
31958
31959commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
31960Author: Anatolij Gustschin <agust@denx.de>
31961Date: Thu Feb 21 12:52:29 2008 +0100
31962
31963 ppc4xx: Support for ATI Radeon 9200 card on sequoia
31964
31965 Adds configuration option for ATI Radeon 9200 card
31966 support to sequoia config file. If CONFIG_VIDEO
31967 is enabled, TEXT_BASE should be changed to 0xFFF80000.
31968
31969 Signed-off-by: Anatolij Gustschin <agust@denx.de>
31970
31971commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
31972Author: Kumar Gala <galak@kernel.crashing.org>
31973Date: Mon Feb 18 08:18:07 2008 -0600
31974
31975 Remove duplicate defines for ARRAY_SIZE
31976
31977 A few duplicate of the ARRAY_SIZE macro sneaked in since we put
31978 the define in common.h.
31979
31980 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31981
31982commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
31983Author: Kumar Gala <galak@kernel.crashing.org>
31984Date: Mon Feb 18 08:09:37 2008 -0600
31985
31986 ppc: Allow boards to specify effective amount of memory
31987
31988 For historical reasons we limited the stack to 256M because some boards
31989 could only map that much via BATS. However newer boards are capable of
31990 mapping more memory (for example 85xx is capable of doing up to 2G).
31991
31992 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
31993
31994commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
31995Author: Mike Frysinger <vapier@gentoo.org>
31996Date: Mon Feb 18 05:24:13 2008 -0500
31997
31998 include autoconf.mk before any other .mk files
31999
32000 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
32001 those .mk files can have make if statements based on the current config.
32002
32003 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32004
32005commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
32006Author: Mike Frysinger <vapier@gentoo.org>
32007Date: Mon Feb 18 05:10:07 2008 -0500
32008
32009 error check autoconf.mk generation
32010
32011 If any of the steps for generating autoconf.mk fail currently, they go
32012 unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
32013 This is simpler and more robust than placing '|| exit $$?' after every line.
32014
32015 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32016
32017commit 019895a8dee71a9f00da05c03e379f45d581b0fe
32018Author: Stefano Babic <sbabic@denx.de>
32019Date: Mon Feb 18 08:03:51 2008 +0100
32020
32021 Fix bug in dependency checking
32022
32023 By adding VERSION_FILE to the PHONY targets the script
32024 /tools/setlocalversion is always called and version_autogenerated.h
32025 is replaced only if the script find a modified source file.
32026
32027 Signed-off-by: Stefano Babic <sbabic@denx.de>
32028
32029commit 98ba144ccc912eee90dd42699f023c497ce774c6
32030Author: Kyungmin Park <kmpark@infradead.org>
32031Date: Mon Feb 18 14:35:43 2008 +0900
32032
32033 Fix GPMC CS2 memory setup at apollon
32034
32035 It disables the current map first
32036
32037 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
32038
32039commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
32040Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32041Date: Sun Feb 17 23:52:46 2008 +0100
32042
32043 uli526x: Fix multiple differ in signedness and parentheses around comparison
32044
32045 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32046
32047commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
32048Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32049Date: Sun Feb 17 16:58:04 2008 +0100
32050
32051 MIPS: Fix CFG_NO_FLASH support
32052
32053 - Fix flash_init call when CFG_NO_FLASH is used
32054 - Remove no more needed flash.c for qemu-mips
32055
32056 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32057
32058commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
32059Author: Mike Frysinger <vapier@gentoo.org>
32060Date: Sat Feb 16 02:40:18 2008 -0500
32061
32062 easylogo: clean up some more and add -r (rgb) support
32063
32064 Michael Hennerich added support for outputting an image in RGB format rather
32065 than forcing YUYV all the time. This makes obvious sense if the display you
32066 have takes RGB input rather than YUYV.
32067
32068 Rather than hack in support for options, I've converted it to use getopt and
32069 cleaned up the argument parsing in the process.
32070
32071 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
32072 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32073
32074commit f65c98129ccada3f7caf97d80395a95b84e911de
32075Author: Mike Frysinger <vapier@gentoo.org>
32076Date: Sat Feb 16 02:12:37 2008 -0500
32077
32078 Makefile: add target for $(LDSCRIPT)
32079
32080 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
32081 then change into the board directory and try and create it. This allows you
32082 to generate the linker script on the fly based upon board defines (like the
32083 Blackfin boards do).
32084
32085 There should be no regressions due to this change as the normal case is to
32086 already have a u-boot.lds file. If that's the case, then there's nothing to
32087 generate, and so make will always exit. The fix here is that if the linker
32088 script does not exist, the implicit rules take over and attempt to guess how
32089 to generate the file.
32090
32091 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32092
438a4c11
WD
32093commit 5583cbf736474ef754e128a54fb78632f57b48fd
32094Author: Marian Balakowicz <m8@semihalf.com>
32095Date: Thu Feb 21 17:27:49 2008 +0100
32096
32097 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
32098
32099 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
32100
32101commit 2242f5369822bc7780db95c47985bb408ea9157b
32102Author: Marian Balakowicz <m8@semihalf.com>
32103Date: Thu Feb 21 17:27:41 2008 +0100
32104
32105 [new uImage] Rename and move print_image_hdr() routine
32106
32107 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
32108
32109commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
32110Author: Marian Balakowicz <m8@semihalf.com>
32111Date: Thu Feb 21 17:20:20 2008 +0100
32112
32113 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
32114
32115 Introducing routines for parsing new uImage format bootm arguments:
32116 [<addr>]#<conf> - configuration specification
32117 [<addr>]:<subimg> - subimage specification
32118
32119 New format images can contain multiple subimages of the same type. For example
32120 a single new format image file can contain three kernels, two ramdisks and a
32121 couple of FDT blobs. Subimage and configuration specifications are extensions
32122 to bootm (and other image-related commands) arguments' syntax that allow to
32123 specify which particular subimage should be operated on.
32124
32125 Subimage specification is used to denote a particular subimage. Configurations
32126 are a bit more complex -- they are used to define a particualr booting setup,
32127 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
32128 etc.
32129
32130 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
32131
32132commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
32133Author: Marian Balakowicz <m8@semihalf.com>
32134Date: Thu Feb 21 17:20:19 2008 +0100
32135
32136 [new uImage] Add gen_get_image() routine
32137
32138 This routine assures that image (whether legacy or FIT) is not
32139 in a special dataflash storage.
32140
32141 If image address is a dataflash address image is moved to system RAM.
32142
32143 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
32144
32145commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
32146Author: Marian Balakowicz <m8@semihalf.com>
32147Date: Thu Feb 21 17:20:18 2008 +0100
32148
32149 [new uImage] Pull in libfdt if CONFIG_FIT is enabled
32150
32151 New uImage format (Flattened Image Tree) requires libfdt
32152 functionality, print out error message if CONFIG_OF_LIBFDT
32153 is not defined.
32154
32155 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
32156 This commit turns it on by default.
32157
32158 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
32159
b29661fc
WD
32160commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
32161Author: Michael Schwingen <michael@schwingen.org>
32162Date: Mon Feb 18 23:16:35 2008 +0100
32163
32164 CFI: Do not use uninitialized cmd_reset
32165
32166 Do not use uninitialized cmd_reset; issue both AMD and Intel reset
32167 commands instead
32168
32169 From a short test, it looks like AMD-style flash roms treat *any* unknown
32170 command write as a reset, at least when in CFI Query mode, so issuing the
32171 Intel reset command to AMD-style flashs seems safe (from the small sample I
32172 have), plus the 3-cycle magic sequence should kick the state machine into
32173 the right state even without a reset command. Since the AMD-style flashs
32174 require the unlock sequence for real operation, I chose to try the AMD reset
32175 command first, so that Intel flashs do no see an invalid command prior to
32176 the CFI query.
32177
32178 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
32179 plus Intel StrataFlash.
32180
32181 Signed-off-by: Michael Schwingen <michael@schwingen.org>
32182 Signed-off-by: Stefan Roese <sr@denx.de>
32183
32184commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
32185Author: Rafal Jaworowski <raj@semihalf.com>
32186Date: Thu Feb 21 11:56:44 2008 +0100
32187
32188 API: Add (c) and licensing notice to the public API header.
32189
32190 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
32191
32192commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
32193Author: Yuri Tikhonov <yur@emcraft.com>
32194Date: Thu Feb 21 11:06:07 2008 +0100
32195
32196 Fix CPU POST test failure
32197
32198 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
32199 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
32200 by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
32201 This patch just saves the CR value before running the test code, so allowing
32202 it to do anything it wants with CR.
32203
32204 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
32205 Acked-by: Yuri Tikhonov <yur@emcraft.com>
32206 --
32207
32208commit d5908b093955415f3d340706378b991f911af671
32209Author: Jon Loeliger <jdl@freescale.com>
32210Date: Wed Feb 20 15:26:51 2008 -0600
32211
32212 8610HPCD: Document the flashbank selection switches.
32213
32214 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32215
32216commit a551cee99ad1d1da20fd23ad265de47448852f56
32217Author: Jon Loeliger <jdl@freescale.com>
32218Date: Wed Feb 20 14:22:26 2008 -0600
32219
32220 86xx: Fix GUR PCI config registers properly.
32221
32222 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
32223 I tried to "8610HPCD: Fix typos in two PCI setup registers", I
32224 botched it due to not realizing that 8610 and 8641 had different
32225 Global Utility Register defintions, one of which was like 85xx,
32226 and the other wasn't. Correct this problem by introducing two
32227 symbols, one for each 86xx SoC, but neither of which is named
32228 anything like 85xx.
32229
32230 My bad. Lovely Wednesday with git bisect. You know.
32231
32232 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32233
32234commit cb06eb961bdffc8728b38c242473d802e83ab2b4
32235Author: Jon Loeliger <jdl@freescale.com>
32236Date: Wed Feb 20 12:24:11 2008 -0600
32237
32238 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
32239
32240 Without an actual supported video card hooked up, enabling
32241 the CONFIG_VIDEO by default just makes it look broken by
32242 routing all console output to the video card. Don't.
32243
32244 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32245
32246commit 4d264eff4312f230776b913edade7ceb75f1b1e0
32247Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32248Date: Wed Jan 30 15:08:15 2008 -0600
32249
32250 ColdFire: Fix missing code flash size for M5485EVB
32251
32252 Signed-off-by: James Mahan <kmahan@freescale.com>
32253 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32254
32255commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
32256Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32257Date: Wed Jan 30 15:04:42 2008 -0600
32258
32259 ColdFire: Fix 5282 and 5271 interrupt mask bit
32260
32261 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
32262
32263commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
32264Author: Jon Loeliger <jdl@freescale.com>
32265Date: Tue Feb 19 12:31:08 2008 -0600
32266
32267 8610HPCD: Fix typos in two PCI setup registers.
32268
32269 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
32270 were erroneously present as 85xx names and values, leftover from
32271 the clone wars. Fix this by removing the 85xx cruft from the
32272 86xx codebase.
32273
32274 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32275
32276commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
32277Author: Jon Loeliger <jdl@freescale.com>
32278Date: Mon Feb 18 14:01:56 2008 -0600
32279
32280 86xx: Convert sbc8641d to use libfdt.
32281
32282 This is the proper fix for a missing closing brace in the function
01db232d 32283 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
b29661fc
WD
32284 The ft_cpu_setup() function in mpc8641hpcn.c should have been
32285 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
32286 but was missed. Only, the sbc8641d was nominally still using it.
32287 It all got ripped out, and the funcality that was in ft_board_setup()
32288 was refactored to remove the CPU portions into the new file
32289 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now.
32290
32291 Based loosely on an original patch from joe.hamman@embeddedspecialties.com
32292
32293 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32294
32295commit 04efddc87c50c84f85dad5c331c634a6ce830a83
32296Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32297Date: Sun Feb 17 23:35:31 2008 +0100
32298
32299 mpc86xx: Fix unused variable 'config' and 'immap'
32300
32301 and remove useless CONFIG_DDR_INTERLEAVE
32302
32303 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32304
32305commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
32306Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32307Date: Sun Feb 17 23:03:36 2008 +0100
32308
32309 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
32310
32311 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32312
32313commit b6f29c84c208a091f95a10cbc9852d729659ba20
32314Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32315Date: Sun Feb 17 14:15:31 2008 +0100
32316
32317 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
32318
32319 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32320
32321commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
32322Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32323Date: Sun Feb 17 14:15:32 2008 +0100
32324
32325 pxa: fix assignment from incompatible pointer type
32326
32327 fix mmc_bread function prototype
32328
32329 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32330
32331commit 64d792063fff90b8118179b092feee09fe5cae13
32332Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32333Date: Sun Feb 17 14:15:30 2008 +0100
32334
32335 at91cap9adk: fix implicit declaration of function 'eth_init'
32336
32337 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32338
32339commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
32340Author: Wolfgang Denk <wd@denx.de>
32341Date: Sun Feb 17 15:43:44 2008 +0100
32342
32343 Remove files added by mistake, update CHANGELOG.
32344
32345 Signed-off-by: Wolfgang Denk <wd@denx.de>
32346
375c4353
WD
32347commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
32348Author: Mike Nuss <mike@terascala.com>
32349Date: Wed Feb 6 11:10:11 2008 -0500
32350
32351 PPC440EPx: Optionally enable second I2C bus
32352
32353 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
32354 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
32355 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
32356
32357 Signed-off-by: Mike Nuss <mike@terascala.com>
32358 Cc: Stefan Roese <sr@denx.de>
32359
32360commit ef5b4f221c22d05770878513951745f236b5b43f
32361Author: Niklaus Giger <niklaus.giger@netstal.com>
32362Date: Tue Feb 5 10:26:44 2008 +0100
32363
32364 ppc4xx: HCU4/5. Cleanup configs
32365
32366 - hcu4.h: Removed define of CONFIG_PPC405GPr
32367 - Corrected phy addresses
32368 - Fix boot variables
32369 - Respect line length of 80 chars
32370
32371 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32372
32373commit 74973126d1be63ac75bdc192f46234dca3a7c421
32374Author: Niklaus Giger <niklaus.giger@netstal.com>
32375Date: Tue Feb 5 11:31:28 2008 +0100
32376
32377 ppc4xx: HCU4/5. Cleanups
32378
32379 - Fix some coding style violations.
32380 - Use in/out_u16/32 where appropriate.
32381 - Use register names from ppc405.h.
32382 - Fix trace useage for Lauterbach.
32383 - Remove obsolete generation HCU2.
32384 - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
32385
32386 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32387
32388commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
32389Author: Niklaus Giger <niklaus.giger@netstal.com>
32390Date: Tue Feb 5 10:26:41 2008 +0100
32391
32392 ppc4xx: PPC405GPr fix missing register definitions
32393
32394 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
32395
32396commit 214398d9cb22268d9d4f7563359edca0f78297a2
32397Author: Larry Johnson <lrj@acm.org>
32398Date: Fri Jan 18 21:49:05 2008 -0500
32399
32400 ppc4xx: Beautify configuration files for Sequoia and Korat boards
32401
32402 Signed-off-by: Larry Johnson <lrj@acm.org>
32403
32404commit 30c6a241e88499f536e86d325759e29ba00ff67f
32405Author: Anatolij Gustschin <agust@denx.de>
32406Date: Fri Feb 15 20:09:01 2008 +0100
32407
32408 Wipe out assembler warnings while compiling x86 biosemu
32409
32410 This patch tries to get rid of some assembler warnings about
32411 changed .got2 section type while compiling x86 bios emulator
32412 code.
32413
32414 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32415
32416commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
32417Author: Wolfgang Denk <wd@denx.de>
32418Date: Fri Feb 15 00:57:09 2008 +0100
32419
32420 Prepare v1.3.2-rc1 release candidate
32421
67a4389e
WD
32422commit f33e9653c9c09868995d788511d573771c209fe5
32423Author: Anatolij Gustschin <agust@denx.de>
32424Date: Fri Feb 15 00:13:20 2008 +0100
32425
32426 Fix compile warning on lib_ppc/board.c
32427
32428 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32429
32430commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
32431Author: Anatolij Gustschin <agust@denx.de>
32432Date: Thu Feb 14 18:22:04 2008 +0100
32433
32434 Add Radeon Mobility 9200 pci device id to the radeon driver
32435
32436 This patch extends PCI device id table of the
32437 radeon driver so that the driver will also support
32438 Radeon Mobility 9200 (M9+) based boards.
32439
32440 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32441
32442commit 1b8607e1f7143548c6062c28371449ec69588c00
32443Author: Anatolij Gustschin <agust@denx.de>
32444Date: Thu Feb 14 18:19:50 2008 +0100
32445
32446 Extend ATI Radeon driver to support more video modes
32447
32448 Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
32449 800x600, 640x480 at 24, 16 and 8 bpp.
32450
32451 Signed-off-by: Anatolij Gustschin <agust@denx.de>
32452
32453commit 4124382de029d361162a4b8cecc773eb8f26e2a8
32454Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32455Date: Sun Feb 10 17:05:20 2008 +0100
32456
32457 xsengine: fix typo and few coding style
32458
32459 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32460
32461commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
32462Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
32463Date: Fri Feb 8 21:25:58 2008 +0100
32464
32465 Fix wrong memory limit calculation in memory-test
32466
32467 If the length of the memory address range passed to the "mtest" command is
32468 not of the form 2^x - 1, not all address lines are tested. This bug is
32469 inherited from the original software at
32470 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
32471 this.
32472
32473 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
32474
32475commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
32476Author: Wolfgang Denk <wd@denx.de>
32477Date: Fri Feb 15 00:11:39 2008 +0100
32478
32479 Coding STyle cleanup.
32480
32481 Signed-off-by: Wolfgang Denk <wd@denx.de>
32482
32483commit f6921e3dc331293c873ec4d109fd5517a42a90b3
32484Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32485Date: Tue Feb 5 13:30:43 2008 +0900
32486
32487 sh: Fix register address of SH7722
32488
32489 The address of SH7722 is wrong by old document.
32490 This patch fixes this problem.
32491
32492 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
32493
32494commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
32495Author: Mike Frysinger <vapier@gentoo.org>
32496Date: Mon Feb 4 17:44:23 2008 -0500
32497
32498 only update version header as needed
32499
32500 Constantly rebuilding the version header will force useless relinking, so we
32501 simply need to compare the new header with the existing one before updating
32502 it.
32503
32504 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32505
32506commit 208447f8e953f347425eb92c8e28d59e6d911363
32507Author: Mike Frysinger <vapier@gentoo.org>
32508Date: Mon Jan 28 05:56:19 2008 -0500
32509
32510 Do not specify a CROSS_COMPILE default when executing size
32511
32512 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
32513
32514commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
32515Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
32516Date: Wed Feb 13 11:19:19 2008 +0100
32517
32518 Fix return value of mtest when CFG_ALT_MEMTEST set
32519
32520 Fix a missing return statement from a non-void function.
32521
32522 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
32523
32524commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
32525Author: Timur Tabi <timur@freescale.com>
32526Date: Wed Jan 9 14:35:26 2008 -0600
32527
32528 85xx, 86xx: Determine I2C clock frequencies and store in global_data
32529
32530 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
32531
32532 Update the get_clocks() function in 85xx and 86xx to determine the I2C
32533 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
32534
32535 Signed-off-by: Timur Tabi <timur@freescale.com>
32536
32537commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
32538Author: Wolfgang Denk <wd@denx.de>
32539Date: Thu Feb 14 23:18:01 2008 +0100
32540
32541 TQM834x: clean up configuration
32542
32543 Get board name consistent with Linux and elsewhere;
32544 get rid of local network definitions etc.
32545
32546 Signed-off-by: Wolfgang Denk <wd@denx.de>
32547
32548commit 38cc09c55b1d7f233789052c6fc462e5377669a9
32549Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32550Date: Thu Feb 14 08:02:12 2008 +0100
32551
32552 TFTP: fix search of ':' in BootFile
32553
32554 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32555
32556commit 0bc9efada170096c6b273f19165e32936d330d80
32557Author: Wolfgang Denk <wd@denx.de>
32558Date: Thu Feb 14 22:46:55 2008 +0100
32559
32560 Coding style cleanup; update CHANGELOG.
32561
32562 Signed-off-by: Wolfgang Denk <wd@denx.de>
32563
0bc9efad
WD
32564commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
32565Author: Wolfgang Denk <wd@denx.de>
32566Date: Thu Feb 14 22:43:22 2008 +0100
32567
32568 PPC: Use r2 instead of r29 as global data pointer
32569
32570 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
32571 will refuse to use load/store multiple insns; instead, it issues a
32572 list of simple load/store instructions upon function entry and exit,
32573 resulting in bigger code size, which in turn makes the build for a
32574 few boards fail.
32575
32576 Use r2 instead.
32577
32578 Signed-off-by: Wolfgang Denk <wd@denx.de>
32579
32580commit 3c234efa693bc59906c2be55c7918ecbb55392ea
32581Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
32582Date: Wed Jan 30 09:08:49 2008 +0100
32583
32584 ARM: make the machid configurable via the environment
32585
32586 If the variable "machid" exists, let do_bootm_linux use that instead
32587 of bd->bi_arch_number.
32588
32589