1 commit a47f957ab523019992fdef857af01bd71c58a4da
2 Author: Alessandro Rubini <rubini-list@gnudd.com>
3 Date: Fri Oct 31 22:33:21 2008 +0100
5 NAND: Allow NAND and OneNAND to coexist
7 This removes in nand.h code that is verbatim duplicated from bbm.h,
8 including directly bbm.h in nand.h. The previous state of affairs
9 prevented compiling code for a board hosting both NAND and OneNAND chips.
11 Reported-by: Scott Wood <scottwood@freescale.com>
12 Signed-off-by: Alessandro Rubini <rubini@unipv.it>
13 Signed-off-by: Scott Wood <scottwood@freescale.com>
15 commit 2f77c7f45b9a37ef265a8dbe3c18efa706fed214
16 Author: Scott Wood <scottwood@freescale.com>
17 Date: Fri Oct 31 13:51:12 2008 -0500
19 JFFS2: Eliminate compiler error when both NAND and OneNAND are enabled.
21 Reported-by: Alessandro Rubini <rubini-list@gnudd.com>
22 Signed-off-by: Scott Wood <scottwood@freescale.com>
24 commit c57fc28947e248fb03c49a28b467686299895055
25 Author: Jason Jin <Jason.Jin@freescale.com>
26 Date: Fri Oct 31 05:07:04 2008 -0500
28 NAND: Add NAND support for MPC8536DS board
30 This patch defines 1M TLB&LAW size for NAND on MPC8536DS, assigns 0xffa00000
31 for CONFIG_SYS_NAND_BASE and adds other NAND supports in config file.
32 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image.
34 Singed-off-by: Jason Jin <Jason.Jin@freescale.com>
35 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
36 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
38 commit 6fc110bd8a8d642b8f7b0653bd9a08a0b7c3d50b
39 Author: Haiying Wang <Haiying.Wang@freescale.com>
40 Date: Fri Oct 31 05:06:14 2008 -0500
42 NAND: Fix CONFIG_ENV_ADDR for MPC8572DS
44 CONFIG_ENV_ADDR should be (CONFIG_SYS_MONITOR_BASE - CONFIG_ENV_SECT_SIZE).
46 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
47 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
49 commit 51b572a801be57790fe26adaa530210e7fba59cc
50 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
51 Date: Fri Oct 24 10:49:48 2008 +0900
53 sh: rsk7203: Moved rsk7203 board to board/renesas
55 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
57 commit 58453b00b3ebb26aaa901210023f99504a90bb00
58 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
59 Date: Fri Oct 24 10:48:31 2008 +0900
61 sh: MigoR: Moved MigoR board to board/renesas
63 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
65 commit c1da2a22817ba85b437afa2f4e715e658b219fd1
66 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
67 Date: Fri Oct 24 10:39:44 2008 +0900
69 sh: r2dplus: Moved r2dplus board to board/renesas
71 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
73 commit 78385bf2359d828184d0b3649f7ae6b933420000
74 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
75 Date: Fri Oct 24 10:36:13 2008 +0900
77 sh: sh7763rdp: Moved sh7763rdp board to board/renesas
79 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
81 commit c6525d459c350bfc246ea7826456af77e1e314eb
82 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
83 Date: Fri Oct 24 10:35:19 2008 +0900
85 sh: sh7785lcr: Moved sh7785lcr board to board/renesas
87 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
89 commit acd3e30d09a73f876222f0d496c4f52ee9d0771d
90 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
91 Date: Fri Oct 24 10:34:21 2008 +0900
93 sh: r7780mp: Moved r7780mp board to board/renesas
95 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
97 commit f84e6ea275353b8fea772ec7553ff7e4b1f642e0
98 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
99 Date: Fri Oct 24 10:32:14 2008 +0900
101 sh: ap325rxa: Moved ap325rxa board to board/renesas
103 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
105 commit 9abda6ba735efb059f63dcb25d78b174bfcad1ad
106 Author: Wolfgang Denk <wd@xpert.denx.de>
107 Date: Fri Oct 31 01:12:28 2008 +0100
109 CFI Driver: Fix "flash not ready" problem
111 This patch fixes a problem on systems where the NOR flash is attached
112 to a 64 bit bus. The toggle bit detection in flash_toggle() is based
113 on the assumption that the same flash address is read twice without
114 any other interjacent flash accesses. However, on 32 bit systems the
115 function flash_read64() [as currently implemented] does not perform
116 an atomic 64 bit read - instead, this is broken down into two 32 bit
117 read accesses on addresses "addr" and "addr + 4". So instead of
118 reading a 64 bit value twice from "addr", we see a sequence of 4 32
119 bit reads from "addr", "addr + 4", "addr", and "addr + 4". The
120 consequence is that flash_toggle() fails to work.
122 This patch implements a simple, but somewhat ugly solution, as it
123 avoids the use of flash_read64() in this critical place (by breaking
124 it down manually into 32 bit read operations) instead of rewriting
125 flash_read64() such to perform atomic 64 bit reads as one could
126 expect. However, such a rewrite would require the use of floating
127 point load operations, which becomes pretty complex:
130 set Floating Point Enable bit in MSR;
131 use "lfd" instruction to perform atomic 64 bit read;
132 use "stfd" to store value to temporary variable on stack;
133 load u64 value from temporary variable;
137 The benefit-cost ratio of such an implementation was considered too
138 bad to actually attempt this, especially as we can expect that such
139 an implementation would not only have a bigger memory footprint but
140 also cause a performance degradation.
142 Signed-off-by: Wolfgang Denk <wd@denx.de>
143 Signed-off-by: Stefan Roese <sr@denx.de>
145 commit cdd4fe63b094d4b767f12ff241d72566b461ee61
146 Author: Stefan Roese <sr@denx.de>
147 Date: Fri Oct 31 10:48:08 2008 +0100
149 ppc4xx: Fix spelling error in MAINTAINERS file
151 Signed-off-by: Stefan Roese <sr@denx.de>
153 commit be270798900b75ad9c47c7b79c72f70441196c56
154 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
155 Date: Tue Oct 28 13:37:00 2008 +0100
157 ppc4xx: Update PMC440 board support
159 This patch brings PMC440 board support up to date:
161 - fix GPIO configuration
163 - use better values for usbact variable
164 - fix USB 2.0 phy reset sequence
165 - shrink BAR2 to save PCI address space
168 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
169 Signed-off-by: Stefan Roese <sr@denx.de>
171 commit 75183b1a7fc04206d9779d13f16e03853d7e965d
172 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
173 Date: Tue Oct 28 13:36:59 2008 +0100
175 ppc4xx: Fix PMC440 BSP commands
177 This patch fixes the PMC440 BSP commands painit and selfreset
179 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
180 Signed-off-by: Stefan Roese <sr@denx.de>
182 commit 76b565b69f886d5ae748db65e44f464b0e70d41a
183 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
184 Date: Tue Oct 28 13:36:58 2008 +0100
186 ppc4xx: Update PMC440 board configuration
188 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
189 Signed-off-by: Stefan Roese <sr@denx.de>
191 commit ca0c2d42b93116a8e1b8ef8ad4493c7dc9b5f2e4
192 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
193 Date: Tue Oct 28 13:36:57 2008 +0100
195 ppc4xx: Fix esd loadpci command
197 This patch fixes esd's loadpci command when not all
198 memory on adapter boards is accessable via PCI.
200 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
201 Signed-off-by: Stefan Roese <sr@denx.de>
203 commit 492aa9ea13791ca4591b5bde895a425e27ae2d10
204 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
205 Date: Tue Oct 28 13:36:56 2008 +0100
207 ppc4xx: Clean up PMC440 header
210 -Remove unused GPIO define
212 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
213 Signed-off-by: Stefan Roese <sr@denx.de>
215 commit 295133258a44f97a57fb2ec339aecfda11f4db95
216 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
217 Date: Tue Oct 28 13:36:55 2008 +0100
219 ppc4xx: Handle other board variant in PMC440 FPGA code
221 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
222 Signed-off-by: Stefan Roese <sr@denx.de>
224 commit cc2dc9b08cf7c09f9f237f8cb9303f11603d4fb0
225 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
226 Date: Mon Oct 27 12:35:59 2008 +0100
228 ppc4xx: Merge xilinx-ppc440 and xilinx-ppc405 cfg
230 Xilinx ppc440 and ppc405 have many similarities. This patch merge the
231 config files of both infrastuctures
233 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
234 Signed-off-by: Stefan Roese <sr@denx.de>
236 commit 3befd85633d33c4dcca1f359c3f4848c5ab8e4d2
237 Author: Stefan Roese <sr@denx.de>
238 Date: Sat Oct 25 06:45:31 2008 +0200
240 ppc4xx: Correctly configure the GPIO pin muxing on Arches
242 Arches doesn't use PerCS3 but GPIO43, so let's configure the GPIO
243 pin multiplexing correctly
245 Signed-off-by: Stefan Roese <sr@denx.de>
247 commit 7c84fe6a06dad9f793ed85b39b1e6c11a7882f5c
248 Author: Bartlomiej Sieka <tur@semihalf.com>
249 Date: Thu Oct 30 23:22:04 2008 +0100
251 Fix to the auto-update feature documentation (CONFIG_UPDATE_TFTP_MSEC_MAX)
253 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
255 commit 4bc7deee9095f21e243b724ca3d634251c1d5432
256 Author: David Gibson <david@gibson.dropbear.id.au>
257 Date: Wed Oct 29 23:27:45 2008 -0500
259 libfdt: Fix bug in fdt_subnode_offset_namelen()
261 There's currently an off-by-one bug in fdt_subnode_offset_namelen()
262 which causes it to keep searching after it's finished the subnodes of
263 the given parent, and into the subnodes of siblings of the original
264 node which come after it in the tree.
266 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
267 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
269 commit f242a08871839eac081ba5b599af979f3a148a0d
270 Author: Peter Korsgaard <jacmet@sunsite.dk>
271 Date: Tue Oct 28 08:26:52 2008 +0100
273 fdt_resize(): ensure minimum padding
275 fdt_add_mem_rsv() requires space for a struct fdt_reserve_entry
276 (16 bytes), so make sure that fdt_resize at least adds that much
277 padding, no matter what the location or size of the fdt is.
279 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
280 Acked-by: Andy Fleming <afleming@freescale.com>
282 commit d685b74c64a38849f1a129b3ab846fbf67dd937e
283 Author: Dave Liu <daveliu@freescale.com>
284 Date: Thu Oct 23 21:59:35 2008 +0800
286 74xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
288 The patch is following the commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
290 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
292 This is needed in unlock_ram_in_cache() because it is called from C and
293 will corrupt the small data area anchor that is kept in R2.
295 lock_ram_in_cache() is modified similarly as good coding practice, but
296 is not called from C.
298 Signed-off-by: Nick Spence <nick.spence@freescale.com>
300 also, the r2 is used as global data pointer.
302 Signed-off-by: Dave Liu <daveliu@freescale.com>
304 commit e053ab1903ccae6048ef759025b9f675bba91450
305 Author: Scott Wood <scottwood@freescale.com>
306 Date: Tue Oct 28 11:45:04 2008 -0500
308 mpc83xx pci: Round up memory size in inbound window.
310 The current calculation will fail to cover all memory if
311 its size is not a power of two.
313 Signed-off-by: Scott Wood <scottwood@freescale.com>
314 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
316 commit 1c671977dc81359628be27ac99c174e76e8069ba
317 Author: Dave Liu <daveliu@freescale.com>
318 Date: Thu Oct 23 21:19:13 2008 +0800
320 86xx: remove the unused definition
322 Signed-off-by: Dave Liu <daveliu@freescale.com>
324 commit eaa44c5dc83756c3067b9e6c9db626facd0b0660
325 Author: Dave Liu <daveliu@freescale.com>
326 Date: Tue Oct 28 17:47:49 2008 +0800
328 86xx: remove the redundant r2 global data pointer save
330 The commit 67256678f00c09b0a7f19e862e5c1847553d31bc add
331 the another global data pointer save, but in fact the
332 global data pointer will be initialized in the board_init_r,
333 so remove it such as the 85xx/83xx family.
335 Signed-off-by: Dave Liu <daveliu@freescale.com>
336 Acked-by: Kumar Gala <kumar.gala@freescale.com>
338 commit bd888e9544419665334a6f47f81f34011cea38f3
339 Author: Dave Liu <daveliu@freescale.com>
340 Date: Tue Oct 28 17:47:41 2008 +0800
342 86xx: remove the unused code for 86xx family
344 I believe these code was copied from 74xx family, but for
347 Signed-off-by: Dave Liu <daveliu@freescale.com>
348 Acked-by: Kumar Gala <kumar.gala@freescale.com>
350 commit 5ba1ef507402bc5e344dc374203792a40f222e8a
351 Author: Dave Liu <daveliu@freescale.com>
352 Date: Tue Oct 28 17:46:35 2008 +0800
354 86xx: remove the second DDR LAW setting for mpc8641hpcn
356 The DDR1 LAW will precedence the DDR2 LAW, so remove
359 Signed-off-by: Dave Liu <daveliu@freescale.com>
360 Acked-by: Becky Bruce <becky.bruce@freescale.com>
362 commit 137a2dfd11ac51ae3154f13f323609b33a4a072e
363 Author: Dave Liu <daveliu@freescale.com>
364 Date: Tue Oct 28 17:46:23 2008 +0800
366 86xx: remove the unused ddr_enable_ecc in the board file
368 The DDR controller of 86xx processors have the ECC data init
369 feature, and the new DDR code is using the feature, we don't
370 need the way with DMA to init memory again.
372 Signed-off-by: Dave Liu <daveliu@freescale.com>
373 Acked-by: Kumar Gala <kumar.gala@freescale.com>
375 commit dc2adad85bf580d65916c940683f6e9671e8a5dd
376 Author: Dave Liu <daveliu@freescale.com>
377 Date: Tue Oct 28 17:46:12 2008 +0800
379 86xx: Move the clear_tlbs before MMU turn on
381 We must invalidate TLBs before MMU turn on, but
382 currently the code is not, if there are some stale
383 TLB entry valid in the TLBs, it will cause strange
386 Signed-off-by: Dave Liu <daveliu@freescale.com>
387 Acked-by: Becky Bruce <becky.bruce@freescale.com>
389 commit 5cdade07b118d07154cb882650f9778cecc8a87c
390 Author: Scott Wood <scottwood@freescale.com>
391 Date: Mon Oct 27 15:57:08 2008 -0500
393 mpc8313erdb: Document NAND boot.
395 Previously, the documentation claimed that NAND boot is not supported.
396 This is no longer true.
398 Signed-off-by: Scott Wood <scottwood@freescale.com>
400 commit bd78bc6b2aebf5566aac464f936b88dfd97ab0bd
401 Author: Scott Wood <scottwood@freescale.com>
402 Date: Wed Oct 29 14:20:26 2008 -0500
404 NAND: Properly create JFFS2 cleanmarkers.
406 As reported by Ilko Iliev <iliev@ronetix.at>, the "nand erase clean"
407 command is currently broken, and among other things causes all blocks
410 This implements it properly using MTD_OOB_AUTO, along with some
413 Signed-off-by: Scott Wood <scottwood@freescale.com>
415 commit f7fe57c09866b44692d18c8cf22828bd137ec58d
416 Author: Scott Wood <scottwood@freescale.com>
417 Date: Wed Oct 29 13:42:41 2008 -0500
419 NAND fsl elbc: Set FMR[ECCM] based on page size.
421 Hardware expects ECCM 0 for small page and ECCM 1 for large page
422 when booting from NAND, so use those defaults.
424 Signed-off-by: Scott Wood <scottwood@freescale.com>
426 commit c013b74975dab0805ef6d369b013230c4e8a660d
427 Author: Haiying Wang <Haiying.Wang@freescale.com>
428 Date: Wed Oct 29 13:32:59 2008 -0400
430 NAND: Add support for MPC8572DS board
432 This patch defines 1M TLB&LAW size for NAND on MPC8572DS, assigns
433 0xffa00000 for CONFIG_SYS_NAND_BASE and adds other NAND supports in
436 It also moves environment(CONFIG_ENV_ADDR) outside of u-boot image, to
437 make room for the increased code size with NAND enabled.
439 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
440 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
441 Signed-off-by: Scott Wood <scottwood@freescale.com>
443 commit 4e190b03aaf2309bd2e025d1187a2ca880fedc95
444 Author: Haiying Wang <Haiying.Wang@freescale.com>
445 Date: Wed Oct 29 11:05:55 2008 -0400
447 Make Freescale local bus registers available for both 83xx and 85xx.
449 - Rename lbus83xx_t to fsl_lbus_t and move it to asm/fsl_lbc.h so that it
450 can be shared by both 83xx and 85xx
451 - Remove lbus83xx_t and replace it with fsl_lbus_t in all 83xx boards
452 files which use lbus83xx_t.
453 - Move FMR, FIR, FCR, FPAR, LTESR from mpc83xx.h to asm/fsl_lbc.h so that
456 Signed-off-by: Jason Jin <Jason.Jin@freescale.com>
457 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
458 Signed-off-by: Scott Wood <scottwood@freescale.com>
460 commit 695c130e4bf75b444720ddfd83aca88f41c046cf
461 Author: Scott Wood <scottwood@freescale.com>
462 Date: Mon Oct 27 15:38:30 2008 -0500
464 NAND: Align right column of the shorthelp with other commands.
466 I accidentally broke this in when making consistent the partial
467 alignment of the longhelp.
469 Signed-off-by: Scott Wood <scottwood@freescale.com>
471 commit 33efde5ecac91ab118ff00b95a181fd6d75f8645
472 Author: Karl Beldan <karl.beldan@gmail.com>
473 Date: Mon Sep 15 16:08:03 2008 +0200
475 NAND: Reset chip on power-up
477 Some chips require a RESET after power-up (e.g. Micron MT29FxGxxxxx).
478 The first command sent is NAND_CMD_READID.
479 Issue a NAND_CMD_RESET in nand_scan_ident before reading the device id.
480 Tested with an MT29F4G08AAC.
482 Signed-off-by: Karl Beldan <karl.beldan@gmail.com>
483 Signed-off-by: Scott Wood <scottwood@freescale.com>
485 commit c45912d8abc52de796b9059a58faf7c4166eab58
486 Author: Scott Wood <scottwood@freescale.com>
487 Date: Fri Oct 24 16:20:43 2008 -0500
489 NAND: sync with 2.6.27
491 This brings the core NAND code up to date with the Linux kernel.
493 Since there were several drivers in Linux as of the last update that are
494 not in u-boot, I'm not bringing over new drivers that have been added
495 since in the absence of an interested party.
497 I did not update OneNAND since it was recently synced by Kyungmin Park,
498 and I'm not sure exactly what the common ancestor is.
500 Signed-off-by: Scott Wood <scottwood@freescale.com>
502 commit b1d0db1805c3395149777e507b6da53410abac4e
503 Author: Kumar Gala <galak@kernel.crashing.org>
504 Date: Tue Oct 21 17:25:47 2008 -0500
506 bootm: Added CONFIG_BOOTM_{LINUX, NETBSD, RTEMS}
508 Added the ability to config out bootm support for Linux, NetBSD, RTEMS
510 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
512 commit 5a98127d81a6eefc5a78a704df619bfe362eeb87
513 Author: Kumar Gala <galak@kernel.crashing.org>
514 Date: Tue Oct 21 17:25:46 2008 -0500
516 bootm: support subcommands in linux ppc bootm
518 Add support for 'bdt', 'cmdline', 'prep' to the linux PPC bootm.
520 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
522 commit 49c3a861d11735838f1f1b11999ce433006dc919
523 Author: Kumar Gala <galak@kernel.crashing.org>
524 Date: Tue Oct 21 17:25:45 2008 -0500
526 bootm: Add subcommands
528 Add the ability to break the steps of the bootm command into several
529 subcommands: start, loados, ramdisk, fdt, bdt, cmdline, prep, go.
531 This allows us to do things like manipulate device trees before
532 they are passed to a booting kernel or setup memory for a secondary
533 core in multicore situations.
535 Not all OS types support all subcommands (currently only start, loados,
536 ramdisk, fdt, and go are supported).
538 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
540 commit be08315933537f061bc1ce61f33a29c56458bbad
541 Author: Kumar Gala <galak@kernel.crashing.org>
542 Date: Tue Oct 21 17:25:44 2008 -0500
544 bootm: Move to using a function pointer table for the boot os function
546 This removes a bit of code and makes it easier for the upcoming sub bootm
547 command support to call into the proper OS specific handler.
549 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
550 Signed-off-by: Wolfgang Denk <wd@denx.de>
552 commit a369f4a492fa2805d87775d27380f0eeaca35aa6
553 Author: Graeme Russ <graeme.russ@gmail.com>
554 Date: Mon Sep 29 23:03:14 2008 +1000
556 i386: Renamed show_boot_progress in assembler code
558 Renamed show_boot_progress in assembler init phase to
559 show_boot_progress_asm to avoid link conflicts with C version
561 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
563 commit 4442f45b0e1cbad35aa22d4cad22b90a57e3f32d
564 Author: Peter Tyser <ptyser@xes-inc.com>
565 Date: Mon Oct 27 16:42:00 2008 -0500
567 85xx: Update MPC85xx_PORDEVSR_IO_SEL mask
569 The MPC8572 has a 4-bit wide PORDEVSR IO_SEL field. Other MPC85xx
570 processors have a 3-bit wide IO_SEL field but have the most
571 significant bit is wired to 0 so this change should not affect
574 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
576 commit cd4251624205cb97104f6e32679dc7754934f711
577 Author: Becky Bruce <becky.bruce@freescale.com>
578 Date: Mon Oct 27 16:09:42 2008 -0500
580 powerpc: fix pci window initialization to work with > 4GB DRAM
582 The existing code has a few errors that need to be fixed in
583 order to support large RAM sizes. Fix those, and add a
584 comment to make it clearer.
586 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
587 Acked-by: Kumar Gala <galak@kernel.crashing.org>
589 commit 219542a1a66ca017b12860920714a9859b18a5d7
590 Author: Kumar Gala <galak@kernel.crashing.org>
591 Date: Mon Oct 27 13:16:20 2008 -0500
593 pci/fsl_pci_init: Removed a bunch pointless trailing backslashes.
595 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
597 commit 6b59e03e0237a40a2305ea385defdfd92000978b
598 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
599 Date: Mon Sep 1 16:21:22 2008 +0200
601 lcd: Let the board code show board-specific info
603 The information displayed when CONFIG_LCD_INFO is set is inherently
604 board-specific, so it should be done by the board code. The current code
605 dealing with this only handles two cases, and is already a horrible mess
608 Yes, this duplicates some code, but it also allows boards to print more
609 board-specific information; this used to be very difficult.
611 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
612 Signed-off-by: Anatolij Gustschin <agust@denx.de>
614 commit 6f93d2b8fca504200a5758f7c6dd2d6852900765
615 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
616 Date: Mon Sep 1 16:21:21 2008 +0200
618 lcd: Set lcd_is_enabled before clearing the screen
620 This allows the logo/info rendering routines to use the regular
621 lcd_putc/lcd_puts/lcd_printf calls.
623 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
624 Signed-off-by: Anatolij Gustschin <agust@denx.de>
626 commit 15b17ab52b7c15d46d9fc631cc06092e1e764de2
627 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
628 Date: Mon Sep 1 16:21:20 2008 +0200
630 lcd: Implement lcd_printf()
632 lcd_printf() has a prototype in include/lcd.h but no implementation. Fix
633 this by borrowing the lcd_printf() implementation from the cogent board
634 code (which appears to use its own LCD framework.)
636 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
637 Signed-off-by: Anatolij Gustschin <agust@denx.de>
639 commit 70dbc54c0a5c798bcf82ae2a1e227404f412e892
640 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
641 Date: Mon Sep 1 16:21:19 2008 +0200
643 atmel_lcdfb: Straighten out funky vl_sync logic
645 If the board _didn't_ request INVLINE_INVERTED, we set INVLINE_INVERTED,
646 otherwise we don't. WTF?
648 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
649 Signed-off-by: Anatolij Gustschin <agust@denx.de>
651 commit 23bb28f0f76b46c4b573374b0bb3b3f23d85ef55
652 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
653 Date: Mon Sep 1 16:21:18 2008 +0200
655 atmel_lcdfb: Eliminate unneeded #include <asm/arch/hardware.h>
657 atmel_lcdfb doesn't actually need anything from asm/arch/hardware.h. It
658 includes a file that does, asm/arch/gpio.h, but this file doesn't
659 include <asm/arch/hardware.h> like it's supposed to.
661 Add the missing include to asm/arch/gpio.h and remove the workaround
662 from the atmel_lcdfb driver. This makes the driver compile on avr32.
664 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
665 Signed-off-by: Anatolij Gustschin <agust@denx.de>
667 commit c2083e0e11a03ef8be2e9f0ed8720fdc20832f3e
668 Author: Kumar Gala <galak@kernel.crashing.org>
669 Date: Wed Oct 22 14:38:55 2008 -0500
671 86xx: Convert all fsl_pci_init users to new APIs
673 Converted MPC8610HCPD, MPC8641HPCN, and SBC8641D to use
674 fsl_pci_setup_inbound_windows() and ft_fsl_pci_setup().
676 With these changes the board code is a bit smaller and we get dma-ranges
677 set in the device tree for these boards.
679 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
680 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
681 Acked-by: Jon Loeliger <jdl@freescale.com>
683 commit 2dba0dea98c0dee1799ffd6fd6eb541645dbbd98
684 Author: Kumar Gala <galak@kernel.crashing.org>
685 Date: Tue Oct 21 08:28:33 2008 -0500
687 85xx: Convert all fsl_pci_init users to new APIs
689 Converted ATUM8548, MPC8536DS, MPC8544DS, MPC8548CDS, MPC8568MDS,
690 MPC8572DS, TQM85xx, and SBC8548 to use fsl_pci_setup_inbound_windows()
691 and ft_fsl_pci_setup().
693 With these changes the board code is a bit smaller and we get dma-ranges
694 set in the device tree for these boards.
696 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
697 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
699 commit a2aab460727e5f674353a83a81000ef794bffcae
700 Author: Kumar Gala <galak@kernel.crashing.org>
701 Date: Thu Oct 23 00:01:06 2008 -0500
703 pci/fsl_pci_init: Added fdt helper for setting up bus-ranges & dma-ranges
705 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
706 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
708 commit b9a1fa9787a3a79573f5f932a4f8aa216bcb1785
709 Author: Kumar Gala <galak@kernel.crashing.org>
710 Date: Wed Oct 22 14:06:24 2008 -0500
712 pci/fsl_pci_init: Add a common PCI inbound setup function
714 Add a common setup function that determines the pci_region(s) based
715 on how much memory we have in the system.
717 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
718 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
720 commit 612ea01018a459234d54ed57ec6a5a244ce75678
721 Author: Kumar Gala <galak@kernel.crashing.org>
722 Date: Tue Oct 21 10:13:14 2008 -0500
724 pci/fsl_pci_init: Enable larger address and setting inbound windows properly
726 * PCI Inbound window was setup incorrectly. The PCI address and system
727 address were swapped. The PCI address should be setting piwar/piwbear
728 and the system address should be setting pitar.
730 * Removed masking of addresses to allow for system address to support
731 system address & PCI address >32-bits
733 * Set PIWBEAR & POTEAR to allow for full 64-bit PCI addresses
735 * Respect the PCI_REGION_PREFETCH for inbound windows
737 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
738 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
740 commit 8ab451c46b846f2bbd7122b29ffdd9a4a04da228
741 Author: Kumar Gala <galak@kernel.crashing.org>
742 Date: Wed Oct 22 23:33:56 2008 -0500
744 fdt: Added helper to set PCI dma-ranges property
746 Added fdt_pci_dma_ranges() that parses the pci_region info from the
747 struct pci_controller and populates the dma-ranges based on it.
749 The max # of windws/dma-ranges we support is 3 since on embedded
750 PowerPC based systems this is the max number of windows.
752 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
753 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
755 commit 3bed2aaf2d50fd13273c14d17d4fd40ef42e0d0f
756 Author: Kumar Gala <galak@kernel.crashing.org>
757 Date: Thu Oct 23 00:05:47 2008 -0500
759 fdt: Add fdt_getprop_u32_default helpers
761 Add helper functions to return find a node and return it's property
764 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
765 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
766 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
768 commit 8ba93f68a1bae89e033527ce67b41b4a87aa5b7f
769 Author: Kumar Gala <galak@kernel.crashing.org>
770 Date: Tue Oct 21 18:06:15 2008 -0500
772 86xx: Enable 64-bit PCI resources on all Freescale boards
774 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
775 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
777 commit 0151cbaccf4504821ecfde0217299bd740086bb6
778 Author: Kumar Gala <galak@kernel.crashing.org>
779 Date: Tue Oct 21 11:33:58 2008 -0500
781 85xx: Enable 64-bit PCI resources on all Freescale boards
783 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
784 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
786 commit 30e76d5e3bc4c5208ee63585fe12b409d9308cd8
787 Author: Kumar Gala <galak@kernel.crashing.org>
788 Date: Tue Oct 21 08:36:08 2008 -0500
790 pci: Allow for PCI addresses to be 64-bit
792 PCI bus is inherently 64-bit. While not all system require access to
793 the full 64-bit PCI address range some do. This allows those systems
794 to enable the full PCI address width via CONFIG_SYS_PCI_64BIT.
796 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
797 Signed-off-by: Andrew Fleming-AFLEMING <afleming@freescale.com>
798 Acked-by: Wolfgang Denk <wd@denx.de>
800 commit ae5f943ba8ede448a4b1a145fd8911856701ecc5
801 Author: Dave Liu <daveliu@freescale.com>
802 Date: Thu Oct 23 21:18:53 2008 +0800
804 85xx: Fix the incorrect register used for DDR erratum1
806 The 8572 DDR erratum1:
807 DDR controller may enter an illegal state when operating
808 in 32-bit bus mode with 4-beat bursts.
811 When operating with a 32-bit bus, it is recommended that
812 DDR_SDRAM_CFG[8_BE] is cleared when DDR2 memories are used.
813 This forces the DDR controller to use 4-beat bursts when
814 communicating to the DRAMs. However, an issue exists that
815 could lead to data corruption when the DDR controller is
816 in 32-bit bus mode while using 4-beat bursts.
819 If the DDR controller is operating in 32-bit bus mode with
820 4-beat bursts, then the controller may enter into a bad state.
821 All subsequent reads from memory is corrupted.
822 Four-beat bursts with a 32-bit bus only is used with DDR2 memories.
823 Therefore, this erratum does not affect DDR3 mode.
826 To work around this issue, software must set DEBUG_1[31] in
827 DDR memory mapped space (CCSRBAR offset + 0x2f00 for DDR_1
828 and CCSRBAR offset + 0x6f00 for DDR_2).
830 Currenlty, the code is using incorrect register DDR_SDRAM_CFG_2
831 as condition, but it should be DDR_SDRAM_CFG register.
833 Signed-off-by: Dave Liu <daveliu@freescale.com>
835 commit d5b693090ed08d24c18491df9d8fc7387b2906f3
836 Author: Dave Liu <daveliu@freescale.com>
837 Date: Thu Oct 23 21:17:19 2008 +0800
839 85xx: remove unused config definition
841 Signed-off-by: Dave Liu <daveliu@freescale.com>
843 commit 0f060c3bf82832331a509f2e5d2442539e7aad09
844 Author: Kumar Gala <galak@kernel.crashing.org>
845 Date: Thu Oct 23 01:47:38 2008 -0500
847 85xx: Add basic e500mc core support
849 Introduce CONFIG_E500MC to deal with the minor differences between
852 * Certain fields of HID0/1 don't exist anymore on e500mc
853 * Cache line size is 64-bytes on e500mc
854 * reset value of PIR is different
856 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
858 commit a38a5b6edd30f29fd5fdb1d7f674521906c0e677
859 Author: Kumar Gala <galak@kernel.crashing.org>
860 Date: Thu Oct 23 01:47:37 2008 -0500
862 85xx: Use CONFIG_SYS_CACHELINE_SIZE instead of magic number
864 Using CONFIG_SYS_CACHELINE_SIZE instead of 31 means we can handle
865 e500mc's 64-byte cacheline properly when it gets added.
867 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
869 commit 5deb8022c3749faac30e9ad9694691e2442b5c93
870 Author: Georg Schardt <schardt@team-ctech.de>
871 Date: Fri Oct 24 13:51:52 2008 +0200
873 ppc4xx: New board avnet fx12 minimodul
875 This patch adds support for the avnet fx12 minimodul.
876 It needs the "ppc4xx: Generic architecture for xilinx ppc405"
879 Signed-off-by: Georg Schardt <schardt@team-ctech.de>
880 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
881 Signed-off-by: Stefan Roese <sr@denx.de>
883 commit 1f4d53260ec6f8f122aed75cce7c757d97a551e0
884 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
885 Date: Tue Oct 21 18:29:46 2008 +0200
887 ppc4xx: Generic architecture for xilinx ppc405(v3)
889 As "ppc44x: Unification of virtex5 pp440 boards" did for the xilinx
890 ppc440 boards, this patch presents a common architecture for all the
891 xilinx ppc405 boards.
893 Any custom xilinx ppc405 board can be added very easily with no code
896 This patch also adds a simple generic board, that can be used on almost
897 any design with xilinx ppc405 replacing the file ppc405-generic/xparameters.h
899 This patch is prepared to work with the latest version of EDK (10.1)
901 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
902 Signed-off-by: Stefan Roese <sr@denx.de>
904 commit 485c00a57fab86f72a3769480c66bf1ca22e1459
905 Author: Stefan Roese <sr@denx.de>
906 Date: Fri Oct 24 08:56:09 2008 +0200
908 ppc4xx: Disable DDR2 autocalibration on Kilauea for now
910 Since the new autocalibration still has some problems on some Kilauea
911 boards with 200MHz DDR2 frequency we disable the autocalibration and
912 use the hardcoded values as done before. This seems to work reliably
913 on all known DDR2 frequencies.
915 After the autocalibration issue is fixed we will enable it again.
917 Signed-off-by: Stefan Roese <sr@denx.de>
919 commit f177f4250c729727b1629fa8d8d6556c999e9b8c
920 Author: Mike Frysinger <vapier@gentoo.org>
921 Date: Wed Apr 9 02:02:07 2008 -0400
923 Blackfin: fix up UART status bit handling
925 Some Blackfin UARTs are read-to-clear while others are write-to-clear.
926 This can cause problems when we poll the LSR and then later try and handle
929 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
931 commit ae0910298f31f5bb3d33a64b8467c60ea3c5d6d0
932 Author: Mike Frysinger <vapier@gentoo.org>
933 Date: Sat Oct 11 20:42:17 2008 -0400
935 Blackfin: bf561-ezkit: drop redundant code
937 Common Blackfin code already announces CPU information.
939 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
941 commit e2eea98bff1369f77a9f59a5fd0bd4928bc3332e
942 Author: Mike Frysinger <vapier@gentoo.org>
943 Date: Sat Oct 11 20:43:10 2008 -0400
945 Blackfin: bf561-ezkit: drop pointless USB code
947 The USB/LAN register settings are not actually used/needed in order to
948 drive things from U-Boot, so drop the code.
950 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
952 commit c23bff63fb03cb9dbcd26522841e53f9b34fa1ab
953 Author: Mike Frysinger <vapier@gentoo.org>
954 Date: Sat Oct 11 20:47:58 2008 -0400
956 Blackfin: linker scripts: force start.o and set initcode boundaries
958 Make sure that the start.o object is always the first object in our linker
959 script regardless of configuration settings, and add some linker symbols
960 so the ldr utility can properly locate the initcode when generating a LDR.
962 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
964 commit bd33e5c613cf70e3cb51a73fdd653fe83b942bb0
965 Author: Mike Frysinger <vapier@gentoo.org>
966 Date: Sat Oct 11 21:19:39 2008 -0400
968 Blackfin: small cpu init optimization while setting interrupt mask
970 Use the sti instruction to set the initial interrupt mask rather than
971 banging on the core IMASK MMR to save both space and time.
973 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
975 commit 960922291c9594acb575cec7e47d7bed9b58182c
976 Author: Mike Frysinger <vapier@gentoo.org>
977 Date: Sat Oct 11 21:18:10 2008 -0400
979 Blackfin: set initial stack correctly according to Blackfin ABI
981 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
983 commit 25cd33d82ea521b7bd90ca858f8919fae1e9732b
984 Author: Mike Frysinger <vapier@gentoo.org>
985 Date: Sun Apr 20 03:11:53 2008 -0400
987 Blackfin: make baud calculation more accurate
989 We should use the algorithm in the Linux kernel so that the UART divisor
990 calculation is more accurate. It also fixes problems on some picky UARTs
991 that have sampling anomalies.
993 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
995 commit 0ba1da116e5edcb0c5ae4a7585d73f6548400a06
996 Author: Mike Frysinger <vapier@gentoo.org>
997 Date: Mon Oct 6 04:21:41 2008 -0400
999 Blackfin: decode hwerrcause/excause when crashing
1001 Having to decode hwerrcause/excause values is a pain, so automate it.
1003 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1005 commit 2de95bb20c488f20298df6881b700a5a757ee780
1006 Author: Mike Frysinger <vapier@gentoo.org>
1007 Date: Mon Oct 6 04:20:54 2008 -0400
1009 Blackfin: fix register dump messages
1011 Make sure we report RETI/IPEND correctly.
1013 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1015 commit 7133999e6f62a9a01f6a8ffe234b8532b3ad1e4b
1016 Author: Mike Frysinger <vapier@gentoo.org>
1017 Date: Mon Oct 6 04:19:34 2008 -0400
1019 Blackfin: don't bother displaying reboot msg when crashing
1021 The hang function already tells you to reboot, so no point in showing it
1024 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1026 commit 70c4c032ea112cc42aa1ce959c33fc4825eaef95
1027 Author: Mike Frysinger <vapier@gentoo.org>
1028 Date: Sun Jun 1 01:23:48 2008 -0400
1030 Blackfin: enable support for nested interrupts
1032 During cpu init, make sure we initialize the CEC properly so that
1033 interrupts can fire and be handled while U-Boot is running.
1035 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1037 commit 39782727e185860faa4884c2b04e84cb33d1c6cf
1038 Author: Mike Frysinger <vapier@gentoo.org>
1039 Date: Mon Oct 6 03:55:25 2008 -0400
1041 Blackfin: init NAND before relocating env
1043 If booting out of NAND, we need to make sure we initialize it properly
1044 before attempting to relocate the environment.
1046 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1048 commit 0f9a8819416ba40a53de50af148847a0e508f84d
1049 Author: Mike Frysinger <vapier@gentoo.org>
1050 Date: Thu Aug 7 18:40:13 2008 -0400
1052 Blackfin: check cache bits, not cplb bits
1054 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1056 commit 2c1ea9e370cb72dd6a5aa32338e87a8a1f77bd76
1057 Author: Mike Frysinger <vapier@gentoo.org>
1058 Date: Thu Aug 7 17:52:59 2008 -0400
1060 Blackfin: drop unused cache flush code
1062 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1064 commit 50f0d211912a648e31aa9123b4665a0444bb8ca9
1065 Author: Mike Frysinger <vapier@gentoo.org>
1066 Date: Thu Aug 7 15:21:47 2008 -0400
1068 Blackfin: unify cache handling code
1070 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1072 commit 3c8798983403cb68a827d7a0d09b1134524a1b7d
1073 Author: Mike Frysinger <vapier@gentoo.org>
1074 Date: Mon Oct 6 03:39:07 2008 -0400
1076 Blackfin: only initialize the RTC when actually used
1078 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1080 commit 621e579b812dd1a2e6777f7cbf6e55e736505823
1081 Author: Mike Frysinger <vapier@gentoo.org>
1082 Date: Mon Oct 6 03:44:33 2008 -0400
1084 Blackfin: fix SWRST register definition
1086 The SWRST register is a 16bit, not 32bit, register.
1088 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1090 commit 06121c4e2d183887dcd7a4ca2dcd395b213ea15b
1091 Author: Mike Frysinger <vapier@gentoo.org>
1092 Date: Thu Aug 7 18:54:57 2008 -0400
1094 Blackfin: build with -fomit-frame-pointer
1096 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1098 commit adbfeeb7b32f737a9738daa583350d2bb9ed017a
1099 Author: Mike Frysinger <vapier@gentoo.org>
1100 Date: Thu Aug 7 17:50:26 2008 -0400
1102 Blackfin: document some of the blackfin directories
1104 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1106 commit e4337968e43698a68ba608369f46d4a4114111ca
1107 Author: Mike Frysinger <vapier@gentoo.org>
1108 Date: Thu Aug 7 15:16:56 2008 -0400
1110 Blackfin: only enable hardware error irq by default
1112 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1114 commit 2b66f08f257ef6a06785f27b3c6dc2a4cfc9cac4
1115 Author: Mike Frysinger <vapier@gentoo.org>
1116 Date: Thu Aug 7 13:36:43 2008 -0400
1118 Blackfin: punt old unused mem_init.h header
1120 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1122 commit bcc121a01608042066a19ab5bff5bcfb805bf406
1123 Author: Mike Frysinger <vapier@gentoo.org>
1124 Date: Thu Aug 7 13:18:55 2008 -0400
1126 Blackfin: delete unused page_descriptor_table_size define
1128 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1130 commit 30fb9d24ae16e5b0ed39e5b7cc85981165ca98bc
1131 Author: Mike Frysinger <vapier@gentoo.org>
1132 Date: Thu Aug 7 13:17:03 2008 -0400
1134 Blackfin: fix typo in boot mode comment and add NAND define
1136 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1138 commit 2e5cbe5461c5c4c6665e318cfe950a5a150d999c
1139 Author: Ben Maan <moo@cow>
1140 Date: Thu Aug 7 13:14:21 2008 -0400
1142 Blackfin: fix port mux defines for BF54x
1144 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1146 commit 0656ef2ba274910d31364fe022f6c7db0051660d
1147 Author: Mike Frysinger <vapier@gentoo.org>
1148 Date: Thu Aug 7 13:09:50 2008 -0400
1150 Blackfin: update anomaly lists
1152 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1154 commit 50ca95402876cf7bac4e2d4f7855f616a038763f
1155 Author: Mike Frysinger <vapier@gentoo.org>
1156 Date: Thu Aug 7 13:08:54 2008 -0400
1158 Blackfin: unify DSPID/DBGSTAT MMR definitions
1160 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
1162 commit d9d8c7c696dec370ca714c03beb6e79d4c90bd5e
1163 Author: Wolfgang Denk <wd@denx.de>
1164 Date: Tue Oct 21 15:53:51 2008 +0200
1166 Fix strmhz(): avoid printing negative fractions
1168 Signed-off-by: Wolfgang Denk <wd@denx.de>
1170 commit 4a7f6b750d8de543fdf8e58acd86745010054571
1171 Author: Richard Retanubun <RichardRetanubun@ruggedcom.com>
1172 Date: Fri Oct 17 08:55:51 2008 -0400
1174 mpc83xx: Removed #ifdef CONFIG_MPC834X dependency on upmconfig function
1176 This is done to allow other 83XX based platforms which also have UPM
1177 (e.g. 8360) to configure and use their UPM in u-boot.
1179 Signed-off-by: Richard Retanubun <RichardRetanubun@RuggedCom.com>
1180 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1182 commit 3bf1be3c0cfb1129b68cc1474119e5f323536488
1183 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1184 Date: Tue Oct 14 22:58:53 2008 +0400
1186 mpc83xx: add support for switching between USB Host/Function for MPC837XEMDS
1188 With this patch u-boot can fixup the dr_mode and phy_type properties
1189 for the Dual-Role USB controller.
1191 While at it, also remove #ifdefs around includes, they are not needed.
1193 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1194 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1196 commit b3379f3fd13969934c00097c05754e7a8990fd39
1197 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1198 Date: Wed Oct 8 20:52:54 2008 +0400
1200 mpc83xx: add ELBC NAND support for the MPC837XEMDS boards
1202 Though NAND chip is replaceable on the MPC837XE-MDS boards, the
1203 current settings don't work with the default chip on the board.
1204 Nevertheless Freescale's U-Boot sets the option register correctly,
1205 so I just dumped the register from the working u-boot. My guess is
1206 that the old settings were applicable for some pilot boards, not
1207 found in the production.
1209 This patch also enables FSL ELBC driver so that we could access
1210 the NAND storage in the u-boot.
1212 The NAND support costs about 45KB, so the u-boot no longer fits
1213 into two 128KB NOR flash sectors, thus we also have to adjust
1214 environment location: add another 128KB to the monitor length.
1216 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1218 It is due to hardware design and logic defect, that is the
1219 I/O[0:7] of NAND chip is connected to LAD[7:0], so when
1220 the NAND chip connected to nLCS3, you have to set up the
1221 OR3[BCTLD] = '1' for normal operation, otherwise it will have
1222 bus contention due to the pin 48/25 of U60 is enabled.
1224 Setup the OR3[BCTLD] = '1' , that meaning the LBCTL is not
1225 asserted upon access to the NAND chip, keep the default state.
1227 Acked-by: Dave Liu <daveliu@freescale.com>
1228 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1230 commit 00f7bbae92e3b13f2b37aeb1def9bb12445521b7
1231 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1232 Date: Thu Oct 2 19:17:33 2008 +0400
1234 mpc83xx: fix PCI scan hang on the standalone MPC837xE-MDS boards
1236 The MPC837xE-MDS board's CPLD can auto-detect if the board is on the PIB,
1237 standalone or acting as a PCI agent. User's Guide says:
1239 - When the CPLD recognizes its location on the PIB it automatically
1240 configures RCW to the PCI Host.
1241 - If the CPLD fails to recognize its location then it is automatically
1242 configured as an Agent and the PCI is configured to an external arbiter.
1244 This sounds good. Though in the standalone setup the CPLD sets PCI_HOST
1245 flag (it's ok, we can't act as PCI agents since we receive CLKIN, not
1246 PCICLK), but the CPLD doesn't set the ARBITER_ENABLE flag, and without
1247 any arbiter bad things will happen (here the board hangs during any config
1250 In this situation we must disable the PCI. And in case of anybody really
1251 want to use an external arbiter, we provide "pci_external_aribter"
1252 environment variable.
1254 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1255 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1257 commit 1da83a63d8e1b4bddeb82581b1745a09aac3e2d3
1258 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1259 Date: Thu Oct 2 18:32:25 2008 +0400
1261 mpc83xx: add SGMII riser module support for the MPC8378E-MDS boards
1263 This involves configuring the SerDes and fixing up the flags and
1264 PHY addresses for the TSECs.
1266 For Linux we also fix up the device tree.
1268 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1269 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1271 commit e6d9c8916de9c24f2c52d0b01cf00d2e74a04cd8
1272 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1273 Date: Thu Oct 2 18:31:59 2008 +0400
1275 mpc83xx: add TSECs' HRCWH masks for MPC837x processors
1277 We'll use these masks to parse TSEC modes out of HRCWH.
1279 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1280 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1282 commit 6f9cc6608b4e1cefde56c0fb99ae1c95c42575ff
1283 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1284 Date: Thu Oct 2 18:31:56 2008 +0400
1286 mpc83xx: serdes: add forgotten shifts for rfcks
1288 The rfcks should be shifted by 28 bits left. We didn't notice the bug
1289 because we were using only 100MHz clocks (for which rfcks == 0).
1291 Though, for SGMII we'll need 125MHz clocks.
1293 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1294 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1296 commit 55c531984dcf933e4cd13a187a7e08e873b7ced1
1297 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1298 Date: Thu Oct 2 18:31:53 2008 +0400
1300 mpc83xx: fix serdes setup for the MPC8378E boards
1302 MPC837xE specs says that SerDes1 has:
1304 — Two lanes running x1 SGMII at 1.25 Gbps;
1305 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
1309 — Two lanes running x1 PCI Express at 2.5 Gbps;
1310 — One lane running x2 PCI Express at 2.5 Gbps;
1311 — Two lanes running x1 SATA at 1.5 or 3.0 Gbps.
1313 The spec also explicitly states that PEX options are not valid for
1316 Nevertheless MPC8378 RDB and MDS boards configure the SD1 for PEX,
1317 which is wrong to do.
1319 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1320 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1322 commit 5c2ff323a94e27e481f70c44838d43fcd844dd46
1323 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
1324 Date: Wed Sep 10 18:12:37 2008 +0400
1326 mpc83xx: mpc8360emds: rework LBC SDRAM setup
1328 Currently 64M of LBC SDRAM are mapped at 0xF0000000 which makes
1329 it difficult to use (b/c then the memory is discontinuous and
1330 there is quite big memory hole between the DDR/SDRAM regions).
1332 This patch reworks LBC SDRAM setup so that now we dynamically
1333 place the LBC SDRAM near the DDR (or at 0x0 if there isn't any
1336 With this patch we're able to:
1338 - Boot without external DDR memory;
1339 - Use most "DDR + SDRAM" setups without need to support for
1340 sparse/discontinuous memory model in the software.
1342 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
1343 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
1345 commit def0819e920b05b34b56d8b42e1e43d9b89a52d6
1346 Author: Wolfgang Denk <wd@xpert.denx.de>
1347 Date: Tue Oct 21 11:23:56 2008 +0200
1349 FDT: don't use private kernel header files
1351 On some systems (for example Fedora Core 4) U-Boot builds with the
1352 following wanrings only:
1355 In file included from /home/wd/git/u-boot/include/libfdt_env.h:33,
1357 /usr/include/asm/byteorder.h:6:2: warning: #warning using private kernel header; include <endian.h> instead!
1359 This patch fixes this problem.
1361 Signed-off-by: Wolfgang Denk <wd@denx.de>
1363 commit f4d14c55504ce40287321bd63ee269e3233ee4ae
1364 Author: Stefan Roese <sr@denx.de>
1365 Date: Mon Oct 13 15:15:31 2008 +0200
1367 ppc4xx: Add 1.0 & 1.066 GHz to canyonlands bootstrap command for PLL setup
1369 Signed-off-by: Stefan Roese <sr@denx.de>
1371 commit 43cbce69d48d052574d71f50724be546d90a46a4
1372 Author: Stefan Roese <sr@denx.de>
1373 Date: Mon Oct 13 10:45:14 2008 +0200
1375 ppc4xx: Correctly setup ranges property in ebc node
1377 Previously only the NOR flash mapping was written into the ranges
1378 property of the ebc node. This patch now writes all enabled chip
1379 select areas into the ranges property.
1381 Signed-off-by: Stefan Roese <sr@denx.de>
1383 commit d7b26d58328f137471ea97de382bfa63f7239931
1384 Author: Dirk Eibach <eibach@gdsys.de>
1385 Date: Wed Oct 8 15:37:50 2008 +0200
1387 ppc4xx: Add GDSys neo 405EP board support
1389 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
1390 Signed-off-by: Stefan Roese <sr@denx.de>
1392 commit c11da194545d2f4bbb54be1bb5e504e20ce8c16c
1393 Author: Niklaus Giger <niklaus.giger@netstal.com>
1394 Date: Wed Oct 1 14:46:13 2008 +0200
1396 ppc4xx: Update configs for Netstal boards
1398 I reorganized my config files, putting the common stuff into netstal-common.h
1399 (got the idea by looking a amcc-common.h from Stefan).
1401 Added stuff to boot the new powerpc linux via NFS (only tested with HCU4).
1403 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
1404 Signed-off-by: Stefan Roese <sr@denx.de>
1406 commit c9c11d751e4242cf29c3c3c290d971f6d0cb1d15
1407 Author: Adam Graham <agraham@amcc.com>
1408 Date: Wed Oct 8 10:13:19 2008 -0700
1410 ppc4xx: Add routine to retrieve CPU number
1412 Provide a weak defined routine to retrieve the CPU number for
1413 reference boards that have multiple CPU's. Default behavior
1414 is the existing single CPU print output. Reference boards with
1415 multiple CPU's need to provide a board specific routine.
1416 See board/amcc/arches/arches.c for an example.
1418 Signed-off-by: Adam Graham <agraham@amcc.com>
1419 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
1420 Signed-off-by: Stefan Roese <sr@denx.de>
1422 commit 59217bae40e90982ab5400d849c08af683ace036
1423 Author: Adam Graham <agraham@amcc.com>
1424 Date: Wed Oct 8 10:13:14 2008 -0700
1426 ppc4xx: Add static support for 44x IBM SDRAM Controller
1428 This patch add the capability to configure a PPC440 based IBM SDRAM
1429 Controller with static, compiled-in, values. PPC440 memory subsystem
1430 includes a Memory Queue core.
1432 Signed-off-by: Adam Graham <agraham@amcc.com>
1433 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
1434 Signed-off-by: Stefan Roese <sr@denx.de>
1436 commit f09f09d3899017aaaa2b031bba63c271e9c48e4d
1437 Author: Adam Graham <agraham@amcc.com>
1438 Date: Wed Oct 8 10:12:53 2008 -0700
1440 ppc4xx: Add AMCC Arches board support (dual 460GT)
1442 The Arches Evaluation board is based on the AMCC 460GT SoC chip.
1443 This board is a dual processor board with each processor providing
1444 independent resources for Rapid IO, Gigabit Ethernet, and serial
1445 communications. Each 460GT has it's own 512MB DDR2 memory, 32MB NOR
1446 FLASH, UART, EEPROM and temperature sensor, along with a shared debug
1447 port. The two 460GT's will communicate with each other via shared
1448 memory, Gigabit Ethernet and x1 PCI-Express.
1450 Signed-off-by: Adam Graham <agraham@amcc.com>
1451 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
1452 Signed-off-by: Stefan Roese <sr@denx.de>
1454 commit 055b12f2ffd7c34eea7e983a0588b24f2e69e0e3
1455 Author: Wolfgang Denk <wd@xpert.denx.de>
1456 Date: Sun Oct 19 21:54:30 2008 +0200
1458 TQM8260: environment in flash instead EEPROM, baudrate 115k
1460 Several customers have reported problems with the environment in
1461 EEPROM, including corrupted content after board reset. Probably the
1462 code to prevent I2C Enge Conditions is not working sufficiently.
1464 We move the environment to flash now, which allows to have a backup
1465 copy plus gives much faster boot times.
1467 Also, change the default console initialization to 115200 bps as used
1468 on most other boards.
1470 Signed-off-by: Wolfgang Denk <wd@denx.de>
1472 commit 1836881190b3d8a6918b0d64b39fe32bbbdf85d8
1473 Author: Kumar Gala <galak@kernel.crashing.org>
1474 Date: Sun Oct 19 12:49:19 2008 -0500
1476 85xx: Fix compile warning in mpc8536ds.c
1478 mpc8536ds.c: In function 'is_sata_supported':
1479 mpc8536ds.c:615: warning: unused variable 'devdisr'
1481 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1483 commit 8ed44d91c8122d00368523b0b746691c895d3b3c
1484 Author: Wolfgang Denk <wd@denx.de>
1485 Date: Sun Oct 19 02:35:50 2008 +0200
1487 Cleanup: fix "MHz" spelling
1489 Signed-off-by: Wolfgang Denk <wd@denx.de>
1491 commit 08ef89ecd174969b3544f3f0c7cd1de3c57f737b
1492 Author: Wolfgang Denk <wd@denx.de>
1493 Date: Sun Oct 19 02:35:49 2008 +0200
1495 Use strmhz() to format clock frequencies
1497 Signed-off-by: Wolfgang Denk <wd@denx.de>
1499 commit d50c7d4be150b2252c0d2e16cfcf69643bdd6dc9
1500 Author: Wolfgang Denk <wd@denx.de>
1501 Date: Sun Oct 19 02:35:48 2008 +0200
1503 strmhz(): Round numbers when printing clock frequencies
1505 Round clock frequencies for printing.
1507 Many boards printed off clock frequencies like 399 MHz instead of the
1508 exact 400 MHz because numberes were not rounded. This is fixed now.
1510 Signed-off-by: Wolfgang Denk <wd@denx.de>
1512 commit 681c02d05b29c6d46093525052c74b9c4ddc8b08
1513 Author: Timur Tabi <timur@freescale.com>
1514 Date: Mon Oct 20 15:16:47 2008 -0500
1516 85xx: properly document MPC85xx_PORDEVSR2_SEC_CFG
1518 Commit f7d190b1 corrected the value of MPC85xx_PORDEVSR2_SEC_CFG, but forgot
1519 to add a comment that the correct value disagrees with the 8544 reference
1520 manual. The changelog for that commit is also wrong, as it says "bit 28"
1521 when it should be "bit 24".
1523 Signed-off-by: Timur Tabi <timur@freescale.com>
1525 commit 360fe71e82b83e264c964c9447c537e9a1f643c8
1526 Author: Heiko Schocher <hs@denx.de>
1527 Date: Fri Oct 17 18:24:06 2008 +0200
1529 mgcoge: add redundant environment sector
1531 Signed-off-by: Heiko Schocher <hs@denx.de>
1533 commit 53ebf0c470c87d5f9fa76462e5f4064d26a9b16a
1534 Author: Heiko Schocher <hs@denx.de>
1535 Date: Fri Oct 17 18:23:27 2008 +0200
1537 mgsuvd: update size of environment
1539 Signed-off-by: Heiko Schocher <hs@denx.de>
1541 commit 2e26d837f11460c0e6dede7d65424a31e0183d09
1542 Author: Jason Jin <Jason.jin@freescale.com>
1543 Date: Fri Oct 10 11:41:00 2008 +0800
1545 Enabled the Freescale SGMII riser card on 8536DS
1547 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
1549 commit 7e183cad0c5ab6415dca95d6ac290ea918b28c55
1550 Author: Liu Yu <yu.liu@freescale.com>
1551 Date: Fri Oct 10 11:40:59 2008 +0800
1553 Enabled the Freescale SGMII riser card on 8572DS
1555 This patch based on Andy's work.
1556 Including command 'pixis_set_sgmii' support.
1558 Signed-off-by: Liu Yu <yu.liu@freescale.com>
1560 commit bff188baf9427c35745356439435acf3864d4c65
1561 Author: Liu Yu <yu.liu@freescale.com>
1562 Date: Fri Oct 10 11:40:58 2008 +0800
1564 Make pixis_set_sgmii more general to support MPC85xx boards.
1566 The pixis sgmii command depend on the FPGA support on the board, some 85xx
1567 boards support SGMII riser card but did not support this command, define
1568 CONFIG_PIXIS_SGMII_CMD for those boards which support the sgmii command.
1570 Not like 8544, 8572 has 4 eTsec so that the other two's pixis bits
1571 are not supported by 8544. Therefor, define PIXIS_VSPEED2_MASK and
1572 PIXIS_VCFGEN1_MASK in header file for both boards.
1574 Signed-off-by: Liu Yu <yu.liu@freescale.com>
1576 commit 5e981d683d2363204c76773941c2e9c2044c808f
1577 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
1578 Date: Wed Oct 8 23:38:02 2008 -0500
1580 Add cpu/8xxx to TAGS_SUBDIRS
1582 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
1584 commit e1f7d22b8b52fc08c4d17a6a7db1e664281aed63
1585 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
1586 Date: Thu Oct 9 01:25:55 2008 -0500
1588 fsl_law clear enable before changing.
1590 Debug sessions may have left enabled laws.
1591 Changing lawbar with an unkown enabled tgtid could cause problems.
1593 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
1595 commit 86be510f7b5443e7e937f696bfbe037fdc740b15
1596 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
1597 Date: Thu Oct 9 00:29:27 2008 -0500
1599 mpc8572 additional end-point mode
1601 mpc8572 supports all pcie controllers as end-points with cfg_host_agent=0.
1602 Include host_agent == 0 decode for end-point determination.
1604 This is not needed for the ds reference board since pcie3 will be a host
1605 in order to connect to the uli chip. Include it here as a reference for
1606 other mpc8572 boards.
1608 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
1610 commit 6856b3d0221a838580e6bb06f61425fd7529ba93
1611 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
1612 Date: Wed Oct 8 23:37:59 2008 -0500
1614 85xx if NUM_CPUS>1, print cpu number
1616 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
1618 commit f7fecc3e25050a036c9f50f0d2b85bc3199a96e0
1619 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
1620 Date: Wed Oct 8 23:38:01 2008 -0500
1622 pixis do not print long help if not configured
1624 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
1626 commit 0e17f02a8a78d85225a4d805f6a1ea95a0a460b5
1627 Author: Andy Fleming <afleming@freescale.com>
1628 Date: Tue Oct 7 08:09:50 2008 -0500
1630 Have u-boot pass stashing parameters into device tree
1632 Some cores don't support ethernet stashing at all, and some
1633 instances have errata. Adds 3 properties to gianfar nodes
1634 which support stashing. For now, just add this support to
1637 Signed-off-by: Andy Fleming <afleming@freescale.com>
1639 commit c21617fd265b7c126c6e2f2d8a23cdb00d4fade7
1640 Author: Haiying Wang <Haiying.Wang@freescale.com>
1641 Date: Fri Oct 3 12:37:57 2008 -0400
1643 Add DDR options setting on MPC8641HPCN board
1645 * Add board specific parameter table to choose correct cpo, clk_adjust,
1646 write_data_delay based on board ddr frequency and n_ranks.
1648 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
1650 Signed-off-by: James Yang <James.Yang@freescale.com>
1651 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1653 commit 4ca06607d60d0a6378812ef58fd1eab2a7f77111
1654 Author: Haiying Wang <Haiying.Wang@freescale.com>
1655 Date: Fri Oct 3 12:37:41 2008 -0400
1657 Add ddr interleaving suppport for MPC8572DS board
1659 * Add board specific parameter table to choose correct cpo, clk_adjust,
1660 write_data_delay, 2T based on board ddr frequency and n_ranks.
1662 * Set odt_rd_cfg and odt_wr_cfg based on the dimm# and CS#.
1664 * Set memory controller interleaving mode to bank interleaving, and disable
1665 bank(chip select) interleaving mode by default, because the default on-board
1666 DDR DIMMs are 2x512MB single-rank.
1668 * Change CONFIG_ICS307_REFCLK_HZ from 33333333 to 33333000.
1670 Signed-off-by: James Yang <James.Yang@freescale.com>
1671 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1673 commit 1f293b417ac6ab8e317ca2b770377ca93edf2370
1674 Author: Haiying Wang <Haiying.Wang@freescale.com>
1675 Date: Fri Oct 3 12:37:26 2008 -0400
1677 Add debug information for DDR controller registers
1679 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1681 commit c9ffd839b1ada502c86f88edaf1534426b6688ce
1682 Author: Haiying Wang <Haiying.Wang@freescale.com>
1683 Date: Fri Oct 3 12:37:10 2008 -0400
1685 Check DDR interleaving mode
1687 * Check DDR interleaving mode from environment by reading memctl_intlv_ctl and
1689 * Print DDR interleaving mode information
1690 * Add doc/README.fsl-ddr to describe the interleaving setting
1692 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1694 commit dfb49108e4f86c2224e1f30124328b0de66ef72e
1695 Author: Haiying Wang <Haiying.Wang@freescale.com>
1696 Date: Fri Oct 3 12:36:55 2008 -0400
1698 Pass dimm parameters to populate populate controller options
1700 Because some dimm parameters like n_ranks needs to be used with the board
1701 frequency to choose the board parameters like clk_adjust etc. in the
1702 board_specific_paramesters table of the board ddr file, we need to pass
1703 the dimm parameters to the board file.
1705 * move ddr dimm parameters header file from /cpu to /include directory.
1706 * add ddr dimm parameters to populate board specific options.
1707 * Fix fsl_ddr_board_options() for all the 8xxx boards which call this function.
1709 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1711 commit dbbbb3abeff325855cae76e33d69d5665631443f
1712 Author: Haiying Wang <Haiying.Wang@freescale.com>
1713 Date: Fri Oct 3 12:36:39 2008 -0400
1715 Make DDR interleaving mode work correctly
1718 1. Correctly set intlv_ctl in cs_config.
1719 2. Correctly set sa, ea in cs_bnds when bank interleaving mode is enabled.
1720 3. Set base_address and total memory for each ddr controller in memory
1721 controller interleaving mode.
1723 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
1725 commit 1c9aa76bf9013069e24258f46f4687c9f98a02d6
1726 Author: Kumar Gala <galak@kernel.crashing.org>
1727 Date: Mon Sep 22 23:40:42 2008 -0500
1729 85xx: Enable interrupt and setexpr commands on Freescale 85xx boards
1731 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1733 commit 7c0d4a7508d252d2d7c137eeb376814132dda30f
1734 Author: Kumar Gala <galak@kernel.crashing.org>
1735 Date: Mon Sep 22 14:11:11 2008 -0500
1737 85xx: Improve flash remapping on MPC8572DS & MPC8536DS
1739 Changing the flash from cacheable to cache-inhibited was taking a significant
1740 amount of time due to the fact that we were iterating over the full 256M of
1741 flash. Instead we can just flush the L1 d-cache and invalidate the i-cache.
1743 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1745 commit 54e091d3b603a3332c619199ca83a07e95960da4
1746 Author: Kumar Gala <galak@kernel.crashing.org>
1747 Date: Mon Sep 22 14:11:10 2008 -0500
1749 85xx: Export invalidate_{i,d}cache and add flush_dcache
1751 Added the ability for C code to invalidate the i/d-cache's and
1752 to flush the d-cache. This allows us to more efficient change mappings
1753 from cache-able to cache-inhibited.
1755 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1757 commit 6250f0f6297c5ba9aecdea6290799a95c5d4b1da
1758 Author: Heiko Schocher <hs@denx.de>
1759 Date: Fri Oct 17 16:11:52 2008 +0200
1761 mgcoge, mgsuvd: extract more common code
1763 in ft_blob_update () for both boards was an unneccessary
1764 repetition of code, which this patch moves in a common
1765 function for this boards.
1767 Signed-off-by: Heiko Schocher <hs@denx.de>
1769 commit 9e299192ca9850cf725456388042a5aa5a6f3ec7
1770 Author: Heiko Schocher <hs@denx.de>
1771 Date: Fri Oct 17 12:15:55 2008 +0200
1773 mgcoge, mgsuvd: use in_*/out_* accesors
1775 Signed-off-by: Heiko Schocher <hs@denx.de>
1777 commit a21ca95f8b9dca22714952b348e4905ac157b5cd
1778 Author: Heiko Schocher <hs@denx.de>
1779 Date: Fri Oct 17 13:52:51 2008 +0200
1781 mgsuvd: fix compiler warning when using soft_i2c driver
1783 Signed-off-by: Heiko Schocher <hs@denx.de>
1785 commit cac9cf7875c2a01d63422820ed4732a9bdf5ab7b
1786 Author: Heiko Schocher <hs@denx.de>
1787 Date: Fri Oct 17 12:15:05 2008 +0200
1789 mgsuvd: fix coding style
1791 Signed-off-by: Heiko Schocher <hs@denx.de>
1793 commit 5f4c3137f4f051787707c548133823f1656eb508
1794 Author: Heiko Schocher <hs@denx.de>
1795 Date: Fri Oct 17 12:13:30 2008 +0200
1797 mgcoge: Second Flash on CS5 not on CS1
1799 Signed-off-by: Heiko Schocher <hs@denx.de>
1801 commit 76da19df5b8e186d269f29190696bd31fb6c836b
1802 Author: Kumar Gala <galak@kernel.crashing.org>
1803 Date: Thu Oct 16 21:52:08 2008 -0500
1805 Added arch_lmb_reserve to allow arch specific memory regions protection
1807 Each architecture has different ways of determine what regions of memory
1808 might not be valid to get overwritten when we boot. This provides a
1809 hook to allow them to reserve any regions they care about. Currently
1810 only ppc, m68k and sparc need/use this.
1812 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1814 commit e02d4a9904c8f36395994c0c81469d552b82f5ea
1815 Author: Heiko Schocher <hs@denx.de>
1816 Date: Thu Oct 16 16:32:35 2008 +0200
1818 mgcoge: added CONFIG_FIT to support the new u-boot image format
1820 Signed-off-by: Heiko Schocher <hs@denx.de>
1822 commit 6d0f6bcf337c5261c08fabe12982178c2c489d76
1823 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1824 Date: Thu Oct 16 15:01:15 2008 +0200
1826 rename CFG_ macros to CONFIG_SYS
1828 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
1830 commit 71edc271816ec82cf0550dd6980be2da3cc2ad9e
1831 Author: Kumar Gala <galak@kernel.crashing.org>
1832 Date: Mon Oct 13 14:12:55 2008 -0500
1834 74xx/7xx/86xx: Rename flush_data_cache to flush_dcache to match 85xx version
1836 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1838 commit b799cb4c0eebb0762e91e9653d8b9cc9a98440e3
1839 Author: Kumar Gala <galak@kernel.crashing.org>
1840 Date: Tue Sep 23 10:05:02 2008 -0500
1842 Expose command table search for sub-commands
1844 Sub-command can benefit from using the same table and search functions
1845 that top level commands have. Expose this functionality by refactoring
1846 find_cmd() and introducing find_cmd_tbl() that sub-command processing
1849 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
1851 commit f7e51b27508446f8cae3927975817137979ad5e8
1852 Author: Heiko Schocher <hs@denx.de>
1853 Date: Wed Oct 15 09:41:33 2008 +0200
1855 mgsuvd, mgcoge: added BOOTCOUNT feature.
1857 Signed-off-by: Heiko Schocher <hs@denx.de>
1859 commit 8f64da7f83b553889bc08400c97047998382e9d2
1860 Author: Heiko Schocher <hs@denx.de>
1861 Date: Wed Oct 15 09:41:00 2008 +0200
1863 mgcoge, mgsuvd: added support for the IVM EEprom.
1865 The EEprom contains some Manufacturerinformation,
1866 which are read from u-boot at boot time, and saved
1867 in same hush shell variables.
1869 Signed-off-by: Heiko Schocher <hs@denx.de>
1871 commit 81473f67810c4c9b7efaed8dee258ed6bc4c7983
1872 Author: Heiko Schocher <hs@denx.de>
1873 Date: Wed Oct 15 09:40:28 2008 +0200
1875 hush: add showvar command for hush shell.
1877 This new command shows the local variables defined in
1882 - print values of all hushshell variables
1884 - print value of hushshell variable 'name'
1886 Also make the set_local_var() and unset_local_var ()
1887 no longer static, so it is possible to define local
1888 hush shell variables at boot time. If CONFIG_HUSH_INIT_VAR
1889 is defined, u-boot calls hush_init_var (), where
1890 boardspecific code can define local hush shell
1891 variables at boottime.
1893 Signed-off-by: Heiko Schocher <hs@denx.de>
1895 commit 67b23a322848d828a5e45c0567b72762bfde7abf
1896 Author: Heiko Schocher <hs@denx.de>
1897 Date: Wed Oct 15 09:39:47 2008 +0200
1899 I2C: adding new "i2c bus" Command to the I2C Subsystem.
1901 With this Command it is possible to add new I2C Busses,
1902 which are behind 1 .. n I2C Muxes. Details see README.
1904 Signed-off-by: Heiko Schocher <hs@denx.de>
1906 commit c24853644ddd2dd2e4246b5854a93e6254a14092
1907 Author: Heiko Schocher <hs@denx.de>
1908 Date: Wed Oct 15 09:39:08 2008 +0200
1910 mgcoge, mgsuvd: add board specific I2C deblocking mechanism.
1912 As documented in doc/I2C_Edge_Conditions, adding a
1913 board specific deblocking mechanism via CFG_I2C_INIT_BOARD
1914 for the mgcoge and mgsuvd board.
1916 This code was originally written by Keymile in association
1917 with Anatech and Atmel in 1998. The Code toggels the SCL
1918 until the SCA line goes to HIGH (max. 16 times).
1919 And after this, a start condition is sent.
1921 This is another approach to deblock the I2C Bus. The
1922 soft I2C driver actually sends 9 clocks with SDA High,
1923 and then a stop at the end, to deblock the I2C Bus.
1925 Maybe we should use the approach from Keymile as
1928 Signed-off-by: Heiko Schocher <hs@denx.de>
1930 commit 4ca107effebfbabac1057c39632105dacef95957
1931 Author: Heiko Schocher <hs@denx.de>
1932 Date: Wed Oct 15 09:38:38 2008 +0200
1934 soft_i2c: Add CFG_I2C_INIT_BOARD option
1936 This patch adds the option for a boardspecific
1937 I2C deblocking mechanism for the soft i2c driver.
1939 Signed-off-by: Heiko Schocher <hs@denx.de>
1941 commit e5e4edd9f1f76210a09c34ee835f6cff60fdbbd1
1942 Author: Heiko Schocher <hs@denx.de>
1943 Date: Wed Oct 15 09:38:07 2008 +0200
1945 mgcoge, mgsuvd: add DTT (LM75) support.
1947 Signed-off-by: Heiko Schocher <hs@denx.de>
1949 commit 8e442df438ab677057571e3ac01846bff7719bce
1950 Author: Heiko Schocher <hs@denx.de>
1951 Date: Wed Oct 15 09:37:34 2008 +0200
1953 lm75: Make the LM75 MULTI_BUS compatible.
1955 Signed-off-by: Heiko Schocher <hs@denx.de>
1957 commit 12f1678127c1df2b2878ba93c88948bedc060775
1958 Author: Heiko Schocher <hs@denx.de>
1959 Date: Wed Oct 15 09:37:04 2008 +0200
1961 lm75: fix Codingstyle issues.
1963 Signed-off-by: Heiko Schocher <hs@denx.de>
1965 commit f2202450c75ba6934b356024101500ddcde6e2a6
1966 Author: Heiko Schocher <hs@denx.de>
1967 Date: Wed Oct 15 09:36:33 2008 +0200
1969 mgcoge, mgsuvd: added EEprom support.
1971 Signed-off-by: Heiko Schocher <hs@denx.de>
1973 commit 9661bf9d120f760238b2a073b84f2baf05010057
1974 Author: Heiko Schocher <hs@denx.de>
1975 Date: Wed Oct 15 09:36:03 2008 +0200
1977 mgcoge, mgsuvd: add I2C support.
1979 Signed-off-by: Heiko Schocher <hs@denx.de>
1981 commit 98aed379586a155292efbf3209356836584b601c
1982 Author: Heiko Schocher <hs@denx.de>
1983 Date: Wed Oct 15 09:35:26 2008 +0200
1985 soft_i2c: prevent compiler warnings if driver does not use CPU Pins.
1987 This patch fixes the following warnings, when using
1988 the soft_i2c driver using no CPU pins on MPC82xx or MPC8xx
1991 soft_i2c.c: In function 'send_reset':
1992 soft_i2c.c:93: warning: unused variable 'immr'
1993 soft_i2c.c: In function 'send_start':
1994 soft_i2c.c:124: warning: unused variable 'immr'
1995 soft_i2c.c: In function 'send_stop':
1996 soft_i2c.c:146: warning: unused variable 'immr'
1997 soft_i2c.c: In function 'send_ack':
1998 soft_i2c.c:171: warning: unused variable 'immr'
1999 soft_i2c.c: In function 'write_byte':
2000 soft_i2c.c:196: warning: unused variable 'immr'
2001 soft_i2c.c: In function 'read_byte':
2002 soft_i2c.c:244: warning: unused variable 'immr'
2004 Signed-off-by: Heiko Schocher <hs@denx.de>
2006 commit 799b784aa00cb03a352847ab9f9acdde79b72d21
2007 Author: Heiko Schocher <hs@denx.de>
2008 Date: Wed Oct 15 09:34:45 2008 +0200
2010 i2c: add CONFIG_I2C_MULTI_BUS for soft_i2c and mpc8260 i2c driver.
2012 Signed-off-by: Heiko Schocher <hs@denx.de>
2014 commit 0809ea2f4340ab2047400c7d3d3047f97987d0fd
2015 Author: Heiko Schocher <hs@denx.de>
2016 Date: Wed Oct 15 09:34:05 2008 +0200
2018 mgcoge: fix Coding Style issues.
2020 Signed-off-by: Heiko Schocher <hs@denx.de>
2022 commit e43a27c49712203fe8848a17714330623edfb2eb
2023 Author: Heiko Schocher <hs@denx.de>
2024 Date: Wed Oct 15 09:33:30 2008 +0200
2026 I2C: add new command i2c reset.
2028 If I2C Bus is blocked (see doc/I2C_Edge_Conditions),
2029 it is not possible to get out of this, until the
2030 complete Hardware gets a reset. This new commando
2031 calls again i2c_init (and that calls i2c_init_board
2032 if defined), which will deblock the I2C Bus.
2034 Signed-off-by: Heiko Schocher <hs@denx.de>
2035 Signed-off-by: Wolfgang Denk <wd@denx.de>
2037 commit 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686
2038 Author: Heiko Schocher <hs@denx.de>
2039 Date: Wed Oct 15 09:32:25 2008 +0200
2041 mgsuvd, mgcoge: move this 2 boards in one dir.
2043 There are some more extensions, which are for both boards
2044 and some more boards from this manufacturer will follow soon.
2046 Signed-off-by: Heiko Schocher <hs@denx.de>
2047 Signed-off-by: Wolfgang Denk <wd@denx.de>
2049 commit 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b
2050 Author: Dirk Eibach <eibach@gdsys.de>
2051 Date: Wed Oct 8 13:44:27 2008 +0200
2053 hwmon: Add LM63 support
2055 This patch adds support for the National LM63 temperature
2056 sensor with integrated fan control. It's used on the GDSys
2057 Neo board (405EP) which will be submitted later.
2059 Signed-off-by: Dirk Eibach <eibach@gdsys.de>
2060 Acked-by: Stefan Roese <sr@denx.de>
2062 commit 7ba890bf2f2b92831420243c058951aa831119fd
2063 Author: Kyungmin Park <kmpark@infradead.org>
2064 Date: Wed Oct 8 11:01:17 2008 +0900
2066 Add Red Black Tree support
2068 Now it's used at UBI module. Of course other modules can use it.
2069 If you want to use it, please define CONFIG_RBTREE
2071 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2073 commit fbd85ad65dd9c98f36ed3fb12fe41f381b7d4794
2074 Author: richardretanubun <richardretanubun@ruggedcom.com>
2075 Date: Mon Oct 6 16:10:53 2008 -0400
2077 CONFIG_EFI_PARTITION: Added support for EFI partition in cmd_ext2fs.c
2079 Added support for CONFIG_EFI_PARTITION to ext2 commands.
2080 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
2082 commit 07f3d789b9beb7ce3278c974f4d5c8f51b6ab567
2083 Author: richardretanubun <richardretanubun@ruggedcom.com>
2084 Date: Fri Sep 26 11:13:22 2008 -0400
2086 Add support for CONFIG_EFI_PARTITION (GUID Partition Table)
2088 The GUID (Globally Unique Identifier) Partition Table (GPT) is a part
2089 of EFI. See http://en.wikipedia.org/wiki/GUID_Partition_Table
2091 Based on linux/fs/partitions/efi.[ch]
2093 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
2095 commit fbc87dc0546dff709b38f358e2c5d5e39c4ca374
2096 Author: Bartlomiej Sieka <tur@semihalf.com>
2097 Date: Wed Oct 1 15:26:32 2008 +0200
2099 FIT: output image load address for type 'firmware', fix message while there
2101 Now that the auto-update feature uses the 'firmware' type for updates, it is
2102 useful to inspect the load address of such images.
2104 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
2106 commit 4bae90904b69ce3deb9f7c334ef12ed74e18a275
2107 Author: Bartlomiej Sieka <tur@semihalf.com>
2108 Date: Wed Oct 1 15:26:31 2008 +0200
2110 Automatic software update from TFTP server
2112 The auto-update feature allows to automatically download software updates
2113 from a TFTP server and store them in Flash memory during boot. Updates are
2114 contained in a FIT file and protected with SHA-1 checksum.
2116 More detailed description can be found in doc/README.update.
2118 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
2119 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
2121 commit 3f0cf51dabacc2724731c5079a60ea989103bb8f
2122 Author: Bartlomiej Sieka <tur@semihalf.com>
2123 Date: Wed Oct 1 15:26:27 2008 +0200
2125 flash: factor out adjusting of Flash address to the end of sector
2127 The upcoming automatic update feature needs the ability to adjust an
2128 address within Flash to the end of its respective sector. Factor out
2129 this functionality to a new function flash_sect_roundb().
2131 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
2132 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
2133 Signed-off-by: Stefan Roese <sr@denx.de>
2135 commit e83cc06375ac2bea0830c6ed0f9d8fdc3c1b27d5
2136 Author: Bartlomiej Sieka <tur@semihalf.com>
2137 Date: Wed Oct 1 15:26:29 2008 +0200
2139 net: Make TFTP server timeout configurable
2141 There are two aspects of a TFTP transfer involving timeouts:
2142 1. timeout waiting for initial server reply after sending RRQ
2143 2. timeouts while transferring actual data from the server
2145 Since the upcoming auto-update feature attempts a TFTP download during each
2146 boot, it is undesirable to have a long delay when the TFTP server is not
2147 available. Thus, this commit makes the server timeout (1.) configurable by two
2151 TftpRRQTimeoutCountMax
2153 TftpRRQTimeoutMSecs overrides default timeout when trying to connect to a TFTP
2154 server, TftpRRQTimeoutCountMax overrides default number of connection retries.
2155 The total delay when trying to download a file from a non-existing TFTP server
2156 is TftpRRQTimeoutMSecs x TftpRRQTimeoutCountMax milliseconds.
2158 Timeouts during file transfers (2.) are unaffected.
2160 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
2161 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
2162 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2164 commit 49f3bdbba8071f56d950a9498b6cdb998b35340a
2165 Author: Bartlomiej Sieka <tur@semihalf.com>
2166 Date: Wed Oct 1 15:26:28 2008 +0200
2168 net: express the first argument to NetSetTimeout() in milliseconds
2170 Enforce millisecond semantics of the first argument to NetSetTimeout() --
2171 the change is transparent for well-behaving boards (CFG_HZ == 1000 and
2172 get_timer() countiing in milliseconds).
2174 Rationale for this patch is to enable millisecond granularity for
2175 network-related timeouts, which is needed for the upcoming automatic
2176 software update feature.
2179 - do not scale the first argument to NetSetTimeout() by CFG_HZ
2180 - change timeout values used in the networking code to milliseconds
2182 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
2183 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
2184 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2186 commit c68a05feeb88de9fcf158e67ff6423c4cc988f88
2187 Author: richardretanubun <richardretanubun@ruggedcom.com>
2188 Date: Mon Sep 29 18:28:23 2008 -0400
2190 Adds two more ethernet interface to 83xx
2192 Added as a convenience for other platforms that uses MPC8360 (has 8 UCC).
2193 Six eth interface is chosen because the platform I am using combines
2194 UCC1&2 and UCC3&4 as 1000 Eth and the other four UCCs as 10/100 Eth.
2196 Signed-off-by: Richard Retanubun <RichardRetanubun@RugggedCom.com>
2197 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2199 commit 41410eee472b0f42e03a77f961bbc55ef58f3c01
2200 Author: Haiying Wang <Haiying.Wang@freescale.com>
2201 Date: Wed Sep 24 11:42:12 2008 -0500
2203 Change UEC PHY interface to RGMII on MPC8568MDS
2205 Change UEC phy interface from GMII to RGMII on MPC8568MDS board
2207 Because on MPC8568MDS, GMII interface is only recommended for 1000Mbps speed,
2208 but RGMII interface can work at 10/100/1000Mbps, and RGMII interface works more stable.
2210 Now both UEC1 and UEC2 can work properly under u-boot.
2212 It is also in consistent with the kernel setting for 8568 UEC phy interface.
2214 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2215 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2217 commit b59b16ca24bc7e77ec113021a6d77b9b32fcf192
2218 Author: Wolfgang Denk <wd@denx.de>
2219 Date: Sat Oct 18 21:30:31 2008 +0200
2221 Prepare v2008.10 release: update CHANGELOG & Makefile
2223 Signed-off-by: Wolfgang Denk <wd@denx.de>
2225 commit f7a35a60cf45491871a5c28e9ad24db005487857
2226 Author: Heiko Schocher <hs@denx.de>
2227 Date: Fri Oct 17 18:24:06 2008 +0200
2229 mgcoge: add redundant environment sector
2231 Signed-off-by: Heiko Schocher <hs@denx.de>
2232 Signed-off-by: Wolfgang Denk <wd@denx.de>
2234 commit c2537ee85954af9d036b18b644f3e18d837bf4a5
2235 Author: Heiko Schocher <hs@denx.de>
2236 Date: Fri Oct 17 18:23:27 2008 +0200
2238 mgsuvd: update size of environment
2240 Signed-off-by: Heiko Schocher <hs@denx.de>
2242 commit fa7b1c07e9371aea8f87ee6d3c2ea5564bd8cc8d
2243 Author: Lepcha Suchit <Suchit.Lepcha@freescale.com>
2244 Date: Thu Oct 16 13:38:00 2008 -0500
2246 83xx NAND boot: wait for LTESR[CC]
2248 At least some revisions of the 8313, and possibly other chips, do not
2249 wait for all pages of the initial 4K NAND region to be loaded before
2250 beginning execution; thus, we wait for it before branching out of the
2253 This fixes warm reset problems when booting from NAND on 8313erdb.
2255 Signed-off-by: Scott Wood <scottwood@freescale.com>
2256 Acked-by: Kim Phillips <kim.phillips@freescale.com>
2258 commit bf29e0ea0af03d593c64614136acc723a7a022a2
2259 Author: Yuri Tikhonov <yur@emcraft.com>
2260 Date: Fri Oct 17 12:54:18 2008 +0200
2262 ppc4xx: PPC44x MQ initialization
2264 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
2265 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
2266 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
2268 Previously the appropriate initialization had been made in Linux, by the
2269 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
2270 registers after normal operation has begun is not supported and could
2271 have unpredictable results.
2273 Comment from Stefan: This patch doesn't change the resulting value of the
2274 MQ registers. It explicitly sets/clears all bits to the desired state which
2275 better documents the resulting register value instead of relying on pre-set
2278 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
2279 Signed-off-by: Stefan Roese <sr@denx.de>
2281 commit ec081c2c190148b374e86a795fb6b1c49caeb549
2282 Author: Stefan Roese <sr@denx.de>
2283 Date: Fri Oct 17 12:51:46 2008 +0200
2285 ppc4xx: PPC44x MQ initialization
2287 Set the MQ Read Passing & MCIF Cycle limits to the recommended by AMCC
2288 values. This fixes the occasional 440SPe hard locking issues when the 440SPe's
2289 dedicated DMA engines are used (e.g. by the h/w accelerated RAID driver).
2291 Previously the appropriate initialization had been made in Linux, by the
2292 ppc440spe ADMA driver, which is wrong because modifying the MQ configuration
2293 registers after normal operation has begun is not supported and could
2294 have unpredictable results.
2296 Comment from Stefan: This patch doesn't change the resulting value of the
2297 MQ registers. It explicitly sets/clears all bits to the desired state which
2298 better documents the resulting register value instead of relying on pre-set
2301 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
2302 Signed-off-by: Stefan Roese <sr@denx.de>
2304 commit f7d190b1c0b3ab7fc53074ad2862f7de99de37ff
2305 Author: Kumar Gala <galak@kernel.crashing.org>
2306 Date: Thu Oct 16 21:58:50 2008 -0500
2308 85xx: Using proper I2C source clock divider for MPC8544
2310 The MPC8544 RM incorrect shows the SEC_CFG bit in PORDEVSR2 as being
2311 bit 26, instead it should be bit 28. This caused in incorrect
2312 interpretation of the i2c_clk which is the same as the SEC clk on
2313 MPC8544. The SEC clk is controlled by cfg_sec_freq that is reported
2316 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2318 commit 42653b826adb319a1df06e24ef26096b2a5d9d2a
2319 Author: Kumar Gala <galak@kernel.crashing.org>
2320 Date: Thu Oct 16 21:58:49 2008 -0500
2322 Revert "85xx: Using proper I2C source clock divider for MPC8544"
2324 This reverts commit dffd2446fb041f38ef034b0fcf41e51e5e489159.
2326 The fix introduced by this patch is not correct. The problem is
2327 that the documentation is not correct for the MPC8544 with regards
2328 to which bit in PORDEVSR2 is for the SEC_CFG.
2330 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2332 commit 2179c4766bffeece98e5e92040629a96c97e230c
2333 Author: Kumar Gala <galak@kernel.crashing.org>
2334 Date: Wed Oct 15 10:19:41 2008 -0500
2336 85xx: Fix compile warning
2338 mpc8536ds.c: In function 'is_sata_supported':
2339 mpc8536ds.c:614: warning: unused variable 'devdisr'
2341 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2343 commit 9029b68f3f81b3013044f167ea025e836e6c8c0e
2344 Author: Jason Jin <Jason.jin@freescale.com>
2345 Date: Wed Oct 15 10:40:24 2008 +0800
2347 Fix the function conflict in x86emu when DEBUG is on
2349 The function parse_line() in common/main.c was exposed globally by commit
2350 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same
2351 name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG.
2352 This patch fix this by renaming the function in the debug.c file.
2354 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
2356 commit b4dbacf69a669a17487054552fc2761149dd6767
2357 Author: Wolfgang Denk <wd@denx.de>
2358 Date: Wed Oct 15 15:50:45 2008 +0200
2360 Coding Style cleanup, update CHANGELOG, prepare 2008.10-rc3
2362 Signed-off-by: Wolfgang Denk <wd@denx.de>
2364 commit 374b9038293d01d8744a46af9b7854a6fd99b228
2365 Author: Heiko Schocher <hs@denx.de>
2366 Date: Wed Oct 15 09:51:19 2008 +0200
2368 Fix compiler warning in lib_ppc/board.c
2370 Fix compiler warning introduced by commit 0f8cbc18
2372 Signed-off-by: Heiko Schocher <hs@denx.de>
2373 Signed-off-by: Wolfgang Denk <wd@denx.de>
2375 commit 9724555755a6f1066636481b41f7094e0ce93a69
2376 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
2377 Date: Thu Oct 9 10:29:14 2008 +0530
2379 mpc83xx: wait till UPM completes the write to array
2381 Reference manual states that MxMR[MAD] increment is the indication
2382 of write to UPM array is complete. Honour that. Also, make the dummy
2385 also fix the comment.
2387 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
2388 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2390 commit 03e2dbb18e858e2f7a6aaa437f290f3690d02d51
2391 Author: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
2392 Date: Wed Oct 8 18:12:20 2008 -0500
2394 Remove unwanted ';' at end of define.
2396 Currently this is not creating any problem. But it will result
2397 in compilation error when used as below.
2399 printf("CFG_SDRAM_CFG2 - %08x\n", CFG_SDRAM_CFG2);
2401 Signed-off-by: Selvamuthukumar <selva.muthukumar@e-coninfotech.com>
2403 continuation of the theme based on git grep "^#define CFG_.*;$" include/
2405 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
2407 commit b2934a56650e9a6c54432f9ce6dc36757967385e
2408 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
2409 Date: Mon Oct 6 10:53:59 2008 -0400
2411 ARM DaVinci: Add maintainer information for SFFSDR board.
2413 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
2415 commit 12c6670f873ed632c264a6f3e8bf1297d5c3ddbc
2416 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2417 Date: Sat Oct 4 19:26:16 2008 +0200
2419 api: fix type mismatch
2421 This patch fixes a type mismatch and thus removes a compiler
2422 warning when compiling with CONFIG_API on powerpc.
2424 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2426 commit 9bc2e4eee3bcb8e63847d7a733e0c607807d6141
2427 Author: Peter Tyser <ptyser@xes-inc.com>
2428 Date: Wed Oct 1 12:25:04 2008 -0500
2430 cmd_i2c: Fix help for CONFIG_I2C_CMD_TREE && !CONFIG_I2C_MULTI_BUS
2432 Original code displayed:
2434 i2c i2c speed [speed] - show or set I2C bus speed
2435 i2c md chip address[.0, .1, .2] [# of objects] - read from I2C device
2438 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2440 commit a0b1b610e980e253d4c2519ee15bd0937c3f8be1
2441 Author: Wolfgang Denk <wd@denx.de>
2442 Date: Tue Oct 14 22:13:41 2008 +0200
2446 Signed-off-by: Wolfgang Denk <wd@denx.de>
2448 commit 0f8cbc1829d9c7d9616fd29b366a99d037facdcd
2449 Author: Jason Jin <Jason.jin@freescale.com>
2450 Date: Fri Oct 10 11:41:01 2008 +0800
2452 Do not init SATA when disabled on 8536DS.
2454 SGMII and SATA share the serdes on MPC8536 CPU, When SATA disabled and the
2455 driver still try to access the SATA registers, the cpu will hangup.
2456 This patch try to fix this by reading the serdes status before the SATA
2459 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
2460 Acked-by: Andy Fleming <afleming@freescale.com>
2462 commit 9dbc366744960013965fce8851035b6141f3b3ae
2463 Author: Remy Bohmer <linux@bohmer.net>
2464 Date: Fri Oct 10 10:23:22 2008 +0200
2466 The PIPE_INTERRUPT flag is used wrong
2468 At a lot of places in the code the PIPE_INTERRUPT flags and friends
2469 are used wrong. The wrong bits are compared to this flag resulting
2470 in wrong conditions. Also there are macros that should be used for
2472 This patch tries to fix them all, however, I was not able to test the
2473 changes, because I do not have any of these boards.
2477 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2478 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
2480 commit 48867208444cb2a82e2af9c3249e90b7ed4a1751
2481 Author: Remy Bohmer <linux@bohmer.net>
2482 Date: Fri Oct 10 10:23:21 2008 +0200
2484 fix USB initialisation procedure
2486 The max packet size is encoded as 0,1,2,3 for 8,16,32,64 bytes.
2487 At some places directly 8,16,32,64 was used instead of the encoded
2488 value. Made a enum for the options to make this more clear and to help
2489 preventing similar errors in the future.
2491 After fixing this bug it became clear that another bug existed where
2492 the 'pipe' is and-ed with PIPE_* flags, where it should have been
2493 'usb_pipetype(pipe)', or even better usb_pipeint(pipe).
2495 Also removed the triple 'get_device_descriptor' sequence, it has no use,
2496 and Windows nor Linux behaves that way.
2497 There is also a poll going on with a timeout when usb_control_msg() fails.
2498 However, the poll is useless, because the flag will never be set on a error,
2499 because there is no code that runs in a parallel that can set this flag.
2500 Changed this to something more logical.
2502 Tested on AT91SAM9261ek and compared the flow on the USB bus to what
2503 Linux is doing. There is no difference anymore in the early initialisation
2506 Signed-off-by: Remy Bohmer <linux@bohmer.net>
2507 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
2509 commit ec4d8c1c1d94a790c1473ae8aace282b817c3123
2510 Author: Nikita V. Youshchenko <yoush@cs.msu.su>
2511 Date: Fri Oct 3 00:03:55 2008 +0400
2513 fsl_diu: fix alignment error that caused malloc corruption
2515 When aligning malloc()ed screen_base, invalid offset was added.
2516 This not only caused misaligned result (which did not cause hardware
2517 misbehaviour), but - worse - caused screen_base + smem_len to
2518 be out of malloc()ed space, which in turn caused breakage of
2519 futher malloc()/free() operation.
2521 This patch fixes screen_base alignment.
2523 Also this patch makes memset() that cleans framebuffer to be executed
2524 on first initialization of diu, not only on re-initialization. It looks
2525 correct to clean the framebuffer instead of displaying random garbage;
2526 I believe that was disabled only because that memset caused breakage
2527 of malloc/free described above - which no longer happens with the fix
2530 Signed-off-by: Nikita V. Youshchenko <yoush@debian.org>
2532 commit 3d0ea3110f3431b6c2aee882784f39f97b20bce9
2533 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2534 Date: Wed Sep 24 10:29:37 2008 +0200
2536 api: Fix building with CONFIG_API
2538 This patch fixes building with CONFIG_API and CONFIG_USB_STORAGE.
2540 USB_MAX_STOR_DEV is defined in include/usb.h, but
2541 needed in api/api_storage.c.
2543 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2545 commit abbb90666d5ef2f500ebbedbb80ff60adc56b043
2546 Author: Peter Tyser <ptyser@xes-inc.com>
2547 Date: Tue Sep 23 12:39:40 2008 -0500
2549 Remove unused CFG_EEPROM_PAGE_WRITE_ENABLE references
2551 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2553 commit 81e612014c40c922ec35488d17c504d4e9286f06
2554 Author: Peter Tyser <ptyser@xes-inc.com>
2555 Date: Tue Sep 23 12:38:42 2008 -0500
2557 Remove CFG_EEPROM_PAGE* dependencies for temperature sensors
2559 The checks for CFG_EEPROM_PAGE_WRITE_ENABLE and
2560 CFG_EEPROM_PAGE_WRITE_BITS in various temperature
2561 sensor drivers are not necessary
2563 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
2565 commit c46980f6d2135ade345dadc1fb1f1f4c8bbf255a
2566 Author: Mike Frysinger <vapier@gentoo.org>
2567 Date: Tue Oct 14 07:04:38 2008 -0400
2569 cmd_spi: remove broken signed casting for display
2571 Since we're working with unsigned data, you can't apply a signed pointer
2572 cast and then attempt to print the result. Otherwise you get wrong output
2573 when the sign bit is set like "0xFF" incorrectly extended to "0xFFFFFFFF".
2575 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2577 commit d5fd0b49210c941de8a1fce3947ace92243ab5ca
2578 Author: Mike Frysinger <vapier@gentoo.org>
2579 Date: Tue Oct 14 07:05:24 2008 -0400
2581 strings cmd: drop old CONFIG_CFG_STRINGS define
2583 We don't need CONFIG_CFG_STRINGS anymore now that we have the define
2584 CONFIG_CMD_STRINGS and Makefile control.
2586 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2588 commit fecb5ade3b37f62981f2b05b621005850173aaa9
2589 Author: Jason Jin <Jason.jin@freescale.com>
2590 Date: Fri Sep 19 17:32:49 2008 +0800
2592 Fix the NAND size overflow issue.
2594 When the total size of all NAND devices exceeds 4 GiB, the size will
2595 overflow. This patch tries to fix this.
2597 Note that we still have a problem when a single NAND device is bigger
2598 than 4 GiB: then the overflow would actually happen earlier, i. e.
2599 when storing the size in nand_info[].size, as nand_info[].size is an
2602 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
2603 Signed-off-by: Wolfgang Denk <wd@denx.de>
2605 commit 30f574717277238b9014b8136c90eea77196490f
2606 Author: Louis Su <louis@asix.com.tw>
2607 Date: Wed Jul 9 11:01:37 2008 +0800
2609 AX88180: new gigabit network driver
2611 Signed-off-by: Louis Su <louis@asix.com.tw>
2612 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2614 commit c9d6b6925344740ca1db2f8a6bab7921ff820de3
2615 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
2616 Date: Tue Aug 19 16:07:03 2008 +0200
2618 enable 10/100M at VSC8601 at tsec driver
2620 Currently VSC8601 doesn't link with 10/100M partners if the
2621 EEPROM/Strapping is not set up.
2622 Setting the auto-neg register fixes this.
2624 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
2625 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2627 commit 702c85b0e876d587c11acdbb55738ee52acd54f4
2628 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2629 Date: Tue Sep 30 15:02:53 2008 +0900
2631 net: ne2000: Divided a function of NE2000 driver
2633 get_prom function was used __attriute__ , but it is not enable.
2634 ax88796.o does not do link besides ne2000.o. When ld is carried
2635 out, get_prom function of ax88796.c is ignored.
2636 This problem is a thing by specifications of ld.
2637 I checked and test this patch on SuperH and MIPS.
2639 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2640 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
2642 commit 05c7e9070fe4d751e029fd9524bfbbc93cbb1393
2643 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2644 Date: Tue Oct 14 11:10:59 2008 +0900
2646 sh: rsk7203: Add smc911x driver support to board config file
2648 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2649 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2651 commit cae6f909baf86357b3c0bd01acfc414348c4d175
2652 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2653 Date: Thu Oct 9 13:54:33 2008 +0900
2655 sh: Fix cannot execute a stand-alone application
2657 Address calculated in EXPORT_FUNC in SuperH was wrong, I revised it.
2659 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
2660 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
2662 commit 6df0efd5c86ca1689deeb2738b46b7d83ce228ef
2663 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
2664 Date: Wed Oct 8 23:38:00 2008 -0500
2666 fsl_pci_init do not scan bus when configured as an end-point
2668 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
2669 Acked-by: Andy Fleming <afleming@freescale.com>
2671 commit 6f099bbac1ba5dfb46ee7ad29dc53713f0501ba5
2672 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
2673 Date: Tue Sep 16 17:07:53 2008 -0400
2675 ARM DaVinci: Remove redundant setting of GD_FLG_RELOC for sffsdr board.
2677 This is no longer necessary now that the GD_FLG_RELOC flag is set for
2680 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
2682 commit d977a57356657ba241256231efca32828a5822f9
2683 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2684 Date: Sat Sep 13 10:04:32 2008 +0200
2686 Fix lzma uncompress call (image_start wrongly used instead image_len)
2688 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
2690 commit 392438406041415fe64ab8748ec5ab5ad01d1cf7
2691 Author: Nick Spence <nick.spence@freescale.com>
2692 Date: Thu Aug 28 14:09:15 2008 -0700
2694 mpc86xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
2696 This is needed in unlock_ram_in_cache() because it is called from C and
2697 will corrupt the small data area anchor that is kept in R2.
2699 lock_ram_in_cache() is modified similarly as good coding practice, but
2700 is not called from C.
2702 Signed-off-by: Nick Spence <nick.spence@freescale.com>
2704 commit 5c7cbcd34d0ee566875a4fd0f2a3e5a62bba921c
2705 Author: Kumar Gala <galak@kernel.crashing.org>
2706 Date: Tue Aug 19 15:05:34 2008 -0500
2708 86xx: remove redudant code with lib_ppc/interrupts.c
2710 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
2711 Not know how that happened, but there is no good reason for it.
2713 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
2716 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2718 commit 0d01f66d235118515b5086b88f82498bc0695d6a
2719 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
2720 Date: Thu Oct 9 01:26:36 2008 -0500
2722 CFI: cfi_flash write fix for AMD legacy
2724 The flash_unlock_seq requires a sector for AMD_LEGACY.
2725 Fix a retcode check typeo.
2727 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
2728 Signed-off-by: Stefan Roese <sr@denx.de>
2730 commit 542b385a620a1783454a00424930e51895f45073
2731 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2732 Date: Tue Oct 7 13:13:10 2008 +0200
2734 ppc4xx: Fix USB 2.0 phy reset sequence
2736 This patch fixes USB 2.0 communication issues on some DU440 boards.
2738 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2739 Signed-off-by: Stefan Roese <sr@denx.de>
2741 commit df8c1ce11114c2260dedb5547281945f7db8fa5c
2742 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2743 Date: Tue Oct 7 13:13:09 2008 +0200
2745 ppc4xx: Add strapping mode for 667MHz CPU frequency on DU440 board
2747 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2748 Signed-off-by: Stefan Roese <sr@denx.de>
2750 commit 6a133d6a00b1fc7b9257cd5925d8cb67f75ecda2
2751 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2752 Date: Tue Oct 7 13:13:08 2008 +0200
2754 ppc4xx: Fix DU440 GPIO configuration
2756 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2757 Signed-off-by: Stefan Roese <sr@denx.de>
2759 commit 35dd025c70fcc4389317db2f2a9d14795172137d
2760 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2761 Date: Tue Oct 7 13:13:07 2008 +0200
2763 ppc4xx: Update DU440 config
2765 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
2766 Signed-off-by: Stefan Roese <sr@denx.de>
2768 commit f3bf9273939ffe1a60a32a2eef909097f15df56b
2769 Author: Kumar Gala <galak@kernel.crashing.org>
2770 Date: Wed Oct 8 15:36:39 2008 -0500
2772 MPC8572DS: Fix compile warnings
2774 Commit 445a7b38308eb05b41de74165b20855db58c7ee5 introduced the following
2777 cmd_i2c.c:112: warning: missing braces around initializer
2778 cmd_i2c.c:112: warning: (near initialization for 'i2c_no_probes[0]')
2780 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2782 commit dffd2446fb041f38ef034b0fcf41e51e5e489159
2783 Author: Wolfgang Grandegger <wg@grandegger.com>
2784 Date: Tue Sep 30 10:55:57 2008 +0200
2786 85xx: Using proper I2C source clock divider for MPC8544
2788 Measurements with our MPC8544 board showed that the I2C bus frequency
2789 is wrong by a factor of 1.5. Obviously, the interpretation of the
2790 MPC85xx_PORDEVSR2_SEC_CFG bit of the cfg_sec_freq register is not
2791 correct. There seems to be an error in the 8544 RM.
2793 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
2795 commit e46c7bfb8bc3c304cedd20f7a365d6e78d7eaf17
2796 Author: Rafal Czubak <rcz@semihalf.com>
2797 Date: Wed Oct 8 13:41:30 2008 +0200
2799 FSL: Fix get_cpu_board_revision() return value.
2801 get_cpu_board_revision() returned board revision based on information stored
2802 in global static struct eeprom. It should instead use one from local struct
2803 board_eeprom, to which the data is actually read from EEPROM. The bug led to
2804 system hang after printing L1 cache information on U-Boot startup. The problem
2805 was observed on MPC8555CDS system and possibly affects other Freescale MPC85xx
2806 boards using CFG_I2C_EEPROM_CCID.
2808 The change has been successfully tested on MPC8555CDS system.
2810 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
2812 commit 747f316cca484ed627a97dd3391febabce384186
2813 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2814 Date: Tue Sep 30 20:08:49 2008 +0200
2816 update uImage FIT multi documentation
2818 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2820 commit 77a0355f60b801f232ce0a5bfbe95331fa3b6bc0
2821 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2822 Date: Tue Sep 30 20:08:36 2008 +0200
2824 move README.imx31 to doc/ and merge with README.mx31
2826 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2828 commit 1ed7a7f0f571b13d46530f8f8b9aff3957f15a96
2829 Author: Guennadi Liakhovetski <lg@denx.de>
2830 Date: Thu Sep 25 20:54:37 2008 +0200
2832 i.MX31: switch to CFG_HZ=1000
2834 Switch to the standard CFG_HZ=1000 value, while at it, minor white-space
2835 cleanup, remove CFG_CLKS_IN_HZ from config-headers. Tested on mx31ads,
2836 provides 2% or 0.4% precision depending on the
2837 CONFIG_MX31_TIMER_HIGH_PRECISION flag. Measured with stop-watch on 100s
2840 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
2842 commit f41b144c11341b571eab7dcef6c4b8e03c92d2b2
2843 Author: gnusercn <gnusercn@gmail.com>
2844 Date: Wed Oct 8 18:58:58 2008 +0200
2846 Fix bug: in arch-arm, env_get_char dose not work fine
2848 due to the arm implementation which supposed that U-Boot is in RAM
2849 when we jump to start_armboot
2851 Signed-off-by: gnusercn <gnusercn@gmail.com>
2852 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2854 commit f8a00dea841d5d75de1f8e8107e90ee1beeddf5f
2855 Author: Adam Graham <agraham@amcc.com>
2856 Date: Mon Oct 6 10:16:13 2008 -0700
2858 ppc4xx: Reset and relock memory DLL after SDRAM_CLKTR change
2860 After changing SDRAM_CLKTR phase value rerun the memory preload
2861 initialization sequence (INITPLR) to reset and relock the memory
2862 DLL. Changing the SDRAM_CLKTR memory clock phase coarse timing
2863 adjustment effects the phase relationship of the internal, to the
2864 PPC chip, and external, to the PPC chip, versions of MEMCLK_OUT.
2866 Signed-off-by: Adam Graham <agraham@amcc.com>
2867 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
2868 Signed-off-by: Stefan Roese <sr@denx.de>
2870 commit 5297246bbaa9943c0da1ec2e717b72e4ab6b830e
2871 Author: Haiying Wang <Haiying.Wang@freescale.com>
2872 Date: Fri Oct 3 11:48:03 2008 -0400
2874 Remove redundant #define for MPC8536DS
2876 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2878 commit 445a7b38308eb05b41de74165b20855db58c7ee5
2879 Author: Haiying Wang <Haiying.Wang@freescale.com>
2880 Date: Fri Oct 3 11:47:30 2008 -0400
2882 Add ID EEPROM support for MPC8572DS
2884 The ID EEPROM on MPC8572DS board locates on I2C bus 1. Its the storage for
2885 system information like mac addresses etc. This patch enables it.
2887 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2889 commit 1f3ba317a5c5f3a7aabf580fddc211f4bb5a4540
2890 Author: Haiying Wang <Haiying.Wang@freescale.com>
2891 Date: Fri Oct 3 11:46:59 2008 -0400
2893 Minor fixes for I2C address on MPC8572DS
2895 MPC8572DS has two i2c buses. This patch moves the DDR SPD_EEPROM to i2c bus 1
2896 according to the board spec, and adds the 2nd i2c bus offset.
2898 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
2900 commit c0391111c33c22fabeddf8f4ca801ec7645b4f5c
2901 Author: Jason Jin <Jason.jin@freescale.com>
2902 Date: Sat Sep 27 14:40:57 2008 +0800
2904 Fix the incorrect DDR clk freq reporting on 8536DS
2906 On 8536DS board, When the DDR clk is set async mode(SW3[6:8] != 111),
2907 The display is still sync mode DDR freq. This patch try to fix
2908 this. The display DDR freq is now the actual freq in both
2909 sync and async mode.
2911 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
2913 commit bac6a1d1fa1cd80aa57881fa9c2152b853cd0ed4
2914 Author: Kumar Gala <galak@kernel.crashing.org>
2915 Date: Tue Oct 7 10:28:46 2008 -0500
2917 85xx: Remove setting of *cache-line-size in device trees
2919 ePAPR says if the *cache-block-size is the same as *cache-line-size
2920 than we don't need the *cache-line-size property.
2922 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
2924 commit cd3cb0d9269d155276b00207e3816a9347fd1c92
2925 Author: Gerald Van Baren <vanbaren@cideas.com>
2926 Date: Sat Oct 4 07:56:06 2008 -0400
2928 libfdt: Fix error in documentation for fdt_get_alias_namelen()
2930 Oops, screwed up the function name in the documenting comment for this
2931 function. Trivial correction in this patch.
2933 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2934 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
2936 commit 9a6cf73a88ddab2e1ac39088f2806177982cc62c
2937 Author: David Gibson <david@gibson.dropbear.id.au>
2938 Date: Wed Aug 20 16:55:14 2008 +1000
2940 libfdt: Add function to explicitly expand aliases
2942 Kumar has already added alias expansion to fdt_path_offset().
2943 However, in some circumstances it may be convenient for the user of
2944 libfdt to explicitly get the string expansion of an alias. This patch
2945 adds a function to do this, fdt_get_alias(), and uses it to implement
2948 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2950 commit 2215987e100d2a841ae6d48a7cc9bb83fcf22737
2951 Author: Mike Frysinger <vapier@gentoo.org>
2952 Date: Thu Oct 2 01:55:38 2008 -0400
2954 cfi_flash: do not reset flash when probe fails
2956 The CFI flash driver starts at flash_init() which calls down into
2957 flash_get_size(). This starts by calling flash_detect_cfi(). If said
2958 function fails, flash_get_size() finishes by attempting to reset the
2959 flash. Unfortunately, it does this with an info->portwidth set to 0x10
2960 which filters down into flash_make_cmd() and that happily smashes the
2961 stack by sticking info->portwidth bytes into a cfiword_t variable that
2962 lives on the stack. On a 64bit system you probably won't notice, but
2963 killing the last 8 bytes on a 32bit system usually leads to a corrupt
2964 return address. Which is what happens on a Blackfin system.
2966 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2967 Signed-off-by: Stefan Roese <sr@denx.de>
2969 commit 3e38577208e4256956bc33bb8bcd0a6b6fab55c3
2970 Author: Stefan Roese <sr@denx.de>
2971 Date: Fri Sep 26 17:03:26 2008 +0200
2973 fdt: Overwrite /chosen node in bootm if it already exists in the dtb
2975 Set force parameter in fdt_chosen() call in do_bootm_linux() call.
2976 Without this, the chosen node is not overwritten if it already
2979 Signed-off-by: Stefan Roese <sr@denx.de>
2981 commit 741a6d010d09b5bafca8e4cdfb6b2f8a2c07994d
2982 Author: Jon Loeliger <jdl@freescale.com>
2983 Date: Thu Sep 25 11:02:17 2008 -0500
2985 Fix an overflow case in fdt_offset_ptr() detected by GCC 4.3.
2987 Using Gcc 4.3 detected this problem:
2989 ../dtc/libfdt/fdt.c: In function 'fdt_next_tag':
2990 ../dtc/libfdt/fdt.c:82: error: assuming signed overflow does not
2991 occur when assuming that (X + c) < X is always false
2993 To fix the problem, treat the offset as an unsigned int.
2995 The problem report and proposed fix were provided
2996 by Steve Papacharalambous <stevep@freescale.com>.
2998 Signed-off-by: Jon Loeliger <jdl@freescale.com>
3000 commit bbdbc7cb3abefda5bd998edbcf0508fe6256327d
3001 Author: David Gibson <david@gibson.dropbear.id.au>
3002 Date: Fri Aug 29 14:19:13 2008 +1000
3004 libfdt: Fix bugs in fdt_get_path()
3006 The current implementation of fdt_get_path() has a couple of bugs,
3007 fixed by this patch.
3009 First, contrary to its documentation, on success it returns the length
3010 of the node's path, rather than 0. The testcase is correspondingly
3011 wrong, and the patch fixes this as well.
3013 Second, in some circumstances, it will return -FDT_ERR_BADOFFSET
3014 instead of -FDT_ERR_NOSPACE when given insufficient buffer space.
3015 Specifically this happens when there is insufficient space even to
3016 hold the path's second last component. This behaviour is corrected,
3017 and the testcase updated to check it.
3019 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
3021 commit 33af3e6656e84660d397b5dd95abab2dccc36f83
3022 Author: Wolfgang Denk <wd@denx.de>
3023 Date: Wed Oct 1 12:34:58 2008 +0200
3025 TQM5200: enable support for ATAPI devices
3027 Signed-off-by: Wolfgang Denk <wd@denx.de>
3029 commit d13ff2358ff8c384f52eaf46f5d60258acf96ea6
3030 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3031 Date: Mon Sep 15 05:48:25 2008 +0200
3033 Revert "ARM: set GD_FLG_RELOC for boards skipping relocation to RAM"
3035 we need this due to the arm implementation which supposed that U-Boot
3036 is in RAM when we jump to start_armboot
3038 This reverts commit f96b44cef897bd372beb86dde1b33637c119d84d.
3039 in order to do it for all arm board
3041 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3043 commit 7fd0bea2e4a78eab7e6693140940f9f9a0009bc2
3044 Author: Kim Phillips <kim.phillips@freescale.com>
3045 Date: Wed Sep 24 08:46:25 2008 -0500
3047 mpc83xx: don't disable autoboot
3049 bootdelay set to -1 'permanently' disables autobooting, even if
3050 bootcmd is specified. Change to a positive value to allow
3051 autobooting when a bootcmd is set.
3053 Reported-by: Coray Tate <Coray.Tate@freescale.com>
3054 Cc: Scott Wood <scottwood@freescale.com>
3055 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3057 commit 2fb29c520c42b7bfef33ea3fd1527eba64099164
3058 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3059 Date: Wed Sep 24 10:42:15 2008 +0900
3061 mpc83xx: Fix typo in include/mpc83xx.h
3063 Fixed typo from CONIFG_MPC837X to CONFIG_MPC837X
3065 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3066 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3068 commit 162c41c03179727a1d14262f703c9a8bc40231fa
3069 Author: Kim Phillips <kim.phillips@freescale.com>
3070 Date: Tue Sep 23 09:38:49 2008 -0500
3072 mpc83xx: add h/w flash protection to board configs
3074 the operating system may leave flash in a h/w locked state after writing.
3075 This allows u-boot to continue to write flash by enabling h/w unlocking
3078 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3080 commit d26154c9a692586b66eb6d1f8e1b67c75e40ea70
3081 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3082 Date: Thu Sep 11 21:35:36 2008 +0400
3084 mpc83xx: spd_sdram: fix ddr sdram base address assignment bug
3086 The spd_dram code shifts the base address, then masks 20 bits, but
3087 forgets to shift the base address back. Fix this by just masking the
3088 base address correctly.
3090 Found this bug while trying to relocate a DDR memory at the base != 0.
3092 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3093 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
3095 commit 8fd4166c467a46773f80208bda1ec3b4757747bc
3096 Author: Stefan Roese <sr@denx.de>
3097 Date: Mon Sep 22 16:10:43 2008 +0200
3099 ppc4xx: Canyonlands: Remove unnecessary FDT warning upon DTB fixup
3101 Depending on the configuration jumper "SATA SELECT", U-Boot disabled
3102 either one PCIe node or the SATA node in the device tree blob. This
3103 patch removes the unnecessary and even confusing warning, when the node
3104 is not found at all.
3106 Signed-off-by: Stefan Roese <sr@denx.de>
3108 commit 6e24a1eb1490aa043770bcf0061ac1fad0864fd9
3109 Author: Remy Bohmer <linux@bohmer.net>
3110 Date: Fri Sep 19 13:30:06 2008 +0200
3112 Add missing device types to dev_print() in part.c
3114 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3116 commit 5fdc215f0b351b0c36cc3f8a0fa5850f24454bed
3117 Author: Wolfgang Denk <wd@denx.de>
3118 Date: Mon Sep 22 22:23:06 2008 +0200
3120 Fix DPRAM memory leak when CFG_ALLOC_DPRAM is defined, which
3121 eventually leads to a machine check. This change assures that DPRAM
3122 is allocated only once in that case.
3124 Signed-off-by: Gary Jennejohn <garyj@denx.de>
3125 Signed-off-by: Wolfgang Denk <wd@denx.de>
3127 commit a07faf7b9ad5a86763a577c79922c4ff9a70ef23
3128 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
3129 Date: Wed Sep 17 17:57:34 2008 +0200
3131 Fix Spartan-3 definitions.
3133 A few Spartan-3 definitions erroneously use Spartan-3E size
3134 constants. This patch fixes them.
3136 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
3138 commit 28113e1f0da4146b823ffce37680d31d5685a60b
3139 Author: Laurent Pinchart <laurentp@cse-semaphore.com>
3140 Date: Wed Sep 17 17:41:58 2008 +0200
3142 Remove duplicate Spartan-3E definition.
3144 Signed-off-by: Laurent Pinchart <laurentp@cse-semaphore.com>
3145 Signed-off-by: Wolfgang Denk <wd@denx.de>
3147 commit 5c65ecf7cd94df250b295621f3b24135cbcfe579
3148 Author: Anatolij Gustschin <agust@denx.de>
3149 Date: Wed Sep 17 13:46:17 2008 +0200
3151 socrates: change default mtest address range
3153 Running mtest command on socrates without specifying
3154 an address range crashes the board. This patch changes
3155 default mtest address range to prevent this behavior.
3157 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3159 commit d666b2d59674b5e002c0821b7ab83ec3ff90d670
3160 Author: Anatolij Gustschin <agust@denx.de>
3161 Date: Wed Sep 17 12:34:45 2008 +0200
3163 socrates: fix crash after relocation
3165 Currently U-Boot crashes after relocation to RAM.
3166 Changing the CPO value of the DDR SDRAM TIMING_CFG_2
3167 register to READ_LAT + 1 (to the value it was before
3168 conversion of socrates to new DDR code) fixes the
3171 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3173 commit 562788b0a303f3528b920d81f547f5ca77ba528e
3174 Author: Anatolij Gustschin <agust@denx.de>
3175 Date: Wed Sep 17 11:45:51 2008 +0200
3177 socrates: fix SPD EEPROM address
3179 Commit be0bd8234b9777ecd63c4c686f72af070d886517
3180 changed SPD EEPROM address to 0x51 and DDR SDRAM
3181 detection stopped working. Change this address
3184 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3186 commit 023824549a370bd185d7129d9a6c86f9be7b86a8
3187 Author: Stefan Roese <sr@denx.de>
3188 Date: Mon Sep 22 11:06:50 2008 +0200
3190 Revert "ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)"
3192 This reverts commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8.
3194 Signed-off-by: Stefan Roese <sr@denx.de>
3196 commit e58c41e26cf3c8accd60311be579f452e368e97e
3197 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3198 Date: Thu Sep 18 20:13:08 2008 +0900
3200 usb: Fix compile warning of r8a66597-hcd
3202 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3203 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
3205 commit b5d10a13525c07ec6374adf840d7c87553b5f189
3206 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3207 Date: Thu Sep 18 19:34:36 2008 +0900
3209 sh: Fix compile warning
3211 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3213 commit 4a065abf926f128beb36d93449defa0d690e7fef
3214 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3215 Date: Thu Sep 18 19:04:26 2008 +0900
3217 sh: Add support watchdog for SH4A core
3219 Add support watchdog for SH4A core (SH7763, SH7780 and SH7785).
3220 And fix some compile warning.
3222 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3224 commit a03c09c5fdb8430fe2ae6a03f88a0cf7bcc0aa57
3225 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3226 Date: Wed Sep 17 11:45:26 2008 +0900
3228 sh: Fix typo in SH serial driver
3230 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3231 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3233 commit 6b44a439215ba7c63f666f8099213ea4f05f2b07
3234 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3235 Date: Wed Sep 17 11:08:36 2008 +0900
3237 sh: Add support any page size and empty_zero_page to SH Linux uImage
3239 Old U-Boot supported 4KB page size only. If this version, Linux
3240 kernel can not get command line from U-Boot.
3241 SH Linux kernel can change page size and empty_zero_page.
3242 This patch support this function and fix promlem.
3244 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3245 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3247 commit ce9f99ddb59628f41dc534e892368a7d66dfc774
3248 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3249 Date: Thu Aug 28 13:40:52 2008 +0900
3251 sh: rsk7203: Add support pkt_data_pull and pkt_data_push function
3253 Add function of smc911x, pkt_data_pull and pkt_data_push.
3255 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3256 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
3258 commit dd820b03a2f45e86e7960e26729a3b58e3dda44a
3259 Author: Wolfgang Denk <wd@denx.de>
3260 Date: Thu Sep 18 13:57:32 2008 +0200
3262 ADS5121: fix typo in "rootpath" default setting
3264 Signed-off-by: Wolfgang Denk <wd@denx.de>
3266 commit c9e8436b10cca53fca4904ecbadcd6231ad72c38
3267 Author: Remy Bohmer <linux@bohmer.net>
3268 Date: Tue Sep 16 14:55:44 2008 +0200
3270 USB layer of U-Boot causes USB protocol errors while using USB memory sticks
3272 There are several differences between Linux, Windows and U-boot for initialising the
3273 USB devices. While analysing the behaviour of U-boot it turned out that U-boot does
3274 things really different, and some are wrong (compared to the USB standard).
3276 This patch fixes some errors:
3277 * The NEW_init procedure that was already in the code is good, while the old procedure
3278 is wrong. See code comments for more info.
3279 * On a Control request the data returned by the device can be more than 8 bytes, while
3280 the host limits it to 8 bytes. This caused the host to generate a DataOverrun error.
3281 This results in a lot of USB sticks not being recognised, and the transmission ended
3282 frequently with a CTL:TIMEOUT Error.
3283 * Added a flag CONFIG_LEGACY_USB_INIT_SEQ to allow users to use the old init procedure.
3285 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3286 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
3288 commit 6f5794a6f78b313231256958fd73673c6aacc116
3289 Author: Remy Bohmer <linux@bohmer.net>
3290 Date: Tue Sep 16 14:55:43 2008 +0200
3292 Refactoring parts of the common USB OHCI code
3294 This patch refactors some large routines of the USB OHCI code by
3295 making some routines smaller and more readable which helps
3296 debugging and understanding the code. (Makes the code looks
3297 somewhat more like the Linux implementation.)
3299 Also made entire file compliant to Linux Coding Rules (checkpatch.pl compliant)
3301 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3302 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
3304 commit be19d324edc1a1d7f393d24e10d164cd94c91a00
3305 Author: Remy Bohmer <linux@bohmer.net>
3306 Date: Tue Sep 16 14:55:42 2008 +0200
3308 Fix for USB sticks not working on ARM while using GCC 4.x compilers
3310 The GCC-compiler makes an optimisation error while optimising the routine
3311 usb_set_maxpacket(). This should be fixed in the compiler in the first place,
3312 but there lots of compilers out there that makes this error, that it is
3313 probably wiser to workaround it in U-boot itself.
3315 What happens is that the register r3 is used as loop-counter 'i', but gets
3316 overwritten later on. From there it starts using register r3 for several other
3317 things and the assembler code is becoming a big mess. This is clearly a compiler bug.
3319 This error occurs on at least several versions of Code Sourcery Lite compilers
3320 for ARM. Like the Edition 2008q1, and 2008q3, It has also been seen on other
3321 compilers, while compiling for armv4t, or armv5te with Os, O1 and O2.
3323 We work around it by splitting up this routine in 2 parts, and making sure that
3324 the split out part is NOT inlined any longer. This will make GCC spit out assembler
3325 that do not show this problem. Another possibility is to adapt the Makefile to stop
3326 optimisation for the complete file. I think this solution is nicer.
3328 Signed-off-by: Remy Bohmer <linux@bohmer.net>
3329 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
3331 commit 87b4ef560cf2da4ccc9e59711ad1ff7fafe96670
3332 Author: Wolfgang Denk <wd@denx.de>
3333 Date: Wed Sep 17 10:17:55 2008 +0200
3335 Coding style cleanup; update CHANEGLOG
3337 Signed-off-by: Wolfgang Denk <wd@denx.de>
3339 commit 3eec160a3a405b29ce9c06920f6427b9047dd8a8
3340 Author: Victor Gallardo <vgallardo@amcc.com>
3341 Date: Tue Sep 16 06:59:13 2008 -0700
3343 ppc4xx: Fix DDR2 auto calibration on Kilauea 600MHz (200MHz PLB)
3345 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
3346 Signed-off-by: Adam Graham <agraham@amcc.com>
3347 Signed-off-by: Stefan Roese <sr@denx.de>
3349 commit ce47eb402c5e29a025399dc282246414fc492940
3350 Author: Peter Tyser <ptyser@xes-inc.com>
3351 Date: Tue Sep 16 10:04:47 2008 -0500
3353 Support for multiple SGMII/TBI interfaces for TSEC ethernet
3355 Fix TBI PHY accesses to use the proper offset in CPU register space. The
3356 previous code would incorrectly access the TBI PHY by reading/writing to CPU
3357 register space at the same location as would be used to access external PHYs.
3359 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3360 Acked-by: Andy Fleming <afleming@freescale.com>
3362 commit 7c803be2eb3cae245dedda438776e08fb122250f
3363 Author: Wolfgang Denk <wd@denx.de>
3364 Date: Tue Sep 16 18:02:19 2008 +0200
3366 TQM8xx: Fix CFI flash driver support for all TQM8xx based boards
3368 After switching to using the CFI flash driver, the correct remapping
3369 of the flash banks was forgotten.
3371 Also, some boards were not adapted, and the old legacy flash driver
3372 was not removed yet.
3374 Signed-off-by: Wolfgang Denk <wd@denx.de>
3376 commit c0d2f87d6c450128b88e73eea715fa3654f65b6c
3377 Author: Wolfgang Denk <wd@denx.de>
3378 Date: Sun Sep 14 00:59:35 2008 +0200
3380 Prepare v2008.10-rc2
3382 Signed-off-by: Wolfgang Denk <wd@denx.de>
3384 commit f12e4549b6fb01cd2654348af95a3c7a6ac161e7
3385 Author: Wolfgang Denk <wd@denx.de>
3386 Date: Sat Sep 13 02:23:05 2008 +0200
3388 Coding style cleanup, update CHANGELOG
3390 Signed-off-by: Wolfgang Denk <wd@denx.de>
3392 commit 0c32565f536609d78feef35c88bbc39d3ac53a73
3393 Author: Peter Tyser <ptyser@xes-inc.com>
3394 Date: Wed Sep 10 09:18:34 2008 -0500
3396 Update mailing list email and archive addresses
3398 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
3400 commit fb661ea444ae61de60520f66ae84cdb5dd5a3246
3401 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
3402 Date: Thu Sep 11 15:40:01 2008 +0200
3404 85xx: socrates: autoprobe Lime chip
3406 This patch is an attempt to implement autoprobing for the Lime
3407 presence on the bus.
3408 Configure GPCM for Lime CS2 and try to access chip ID registers.
3409 Second read atempt delivers register values if the chip is present.
3411 Signed-off-by: Anatolij Gustschin <agust@denx.de>
3413 commit e99b607a5ec56ce66e0bcccb78480d5e16fb7bc5
3414 Author: u-boot@bugs.denx.de <u-boot@bugs.denx.de>
3415 Date: Thu Sep 11 15:40:01 2008 +0200
3417 85xx: socrates: Add support for new image format.
3419 Signed-off-by: Detlev Zundel <dzu@denx.de>
3421 commit 3c094b652d4107b34641f300a8e9fe16ca15e3d8
3422 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3423 Date: Thu Sep 11 17:28:18 2008 +0900
3425 sh: Fix compile error for r2dplus
3427 netdev.h was not include by r2dplus.
3429 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
3431 commit 56844a22b76c719e600047e23b80465a44d76abd
3432 Author: Heiko Schocher <hs@denx.de>
3433 Date: Thu Sep 11 08:11:23 2008 +0200
3435 powerpc: Fix bootm to boot up again with a Ramdisk
3437 Commit 2a1a2cb6 didnt remove the dummy mem reservation in fdt_chosen,
3438 and this stopped Linux from booting with a Ramdisk. This patch fixes
3439 this, by deleting the useless dummy mem reservation.
3441 When booting with a Ramdisk, a fix offset FDT_RAMDISK_OVERHEAD is now
3442 added to of_size, so we dont need anymore a dummy mem reservation.
3444 I measured the value of FDT_RAMDISK_OVERHEAD on a MPC8270 based
3445 system (=0x44 bytes) and rounded it up to 0x80).
3447 Signed-off-by: Heiko Schocher <hs@denx.de>
3448 Acked-by: Kumar Gala <galak@kernel.crashing.org>
3450 commit fc9c1727b5b3483ce49c3cb668e8332fb001b8a7
3451 Author: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3452 Date: Mon Sep 8 02:46:13 2008 +0200
3454 Add support for LZMA uncompression algorithm.
3456 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
3457 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3459 commit 0008b6d968160abe2bfd936493f3a516a7c8da20
3460 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3461 Date: Fri Jun 27 23:04:20 2008 +0400
3463 fsl_elbc_nand: ecclayout cleanups
3465 This patch deletes oobavail assignments, they're calculated by the nand
3466 core code in nand_scan_tail, plus current oobavail values are wrong for
3469 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3470 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
3471 Signed-off-by: Scott Wood <scottwood@freescale.com>
3473 commit 8f42bf1c393d53a70c2545e9f329d11c46d74794
3474 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3475 Date: Fri Jun 27 23:04:13 2008 +0400
3477 fsl_elbc_nand: implement support for flash-based BBT
3479 This patch implements support for flash-based BBT for chips working
3480 through ELBC NAND controller, so that NAND core will not have to re-scan
3481 for bad blocks on every boot.
3483 Because ELBC controller may provide HW-generated ECCs we should adjust
3484 bbt pattern and bbt version positions in the OOB free area.
3486 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3487 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
3488 Signed-off-by: Scott Wood <scottwood@freescale.com>
3490 commit 97ae023648e764f794ffb9c52da109d6caf09c47
3491 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
3492 Date: Fri Jun 27 23:04:04 2008 +0400
3494 fsl_elbc_nand: fix OOB workability for large page NAND chips
3496 For large page chips, nand_bbt is looking into OOB area, and checking
3497 for "0xff 0xff" pattern at OOB offset 0. That is, two bytes should be
3498 reserved for bbt means.
3500 But ELBC driver is specifying ecclayout so that oobfree area starts at
3501 offset 1, so only one byte left for the bbt purposes.
3503 This causes problems with any OOB users, namely JFFS2: after first mount
3504 JFFS2 will fill all OOBs with "erased marker", so OOBs will contain:
3506 OOB Data: ff 19 85 20 03 00 ff ff ff 00 00 08 ff ff ff ff
3507 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
3508 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
3509 OOB Data: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
3511 And on the next boot, NAND core will rescan for bad blocks, then will
3512 see "0xff 0x19" pattern, and will mark all blocks as bad ones.
3514 To fix the issue we should implement our own bad block pattern: just one
3515 byte at OOB start. Though, this will work only for x8 chips. For x16
3516 chips two bytes must be checked. Since ELBC driver does not support x16
3517 NANDs (yet), we're safe for now.
3519 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
3520 Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
3521 Signed-off-by: Scott Wood <scottwood@freescale.com>
3523 commit 7238ada313057a85409485b8ee21515dc10c07a5
3524 Author: Wolfgang Denk <wd@denx.de>
3525 Date: Fri Sep 12 13:52:21 2008 +0200
3527 MPC512x: reduce timeout waiting for Ethernet autonegotiation to 2.5s
3529 Signed-off-by: Wolfgang Denk <wd@denx.de>
3531 commit b18410e508a12ba0a177dfc2a386857c806fa96d
3532 Author: Stefan Roese <sr@denx.de>
3533 Date: Thu Sep 11 13:05:56 2008 +0200
3535 ppc4xx: Enable device tree (FDT) support in zeus board port
3537 Signed-off-by: Stefan Roese <sr@denx.de>
3539 commit 7bf5ecfa50722a9feb45ea8f04da75f5d406f20b
3540 Author: Stefan Roese <sr@denx.de>
3541 Date: Wed Sep 10 16:53:47 2008 +0200
3543 ppc4xx: Fix SDRAM inititialization of multiple 405 based board ports
3545 This patch fixes a problem introdiced with patch
3546 bbeff30c [ppc4xx: Remove superfluous dram_init() call or replace it by
3549 The boards affected are:
3556 Signed-off-by: Stefan Roese <sr@denx.de>
3558 commit 61737c59a3285f6fadf96a5836879898c04ec28d
3559 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3560 Date: Thu Sep 11 19:41:26 2008 -0400
3562 ppc4xx: Add .gitignore file to xilinx-ppc440 boards
3564 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3565 Signed-off-by: Stefan Roese <sr@denx.de>
3567 commit 2bec498ed1164a58cd8437b561bdc4551d69f9bf
3568 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3569 Date: Thu Sep 11 19:41:25 2008 -0400
3571 ppc4xx: Fix compilation of v5fx30teval_flash
3573 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3574 Signed-off-by: Stefan Roese <sr@denx.de>
3576 commit 4bed9deebbd7ee6f0ba746b44d47a922156f7404
3577 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3578 Date: Wed Sep 10 17:44:30 2008 -0400
3580 ppc4xx: Fix in-tree build for ppc440-generic boards
3582 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
3583 Signed-off-by: Stefan Roese <sr@denx.de>
3585 commit 06c4ab50f5ccfb55ea2dd324aa28b2b06102e416
3586 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3587 Date: Fri Sep 12 02:20:47 2008 +0200
3589 ARM: synchronize mach-types.h with linux 2.6.27-rc6
3591 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3593 commit 3ee9f03f588ad605e3fd10530237f9e3e2e7ab4c
3594 Author: Jens Scharsig <esw@bus-elektronik.de>
3595 Date: Fri Sep 12 02:20:47 2008 +0200
3597 at91rm9200: fix errors with CONFIG_CMD_I2C_TREE
3599 This patch prevents linker error on AT91RM9200 boards, if
3600 CONFIG_CMD_I2_TREE is set.
3601 It implements i2c_set_bus_speed and i2c_get_bus_speed as a dummy function.
3603 Signed-off-by: Jens Scharsig <esw@bus-elektronik.de>
3605 commit b5b0344957d32e3d07a8dd72fce64fb48e680ba4
3606 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3607 Date: Fri Sep 12 02:20:47 2008 +0200
3609 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
3611 ARM DaVinci: Remove duplicate code in cpu/arm926ejs/davinci/dp83848.c
3613 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3615 commit 03db53335c8eba656a7c44d1555b1a4514383e33
3616 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
3617 Date: Fri Sep 12 02:20:46 2008 +0200
3619 make: Remove redundant __ARM__ addition when cross-compiling on *BSD
3621 __ARM__ is given by arm_config.mk automatically.
3623 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
3625 commit 8cc62a7d9c77f8ef5166fb57322c4a6ddac320b4
3626 Author: Claudio Scordino <claudio@evidence.eu.com>
3627 Date: Fri Sep 12 02:20:46 2008 +0200
3629 Fix MACH_TYPE for the AT91RM9200DK board.
3631 Signed-off-by: Claudio Scordino <claudio@evidence.eu.com>
3633 commit 274737e5eb25b2bcd3af3a96da923effd543284f
3634 Author: Andrew Dyer <adyer@righthandtech.com>
3635 Date: Fri Sep 12 02:20:46 2008 +0200
3637 i.mx change get_timer(base) to return time since base
3639 This patch changes get_timer() for i.MX to return the time since
3640 'base' instead of the time since the counter was at zero.
3642 Symptom seen is flash timeout errors when erasing or programming a
3643 sector using the common cfi flash code.
3645 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
3647 commit 48fed40575b3e8eae960eb0141509ddd9a73012a
3648 Author: Andrew Dyer <adyer@righthandtech.com>
3649 Date: Fri Sep 12 02:20:46 2008 +0200
3651 i.MX use u-boot baud rate and don't assume UART master clock
3653 1) Change the i.MX serial driver to use the baud rate set in the
3656 2) don't assume a 16MHz value for PERCLK1 in baud rate calculations
3658 3) don't write a 1 to the RDR bit in the USR2 reg. (bit is not "write
3659 one to clear" like other status bits in the reg.)
3661 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
3663 commit 6e1551a870d360805b9d172dc56d935064abe71d
3664 Author: Andrew Dyer <adyer@righthandtech.com>
3665 Date: Fri Sep 12 02:20:46 2008 +0200
3667 arm920t fix constant error in start.S
3669 Code in cpu/arm920t/start.S will die with a compilation error if
3670 CONFIG_STACKSIZE + CFG_MALLOC_LEN works out to an invalid constant for
3671 the ARM sub instruction. Change the code so that each is subtracted
3672 independently to avoid the error.
3674 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
3676 commit b23253835f871cd9bd8e955b9a971d18a7d4ff56
3677 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
3678 Date: Fri Sep 12 02:20:40 2008 +0200
3680 ARM OMAP : Correct Invalid Timer Register Field Declaration in omap1510.h & omap730.h
3682 - Correct Invalid #define of MPUTIM_PTV_MASK for
3683 omap1510 & omap730 register definition
3685 MPUTIM_PTV_MASK is defined as
3686 #define MPUTIM_PTV_MASK (0x7<<PTV_BIT)
3688 while it should have been
3689 #define MPUTIM_PTV_MASK (0x7<<MPUTIM_PTV_BIT)
3691 - Below Patch corrects the same
3693 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
3695 commit c455d07396dddc9864fd8dbb965ee10fe95ce8cf
3696 Author: Adrian Filipi <adrian.filipi@eurotech.com>
3697 Date: Fri Jul 18 11:52:02 2008 -0400
3699 Set up SD/MMC OCR as comment describes. i.e. 3.2-3.4v.
3701 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
3703 commit eb16135df20535b0d19969f50fb5bd17f95e9c25
3704 Author: Guennadi Liakhovetski <lg@denx.de>
3705 Date: Thu Aug 28 12:25:11 2008 +0200
3707 i.MX31: document timer precision option
3709 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
3711 commit 1a6337b01351b82a45b0defa76f08744511c580b
3712 Author: Magnus Lilja <lilja.magnus@gmail.com>
3713 Date: Fri Aug 29 10:36:18 2008 +0200
3715 i.MX31: Make the SPI bus and chip select configurable for MC13783
3717 The i.MX31 has three SPI buses and each bus has several chip selects
3718 and the MC13783 chip can be connected to any of these. The current
3719 RTC driver for MC13783 is hardcoded for CSPI2/SS2.
3721 This patch makes make MC13783 SPI bus and chip select configurable
3722 via CONFIG_MC13783_SPI_BUS and CONFIG_MC13783_SPI_CS.
3724 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3726 commit 8c4ebec25b21e355b8488698ec1594da9701fff4
3727 Author: Magnus Lilja <lilja.magnus@gmail.com>
3728 Date: Fri Aug 29 10:36:17 2008 +0200
3730 i.MX31: Add reset_timer() and modify get_timer_masked().
3732 This patch adds the reset_timer() function (needed by nand_base.c) and
3733 modifies the get_timer_masked() to work in the same way as the omap24xx
3736 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
3738 commit deeec4991a55de243787002ede24d2331d234fc8
3739 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3740 Date: Wed Sep 10 22:48:09 2008 +0200
3742 ap325rxa: remove duplicate CONFIG_FLASH_CFI_DRIVER
3744 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3746 commit a3a08c0cedd329edf5256e1d6b2bad0fca002725
3747 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3748 Date: Wed Sep 10 22:48:09 2008 +0200
3750 bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
3752 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3754 commit 0e8d158664a913392cb01fb11a948d83f72e105e
3755 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3756 Date: Wed Sep 10 22:48:06 2008 +0200
3758 rename CFG_ENV macros to CONFIG_ENV
3760 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3762 commit 1ede78710c3bf9ad6f4a53aaddc3bcc86fedd9df
3763 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3764 Date: Wed Sep 10 22:48:05 2008 +0200
3766 nvedit: rename error comment to CONFIG_ENV_IS_IN_
3768 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3770 commit b64b775e7546ed138df360ceb3a71ee358cb9a01
3771 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3772 Date: Wed Sep 10 22:48:05 2008 +0200
3774 cmd_mem: Move conditional compilation to Makefile
3776 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3778 commit 8a40fb148efa442d6526eac46a2001e4c64d28ff
3779 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3780 Date: Wed Sep 10 22:48:05 2008 +0200
3782 move cmd_get_data_size to command.c
3784 add CMD_DATA_SIZE macro to enable it
3786 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3788 commit 507641d2491980531932b9f25dab37fe5e6c3a1a
3789 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3790 Date: Wed Sep 10 22:48:04 2008 +0200
3792 env_flash: Move conditional compilation to Makefile
3794 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3796 commit 5a1aceb0689e2f731491838970884a673ef7e7d3
3797 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3798 Date: Wed Sep 10 22:48:04 2008 +0200
3800 rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASH
3802 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3804 commit 7d9b5bae5ba558c7464d89d033aca04acaf01172
3805 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3806 Date: Wed Sep 10 22:48:03 2008 +0200
3808 cleanup use of CFG_ENV_IS_IN_FLASH
3810 - #if CFG_ENV_IS_IN_FLASH
3811 - #if (CFG_ENV_IS_IN_FLASH == 1)
3812 - #define CFG_ENV_IS_IN_FLASH 0
3814 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3816 commit 0cf4fd3cf8d0e00605bec5fc56f89c6415015a46
3817 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3818 Date: Wed Sep 10 22:48:01 2008 +0200
3820 rename environment.c in env_embedded.c to reflect is functionality
3822 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3824 commit c0878af6e32f0fd8e13a6ca315b9add64441115a
3825 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3826 Date: Wed Sep 10 22:48:01 2008 +0200
3828 env_nowhere: Move conditional compilation to Makefile
3830 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3832 commit 93f6d72544da4510a146bc4c93d609b0116cde37
3833 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3834 Date: Wed Sep 10 22:48:00 2008 +0200
3836 rename CFG_ENV_IS_NOWHERE in CONFIG_ENV_IS_NOWHERE
3838 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3840 commit 2556ef78113b5f089dfcac5da90bf31dd568397b
3841 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3842 Date: Wed Sep 10 22:48:00 2008 +0200
3844 env_sf: Move conditional compilation to Makefile
3846 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3848 commit 0b5099a8419bf9c828df5e3e2c6878dc300d98e3
3849 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3850 Date: Wed Sep 10 22:48:00 2008 +0200
3852 rename CFG_ENV_IS_IN_SPI_FLASH in CONFIG_ENV_IS_IN_SPI_FLASH
3854 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3856 commit 55c5f49910ec8225347aa1d211352a84de6649b4
3857 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3858 Date: Wed Sep 10 22:48:00 2008 +0200
3860 env_onenand: Move conditional compilation to Makefile
3862 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3864 commit 9656138ff1a34d4c4768db6b490deffc40ee674b
3865 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3866 Date: Wed Sep 10 22:47:59 2008 +0200
3868 rename CFG_ENV_IS_IN_ONENAND in CONFIG_ENV_IS_IN_ONENAND
3870 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3872 commit 957a0e69575683efd70ace147746bbb3d8e7c501
3873 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3874 Date: Wed Sep 10 22:47:59 2008 +0200
3876 env_nvram: Move conditional compilation to Makefile
3878 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3880 commit 9314cee6917444ab88bd4e758da7a30975120187
3881 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3882 Date: Wed Sep 10 22:47:59 2008 +0200
3884 rename CFG_ENV_IS_IN_NVRAM in CONFIG_ENV_IS_IN_NVRAM
3886 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3888 commit 06f61354397911a4c121dfa51b6ccbf7e300d48b
3889 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3890 Date: Wed Sep 10 22:47:59 2008 +0200
3892 env_nand: Move conditional compilation to Makefile
3894 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3896 commit 51bfee192099206a4397f15f3b93516e01f58ab0
3897 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3898 Date: Wed Sep 10 22:47:58 2008 +0200
3900 rename CFG_ENV_IS_IN_NAND in CONFIG_ENV_IS_IN_NAND
3902 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3904 commit d8cc04d0ac9c7c0d12454708aaf5489f8532bbf9
3905 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3906 Date: Wed Sep 10 22:47:58 2008 +0200
3908 env_dataflash: Move conditional compilation to Makefile
3910 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3912 commit 057c849c45b9ee19df8ff3acdeee66be52819962
3913 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3914 Date: Wed Sep 10 22:47:58 2008 +0200
3916 rename CFG_ENV_IS_IN_DATAFLASH in CONFIG_ENV_IS_IN_DATAFLASH
3918 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3920 commit d1034bc8db60fa6bd419328baf6a75cb0645cee8
3921 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3922 Date: Wed Sep 10 22:47:52 2008 +0200
3924 cmd_eeprom: Move conditional compilation to Makefile
3926 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3928 commit bf5a7710ec70e90e98f451b4ba0eb65f9ffc34eb
3929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3930 Date: Fri Sep 5 09:19:54 2008 +0200
3932 env_eeprom: Move conditional compilation to Makefile
3934 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3936 commit bb1f8b4f8bb0bfce52e0faa4637b975b745824b3
3937 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3938 Date: Fri Sep 5 09:19:30 2008 +0200
3940 rename CFG_ENV_IS_IN_EEPROM in CONFIG_ENV_IS_IN_EEPROM
3942 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3944 commit 32628c5008105a732212003d83b75f05e5243bb2
3945 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3946 Date: Sat Aug 30 23:54:58 2008 +0200
3948 cmd_mac: Move conditional compilation to Makefile
3950 finish remaning CFG_ID_EEPROM in CONFIG_ID_EEPROM
3951 start in commit ad8f8687b78c3e917b173f038926695383c55555
3953 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3955 commit e5648acab153f0f429bfc714902c5aaa7879f71b
3956 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3957 Date: Sat Aug 30 23:47:41 2008 +0200
3959 cmd_fdc: Move conditional compilation to Makefile
3961 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3963 commit 2d02d91d530e831f2dab228085963fc1d5b71cb0
3964 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3965 Date: Sat Aug 30 23:47:38 2008 +0200
3967 common/Makefile: add core command section
3969 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3971 commit 0d92d4a699fb1a39381d98571dc51fb97e5bcf9e
3972 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3973 Date: Sat Aug 30 23:29:57 2008 +0200
3975 cmd_vfd: Move conditional compilation to Makefile
3977 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
3979 commit 6644641d072aee3087da129d8443187196a4d8a9
3980 Author: Scott Wood <scottwood@freescale.com>
3981 Date: Wed Sep 10 11:48:49 2008 -0500
3983 delta, zylonite: Update nand_oobinfo to nand_ecclayout.
3985 This is part of the switch to newer upstream MTD code.
3987 Signed-off-by: Scott Wood <scottwood@freescale.com>
3989 commit 9b05aa788bfdd3264ff1bc9418cb19550a7234e4
3990 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
3991 Date: Sat Aug 30 17:06:55 2008 -0400
3993 ARM DaVinci: Fix broken HW ECC for large page NAND.
3995 Based on original patch by Bernard Blackham <bernard@largestprime.net>
3997 U-boot's HW ECC support for large page NAND on Davinci is completely
3998 broken. Some kernels, such as the 2.6.10 one supported by
3999 MontaVista for DaVinci, rely upon this broken behaviour as they
4000 share the same code for ECCs. In the existing scheme, error
4001 detection *might* work on large page, but error correction
4002 definitely does not. Small page ECC correction works, but the
4003 format is not compatible with the mainline git kernel.
4005 This patch adds ECC code that matches what is currently in the
4006 Davinci git repository (since NAND support was added in 2.6.24).
4007 This makes the ECC and OOB layout written by u-boot compatible with
4008 Linux for both small page and large page devices and fixes ECC
4009 correction for large page devices.
4011 The old behaviour can be restored by defining the macro
4012 CFG_DAVINCI_BROKEN_ECC, which is undefined by default.
4014 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
4015 Acked-by: Sergey Kubushyn <ksi@koi8.net>
4016 Signed-off-by: Scott Wood <scottwood@freescale.com>
4018 commit 0b7c5639891f4103a0e31ec7ae0beb3e97ed3836
4019 Author: Heiko Schocher <hs@denx.de>
4020 Date: Wed Sep 10 11:15:28 2008 +0200
4022 muas3001: update BR4 settings
4024 Also set up the port pins for using I2C.
4026 Signed-off-by: Heiko Schocher <hs@denx.de>
4028 commit 3591293509e0c0bcf244b0f974775bff2e25697e
4029 Author: Petri Lehtinen <petri.lehtinen@inoi.fi>
4030 Date: Wed Sep 10 09:43:49 2008 +0300
4032 autoscr: Fix one-character lines and non-newline terminated scripts
4034 When not using hush, the autoscr command now executes lines that are
4035 only one character long. It also runs the last line of scripts even if
4036 it does not end in a newline.
4038 Signed-off-by: Petri Lehtinen <petri.lehtinen@inoi.fi>
4040 commit 9ebbb54f7a25055010fa6668eba40c72a4c4f985
4041 Author: Victor Gallardo <vgallardo@amcc.com>
4042 Date: Tue Sep 9 15:13:29 2008 -0700
4044 ppc4xx: Allow DTT_I2C_DEV_CODE configured by CFG_I2C_DTT_ADDR
4046 On AMCC Arches board DTT_I2C_DEV_CODE is different then canyonlands
4049 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
4051 commit 245f6ef3e11828cb46188e396fb1e67f7b07cd03
4052 Author: Heiko Schocher <hs@denx.de>
4053 Date: Mon Sep 8 10:21:11 2008 +0200
4055 muas3001: added support for the LM75 sensor.
4057 Signed-off-by: Heiko Schocher <hs@denx.de>
4059 commit 4a02a2dca82aeab8f839db9dd35fda9d5412dacb
4060 Author: Heiko Schocher <hs@denx.de>
4061 Date: Mon Sep 8 10:20:19 2008 +0200
4063 muas3001: activate WDT for the muas3001 board.
4065 Signed-off-by: Heiko Schocher <hs@denx.de>
4067 commit a55d074dac24dc941f1afb5b4e94b1509bfdda4e
4068 Author: Heiko Schocher <hs@denx.de>
4069 Date: Mon Sep 8 10:19:36 2008 +0200
4071 muas3001: added 64MB SDRAM autodetection.
4073 Signed-off-by: Heiko Schocher <hs@denx.de>
4075 commit 5251469943895de4bb9a04d5053352cc22acb7d5
4076 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
4077 Date: Thu Aug 21 07:12:26 2008 -0700
4079 Fix printf errors under -DDEBUG
4081 Fix printf format-string/arg mismatches under -DDEBUG.
4083 These warnings occur with DEBUG defined for a platform using
4084 cpu/mpc85xx. Users of other architectures can unearth similar
4085 problems by adding the line "CFLAGS += -DDEBUG=1" in config.mk right
4086 after "CFLAGS += $(call cc-option,-fno-stack-protector)".
4088 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
4089 Signed-off-by: Andy Fleming <afleming@freescale.com>
4091 commit 8b9e4787641719d709bfa2ebeb72e8bd4952bee7
4092 Author: Wolfgang Denk <wd@denx.de>
4093 Date: Tue Sep 9 23:55:18 2008 +0200
4095 Update CHANGELOG, prepare 2008-10-rc1 release
4097 Signed-off-by: Wolfgang Denk <wd@denx.de>
4099 commit e0ff3d350d6b7960deb5a881dfc5acf3a63ef676
4100 Author: Kumar Gala <galak@kernel.crashing.org>
4101 Date: Mon Sep 8 08:51:29 2008 -0500
4103 85xx: Ensure timebase is zero on secondary cores
4105 The e500um says the timebase is volatile out of reset. To ensure
4106 TB sync works we need to make sure its zero.
4108 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4110 commit 54b4ab3c961a2012a1c2a09c259a6343323ec551
4111 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4112 Date: Tue Sep 9 22:18:24 2008 +0200
4114 bootm_load_os: fix load_end debug message
4116 print load_end value not pointer
4118 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4120 commit 1d9af0be764960e6cc1c093e97176c3542796820
4121 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4122 Date: Tue Sep 9 22:18:23 2008 +0200
4124 bootm: enable fdt support only on ppc, m68k and sparc
4126 ...as done in image.c
4128 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4130 commit 748b5274e76f81df85cfcffaffedc323678d0623
4131 Author: Markus Heidelberg <markus.heidelberg@web.de>
4132 Date: Tue Sep 9 18:51:05 2008 +0200
4134 common/cmd_mem.c: remove nested #if defined(CONFIG_CMD_MEMORY)
4136 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
4138 commit 650632fe4ca09cfd0e5e6a593f2efc02ef87a58c
4139 Author: Markus Heidelberg <markus.heidelberg@web.de>
4140 Date: Tue Sep 9 17:31:46 2008 +0200
4142 gitignore: add tags files and Vim swap file
4144 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
4146 commit 1d9b67b23fca6a25154333733204339802510720
4147 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4148 Date: Tue Sep 9 17:52:47 2008 +0900
4150 add board_eth_init() for sh7785lcr board
4152 Fix the problem that cannot work RTL8169 on sh7785lcr board.
4154 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
4156 commit 7b7a869a8ba3bd6d9bffb748c91232141330f514
4157 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4158 Date: Wed Aug 6 16:08:41 2008 -0500
4160 mtd: SPI Flash: Support the STMicro Flash
4162 Add MTD SPI Flash support for M25P16, M25P20, M25P32,
4163 M25P40, M25P64, M25P80, M25P128.
4165 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
4166 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
4168 commit 4bc07c368076560ed7fa4c9f987c71a8521488a9
4169 Author: Wolfgang Denk <wd@denx.de>
4170 Date: Tue Sep 9 17:55:31 2008 +0200
4172 trab: fix build problem after change to use do_div()
4174 We must link with libgeneric now.
4176 Signed-off-by: Wolfgang Denk <wd@denx.de>
4178 commit 3b20fd83c73c22acfcb0c6663be747bd5c8b7011
4179 Author: Ryan CHEN <ryan.chen@st.com>
4180 Date: Wed Aug 20 13:00:17 2008 -0400
4182 Correct drv_usb_kbd_init function
4184 The patch is that check if usb_get_dev_index() function return valid
4185 pointer. If valid, continue. Otherwise return -1.
4187 Signed-off-by: Ryan Chen <ryan.chen@st.com>
4188 Acked-by: Markus Klotzbuecher <mk@denx.de>
4190 commit eba1f2fc75f128a9a6c1328d786996a93fd7a707
4191 Author: Remy Bohmer <linux@bohmer.net>
4192 Date: Wed Aug 20 11:22:02 2008 +0200
4194 Make usb-stop() safe to call multiple times in a row.
4196 A recent commit (936897d4d1365452bbbdf8430db5e7769ef08d38)
4197 enabled the usb_stop() command in common/cmd_bootm.c which was
4198 not enabled for some time, because no board did actually set the
4199 CFG_CMD_USB flag. So, now the usb_stop() is executed before
4200 loading the linux kernel.
4202 However, the usb_ohci driver hangs up (at least on AT91SAM) if the
4203 driver is stopped twice (e.g. the peripheral clock is stopped on AT91).
4204 If some other piece of code calls usb_stop() before the bootm command,
4205 this command will hangup the system during boot.
4206 (usb start and stop is typically used while booting from usb memory stick)
4208 But, stopping the usb stack twice is useless anyway, and a flag already
4209 existed that kept track on the usb_init()/usb_stop() calls.
4210 So, we now check if the usb stack is really started before we stop it.
4212 This problem is now fixed in both the upper as low-level layer.
4214 Signed-off-by: Remy Bohmer <linux@bohmer.net>
4215 Acked-by: Markus Klotzbuecher <mk@denx.de>
4217 commit 2c8ccf2728f5e67d991cecf76c4057db75a87b67
4218 Author: Wolfgang Denk <wd@denx.de>
4219 Date: Tue Sep 9 16:55:47 2008 +0200
4221 Makefile: fix bug introduced by commit 47ffd6c2
4223 commit 880f6a5d7596f42db5ff8803b797b78ec5b146e0
4224 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
4225 Date: Tue Sep 9 10:00:33 2008 -0400
4227 ppc4xx: ppc440-generic-ALL: Fix out of tree build v2
4229 This patch solves the problems compiling ml507, v5fx30teval and
4230 ppc440-generic out of tree.
4232 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
4234 commit 47bebe34ca4e33bab0e822e4ceebbec2590ccbcb
4235 Author: NÃcolas Carneiro Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
4236 Date: Thu Sep 4 15:35:46 2008 -0300
4238 Fix dev_print when called from usb_stor_info (usb storage command)
4240 Fix output of the usb storage command. It was printing "Device 0: not
4241 available" because IF_TYPE_USB was not included into the switch
4244 Signed-off-by: Nicolas Lebedenco <nicolas.lebedenco@tasksistemas.com.br>
4246 commit a4f243452cc8ce0c2c9b51a2520db4bde5f472de
4247 Author: Bartlomiej Sieka <tur@semihalf.com>
4248 Date: Tue Sep 9 12:58:16 2008 +0200
4250 FIT: make iminfo check hashes of all images in FIT, return 1 on failed check
4252 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
4254 commit 919f550dc11a13abf01c6bc713c968de790b8d7c
4255 Author: Bartlomiej Sieka <tur@semihalf.com>
4256 Date: Tue Sep 9 12:58:15 2008 +0200
4258 FIT: add ability to check hashes of all images in FIT, improve output
4260 - add function fit_all_image_check_hashes() that verifies if all
4261 hashes of all images in the FIT are valid
4262 - improve output of fit_image_check_hashes() when the hash check fails
4264 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
4266 commit 1de1fa408967cef6804bb046b904114519bb36f0
4267 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4268 Date: Mon Sep 8 20:54:39 2008 +0200
4270 qemu_mips: Update linux bootm to support dynamic cmdline
4272 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4274 commit f5ed9e39088ecfa5a5f3ef47b08e5bda7890d764
4275 Author: Peter Tyser <ptyser@xes-inc.com>
4276 Date: Mon Sep 8 14:56:49 2008 -0500
4278 Add support for booting of INTEGRITY operating system uImages
4280 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
4282 commit 72f1b65f1b68bc6ed0d182eda1f3d6cf51b6414a
4283 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4284 Date: Mon Sep 8 21:01:29 2008 +0200
4286 mips/bootm: Fix typo in commit c4f9419c, "initrd_start" replaced by "images->rd_start"
4288 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4290 commit 9ba2e2c8191353d75b2d535e672a125be7b84c03
4291 Author: Kumar Gala <galak@kernel.crashing.org>
4292 Date: Mon Sep 8 13:57:12 2008 -0500
4294 Remove support for booting ARTOS images
4296 Pantelis Antoniou stated:
4297 AFAIK, it is still used but the products using PPC are long gone.
4298 Nuke it plz (from orbit).
4300 So remove it since it cleans up a usage of env_get_char outside of
4301 the environment code.
4303 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4305 commit 47ffd6c2fc72b46daa9d5d59eedb894fab2b7ee1
4306 Author: Wolfgang Denk <wd@denx.de>
4307 Date: Tue Sep 9 15:45:18 2008 +0200
4309 Makefile: compile and link each module just once
4311 Several source files need to be compiled and linked when one or more
4312 config options are selected. To allow for easy selection in the
4313 Makefiles yet to avoild multiple compilation (which costs build time)
4314 and especially multiple linking (which causes errors), we use
4315 "COBJS = $(sort COBJS-y)" which eliminates duplicates.
4317 By courtesy of Detlev Zundel who suggested this approach.
4319 Signed-off-by: Wolfgang Denk <wd@denx.de>
4321 commit 48d0192fe869948fef14b460b5f0c85bca933693
4322 Author: Andreas Engel <andreas.engel@ericsson.com>
4323 Date: Mon Sep 8 14:30:53 2008 +0200
4325 Moved conditional compile into Makefile
4327 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
4329 commit 20c9226cb8cab08a111ee73db04e62d943ee0c97
4330 Author: Andreas Engel <andreas.engel@ericsson.com>
4331 Date: Mon Sep 8 10:17:31 2008 +0200
4333 Merged serial_pl010.c and serial_pl011.c.
4335 They only differ in the init function.
4336 This also adds the missing watchdog support for the PL011.
4338 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
4340 commit 0817d688f307ee2c0598e79175c94a40ce90337b
4341 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
4342 Date: Sun Sep 7 17:10:27 2008 -0400
4344 Remove gap fill in srec object v2
4346 SREC files do not need gap fill: The load address is specified in the
4347 file. On the other hand, it can't be avoided in a .bin object. It has
4348 no information about memory location.
4350 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
4352 commit 1dc306931ca5ce87f13916fa7165b052d3aa714f
4353 Author: Markus Heidelberg <markus.heidelberg@web.de>
4354 Date: Sun Sep 7 20:18:27 2008 +0200
4356 README: fix missing subdirectory in the documentation
4358 Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
4360 commit 3ef96ded38a8d33b58b9fab9cd879d51ddac4cbd
4361 Author: Graeme Russ <graeme.russ@gmail.com>
4362 Date: Sun Sep 7 07:08:42 2008 +1000
4364 Update i386 code (sc520_cdp)
4366 Attempt to bring i386 / sc520 inline with master
4368 Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
4370 commit 5608692104efa8d56df803dc79ea41ac3607eee5
4371 Author: Guennadi Liakhovetski <lg@denx.de>
4372 Date: Thu Sep 4 13:01:49 2008 +0200
4374 fw_env: add NAND support
4376 Add support for environment in NAND with automatic NOR / NAND recognition,
4377 including unaligned environment, bad-block skipping, redundant environment
4380 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
4382 commit dd794323a2a1ed6a8a5df51785c31bcde60ad7ca
4383 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4384 Date: Tue Sep 9 09:50:24 2008 +0200
4386 ppc4xx: Fix out-of-tree building of CPCI405 variants
4388 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4389 Acked-by: Stefan Roese <sr@denx.de>
4391 commit 59f630588e3fdbd698a0a2798e52a8924e899563
4392 Author: Sergei Poselenov <sposelenov@emcraft.com>
4393 Date: Fri Aug 15 15:42:11 2008 +0200
4395 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
4397 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
4399 commit e64987a892353f3d49eb242d997820ef8f538912
4400 Author: Anatolij Gustschin <agust@denx.de>
4401 Date: Fri Aug 15 15:42:13 2008 +0200
4403 85xx: socrates: Enable Lime support.
4405 This patch adds Lime GDC support together with support for the PWM
4406 backlight control through the w83782d chip. The reset pin of the
4407 latter is attached to GPIO, so we need to reset it in
4410 Signed-off-by: Anatolij Gustschin <agust@denx.de>
4412 commit 3e79b588b5199f35016f178fc0d5d1266382097f
4413 Author: Detlev Zundel <dzu@denx.de>
4414 Date: Fri Aug 15 15:42:12 2008 +0200
4416 85xx: Socrates: Major code update.
4418 - Update the local bus ranges in the FDT for Linux for the various
4419 devices connected to the local bus via chip-select.
4421 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
4422 lower than 66 MHz and uses I/O accessor functions consequently.
4426 - Update of default environment and configuration. Use I2C multibus
4427 as we do have two I2C buses. Also enable sdram and ext2 commands.
4429 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
4430 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
4431 Signed-off-by: Detlev Zundel <dzu@denx.de>
4433 commit e8d18541c6ceab821f75faab031740b33fdbfa4b
4434 Author: Timur Tabi <timur@freescale.com>
4435 Date: Fri Jul 18 16:52:23 2008 +0200
4437 Update Freescale 85xx boards to sys_eeprom.c
4439 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
4440 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
4441 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
4442 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
4444 Signed-off-by: Timur Tabi <timur@freescale.com>
4446 commit aab2bf0202c86227e3dcc8a5b58946087ebcc1af
4447 Author: Wolfgang Denk <wd@denx.de>
4448 Date: Tue Sep 9 10:08:02 2008 +0200
4450 lib_ppc/interrupts.c: make board_show_activity() a weak function
4452 This allows to use show_activity() without having to
4453 define an empty board_show_activity() function.
4455 Signed-off-by: Wolfgang Denk <wd@denx.de>
4457 commit fe876787f8743883ce58fed61525eaa2f34da4c5
4458 Author: Wolfgang Denk <wd@denx.de>
4459 Date: Tue Sep 9 10:06:44 2008 +0200
4461 stxxtc: remove empty CONFIG_SHOW_ACTIVITY functions
4463 Signed-off-by: Wolfgang Denk <wd@denx.de>
4465 commit 965de106ba8900372c8b16dc60d5acab7f925e38
4466 Author: Wolfgang Denk <wd@denx.de>
4467 Date: Tue Sep 9 10:03:47 2008 +0200
4469 NETTA2: remove empty CONFIG_SHOW_ACTIVITY functions
4471 Signed-off-by: Wolfgang Denk <wd@denx.de>
4473 commit 6cc64f9b5f69239c8b1969572b5a3a4aab7de5b9
4474 Author: Sergei Poselenov <sposelenov@emcraft.com>
4475 Date: Fri Aug 15 15:42:11 2008 +0200
4477 Removed hardcoded MxMR loop value from upmconfig() for MPC85xx.
4479 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
4481 commit 36241ca29d4804a1006fb3f26069effda5202581
4482 Author: Anatolij Gustschin <agust@denx.de>
4483 Date: Fri Aug 15 15:42:13 2008 +0200
4485 85xx: socrates: Enable Lime support.
4487 This patch adds Lime GDC support together with support for the PWM
4488 backlight control through the w83782d chip. The reset pin of the
4489 latter is attached to GPIO, so we need to reset it in
4492 Signed-off-by: Anatolij Gustschin <agust@denx.de>
4494 commit 7a47753ddcaebbf2142809842f70c5f723bd9ddb
4495 Author: Detlev Zundel <dzu@denx.de>
4496 Date: Fri Aug 15 15:42:12 2008 +0200
4498 85xx: Socrates: Major code update.
4500 - Update the local bus ranges in the FDT for Linux for the various
4501 devices connected to the local bus via chip-select.
4503 - Set the LCRR_DBYP bit in the LCRR for local bus frequencies
4504 lower than 66 MHz and uses I/O accessor functions consequently.
4508 - Update of default environment and configuration. Use I2C multibus
4509 as we do have two I2C buses. Also enable sdram and ext2 commands.
4511 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
4512 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
4513 Signed-off-by: Detlev Zundel <dzu@denx.de>
4515 commit 4d2ae70e8c31c22e5710df5ff236b5565ea2cf2c
4516 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4517 Date: Tue Sep 9 01:22:39 2008 +0200
4519 disk-on-chip: remove duplicate doc_probe declaration
4521 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4523 commit 3221b074a0ab199f6ae47c19cc22f42ddf3ef819
4524 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4525 Date: Tue Sep 9 00:59:40 2008 +0200
4527 onenand_uboot: fix warning: 'struct mtd_oob_ops' declared inside parameter list
4529 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4531 commit 13b4db0e2107175a8622ebb48529fa3ad8e12c75
4532 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4533 Date: Tue Sep 9 00:59:39 2008 +0200
4535 rs5c372: fix rtc_set prototype
4537 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4539 commit 1bb8b2ef2722bbaea3cc5d46321ce1d99f9b56f7
4540 Author: Sergei Poselenov <sposelenov@emcraft.com>
4541 Date: Thu Aug 14 14:08:28 2008 +0200
4543 ARM: fix warning: target CPU does not support interworking
4545 This patch fixes warnings like this:
4547 start.S:0: warning: target CPU does not support interworking
4549 which come from some ARM cross compilers and are caused by hard-coded
4550 (with "--with-cpu=arm9" configuration option) ARM targets (which
4551 support ARM Thumb instructions), while the ARM target selected from
4552 the command line (with "-march=armv4") doesn't support Thumb
4555 This warning is issued by the compiler regardless of the real use of
4556 the Thumb instructions in code.
4558 To fix this problem, we use options according to compiler version
4561 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
4562 Signed-off-by: Wolfgang Denk <wd@denx.de>
4564 commit 4265c35fbcb248e58179007621d61d32d0b3b82a
4565 Author: Sergei Poselenov <sposelenov@emcraft.com>
4566 Date: Thu Aug 14 14:08:28 2008 +0200
4568 ARM: Use do_div() instead of division for "long long".
4570 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
4571 Signed-off-by: Wolfgang Denk <wd@denx.de>
4573 commit 8febd13c69cb68652577d1a9fcbde954bf784155
4574 Author: Timur Tabi <timur@freescale.com>
4575 Date: Fri Jul 18 16:52:23 2008 +0200
4577 Update Freescale 85xx boards to sys_eeprom.c
4579 The new sys_eeprom.c supports both the old CCID EEPROM format and the new NXID
4580 format, and so it obsoletes board/freescale/common/cds_eeprom.c. Freescale
4581 86xx boards already use sys_eeprom.c, so this patch migrates the remaining
4582 Freescale 85xx boards to use it as well. cds_eeprom.c is deleted.
4584 Signed-off-by: Timur Tabi <timur@freescale.com>
4586 commit 1055171ed05b7c4885737463d52b8d6c013bcb5d
4587 Author: Wolfgang Denk <wd@denx.de>
4588 Date: Mon Sep 8 23:26:22 2008 +0200
4590 lib_arm/bootm.c: fix compile warnings
4592 bootm.c:128: warning: label 'error' defined but not used
4593 bootm.c:65: warning: unused variable 'ret'
4595 Signed-off-by: Wolfgang Denk <wd@denx.de>
4597 commit 2e3c867d0a63c563a51e65b776973b008f16cec5
4598 Author: Wolfgang Denk <wd@denx.de>
4599 Date: Mon Sep 8 22:46:42 2008 +0200
4601 ml507: fix out of tree build problem
4603 Signed-off-by: Wolfgang Denk <wd@denx.de>
4605 commit 9863a15a98f23b79f34a0e4f9e465bc6df5d504d
4606 Author: Wolfgang Denk <wd@denx.de>
4607 Date: Mon Sep 8 22:10:28 2008 +0200
4609 common/cmd_bootm.c: fix printf() format warnings
4611 Signed-off-by: Wolfgang Denk <wd@denx.de>
4613 commit 4394f9a8c42bb1b0abc4fc04bd582d4db5f8b726
4614 Author: Wolfgang Denk <wd@denx.de>
4615 Date: Mon Sep 8 22:37:45 2008 +0200
4617 BMW, PCIPPC2, PCIPPC6, RBC82: fix compile warnings
4619 missing doc_probe() prototype.
4621 Signed-off-by: Wolfgang Denk <wd@denx.de>
4623 commit 2c5e3cc4994897d364b148942ff23e47783198f6
4624 Author: Wolfgang Denk <wd@denx.de>
4625 Date: Mon Sep 8 21:28:14 2008 +0200
4627 mk48t59: fix compile problem introduced by commit d1e23194
4629 Signed-off-by: Wolfgang Denk <wd@denx.de>
4631 commit 5ff889349d2ace13f10c9335e09365fcec8247cc
4632 Author: Stefan Roese <sr@denx.de>
4633 Date: Mon Sep 8 14:11:12 2008 +0200
4635 ppc4xx: Move ppc4xx specific prototypes to ppc4xx header
4637 This patch moves some 4xx specific prototypes out of include common.h
4638 to a ppc4xx specific header.
4640 Signed-off-by: Stefan Roese <sr@denx.de>
4642 commit ac53ee8318678190bf3c68da477a84a657d86fb0
4643 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4644 Date: Fri Sep 5 15:34:04 2008 +0200
4646 ppc4xx: Update CPCI405(AB) configuration
4648 This patch add FDT support and command line editing capabilities
4649 for CPCI405 and CPCI405AB boards.
4651 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4652 Signed-off-by: Stefan Roese <sr@denx.de>
4654 commit 7b1fbcadf73a83b3beb94abccda1c35e2c075a94
4655 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4656 Date: Fri Sep 5 15:34:03 2008 +0200
4658 ppc4xx: Cleanup CPCI405 linker script
4660 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4661 Signed-off-by: Stefan Roese <sr@denx.de>
4663 commit 767f9159c5c94cd0cb3135b5b82814ad12816ddf
4664 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4665 Date: Fri Sep 5 15:34:02 2008 +0200
4667 ppc4xx: Update CPCI405 variants handling
4669 This patch replaces the BOARD_REVISION variable in include/config.mk
4670 by a using a temporary include file in the platform directory.
4672 The former way does not work anymore and the latter is also used by
4675 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
4676 Signed-off-by: Stefan Roese <sr@denx.de>
4678 commit f071f01fd09e9bf1cf09de37a7416aacce71bae1
4679 Author: Stefan Roese <sr@denx.de>
4680 Date: Mon Sep 8 10:01:48 2008 +0200
4682 ppc4xx: Remove CONFIG_CS8952_PHY define
4684 Since this define is only used on one board that was never really in
4685 production, removing this compile time option doesn't hurt and makes
4686 the code more readable.
4688 Signed-off-by: Stefan Roese <sr@denx.de>
4690 commit 6ca8646c1860bba74326bf916a5a3389a5c0d3b5
4691 Author: Stefan Roese <sr@denx.de>
4692 Date: Fri Sep 5 14:11:40 2008 +0200
4694 ppc4xx: Fix compilation warning for PIP405
4696 This patch fixes a compilation warning for the PIP405 board. It moves the
4697 #ifndef CONFIG_CS8952_PHY define a little so that the warning doesn't
4698 occur anymore. I am a little unsure if this #ifdef is at the correct
4699 place now or if it could be removed completely. This needs to get
4700 tested on the PIP405 board.
4702 Signed-off-by: Stefan Roese <sr@denx.de>
4704 commit 725b53ac61f4df3026b8f6489ef0080fd27d3816
4705 Author: Stefan Roese <sr@denx.de>
4706 Date: Fri Sep 5 14:09:09 2008 +0200
4708 ppc4xx: Fix compilation warning for canyonlands & glacier
4710 Signed-off-by: Stefan Roese <sr@denx.de>
4712 commit 302e52e0b1d4c7f994991709d0cb6c3ea612cdb5
4713 Author: Kumar Gala <galak@kernel.crashing.org>
4714 Date: Fri Sep 5 14:40:29 2008 -0500
4716 Fix compiler warning in mpc8xxx ddr code
4718 ctrl_regs.c: In function 'compute_fsl_memctl_config_regs':
4719 ctrl_regs.c:523: warning: 'caslat' may be used uninitialized in this function
4720 ctrl_regs.c:523: note: 'caslat' was declared here
4722 Add a warning in DDR1 case if cas_latency isn't a value we know about.
4724 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4725 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4727 commit d1e2319414ea5218ba801163e4530ecf2dfcbf36
4728 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4729 Date: Mon Sep 1 23:06:23 2008 +0200
4731 rtc: allow rtc_set to return an error and use it in cmd_date
4733 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4735 commit ee9536a28cb149bcb6c5dee9d08c62c91f4c72d2
4736 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4737 Date: Mon Sep 1 01:16:33 2008 +0200
4739 ap325rxa/favr-32-ezkit: Use CONFIG_FLASH_CFI_DRIVER
4741 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
4743 commit 6b971c73f182248ce103503d74fbc0100bb8c8b7
4744 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4745 Date: Sun Aug 31 05:37:04 2008 +0900
4747 config.mk: Move arch-specific condition to $(ARCH)_config.mk
4749 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
4751 commit ea86b9e64b811753d9eabe0f560ee189fbe5d0c1
4752 Author: Kumar Gala <galak@kernel.crashing.org>
4753 Date: Fri Aug 29 19:08:29 2008 -0500
4755 Prevent crash if random/invalid ramdisks are passed to bootm
4757 Adds returning an error from the ramdisk detection code if
4758 its not a real ramdisk (invalid). There is no reason we can't
4759 just return back to the console if we detect an invalid
4760 ramdisk or CRC error.
4762 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
4764 commit 8e02494e8f86c8f2d7324b5eb9e75271104a01ef
4765 Author: Anatolij Gustschin <agust@denx.de>
4766 Date: Fri Aug 29 21:04:45 2008 +0200
4768 Prevent crash if random DTB address is passed to bootm
4770 This patch adds bootm_start() return value check. If
4771 error status is returned, we do not proceed further to
4772 prevent board reset or crash as we still can recover
4775 Signed-off-by: Anatolij Gustschin <agust@denx.de>
4777 commit cc347801add2689b1ee54d21f62bc14ecf6e1dd8
4778 Author: Andrew Dyer <adyer@righthandtech.com>
4779 Date: Fri Aug 29 12:30:39 2008 -0500
4781 clean up some #if !defined() in drivers/video/cfb_console.c
4783 rearrange some #if !defined() / #else / #endif statements to remove
4786 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
4788 commit c83f4c2d77f07174dcd6bef7e87a0f7017be7c33
4789 Author: Kyungmin Park <kmpark@infradead.org>
4790 Date: Fri Aug 29 09:02:20 2008 +0900
4792 apollon: use the last memory area for u-boot
4794 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4796 commit a6f2e455b774d0c5d56e44e5661df9adb69b6e07
4797 Author: Heiko Schocher <hs@denx.de>
4798 Date: Thu Aug 28 13:50:42 2008 +0200
4800 TQM8272: move NAND part in seperate File
4802 I didn't try to use drivers/mtd/nand/fsl_upm.c for the NAND driver,
4803 because I have no longer access to the hardware.
4805 Signed-off-by: Heiko Schocher <hs@denx.de>
4807 commit 584f979f7ee914e32d408739cbdd2c4457ec18b8
4808 Author: Heiko Schocher <hs@denx.de>
4809 Date: Thu Aug 28 13:48:36 2008 +0200
4811 TQM8272: Fix compiling error for the TQM8272 board.
4813 Fix compile problems caused by
4814 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
4816 Signed-off-by: Heiko Schocher <hs@denx.de>
4818 commit 1a7f8ccec981648ccd38fca2535490582eee08e6
4819 Author: Kyungmin Park <kmpark@infradead.org>
4820 Date: Wed Aug 27 14:45:20 2008 +0900
4822 Add JFFS2 command support on OneNAND
4824 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
4826 commit f5c3ba79788b0e39baab7026d374fe375dd1a43f
4827 Author: Mark Jackson <mpfj@mimc.co.uk>
4828 Date: Mon Aug 25 19:21:30 2008 +0100
4830 Allow console input to be disabled
4832 Added new CONFIG_DISABLE_CONSOLE define and GD_FLG_DISABLE_CONSOLE.
4834 When CONFIG_DISABLE_CONSOLE is defined, setting
4835 GD_FLG_DISABLE_CONSOLE disables all console input and output.
4837 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
4839 commit 2b22d608f370565c87f55928b524207031419c11
4840 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
4841 Date: Wed Jul 30 12:39:29 2008 +0200
4843 loads: allow negative offsets
4845 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
4847 commit e90fb6afab2c0c074dfb67bacb4de179eb188a24
4848 Author: Yuri Tikhonov <yur@emcraft.com>
4849 Date: Thu Sep 4 11:19:05 2008 +0200
4851 USB EHCI: reset root hub
4853 Some of multi-function USB controllers (e.g. ISP1562) allow root hub
4854 resetting only via EHCI registers. So, this patch adds the
4855 corresponding kind of reset to OHCI's hc_reset() if the newly
4856 introduced CONFIG_PCI_EHCI_DEVNO option is set (e.g. for Socrates
4859 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
4860 Acked-by: Markus Klotzbuecher <mk@denx.de>
4862 commit 5875d358f025c1b042d8a0f08384b756de7256c9
4863 Author: Yuri Tikhonov <yur@emcraft.com>
4864 Date: Fri Aug 15 15:42:09 2008 +0200
4866 RX 8025 RTC: analyze 12/24-hour mode flag in rtc_get().
4868 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
4870 commit 3e3c026ed746a284c6f0ef139b26d859939de7e9
4871 Author: Stefan Roese <sr@denx.de>
4872 Date: Fri Sep 5 10:47:46 2008 +0200
4874 devices: Use list_add_tail() instead of list_add() to register a device
4876 This patch fixes a problem spotted on Glacier/Canyonlands (and most
4877 likely lots of other board ports), that no serial output was seen
4878 after console initialization in console_init_r(). This is because the
4879 last added console device was used instead of the first added.
4881 This patch fixes this problem by using list_add_tail() instead of
4882 list_add() to register a device. This way the first added console
4885 Signed-off-by: Stefan Roese <sr@denx.de>
4887 commit 78d78236896d62bb8ca7302af38d8f1493eb2651
4888 Author: Victor Gallardo <vgallardo@amcc.com>
4889 Date: Thu Sep 4 23:49:36 2008 -0700
4891 ppc4xx: Add support for GPCS, SGMII and M88E1112 PHY
4893 This patch adds GPCS, SGMII and M88E1112 PHY support
4894 for the AMCC PPC460GT/EX processors.
4896 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
4897 Signed-off-by: Stefan Roese <sr@denx.de>
4899 commit f6b6c45840f9b4671d2d97243a12a1f3ffb64765
4900 Author: Adam Graham <agraham@amcc.com>
4901 Date: Wed Sep 3 12:26:59 2008 -0700
4903 ppc4xx: Update Kilauea to use PPC4xx DDR autocalibration routines
4905 Signed-off-by: Adam Graham <agraham@amcc.com>
4906 Signed-off-by: Stefan Roese <sr@denx.de>
4908 commit 075d0b81e896e8735ae26372cd384f87cbd24e41
4909 Author: Adam Graham <agraham@amcc.com>
4910 Date: Wed Sep 3 12:26:28 2008 -0700
4912 ppc4xx: IBM Memory Controller DDR autocalibration routines
4914 Alternate SDRAM DDR autocalibration routine that can be generically used
4915 for any PPC4xx chips that have the IBM SDRAM Controller core allowing for
4916 support of more DIMM/memory chip vendors and gets the DDR autocalibration
4917 values which give the best read latency performance (SDRAM0_RDCC.[RDSS]).
4919 Two alternate SDRAM DDR autocalibration algoritm are provided in this patch,
4920 "Method_A" and "Method_B". DDR autocalibration Method_A scans the full range
4921 of possible PPC4xx SDRAM Controller DDR autocalibration values and takes a
4922 lot longer to run than Method_B. Method_B executes in the same amount of time
4923 as the currently existing DDR autocalibration routine, i.e. 1 second or so.
4924 Normally Method_B is used and it is set as the default method.
4926 The current U-Boot PPC4xx DDR autocalibration code calibrates the IBM SDRAM
4927 Controller registers.[bit-field]:
4928 1) SDRAM0_RQDC.[RQFD]
4929 2) SDRAM0_RFDC.[RFFD]
4931 This alternate PPC4xx DDR autocalibration code calibrates the following
4932 IBM SDRAM Controller registers.[bit-field]:
4934 1) SDRAM0_WRDTR.[WDTR]
4935 2) SDRAM0_CLKTR.[CKTR]
4936 3) SDRAM0_RQDC.[RQFD]
4937 4) SDRAM0_RFDC.[RFFD]
4939 and will also use the calibrated settings of the above four registers that
4940 produce the best "Read Sample Cycle Select" value in the SDRAM0_RDCC.[RDSS]
4941 register.[bit-field].
4943 Signed-off-by: Adam Graham <agraham@amcc.com>
4944 Signed-off-by: Stefan Roese <sr@denx.de>
4946 commit e07f4a8033b6270b8103049adb6456f660ff4a89
4947 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
4948 Date: Mon Sep 1 13:09:39 2008 -0400
4950 ppc44x: Unification of virtex5 pp440 boards
4952 This patch provides an unificated way of handling xilinx v5 ppc440 boards.
4954 It unificates 3 different things:
4957 A new board called ppc440-generic has been created. This board includes
4958 a generic tlb initialization (Maps the whole memory into virtual) and
4959 defines board_pre_init, checkboard, initdram and get_sys_info weakly,
4960 so, they can be replaced by specific functions.
4962 If a new board needs to redefine any of the previous functions
4963 (specific initialization) it can create a new directory with the
4964 specific initializations needed. (see the example ml507 board).
4966 2) Configuration file
4967 Common configurations are located under configs/xilinx-ppc440.h, this
4968 header file interpretes the xparameters file generated by EDK and
4969 configurates u-boot in correspondence. Example: if there is a Temac,
4970 allows CMD_CONFIG_NET
4971 Specific configuration are located under specific configuration file.
4972 (see the example ml507 board)
4975 Some work has been done in order to not duplicate work in the Main
4976 Makefile. Please see the attached code.
4978 In order to support new boards they can be implemented in the next way:
4980 a) Simple Generic Board (90% of the time)
4981 Using EDK generates a new xparameters.h file, replace
4982 ppc440-generic/xparameters.h and run make xilinx-ppc440-generic_config
4985 b) Simple Boards with special u-boot parameters (9 % of the time)
4986 Create a new file under configs for it (use ml507.h as example) and
4987 change your paramaters. Create a new Makefile paragraph and compile
4989 c) Complex boards (1% of the time)
4990 Create a new folder for the board, like the ml507
4992 Finally, it adds support for the Avnet FX30T Evaluation board, following
4993 the new generic structure:
4995 Cheap board by Avnet for evaluating the Virtex5 FX technology.
4997 This patch adds support for:
5002 Prior using U-boot in this board, read carefully the ERRATA by Avnet
5003 to solve some memory initialization issues.
5005 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
5006 Signed-off-by: Stefan Roese <sr@denx.de>
5008 commit 64ac1eb5afafced49b327425ad1814b2dc422d6e
5009 Author: Nick Spence <nick.spence@freescale.com>
5010 Date: Tue Sep 2 15:21:16 2008 -0500
5012 mpc83xx: fix mpc8313 in-tree building with NAND
5014 and add mpc8313 NAND build to MAKEALL
5016 Signed-off-by: Nick Spence <nick.spence@freescale.com>
5017 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5019 commit 6eb2a44e27919fdc601e0c05404b298a7602c0e3
5020 Author: Nick Spence <nick.spence@freescale.com>
5021 Date: Thu Aug 28 14:09:25 2008 -0700
5023 mpc83xx: clean up cache operations and unlock_ram_in_cache() functions
5025 Cleans up some latent issues with the data cache control so that
5026 dcache_enable() and dcache_disable() will work reliably (after
5027 unlock_ram_in_cache() has been called)
5029 Signed-off-by: Nick Spence <nick.spence@freescale.com>
5030 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5032 commit 46497056ae3b1e81e736e9cf3a170472c5d9719f
5033 Author: Nick Spence <nick.spence@freescale.com>
5034 Date: Thu Aug 28 14:09:19 2008 -0700
5036 mpc83xx: Store and display Arbiter Event Register values
5038 Record the Arbiter Event Register values and optionally display them.
5040 The Arbiter Event Register can record the type and effective address of
5041 an arbiter error, even through an HRESET. This patch stores the values in
5042 the global data structure.
5044 Display of the Arbiter Event registers immediately after the RSR value
5045 can be enabled with defines. The Arbiter values will only be displayed
5046 if an arbiter event has occured since the last Power On Reset, and either
5047 of the following defines exist:
5048 #define CONFIG_DISPLAY_AER_BRIEF - display only the arbiter address and
5049 and type register values
5050 #define CONFIG_DISPLAY_AER_FULL - display and interpret the arbiter
5051 event register values
5053 Address Only transactions are one of the trapped events that can register
5054 as an arbiter event. They occur with some cache manipulation instructions
5055 if the HID0_ABE (Address Broadcast Enable) is set and the memory region
5056 has the MEMORY_COHERENCE WIMG bit set. Setting:
5057 #define CONFIG_MASK_AER_AO - prevents the arbiter from recording address
5058 only events, so that it can still capture
5059 other real problems.
5061 Signed-off-by: Nick Spence <nick.spence@freescale.com>
5062 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5064 commit ade50c7fa1b16ef98be17e9c3ae286aecf4f5605
5065 Author: Nick Spence <nick.spence@freescale.com>
5066 Date: Thu Aug 28 14:09:11 2008 -0700
5068 mpc83xx: use r4 instead of r2 in lock_ram_in_cache and unlock_ram_in_cache
5070 This is needed in unlock_ram_in_cache() because it is called from C and
5071 will corrupt the small data area anchor that is kept in R2.
5073 lock_ram_in_cache() is modified similarly as good coding practice, but
5074 is not called from C.
5076 Signed-off-by: Nick Spence <nick.spence@freescale.com>
5077 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5079 commit d9fe88173cb4f7d293796ffe10c7a0d3d426d8f9
5080 Author: Nick Spence <nick.spence@freescale.com>
5081 Date: Fri Aug 22 23:52:50 2008 -0700
5083 MPC83XX: Fix GPIO configuration - set gpio level before direction
5085 Set DAT value before DIR values to avoid creating glitches on the
5088 Set gpio level register before direction register to inhibit
5089 glitches on high level output pins.
5091 Dir and data gets cleared at powerup, so high level output lines see
5092 a short low pulse between setting the direction and level registers.
5094 Issue was seen on a new board with the nReset line of the NOR flash
5095 connected to a GPIO. Setting the direction register puts the NOR flash
5096 in reset so the next instruction to set the level cannot get executed.
5098 Signed-off-by: Nick Spence <nick.spence@freescale.com>
5099 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
5100 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
5102 commit 7007c5975ee900ad70983b0681d3251e221f8321
5103 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5104 Date: Tue Sep 2 02:58:32 2008 +0200
5106 doc/qemu_mips: add doc howto debug u-boot with gdb
5108 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5110 commit 7deb3b3ecd0e81ef09bb68aa0ec2346f4ae0a405
5111 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5112 Date: Wed Sep 3 17:15:45 2008 +0200
5114 ppx4xx: Fix broken DASA_SIM board
5116 This patch adds initdram() to DASA_SIM boards that has been
5117 removed accidentally by a previous commit.
5119 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5120 Signed-off-by: Stefan Roese <sr@denx.de>
5122 commit 7e410aa30fbcb1d19a26bbf1e84a9ca6102d534b
5123 Author: Stefan Roese <sr@denx.de>
5124 Date: Mon Sep 1 08:35:37 2008 +0200
5126 ppc4xx: Remove reference to common/lists.o from some esd linker scripts
5128 This patch removes some direct references to common/lists.o from some
5129 esd linker scripts. This is necessary because the lists source was moved
5130 and is not in the "common" directory anymore.
5132 Signed-off-by: Stefan Roese <sr@denx.de>
5134 commit 97b0734d65f8a0b03df0a335a2addc759da56107
5135 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5136 Date: Tue Sep 2 16:33:05 2008 +0200
5138 ppc4xx: Remove obsolete or unused functions from some esd boards
5140 This patch removes initdram() and testdram() from most esd 405 platforms.
5141 Some boards also have an empty dummy implementation of
5142 misc_init_f(). This is also removed.
5144 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5145 Signed-off-by: Stefan Roese <sr@denx.de>
5147 commit 1092ce218c514e5ccb18450ac5af501d96d6e3e9
5148 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5149 Date: Tue Sep 2 15:07:54 2008 +0200
5151 ppc4xx: Update VOM405 board configuration
5154 - add command line editing
5157 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5158 Signed-off-by: Stefan Roese <sr@denx.de>
5160 commit 830c800e28e96ec7c3c6936a0bd1b9461f3e77d4
5161 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5162 Date: Tue Sep 2 15:07:53 2008 +0200
5164 ppc4xx: Remove obsolete initdram() function from VOM405 board
5166 This patch removed the obsolete initdram() function from
5167 VOM405 platform file.
5171 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5172 Signed-off-by: Stefan Roese <sr@denx.de>
5174 commit 3d4dd7a941b2327b8c2fc535b782ca307ff8b6c8
5175 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5176 Date: Tue Sep 2 15:07:52 2008 +0200
5178 ppc4xx: Cleanup VOM405 linker script
5180 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5181 Signed-off-by: Stefan Roese <sr@denx.de>
5183 commit fcaffd597f6f5191b12ca66c2a4789bbdeea85c2
5184 Author: Matthias Fuchs <mf@esd.eu>
5185 Date: Tue Sep 2 15:07:51 2008 +0200
5187 ppc4xx: Add fdt support for VOM405 boards
5189 Signed-off-by: Matthias Fuchs <mf@esd.eu>
5190 Signed-off-by: Stefan Roese <sr@denx.de>
5192 commit 9ec367aa2c5dcf79558aa2b209b45d7686654c14
5193 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5194 Date: Tue Sep 2 11:36:14 2008 +0200
5196 ppc4xx: Coding style cleanup
5198 Wrap long lines etc.
5200 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5201 Signed-off-by: Stefan Roese <sr@denx.de>
5203 commit 17e65c21adfb63980e6aff80bfbd2df0eeb12060
5204 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5205 Date: Tue Sep 2 11:35:56 2008 +0200
5207 ppc4xx: Enable USB on PLU405 boards
5209 This patch enables the PCI-OHCI controller on PLU405 board.
5211 Also the default CPU frequency is updated to 266 MHz and
5212 command line editing is enabled.
5214 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5215 Signed-off-by: Stefan Roese <sr@denx.de>
5217 commit 40e43e3b87d57b2ac786e27f6e25a7df9940d93b
5218 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5219 Date: Tue Sep 2 11:35:35 2008 +0200
5221 ppc4xx: Cleanup PLU405 platform file
5224 - wraps some long lines
5225 - removes unused/obsolete functions: misc_init_f() and initdram()
5227 Signed-off-by: Matthias Fuchs <mf@esd.eu>
5228 Signed-off-by: Stefan Roese <sr@denx.de>
5230 commit d74cdb1d0614ab78128e0735a51e7988a7b7ea33
5231 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5232 Date: Tue Sep 2 11:35:04 2008 +0200
5234 ppc4xx: Cleanup PLU405 linker script
5236 Signed-off-by: Matthias Fuchs <mf@esd.eu>
5237 Signed-off-by: Stefan Roese <sr@denx.de>
5239 commit 3bc1054cec2f6b25822f301ea922a16233baa4c7
5240 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5241 Date: Tue Sep 2 11:34:36 2008 +0200
5243 ppc4xx: Add fdt support for PLU405 boards
5245 Signed-off-by: Matthias Fuchs <mf@esd.eu>
5246 Signed-off-by: Stefan Roese <sr@denx.de>
5248 commit 5a3e480b783bfbc139586293a54fb875d7c5c5d4
5249 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
5250 Date: Tue Sep 2 11:34:08 2008 +0200
5252 ppc4xx: Increase U-Boot size to 384kB for PLU405 boards
5254 Signed-off-by: Matthias Fuchs <mf@esd.eu>
5255 Signed-off-by: Stefan Roese <sr@denx.de>
5257 commit be1b0d2777e179191a57b138b660547a17e55aad
5258 Author: Jochen Friedrich <jochen@scram.de>
5259 Date: Tue Sep 2 11:24:59 2008 +0200
5261 Don't tftp to unknown flash
5263 If a board has a variable number of flash banks, there are empty entries
5264 in flash_info[] and CFG_DIRECT_FLASH_TFTP is set, tftp boot fails with
5265 "Outside available Flash". This patch skips flash banks with unknown
5268 Signed-off-by: Jochen Friedrich <jochen@scram.de>
5269 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5271 commit 33314470ab32a3f5412bb61b5f3d6c216c88bf9b
5272 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5273 Date: Thu Aug 28 13:40:44 2008 +0900
5275 net: smc911x: Add pkt_data_pull and pkt_data_push function
5277 The RSK7203 board has the SMSC9118 wired up 'incorrectly'.
5278 Byte-swapping is necessary, and so poor performance is inevitable.
5279 This problem cannot evade by the swap function of CHIP, this can
5280 evade by software Byte-swapping.
5281 And this has problem by FIFO access only. pkt_data_pull/pkt_data_push
5282 functions necessary to solve this problem.
5284 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5285 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5287 commit 10efa024b8ffd9e6aaca63da8bddfdffdc672274
5288 Author: Ben Warren <biggerbadderben@gmail.com>
5289 Date: Sun Aug 31 20:37:00 2008 -0700
5291 Moved initialization of EEPRO100 Ethernet controller to board_eth_init()
5322 Removed initialization of the driver from net/eth.c
5323 Also, wrapped contents of pci_eth_init() by CONFIG_PCI.
5325 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5327 commit 8ca0b3f99c4fce7a599dcaf92ae095496dc8c8e0
5328 Author: Ben Warren <biggerbadderben@gmail.com>
5329 Date: Sun Aug 31 10:45:44 2008 -0700
5331 Moved initialization of TULIP Ethernet controller to board_eth_init()
5346 Removed initialization of the driver from net/eth.c
5348 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5350 commit ad3381cf4167120db5c7b88e4970245e1d5c0a32
5351 Author: Ben Warren <biggerbadderben@gmail.com>
5352 Date: Sun Aug 31 10:44:19 2008 -0700
5354 Moved initialization of E1000 Ethernet controller to board_eth_init()
5361 Removed initialization of the driver from net/eth.c
5363 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5365 commit 4fce2aceaf8afd31a252bc782c9dbc497bf40487
5366 Author: Ben Warren <biggerbadderben@gmail.com>
5367 Date: Sun Aug 31 10:40:51 2008 -0700
5369 Moved initialization of plb2800 Ethernet driver to board_eth_init
5374 Removed initialization of controller from net/eth.c
5376 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5378 commit e1d7480b5de1fd4830bf7cf5e2237d3b0846d08d
5379 Author: Ben Warren <biggerbadderben@gmail.com>
5380 Date: Sun Aug 31 10:39:12 2008 -0700
5382 Moved initialization of MPC5xxx_FEC Ethernet driver to CPU directory
5384 Modified board_eth_init() functions of boards that have this FEC in addition
5385 to other Ethernet controllers.
5396 Removed initialization of controller from net/eth.c
5398 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5400 commit a0aad08f9427ac00218bdb2cb649833ce6ec9b8d
5401 Author: Ben Warren <biggerbadderben@gmail.com>
5402 Date: Sun Aug 31 10:36:38 2008 -0700
5404 Moved initialization of MPC512x_FEC Ethernet driver to CPU directory
5406 Added a cpu_eth_init() function to MPC512x CPU directory and
5407 removed code from net/eth.c
5409 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5411 commit 8218bd2aa68820b878a8413493ae17fd8d21f944
5412 Author: Ben Warren <biggerbadderben@gmail.com>
5413 Date: Sun Aug 31 10:16:59 2008 -0700
5415 Moved initialization of IncaIP Ethernet controller to board_eth_init
5420 Removed initialization of the driver from net/eth.c
5422 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5424 commit 164846eeb25cb2a5ede7ab9371fdca7f4831a055
5425 Author: Ben Warren <biggerbadderben@gmail.com>
5426 Date: Sun Aug 31 10:15:26 2008 -0700
5428 Moved initialization of 3COM Ethernet controller (AmigaOne) to board_eth_init()
5433 Removed initialization of the driver from net/eth.c
5435 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5437 commit 6aca145e067efe75398e9fac97822bd3700de0b2
5438 Author: Ben Warren <biggerbadderben@gmail.com>
5439 Date: Sun Aug 31 10:13:34 2008 -0700
5441 Moved initialization of GT6426x Ethernet controller to board_eth_init()
5448 Removed initialization of the driver from net/eth.c
5450 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5452 commit e3090534d62045dcb73f5392bacc64a4e8e443dc
5453 Author: Ben Warren <biggerbadderben@gmail.com>
5454 Date: Sun Aug 31 10:08:43 2008 -0700
5456 Moved initialization of PCNET Ethernet controller to board_eth_init()
5462 Removed initialization of the driver from net/eth.c
5464 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5466 commit b902b8dda5e1fd4d5fe2f202c71ee3521d2c40ed
5467 Author: Ben Warren <biggerbadderben@gmail.com>
5468 Date: Sun Aug 31 10:07:16 2008 -0700
5470 Moved initialization of NATSEMI Ethernet controller to board_eth_init()
5475 Removed initialization of the driver from net/eth.c
5477 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5479 commit 19403633dd70333893c2da7926a1d0dcd6dab7d8
5480 Author: Ben Warren <biggerbadderben@gmail.com>
5481 Date: Sun Aug 31 10:03:22 2008 -0700
5483 Moved initialization of NS8382X Ethernet controller to board_eth_init()
5497 Removed initialization of the driver from net/eth.c
5499 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5501 commit ccdd12f83ef93719fbe85f642aa4dc648b9498f0
5502 Author: Ben Warren <biggerbadderben@gmail.com>
5503 Date: Sun Aug 31 09:59:33 2008 -0700
5505 Moved initialization of TSI108 Ethernet controller to board_eth_init()
5510 Removed initialization of the driver from net/eth.c
5512 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5514 commit 0b252f50ae218ae15bfb63af44227972686ebc56
5515 Author: Ben Warren <biggerbadderben@gmail.com>
5516 Date: Sun Aug 31 21:41:08 2008 -0700
5518 Moved initialization of RTL8139 Ethernet controller to board_eth_init()
5527 Removed initialization of the driver from net/eth.c
5529 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5531 commit 02d69891d95ee76b0e86e1715a4dc0b964a57cb7
5532 Author: Ben Warren <biggerbadderben@gmail.com>
5533 Date: Sun Aug 31 09:49:42 2008 -0700
5535 Moved initialization of RTL8169 Ethernet controller to board_eth_init()
5541 Removed initialization of the driver from net/eth.c
5543 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5545 commit 3ae071e44256144d6c1e3febb65f6c56bd433769
5546 Author: Ben Warren <biggerbadderben@gmail.com>
5547 Date: Tue Aug 12 22:11:53 2008 -0700
5549 Moved initialization of Ethernet controllers on Atmel AT91 to board_eth_init()
5551 Removed at91sam9_eth_initialize() from net/eth.c
5553 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5555 commit 89973f8a82c28ad893c4c3cc56839a8e10fe5f13
5556 Author: Ben Warren <biggerbadderben@gmail.com>
5557 Date: Sun Aug 31 22:22:04 2008 -0700
5559 Introduce netdev.h header file and remove externs
5561 This addresses all drivers whose initializers have already
5562 been moved to board_eth_init()/cpu_eth_init().
5564 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5566 commit 5a8a163ac394d9f4f7ff57f415d82bd673b0068c
5567 Author: Andy Fleming <afleming@freescale.com>
5568 Date: Sun Aug 31 16:33:30 2008 -0500
5570 Add pixis_set_sgmii command
5572 The 8544DS and 8572DS platforms support an optional SGMII riser card to
5573 expose ethernet over an SGMII interface. Once the card is in, it is also
5574 necessary to configure the board such that it uses the card, rather than
5575 the on-board ethernet ports. This can either be done by flipping dip switches
5576 on the motherboard, or by modifying registers in the pixis. Either way
5579 This adds a command to allow users to choose which ports are routed through
5580 the SGMII card, and which through the onboard ports. It also allows users
5581 to revert to the current switch settings.
5583 This code does not work on the 8572, as the PIXIS is different.
5585 Signed-off-by: Andy Fleming <afleming@freescale.com>
5586 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5588 commit 216f2a7156a5fde7b47adc40ad553c888a9cbaa7
5589 Author: Andy Fleming <afleming@freescale.com>
5590 Date: Sun Aug 31 16:33:29 2008 -0500
5592 Add SGMII support for the 8544 DS
5594 The 8544 DS has an optional SGMII Riser card, which uses different PHY
5595 addresses. Check if we are in SGMII mode, and invoke the SGMII Riser
5598 Signed-off-by: Andy Fleming <afleming@freescale.com>
5599 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5601 commit 652f7c2eef76a1340928bd660845441e932d86a2
5602 Author: Andy Fleming <afleming@freescale.com>
5603 Date: Sun Aug 31 16:33:28 2008 -0500
5605 Add support for Freescale SGMII Riser Card
5607 The 8544DS and 8572DS systems have an optional SGMII riser card which
5608 exposes new ethernet ports which are connected to the eTSECs via an
5609 SGMII interface. The SGMII PHYs for this board are offset from the standard
5610 PHY addresses, so this code modifies the passed in tsec_info structure to
5611 use the SGMII PHYs on the card, instead.
5613 Signed-off-by: Andy Fleming <afleming@freescale.com>
5614 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5616 commit 2abe361c03b43e6dcf68f54e96b5c05156c49284
5617 Author: Andy Fleming <afleming@freescale.com>
5618 Date: Sun Aug 31 16:33:27 2008 -0500
5620 Add SGMII support to the tsec
5622 Adds support for configuring the TBI to talk properly with the SerDes.
5624 Signed-off-by: Andy Fleming <afleming@freescale.com>
5625 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5627 commit 75b9d4ae0d69f214eab641caf12ce8af83a39a42
5628 Author: Andy Fleming <afleming@freescale.com>
5629 Date: Sun Aug 31 16:33:26 2008 -0500
5631 Pass in tsec_info struct through tsec_initialize
5633 The tsec driver contains a hard-coded array of configuration information
5634 for the tsec ethernet controllers. We create a default function that works
5635 for most tsecs, and allow that to be overridden by board code. It creates
5636 an array of tsec_info structures, which are then parsed by the corresponding
5637 driver instance to determine configuration. Also, add regs, miiregs, and
5638 devname fields to the tsec_info structure, so that we don't need the kludgy
5641 Signed-off-by: Andy Fleming <afleming@freescale.com>
5642 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5644 commit dd3d1f56a01f460d560766126ee7dfed2ea9bc10
5645 Author: Andy Fleming <afleming@freescale.com>
5646 Date: Sun Aug 31 16:33:25 2008 -0500
5648 tsec: Move tsec.h to include/
5650 This is to prepare the way for board code passing in the tsec_info structure
5652 Signed-off-by: Andy Fleming <afleming@freescale.com>
5653 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5655 commit d23dc394aa69093b6326ad917db04dc0d1aff3f8
5656 Author: Sergei Poselenov <sposelenov@emcraft.com>
5657 Date: Fri Jun 6 15:52:44 2008 +0200
5659 PHY: Add support for the M88E1121R Marvell chip.
5661 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
5662 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
5663 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
5665 commit 1711f3bd16d1c5e9d17b4c0198b426d86999781b
5666 Author: Wolfgang Denk <wd@denx.de>
5667 Date: Tue Sep 2 21:17:36 2008 +0200
5669 fw_env.c: fix build problems with MTD_VERSION=old
5671 (as needed to support old 2.4 Linux kernel based releases)
5673 Signed-off-by: Wolfgang Denk <wd@denx.de>
5675 commit 628ffd73bcff0c9f3bc5a8eeb2c7455fe9d28a51
5676 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5677 Date: Mon Sep 1 17:11:26 2008 +0200
5679 device: make device_register() clone the device
5681 This is expected by the callers, but this fact was hidden well within
5682 the old list implementation.
5684 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5686 commit c75e772a2f061a508bba28ded1b5bea91f0442b0
5687 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5688 Date: Sun Aug 31 23:28:15 2008 +0900
5690 sh: Remove CC line from board's Makefile
5692 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5694 commit 468eae0660de6fdfd9999944c536ecc4797bd944
5695 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5696 Date: Sun Aug 31 23:25:57 2008 +0900
5698 sh: Replaced "@./mkconfig" for @$(MKCONFIG)
5700 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5702 commit 3aeb1ff7482a732503186c742d3a5ded4b7a0d34
5703 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5704 Date: Thu Aug 28 14:50:52 2008 +0900
5706 sh: Add support sh2 to MAKEALL
5708 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5709 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5711 commit 6f3d8bb5faa12dbf3031382286784c978df038ee
5712 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5713 Date: Thu Aug 28 14:52:23 2008 +0900
5715 sh: Fix compile error rsk7203 board
5717 This boards used old type preprocessor.
5718 This patch fix compile error.
5720 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5721 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5723 commit 1c98172e025018552e9bb4c43b0aaee76f79b1aa
5724 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5725 Date: Thu Aug 28 14:53:31 2008 +0900
5727 sh: Fix compile error sh7785lcr board
5729 This boards used old type preprocessor.
5730 This patch fix compile error.
5732 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5733 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5735 commit 6f0da4972e48f99d37bc522814940a6022cd3084
5736 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5737 Date: Fri Aug 22 17:39:09 2008 +0900
5739 sh: Renesas Solutions AP325RXA board support
5741 AP325RXA is SH7723's reference board.
5742 This has SCIF, NOR Flash, Ethernet, USB host, LCDC, SD Host, Camera and other.
5743 In this patch, support SCIF, NOR Flash, and Ethernet.
5745 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5746 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5748 commit ab09f433b50bb83b5e440c335bc3839ee069e534
5749 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5750 Date: Fri Aug 22 17:48:51 2008 +0900
5752 sh: add support Renesas SH7723
5754 Renesas SH7723 has 5 SCIF, SD, Camera, LCDC and other.
5755 This patch supports CPU register's header file and SCIF serial driver.
5757 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5758 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5760 commit c655fad06ba3fb042dbc667724a40e1a9a091248
5761 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5762 Date: Sun Aug 31 23:02:04 2008 +0900
5764 sh: Renesas RSK+ 7203 board support
5766 This adds initial support for the RTE RSK+ SH7203 board.
5768 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5769 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5771 commit 6ede753ddf52a7b0f992d9bccbe5e4a0968ca475
5772 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5773 Date: Thu Jul 3 23:11:02 2008 +0900
5775 sh: Add support Renesas SH7203 processor
5777 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5778 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5780 commit 6ad43d0dd86b612895ddc7f480eb6cdfe793adf9
5781 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5782 Date: Sun Aug 31 22:48:33 2008 +0900
5784 sh: Add support SH2/SH2A which is CPU of Renesas Technology
5786 Add support SH2/SH2A basic function.
5788 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5789 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5791 commit 0d53a47dc0737b6aa3a39caee21410c169441ae5
5792 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5793 Date: Sun Aug 31 22:45:08 2008 +0900
5795 sh: Renesas R0P7785LC0011RL board support
5797 This board has SH7785, 512MB DDR2-SDRAM, NOR Flash,
5798 Graphic, Ethernet, USB, SD, RTC, and I2C controller.
5800 This patch supports the following functions:
5801 - 128MB DDR2-SDRAM (29-bit address mode only)
5806 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5807 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5809 commit b0b6218929bc7de9a6bdb8e564fa8ec2efa71b4e
5810 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5811 Date: Thu Jul 10 19:32:53 2008 +0900
5813 sh: add support for SH7785
5815 Renesas SH7785 has DDR2-SDRAM controller, PCI, and other.
5816 This patch supports CPU register's header file.
5818 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
5819 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5821 commit d6e04258be8f2408845468d3cf722a4cf0433445
5822 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5823 Date: Sun Aug 31 04:45:42 2008 +0200
5825 davinci: fix remaining dm644x_eth
5827 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5829 commit 08ab4e1780fa63c88dd5a5ab52f4ff4ed1ee1878
5830 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5831 Date: Sun Aug 31 04:24:56 2008 +0200
5833 fs: Move conditional compilation to Makefile
5835 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5837 commit c1de7a6daf9c657484e1c6d433f01fccd49a7f48
5838 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5839 Date: Sun Aug 31 04:24:55 2008 +0200
5841 devices: merge to list_head
5843 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5845 commit ef0255fc75f28655f9681422079287d68a14dbaa
5846 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5847 Date: Sun Aug 31 04:24:51 2008 +0200
5851 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5853 commit 71cb31227bee741b274f6c0279b2aac1ab8e28e3
5854 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5855 Date: Sun Aug 31 00:39:48 2008 +0200
5857 smdk6400: add gitignore
5859 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5861 commit f9f692e2b146d4e306b777e6d5f69f1d725b9eb9
5862 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5863 Date: Sun Aug 31 00:39:48 2008 +0200
5865 smdk6400: Use CONFIG_FLASH_CFI_DRIVER
5867 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5869 commit 7c0e5a8db3d1358b0ce3cc85ada0de6341ca4a15
5870 Author: Guennadi Liakhovetski <lg@denx.de>
5871 Date: Sun Aug 31 00:39:47 2008 +0200
5873 smdk6400: remove redundant bootargs definition
5875 Double bootargs setting leads to a duplicated environmant entry.
5877 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5879 commit 11edcfe260f20dcea79284a3e95270989d433854
5880 Author: Guennadi Liakhovetski <lg@denx.de>
5881 Date: Sun Aug 31 00:39:47 2008 +0200
5883 ARM: Add support for S3C6400 based SMDK6400 board
5885 SMDK6400 can only boot U-Boot from NAND-flash. This patch adds a nand_spl
5886 driver for it too. The board can also boot from the NOR flash, but due to
5887 hardware limitations it can only address 64KiB on it, which is not enough
5888 for U-Boot. Based on the original sources by Samsung for U-Boot 1.1.6.
5890 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5892 commit e0056b341069796eaea11eae0fc8eb93a3dceaac
5893 Author: Guennadi Liakhovetski <lg@denx.de>
5894 Date: Sun Aug 31 00:39:47 2008 +0200
5896 NAND: add NAND driver for S3C64XX
5898 Based on the original S3C64XX NAND driver by Samsung for U-Boot 1.1.6.
5900 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5902 commit 3fe7b589f9c7463df39056f8872006a67f56a91c
5903 Author: Guennadi Liakhovetski <lg@denx.de>
5904 Date: Sun Aug 31 00:39:47 2008 +0200
5906 S3C64XX: remove broken HWFLOW support from the serial driver
5908 As noted by Harald Welte, HWFLOW support in the S3C64XX serial driver is
5909 broken and currently unused. Remove it.
5911 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5913 commit 2fb28dcf82048045e1bf5014e938e486fa6c2383
5914 Author: Guennadi Liakhovetski <lg@denx.de>
5915 Date: Sun Aug 31 00:39:47 2008 +0200
5917 serial: add S3C64XX serial driver
5919 Based on the original S3C64XX UART driver by Samsung for U-Boot 1.1.6.
5921 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5923 commit 8262813ca04fc57f5d8856e1828085c136e0f1eb
5924 Author: Guennadi Liakhovetski <lg@denx.de>
5925 Date: Sun Aug 31 00:39:46 2008 +0200
5927 USB: Add support for OHCI controller on S3C6400
5929 Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
5930 try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
5931 it should work too and we could still profit from instruction cache.
5933 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5935 commit 9b07773f8883665b002500c190507e9fd99b7181
5936 Author: Guennadi Liakhovetski <lg@denx.de>
5937 Date: Sun Aug 31 00:39:46 2008 +0200
5939 ARM: Add arm1176 core with S3C6400 SoC
5941 Based on the original S3C64XX port by Samsung for U-Boot 1.1.6.
5943 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
5945 commit fcaac589a68115819ddadcf5c18ded9a5f9e2c75
5946 Author: Sandeep Paulraj <s-paulraj@ti.com>
5947 Date: Sun Aug 31 00:39:46 2008 +0200
5949 ARM DaVinci: Changing function names for EMAC driver
5951 DM644x is just one of a series of DaVinci chips that use the EMAC driver.
5952 By replacing all the function names that start with dm644x_* to davinci_*
5953 we make these function more portable. I have tested this change on my EVM.
5954 DM6467 is another DaVinci SOC which uses the EMAC driver and i will
5955 be sending patches that add DaVinci DM6467 support to the list soon.
5957 Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
5959 commit fbbb1de369ca7d5ace6f7b0ce9d0aee24a6f457b
5960 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
5961 Date: Sat Aug 30 23:21:30 2008 +0200
5963 Integrator[AP/CP] - Remove unused file memsetup.S
5965 - memsetup.s is changed/merged to lowlevel_init.S
5966 memsetup.S has a global label memsetup that just returns back to caller
5967 - memsetup global label is changed/merged to lowlevel_init
5968 This label is not called from anywhere.
5970 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
5972 commit 89d51d022a63be1a851eda983c8cbce1a044f65f
5973 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5974 Date: Wed Aug 27 21:35:52 2008 +0200
5976 ARM DaVinci: Standardize names of directories/files
5978 ARM DaVinci: Standardize names of directories/files.
5980 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5981 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
5983 commit 264bbdd11d01f14f5ea4629556ae63b00b13402d
5984 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5985 Date: Fri Jul 11 15:10:13 2008 -0400
5987 ARM DaVinci: Move common functions to board/davinci/common
5989 ARM DaVinci: Move common functions to board/davinci/common.
5991 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
5993 commit c2b4b2e4814f4ace9015fdb64132894327400bf0
5994 Author: Stefan Roese <sr@denx.de>
5995 Date: Fri Aug 29 11:56:49 2008 +0200
5997 ppc4xx/NAND: Add select_chip function to 4xx NDFC driver
5999 This function is needed for the new NAND infrastructure. We only need
6000 a dummy implementation though for the NDFC.
6002 Signed-off-by: Stefan Roese <sr@denx.de>
6004 commit 3d4a746e2fb4545f07d871049805fb34ae97cc94
6005 Author: Stefan Roese <sr@denx.de>
6006 Date: Fri Aug 29 12:06:27 2008 +0200
6008 ppc4xx: Increase image size for NAND boot target
6010 This is needed since now with HUSH enabled (amcc-common.h) the image
6011 read from NAND exceeds the previous limit.
6013 Signed-off-by: Stefan Roese <sr@denx.de>
6015 commit 6b5049d056cd8ef72d1f2f461ceb2d033d93f759
6016 Author: Ben Warren <biggerbadderben@gmail.com>
6017 Date: Thu Aug 28 23:58:30 2008 -0700
6019 Move MPC512x_FEC driver to drivers/net
6021 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6023 commit 80b00af01b3c9154774de2936f05a051e92f6a03
6024 Author: Ben Warren <biggerbadderben@gmail.com>
6025 Date: Thu Aug 28 23:58:29 2008 -0700
6027 Move MPC5xxx_FEC driver to drivers/net
6029 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6031 commit 3de7bf0e6b1ad2608014096c8192f13229b2e9d7
6032 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6033 Date: Fri Aug 29 21:53:57 2008 +0200
6035 cmd_terminal: remove no need ifdef
6037 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6039 commit 578118bdf122877ae769776be002255be447b4fa
6040 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6041 Date: Fri Aug 29 21:53:57 2008 +0200
6043 common/Makefile: order by functionality
6045 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6047 commit ba7b5b2348b684cf8ec424b2e38e267dc1cfd2fb
6048 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6049 Date: Fri Aug 29 21:53:56 2008 +0200
6051 miiphyutil: Move conditional compilation to Makefile
6053 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6055 commit 81789c39db3f0f6b621df8c0ec66014d701f368e
6056 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6057 Date: Fri Aug 29 21:53:37 2008 +0200
6059 autoscript: Move conditional compilation to Makefile
6061 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6063 commit bbf52df9aa94ffb115b8b1ebeb00d01374bb0a1d
6064 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6065 Date: Fri Aug 29 01:18:11 2008 +0200
6067 crc16: move to lib_generic
6069 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6071 commit 55195773eacefb22dd483a3c560ea30a14263ce1
6072 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6073 Date: Fri Aug 29 01:18:01 2008 +0200
6075 miiphybb: move to drivers/net/phy
6077 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6079 commit e8314035996a9118ac5948df2ff8a2f2161ed67a
6080 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6081 Date: Thu Aug 28 12:31:51 2008 +0200
6083 soft_spi: move to drivers/spi
6085 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6087 commit 4d75e0aa9caca64d4a1d55d95cd1ca5f30d9fc56
6088 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6089 Date: Thu Aug 28 12:31:51 2008 +0200
6091 soft_i2c: move to drivers/i2c
6093 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6095 commit 717a222229fdb77703e9174d0eb08a4b41febf49
6096 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6097 Date: Thu Aug 28 12:31:48 2008 +0200
6099 gunzip: move to lib_generic
6101 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
6103 commit 52aef8f9ba28b747973bf76741c23db658d5773c
6104 Author: Wolfgang Ocker <weo@reccoware.de>
6105 Date: Tue Aug 26 19:55:23 2008 +0200
6107 ppc4xx: NAND configuration
6109 Made NAND bank configuration setting a config variable.
6111 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
6112 Signed-off-by: Stefan Roese <sr@denx.de>
6114 commit 5bc542a593abc9e974fbd34704af85c37c366c60
6115 Author: Victor Gallardo <vgallardo@amcc.com>
6116 Date: Thu Aug 28 16:03:28 2008 -0700
6118 ppc4xx: fix UIC external_interrupt hang on UIC0
6120 This patch fixes a UIC external_interrupt hang if critical or non-critical
6121 interrupt is set at the same time as a normal interrupt is set on UIC0.
6123 Signed-off-by: Victor Gallardo <vgallardo@amcc.com>
6124 Signed-off-by: Stefan Roese <sr@denx.de>
6126 commit 04737d5ffd16248cb80ab3dd4f3765057a803f18
6127 Author: Prodyut Hazarika <phazarika@amcc.com>
6128 Date: Wed Aug 27 16:39:00 2008 -0700
6130 ppc4xx: Optimizations/Cleanups for IBM DDR2 Memory Controller
6132 Removed Magic numbers from Initialization preload registers
6133 Tested with Kilauea, Glacier, Canyonlands and Katmai boards
6134 About 5-7% improvement seen for LMBench memtests
6136 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
6137 Signed-off-by: Stefan Roese <sr@denx.de>
6139 commit 8a490422bed685c9491274ec997f62061d88620b
6140 Author: John Rigby <jrigby@freescale.com>
6141 Date: Thu Aug 28 13:17:07 2008 -0600
6143 ADS5121: Fix NOR and CPLD ALE timing for rev 2 silicon
6145 MPC5121 rev 2 silicon has a new register for controlling how long
6146 CS is asserted after deassertion of ALE in multiplexed mode.
6148 The default is to assert CS together with ALE. The alternative
6149 is to assert CS (ALEN+1)*LPC_CLK clocks after deassertion of ALE.
6151 The default is wrong for the NOR flash and CPLD on the ADS5121.
6153 This patch turns on the alternative for CS0 (NOR) and CS2 (CPLD)
6154 it does so conditionally based on silicon rev 2.0 or greater.
6156 Signed-off-by: Martha J Marx <mmarx@silicontkx.com>
6157 Signed-off-by: John Rigby <jrigby@freescale.com>
6159 commit 5d9a5efa4b332f442b54a755d49969123c3a8742
6160 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6161 Date: Tue Aug 19 00:56:46 2008 +0600
6163 Add I2C frequency dividers for ColdFire
6165 The existing I2C freqency dividers for FDR does not apply
6166 to ColdFire platforms; thus, a seperate table is added
6167 based on MCF5xxx Reference Manual
6169 Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
6170 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6171 Acked-by: Tabi Timur <timur@freescale.com>
6173 commit eec567a67e00d1ed8d941e9098b7d421f4091abf
6174 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6175 Date: Tue Aug 19 03:01:19 2008 +0600
6177 ColdFire: I2C fix for multiple platforms
6179 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6181 commit d53cf6a9c7423cba668b867978648645f71c3090
6182 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6183 Date: Tue Aug 19 00:37:13 2008 +0600
6185 ColdFire: Add CONFIG_MII_INIT for M5272C3
6187 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6189 commit f78ced3028d4130b24a318943a70cf5584ab16f4
6190 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6191 Date: Tue Aug 19 00:26:25 2008 +0600
6193 ColdFire: Multiple fixes for MCF5445x platforms
6195 Add FEC pin set and mii reset in __mii_init(). Change
6196 legacy flash vendor from 2 to AMD LEGACY (0xFFF0),
6197 change cfi_offset to 0, and change CFG_FLASH_CFI to
6198 CONFIG_FLASH_CFI_LEGACY. Correct M54451EVB and
6199 M54455EVB env settings in configuration file.
6201 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6203 commit 454e725b3a9537b7f273bbd0cbca180f23a7a6e8
6204 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6205 Date: Fri Aug 15 18:24:25 2008 +0000
6207 ColdFire: Change the SDRAM BRD2WT timing from 3 to 7
6209 The user manuals recommend 7.
6211 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
6212 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6214 commit 79e0799cf6e88d98d77b216a55234bf674b59a4e
6215 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6216 Date: Fri Aug 15 16:50:07 2008 +0000
6218 ColdFire: Raise uart baudrate to 115200 bps
6220 M5249EVB, M5271EVB, M5272C3, M5275EVB and M5282EVB platforms
6221 uart baudrate increase from 19200 to 115200 bps
6223 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6225 commit ab6ba842682552ccf071d0034da0a20633d1d1ac
6226 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6227 Date: Wed Aug 13 12:07:03 2008 +0000
6229 ColdFire: Fix board.c warning message
6231 Implicit declaration of nand_init() warning message
6233 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6235 commit 5798b1c4650e9a8713c95b25c1e669a2bc80a97b
6236 Author: Kumar Gala <galak@kernel.crashing.org>
6237 Date: Wed Aug 27 01:10:34 2008 -0500
6239 FSL DDR: Remove duplicate setting of cs0_bnds register on 86xx.
6241 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6243 commit 258c37b147353bc522ffc33dfbd7d0d9cd7c32d7
6244 Author: Heiko Schocher <hs@denx.de>
6245 Date: Thu Aug 21 20:44:49 2008 +0200
6247 mpc52xx: added support for the MPC5200 based MUC.MC52 board from MAN.
6249 Signed-off-by: Heiko Schocher <hs@denx.de>
6251 commit 9cff4448a9cb882defe6c8bde73b77fc0c636799
6252 Author: Kumar Gala <galak@kernel.crashing.org>
6253 Date: Tue Aug 19 14:46:36 2008 -0500
6255 mpc85xx: remove redudant code with lib_ppc/interrupts.c
6257 For some reason we duplicated the majority of code in lib_ppc/interrupts.c
6258 not show how that happened, but there is no good reason for it.
6260 Use the interrupt_init_cpu() and timer_interrupt_cpu() since its why
6263 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6265 commit 9490a7f1a9484617bad75c60807ce02c8a3a6d56
6266 Author: Kumar Gala <galak@kernel.crashing.org>
6267 Date: Fri Jul 25 13:31:05 2008 -0500
6269 mpc85xx: Add support for the MPC8536DS reference board
6271 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6272 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
6273 Signed-off-by: Dejan Minic <minic@freescale.com>
6274 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
6275 Signed-off-by: Dave Liu <daveliu@freescale.com>
6276 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6278 commit ef50d6c06ece74fb17e8d7510e62cad9df8b810d
6279 Author: Kumar Gala <galak@kernel.crashing.org>
6280 Date: Tue Aug 12 11:14:19 2008 -0500
6282 mpc85xx: Add support for the MPC8536
6284 The MPC8536 Adds SDHC and SATA controllers to the PQ3 family. We
6285 also have SERDES init code for the 8536.
6287 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6288 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
6289 Signed-off-by: Dejan Minic <minic@freescale.com>
6290 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
6291 Signed-off-by: Dave Liu <daveliu@freescale.com>
6293 commit 129ba616b3813dde861f25f3d8a3c47c5c36ad5f
6294 Author: Kumar Gala <galak@kernel.crashing.org>
6295 Date: Tue Aug 12 11:13:08 2008 -0500
6297 mpc85xx: Add support for the MPC8572DS reference board
6299 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6301 commit 457caecdbca3df21a93abff19eab12dbc61b7897
6302 Author: Kumar Gala <galak@kernel.crashing.org>
6303 Date: Wed Aug 27 01:05:35 2008 -0500
6305 FSL DDR: Remove old SPD support from cpu/mpc85xx
6307 All 85xx boards have been converted to the new code so we can
6308 remove the old SPD DDR setup code.
6310 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6312 commit 0e7927db138976469e7257e29c1338050a50fcd9
6313 Author: Kumar Gala <galak@kernel.crashing.org>
6314 Date: Wed Aug 27 01:04:07 2008 -0500
6316 FSL DDR: Convert STXSSA to new DDR code.
6318 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6320 commit c360d9b970fbb9c13744c355879671165bbb9b9e
6321 Author: Kumar Gala <galak@kernel.crashing.org>
6322 Date: Wed Aug 27 01:03:42 2008 -0500
6324 FSL DDR: Convert STXGP3 to new DDR code.
6326 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6328 commit 8e55313b7ae12352a343f9b9962e662dbd897187
6329 Author: Kumar Gala <galak@kernel.crashing.org>
6330 Date: Tue Aug 26 23:52:58 2008 -0500
6332 FSL DDR: Convert SBC8560 to new DDR code.
6334 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6336 commit 9658bec2e8f55d56ca1be70090ce5a348be4980f
6337 Author: Kumar Gala <galak@kernel.crashing.org>
6338 Date: Tue Aug 26 23:52:32 2008 -0500
6340 FSL DDR: Convert MPC8540EVAL to new DDR code.
6342 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6344 commit 6bfa8f723cfd82c55e3ef5620ade396916470a70
6345 Author: Kumar Gala <galak@kernel.crashing.org>
6346 Date: Tue Aug 26 23:52:07 2008 -0500
6348 FSL DDR: Convert PM856 to new DDR code.
6350 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6352 commit d53bd3e17bd4f460257c19255569ea6dcfaae817
6353 Author: Kumar Gala <galak@kernel.crashing.org>
6354 Date: Tue Aug 26 23:51:49 2008 -0500
6356 FSL DDR: Convert PM854 to new DDR code.
6358 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6360 commit 33b9079ba20926f14238fff863b68a98e938948e
6361 Author: Kumar Gala <galak@kernel.crashing.org>
6362 Date: Tue Aug 26 23:15:28 2008 -0500
6364 FSL DDR: Convert sbc8548 to new DDR code.
6366 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6368 commit a947e4c7eb15cea1d9fb633955c516aab5ad35dd
6369 Author: Kumar Gala <galak@kernel.crashing.org>
6370 Date: Tue Aug 26 23:14:14 2008 -0500
6372 FSL DDR: Convert atum8548 to new DDR code.
6374 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6376 commit be0bd8234b9777ecd63c4c686f72af070d886517
6377 Author: Kumar Gala <galak@kernel.crashing.org>
6378 Date: Tue Aug 26 22:56:56 2008 -0500
6380 FSL DDR: Convert socrates to new DDR code.
6382 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6384 commit 1167a2fd56138b716e01370c4267f3b70bf9ffa0
6385 Author: Kumar Gala <galak@kernel.crashing.org>
6386 Date: Tue Aug 26 08:02:30 2008 -0500
6388 FSL DDR: Convert MPC8544DS to new DDR code.
6390 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6392 commit e6f5b35b41ddbd637bb9ca4ad985b1e0b07dae0e
6393 Author: Jon Loeliger <jdl@freescale.com>
6394 Date: Tue Mar 18 13:51:05 2008 -0500
6396 FSL DDR: Convert MPC8568MDS to new DDR code.
6398 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6399 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6401 commit e31d2c1e2bc954dc32e33bb2076139f85b95f8e6
6402 Author: Jon Loeliger <jdl@freescale.com>
6403 Date: Tue Mar 18 13:51:06 2008 -0500
6405 FSL DDR: Convert MPC8548CDS to new DDR code.
6407 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6408 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6410 commit aa11d85cf318b961e029fe50d68ca47d004bce93
6411 Author: Jon Loeliger <jdl@freescale.com>
6412 Date: Mon Mar 17 15:48:18 2008 -0500
6414 FSL DDR: Convert MPC8541CDS to new DDR code.
6416 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6417 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6419 commit 2b40edb10d81da7bba724edbccd7f53777112579
6420 Author: Jon Loeliger <jdl@freescale.com>
6421 Date: Tue Mar 18 11:12:42 2008 -0500
6423 FSL DDR: Convert MPC8555ADS to new DDR code.
6425 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6426 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6428 commit 8b625114e8bc5a6b436181167a6e7fcd3303dd2c
6429 Author: Jon Loeliger <jdl@freescale.com>
6430 Date: Tue Mar 18 11:12:44 2008 -0500
6432 FSL DDR: Convert MPC8560ADS to new DDR code.
6434 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6435 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6437 commit 9617c8d49a21703eaf13a4033ab1a56eecc033cc
6438 Author: Kumar Gala <galak@kernel.crashing.org>
6439 Date: Fri Jun 6 13:12:18 2008 -0500
6441 FSL DDR: Convert MPC8540ADS to new DDR code.
6443 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6445 commit 2a6c2d7ab2a66660f40a6cd3de2eb29ee29d9693
6446 Author: Kumar Gala <galak@kernel.crashing.org>
6447 Date: Tue Aug 26 21:34:55 2008 -0500
6449 FSL DDR: Add 85xx specific register setting
6451 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6453 commit 6fb1b7346849ccd0c20306143e334f5b76143070
6454 Author: Kumar Gala <galak@kernel.crashing.org>
6455 Date: Mon Jun 9 11:07:46 2008 -0500
6457 FSL DDR: Add e500 TLB helper for DDR code
6459 Provide a helper function that board code can call to map TLBs when
6462 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6464 commit d26b739afe5a6760bd345743188759cd9d0f3b47
6465 Author: Andrew Dyer <adyer@righthandtech.com>
6466 Date: Tue Aug 26 17:03:38 2008 -0500
6468 dm9000 remove dead external phy support, gpio fix
6470 dm9000 has code to detect and initialize external phy parts, but later
6471 on in the code the part is forced to use the internal phy
6472 unconditionally. Remove the unused/untested code.
6474 change the GPIO initialization so that only the GPIO used as an
6475 internal phy reset (hardwired in the chip) is set as an output. The
6476 remaining GPIO need to be handled by board specific code to prevent
6477 possible drive conflicts. Set as inputs for safety.
6479 replace a few magic numbers with defines
6481 Signed-off-by: Andrew Dyer <adyer@righthandtech.com>
6482 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6484 commit a1573db0c07c8ba99e9c373bb07ecd6f59da672c
6485 Author: Peter Tyser <ptyser@xes-inc.com>
6486 Date: Tue Aug 26 11:17:48 2008 -0500
6488 Standardize bootp, tftpboot, rarpboot, dhcp, and nfs command descriptions
6490 cmd_net.c command descriptions were updated to describe the optional
6491 hostIPaddr argument. The dhcp command help message was also updated
6492 to more closely reflect the other commands in cmd_net.c
6494 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
6495 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6497 commit 51dfe1382ebaf691485badfa0ea5e75b0710531b
6498 Author: Remy Bohmer <linux@bohmer.net>
6499 Date: Wed Aug 20 11:30:28 2008 +0200
6501 Fix bogus error message in the DHCP handler
6503 The DHCP handler has 1 state that is not listed in this case, causing a
6504 failure message when there is actually no failure.
6506 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6507 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6509 commit 61365501a0e2cae9c1df2818b7b5b3f52c450d18
6510 Author: Remy Bohmer <linux@bohmer.net>
6511 Date: Wed Aug 20 11:30:27 2008 +0200
6513 Fix compile error when CONFIG_BOOTP_RANDOM_DELAY is set.
6515 The option CONFIG_BOOTP_RANDOM_DELAY does not compile, because of a
6516 missing extern inside the net/bootp.h header
6518 Signed-off-by: Remy Bohmer <linux@bohmer.net>
6519 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6521 commit 1803f7f91ff35ca402259065df7557107dcf28a2
6522 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6523 Date: Tue Aug 19 21:26:32 2008 +0000
6525 ColdFire: Add FEC Buffer descriptors in SRAM
6527 Add FEC Buffer descriptors and data buffer in SRAM for
6528 faster execution and access.
6530 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6531 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6533 commit 429be27ce195210d4b9decf9e867b9ca6155a87d
6534 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6535 Date: Thu Aug 21 23:55:11 2008 +0000
6537 Fix ColdFire FEC warning messages
6539 Types mismatch and implicit declaration of icache_invalid()
6542 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
6543 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6545 commit 6a002171098e968bd5b362347d2831224fab6048
6546 Author: Ben Warren <biggerbadderben@gmail.com>
6547 Date: Sat Jul 12 00:17:50 2008 -0700
6549 Moved initialization of SKGE Ethernet driver to board code.
6551 The only board using this driver is the SL8245 board.
6552 Removed initialization for the driver from net/eth.c
6554 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6556 commit 8379f42bc745eb9e4ca551a30fd2d0a63f740d75
6557 Author: Ben Warren <biggerbadderben@gmail.com>
6558 Date: Sat Jul 12 00:08:45 2008 -0700
6560 Moved conditional compilation to Makefile for SK98 Ethernet driver
6562 Brute-force removal of #ifdefs. Didn't touch the code.
6563 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6565 commit 65d3d99c28dc363d15eaee78225ff643df499b97
6566 Author: Ben Warren <biggerbadderben@gmail.com>
6567 Date: Fri Jul 11 23:42:19 2008 -0700
6569 Moved initialization of ULI526X Ethernet driver to board code.
6571 The only board using this driver is the Freescale MPC8610HPCD board.
6572 Removed initialization for the driver from net/eth.c
6574 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6576 commit 914947313a710f5dcf06beaf7f2aa24f1ebcce4f
6577 Author: Ben Warren <biggerbadderben@gmail.com>
6578 Date: Fri Jul 11 23:15:28 2008 -0700
6580 Moved initialization of Blackfin EMAC Ethernet controller to board_eth_init()
6582 Added board_eth_init() function to bf537-stamp board.
6583 Removed initialization for the Blackin EMAC driver from net/eth.c
6585 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6587 commit fc363ce35408f348cacced68505f3747a53e3d7c
6588 Author: Ben Warren <biggerbadderben@gmail.com>
6589 Date: Wed Jul 9 01:04:19 2008 -0700
6591 Moved initialization of GRETH Ethernet driver to CPU directory
6593 Added a cpu_eth_init() function to leon2/leon3 CPU directories and
6594 removed code from net/eth.c
6596 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6598 commit 86882b80771309bceb11c6accfd7f6f90ade8bfc
6599 Author: Ben Warren <biggerbadderben@gmail.com>
6600 Date: Tue Aug 26 22:16:25 2008 -0700
6602 Moved initialization of MCFFEC Ethernet driver to CPU directory
6604 Added a cpu_eth_init() function to coldfire CPU directories and
6605 removed code from net/eth.c
6607 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6609 commit b31da88b9c160d80d42a59cbbb31e24f27184d5c
6610 Author: Ben Warren <biggerbadderben@gmail.com>
6611 Date: Tue Aug 26 22:12:36 2008 -0700
6613 Moved initialization of FSL_MCDMAFEC Ethernet driver to CPU directory
6615 Added a cpu_eth_init() function to cpu/mcf547x_8x directory and
6616 removed code from net/eth.c
6618 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
6620 commit b5710d9974f6f0f3ddb4e67d6cccc262ab37049e
6621 Author: Kumar Gala <galak@kernel.crashing.org>
6622 Date: Tue Aug 26 15:01:38 2008 -0500
6624 FSL DDR: Remove old SPD support from cpu/mpc86xx
6626 All 86xx boards have been converted to the new code so we can
6627 remove the old SPD DDR setup code.
6629 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6631 commit 9bd4e5911b750837515466bc7449087698b88e0e
6632 Author: Kumar Gala <galak@kernel.crashing.org>
6633 Date: Tue Aug 26 15:01:37 2008 -0500
6635 FSL DDR: Convert SBC8641D to new DDR code.
6637 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6639 commit 39aa1a73483e1ac2bd56d5523abfc3970ee82c77
6640 Author: Jon Loeliger <jdl@freescale.com>
6641 Date: Tue Aug 26 15:01:36 2008 -0500
6643 FSL DDR: Convert MPC8610HPCD to new DDR code.
6645 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6646 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6648 commit 6a8e5692933e8e6d6e5ba7e594f49dd6d4c3a263
6649 Author: Kumar Gala <galak@kernel.crashing.org>
6650 Date: Tue Aug 26 15:01:35 2008 -0500
6652 FSL DDR: Convert MPC8641HPCN to new DDR code.
6654 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6655 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6657 commit 46ff4f1100ea64a01d21cc008ce85ac15eb1821f
6658 Author: Kumar Gala <galak@kernel.crashing.org>
6659 Date: Tue Aug 26 15:01:34 2008 -0500
6661 FSL DDR: Add 86xx specific register setting
6663 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6665 commit 233fdd502a6c227f476212b3097653ad48d7e254
6666 Author: Kumar Gala <galak@kernel.crashing.org>
6667 Date: Tue Aug 26 15:01:32 2008 -0500
6669 FSL DDR: Add DDR2 DIMM paramter support
6671 Compute DIMM parameters based upon the SPD information.
6673 Signed-off-by: James Yang <James.Yang@freescale.com>
6674 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6675 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6677 commit 05c05a2363a6ac11e0e405926034546ffad71fad
6678 Author: Kumar Gala <galak@kernel.crashing.org>
6679 Date: Tue Aug 26 15:01:30 2008 -0500
6681 FSL DDR: Add DDR1 DIMM paramter support
6683 Compute DIMM parameters based upon the SPD information in spd.
6685 Signed-off-by: James Yang <James.Yang@freescale.com>
6686 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6687 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6689 commit 58e5e9aff147e8c7e2bc1406bf9384f65f020ffa
6690 Author: Kumar Gala <galak@kernel.crashing.org>
6691 Date: Tue Aug 26 15:01:29 2008 -0500
6693 FSL DDR: Rewrite the FSL mpc8xxx DDR controller setup code.
6695 The main purpose of this rewrite it to be able to share the same
6696 initialization code on all FSL PowerPC products that have DDR
6697 controllers. (83xx, 85xx, 86xx).
6699 The code is broken up into the following steps:
6702 COMPUTE_COMMON_PARMS
6708 This allows us to share more code an easily allow for board specific code
6711 Additionally this code base adds support for >4G of DDR and provides a
6712 foundation for supporting interleaving on processors with more than one
6715 Signed-off-by: James Yang <James.Yang@freescale.com>
6716 Signed-off-by: Jon Loeliger <jdl@freescale.com>
6717 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
6718 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
6719 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6721 commit f784e32b4bce0013983506b11af4b85b8ca3d36e
6722 Author: Kumar Gala <galak@kernel.crashing.org>
6723 Date: Tue Aug 26 15:01:28 2008 -0500
6725 FSL DDR: Provide a generic set_ddr_laws()
6727 Provide a helper function that will setup the last available
6728 LAWs (upto 2) for DDR. Useful for SPD/dyanmic DDR setting code.
6730 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6732 commit 0f2cbe3f5eddbdf3848265f35e4f714434929cff
6733 Author: James Yang <James.Yang@freescale.com>
6734 Date: Tue Aug 26 15:01:27 2008 -0500
6736 Add proper SPD definitions for DDR1/2/3
6738 Also adds helper functions for DDR1/2 to verify the checksum.
6740 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6742 commit 285db74716c724ae8a0ff177878fd09a74428c7b
6743 Author: Wolfgang Denk <wd@denx.de>
6744 Date: Wed Aug 27 01:02:48 2008 +0200
6748 Signed-off-by: Wolfgang Denk <wd@denx.de>
6750 commit adf22b66d8bf05bd46e098cf71e6dca29b30aa7b
6751 Author: Heiko Schocher <hs@denx.de>
6752 Date: Tue Aug 19 10:08:49 2008 +0200
6754 Add support for muas3001 board (MPC8270)
6756 Signed-off-by: Heiko Schocher <hs@denx.de>
6758 commit 322098bff32410d2a00031649b47c4ec90a66d9a
6759 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
6760 Date: Tue Aug 19 08:31:18 2008 +0530
6762 common/cmd_load.c cleanup - remove unused variables
6764 - Remove unused global variable os_data_count.
6765 - Remove unused variable z.
6767 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
6769 commit 306620b762a4f9fa6678568ad2e8772dec145208
6770 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
6771 Date: Mon Aug 18 13:35:27 2008 +0200
6775 MVS1 board has reached end-of-life and can be removed completely.
6777 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
6779 commit 40d7e99d374ba0a0a29cd1a8ba40d3b7c2c175c7
6780 Author: Kumar Gala <galak@kernel.crashing.org>
6781 Date: Fri Aug 15 08:24:45 2008 -0500
6783 bootm: refactor do_reset and os boot function args
6785 There is no need for each OS specific function to call do_reset() we
6786 can just do it once in bootm. This means its feasible on an error for
6787 the OS boot function to return.
6789 Also, remove passing in cmd_tbl_t as its not needed by the OS boot
6790 functions. flag isn't currently used but might be in the future so
6793 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6795 commit 40afac22a9c602e55c501c800f1c064324711b56
6796 Author: Kumar Gala <galak@kernel.crashing.org>
6797 Date: Fri Aug 15 08:24:44 2008 -0500
6799 fdt: Added resize command
6801 Resize the fdt to size + padding to 4k boundary
6803 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6805 commit 2a1a2cb6e2b87ee550e6f27b647d23331dfd5e1b
6806 Author: Kumar Gala <galak@kernel.crashing.org>
6807 Date: Fri Aug 15 08:24:43 2008 -0500
6809 fdt: refactor initrd related code
6811 Created a new fdt_initrd() to deal with setting the initrd properties
6812 in the device tree and fixing up the mem reserve. We can use this
6813 both in the choosen node handling and lets us remove some duplicated
6814 code when we fixup the initrd info in bootm on PPC.
6816 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6818 commit 3082d2348c8e13342f5fdd10e9b3f7408062dbf9
6819 Author: Kumar Gala <galak@kernel.crashing.org>
6820 Date: Fri Aug 15 08:24:42 2008 -0500
6822 fdt: refactor fdt resize code
6824 Move the fdt resizing code out of ppc specific boot code and into
6825 common fdt support code.
6827 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6829 commit 396f635b8ff3ccbc38d75d5eda98444c6466810a
6830 Author: Kumar Gala <galak@kernel.crashing.org>
6831 Date: Fri Aug 15 08:24:41 2008 -0500
6833 bootm: refactor image detection and os load steps
6835 Created a bootm_start() that handles the parsing and detection of all
6836 the images that will be used by the bootm command (OS, ramdisk, fdt).
6837 As part of this we now tract all the relevant image offsets in the
6838 bootm_headers_t struct. This will allow us to have all the needed
6839 state for future sub-commands and lets us reduce a bit of arch
6840 specific code on SPARC.
6842 Created a bootm_load_os() that deals with decompression and loading
6845 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6847 commit e906cfae08e8cc2447f59b1bc4c22ab9c3c286d2
6848 Author: Kumar Gala <galak@kernel.crashing.org>
6849 Date: Fri Aug 15 08:24:40 2008 -0500
6851 bootm: move lmb into the bootm_headers_t structure
6853 To allow for persistent state between future bootm subcommands we
6854 need the lmb to exist in a global state.
6855 Moving it into the bootm_headers_t allows us to do that.
6857 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6859 commit 54f9c86691309b2f919f567f9255b8bcad2c7651
6860 Author: Kumar Gala <galak@kernel.crashing.org>
6861 Date: Fri Aug 15 08:24:39 2008 -0500
6863 bootm: Set working fdt address as part of the bootm flow
6865 Set the fdt working address so "fdt FOO" commands can be used as part
6866 of the bootm flow. Also set an the environment variable "fdtaddr"
6869 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6871 commit 06a09918f3903450313e2047a9cc258bf5872f46
6872 Author: Kumar Gala <galak@kernel.crashing.org>
6873 Date: Fri Aug 15 08:24:38 2008 -0500
6875 bootm: refactor fdt locating and relocation code
6877 Move the code that handles finding a device tree blob and relocating
6878 it (if needed) into common code so all arch's have access to it.
6880 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6882 commit c4f9419c6b54958e0eddbcbc9e5a4a7b7ec99865
6883 Author: Kumar Gala <galak@kernel.crashing.org>
6884 Date: Fri Aug 15 08:24:37 2008 -0500
6886 bootm: refactor ramdisk locating code
6888 Move determing if we have a ramdisk and where its located into the
6889 common code. Keep track of the ramdisk start and end in the
6890 bootm_headers_t image struct.
6892 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6894 commit c160a9544743e80e8889edb2275538e7764ce334
6895 Author: Kumar Gala <galak@kernel.crashing.org>
6896 Date: Fri Aug 15 08:24:36 2008 -0500
6898 bootm: refactor entry point code
6900 Move entry point code out of each arch and into common code.
6901 Keep the entry point in the bootm_headers_t images struct.
6903 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
6905 commit 20220d22b9f41446288588cd2e457e0077a18bed
6906 Author: Randy Vinson <rvinson@mvista.com>
6907 Date: Wed Aug 13 11:44:57 2008 -0700
6909 mpc7448hpc2: Fix PCI I/O space mapping.
6911 PCI I/O space is currently mapped 1:1 at 0xFA000000. Linux requires
6912 PCI I/O space to start at 0 on the PCI bus. This patch maps PCI I/O
6913 space such that 0xFA000000 in the processor's address space maps to 0
6916 Signed-off-by Randy Vinson <rvinson@mvista.com>
6917 Acked-by: Roy Zang <tie-fei.zang@freescale.com>
6919 commit b4e07520bbb5467ad72eb92a5c9177d2797b9e30
6920 Author: Guennadi Liakhovetski <lg@denx.de>
6921 Date: Wed Aug 13 18:10:26 2008 +0200
6923 i.MX31: Specify maintainers for i.MX31-based boards
6925 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
6926 Signed-off-by: Wolfgang Denk <wd@denx.de>
6928 commit 51e46e28fda4bbdf5149ac7f67d62fcc8df4da63
6929 Author: Wolfgang Denk <wd@denx.de>
6930 Date: Tue Aug 26 15:01:28 2008 +0200
6932 ADS5121: adjust image addresses in RAM and flash
6934 Use the same mapping in flash as used by Linux
6936 Signed-off-by: Wolfgang Denk <wd@denx.de>
6938 commit 19f101412c16edee9fd55db4039e1d68a833b28b
6939 Author: Wolfgang Denk <wd@denx.de>
6940 Date: Tue Aug 26 13:14:34 2008 +0200
6942 cmd_mem.c: Fix help message alignment
6944 Bug was introced by "Big white-space cleanup" (53677ef1)
6946 Signed-off-by: Wolfgang Denk <wd@denx.de>
6948 commit 1a9eeb78b825bfade31d7606a2fe3b9eca9e35be
6949 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
6950 Date: Wed Aug 20 11:11:52 2008 +0200
6952 change mvBL-M7 default env and move to vendor subdir
6954 fix mvBL-M7 config and move to matrix_vision subdir
6956 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
6957 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6959 commit 002d27caf26e7eb913d474d3a91f67d56c8c31d5
6960 Author: Nick Spence <nick.spence@freescale.com>
6961 Date: Fri Aug 22 23:52:40 2008 -0700
6963 MPC83XX: Add miscellaneous registers and #defines to support MPC83xx family devices
6965 This patch adds elements to the 83xx sysconf structure and #define values that are used
6966 by mpc83xx family devices.
6968 Signed-off-by: Nick Spence <nick.spence@freescale.com>
6969 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6971 commit 447ad5768abda669ac0e7f46fcdb62fbe828d637
6972 Author: Ira W. Snyder <iws@ovro.caltech.edu>
6973 Date: Fri Aug 22 11:00:15 2008 -0700
6975 MPC8349EMDS: Add PCI Agent (PCISLAVE) support
6977 Add the ability for the MPC8349EMDS to run in PCI Agent mode, acting as a
6978 PCI card rather than a host computer.
6980 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
6981 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6983 commit 4ff9aea9d6b5602683a920951ef896996438af62
6984 Author: Ira W. Snyder <iws@ovro.caltech.edu>
6985 Date: Fri Aug 22 11:00:14 2008 -0700
6987 mpc83xx: add PCISLAVE support to 83XX_GENERIC_PCI setup code
6989 This adds a helper function to unlock the PCI configuration bit, so that
6990 any extra PCI setup (such as outbound windows, etc.) can be done after
6991 using the 83XX_GENERIC_PCI code to set up the PCI bus.
6993 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
6994 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
6996 commit 162338e1fcde231ca4d562e5ebd7859456731691
6997 Author: Ira W. Snyder <iws@ovro.caltech.edu>
6998 Date: Fri Aug 22 11:00:13 2008 -0700
7000 MPC8349EMDS: use 83XX_GENERIC_PCI setup code
7002 Change the MPC8349EMDS board to use the generic PCI initialization code
7003 for the mpc83xx cpu.
7005 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
7006 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7008 commit f4e55a4941e8ba46bc06020b2747928adf8fdee7
7009 Author: Kim Phillips <kim.phillips@freescale.com>
7010 Date: Mon Aug 25 14:53:09 2008 -0500
7012 fix out of tree building
7014 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
7016 commit a49d10cf027d059ee15c262010a05cdaec0961e1
7017 Author: Wolfgang Denk <wd@denx.de>
7018 Date: Mon Aug 25 23:45:41 2008 +0200
7020 Minor coding style cleanup, updte CHANGELOG
7022 Signed-off-by: Wolfgang Denk <wd@denx.de>
7024 commit 4d56e8dea670757c801a6a65531f02a8f981ce1f
7025 Author: Stefan Roese <sr@denx.de>
7026 Date: Wed Aug 20 20:29:38 2008 +0200
7028 RTC: Fix Makefile problem with COBJS-$(CONFIG_RTC_DS1307 || CONFIG_RTC_DS1338)
7030 This "||" doesn't seem to work. Now using the idea suggest by Scott Wood
7031 to combine both config options into one line. This even allows defining
7032 both options and not generating the target object twice.
7034 Signed-off-by: Stefan Roese <sr@denx.de>
7036 commit 079edb913dbae147b50a488cf02e03f473fc5f28
7037 Author: Jens Gehrlein <sew_s@tqs.de>
7038 Date: Fri Jul 4 16:50:05 2008 +0200
7040 MX31: fix bit masks in function mx31_decode_pll()
7042 Bits MPCTL[MFN] and MPCTL[MFD] were not fully covered.
7044 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
7046 commit e8f1207bbf2df6fb693ee1aa3329b2014c92e5e6
7047 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
7048 Date: Mon Aug 25 11:11:34 2008 +0200
7050 Correct ARM Versatile Timer Initialization
7052 - According to ARM Dual-Timer Module (SP804) TRM (ARM DDI0271),
7053 -- Timer Value Register @ TIMER Base + 4 is Read-only.
7054 -- Prescale Value (Bits 3-2 of TIMER Control register)
7055 can only be one of 00,01,10. 11 is undefined.
7056 -- CFG_HZ for Versatile board is set to
7057 #define CFG_HZ (1000000 / 256)
7058 So Prescale bits is set to indicate
7059 - 8 Stages of Prescale, Clock divided by 256
7060 - The Timer Control Register has one Undefined/Shouldn't Use Bit
7061 So we should do read/modify/write Operation
7063 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
7065 commit 535cfa4f3de86cf48d6c0af1daf33aebdca089f9
7066 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
7067 Date: Mon Aug 25 11:30:29 2008 +0200
7069 Add ARM AMBA PL031 RTC Support
7071 Signed-off-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
7073 commit e39411674669cc880e1ec4a8ca4794fb15c33a45
7074 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7075 Date: Tue Aug 19 16:21:03 2008 -0400
7077 ARM DaVinci: Removed redundant NAND initialization code.
7079 ARM DaVinci: Removed redundant NAND initialization code.
7081 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7083 commit b3fb663b20d995ca41327db877ddb168279b3f62
7084 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7085 Date: Tue Aug 19 16:21:00 2008 -0400
7087 ARM DaVinci: Fix compilation error with new MTD code.
7089 ARM DaVinci: Fix compilation error with new MTD code.
7091 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
7093 commit 109c30fb8edea1a15d37a6ce787cd5faf33d8e43
7094 Author: Gerald Van Baren <vanbaren@cideas.com>
7095 Date: Fri Aug 22 14:37:05 2008 -0400
7097 Add note on dereferencing /aliases pointers
7099 Replace the "must quote special characters" note with a hint on
7100 how to dereference /aliases pointers by omitting the leading "/".
7101 This feature was introduced by Kumar Gala as a libfdt enhancement
7102 in commit ed035708235332c3c117ee3bb1a426063f03cfcb.
7106 => fdt print /aliases
7108 ethernet0 = "/qe@e0100000/ucc@2000";
7109 ethernet1 = "/qe@e0100000/ucc@3000";
7110 serial0 = "/soc8360@e0000000/serial@4500";
7111 serial1 = "/soc8360@e0000000/serial@4600";
7112 pci0 = "/pci@e0008500";
7114 => fdt print ethernet0
7116 device_type = "network";
7117 compatible = "ucc_geth";
7119 reg = <0x2000 0x200>;
7120 interrupts = <0x20>;
7121 interrupt-parent = <0x2>;
7122 local-mac-address = [00 00 00 00 00 00];
7123 rx-clock-name = "none";
7124 tx-clock-name = "clk9";
7126 phy-connection-type = "rgmii-id";
7130 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
7132 commit feeca3f578b7f53c032ba203698751c982f8bf5a
7133 Author: Kumar Gala <galak@kernel.crashing.org>
7134 Date: Thu Aug 14 08:28:19 2008 -0500
7136 libfdt: Add support for using aliases in fdt_path_offset()
7138 If the path doesn't start with '/' check to see if it matches some alias
7139 under "/aliases" and substitute the matching alias value in the path
7140 and retry the lookup.
7142 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7143 Acked-by: David Gibson <david@gibson.dropbear.id.au>
7144 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7146 commit 0219399a4e3a8edb428e1924e1a03d58cccf8d8e
7147 Author: David Gibson <david@gibson.dropbear.id.au>
7148 Date: Wed Aug 6 14:50:49 2008 +1000
7150 libfdt: Implement fdt_get_property_namelen() and fdt_getprop_namelen()
7152 As well as fdt_subnode_offset(), libfdt includes an
7153 fdt_subnode_offset_namelen() function that takes the subnode name to
7154 look up not as a NUL-terminated string, but as a string with an
7155 explicit length. This can be useful when the caller has the name as
7156 part of a longer string, such as a full path.
7158 However, we don't have corresponding 'namelen' versions for
7159 fdt_get_property() and fdt_getprop(). There are less obvious use
7160 cases for these variants on property names, but there are
7161 circumstances where they can be useful e.g. looking up property names
7162 which need to be parsed from a longer string buffer such as user input
7163 or a configuration file, or looking up an alias in a path with
7164 IEEE1275 style aliases.
7166 So, since it's very easy to implement such variants, this patch does
7167 so. The original NUL-terminated variants are, of course, implemented
7168 in terms of the namelen versions.
7170 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
7172 commit f171746f701ea58bf6a53e835b53d2aaebee0d81
7173 Author: David Gibson <david@gibson.dropbear.id.au>
7174 Date: Tue Jul 29 14:51:22 2008 +1000
7176 libfdt: Forgot one function when cleaning the namespace
7178 In commit b6d80a20fc293f3b995c3ce1a6744a5574192125, we renamed all
7179 libfdt functions to be prefixed with fdt_ or _fdt_ to minimise the
7180 chance of collisions with things from whatever package libfdt is
7181 embedded in, pulled into the libfdt build via that environment's
7184 Except... I missed one. This patch applies the same treatment to
7185 _stringlist_contains(). While we're at it, also make it static since
7186 it's only used in the same file.
7188 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
7190 commit 46390da15411351fc3b498bd8c1615f78fe80df0
7191 Author: Wolfram Sang <w.sang@pengutronix.de>
7192 Date: Wed Jul 9 11:22:44 2008 +0200
7194 libfdt: Improve documentation in libfdt.h
7196 Fix a few typos and mistakes.
7198 Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
7199 Acked-by: David Gibson <david@gibson.dropbear.id.au>
7201 commit fc7758ee4f5782878f2e96876b7bc56cfee0ac66
7202 Author: David Gibson <david@gibson.dropbear.id.au>
7203 Date: Wed Jul 9 14:10:24 2008 +1000
7205 libfdt: Increase namespace-pollution paranoia
7207 libfdt is supposed to easy to embed in projects all and sundry.
7208 Often, it won't be practical to separate the embedded libfdt's
7209 namespace from that of the surrounding project. Which means there can
7210 be namespace conflicts between even libfdt's internal/static functions
7211 and functions or macros coming from the surrounding project's headers
7214 This patch, therefore, renames a bunch of libfdt internal functions
7215 and macros and makes a few other chances to reduce the chances of
7216 namespace collisions with embedding projects. Specifically:
7217 - Internal functions (even static ones) are now named _fdt_*()
7219 - The type and (static) global for the error table in
7220 fdt_strerror() gain an fdt_ prefix
7222 - The unused macro PALIGN is removed
7224 - The memeq and streq macros are removed and open-coded in the
7225 users (they were only used once each)
7227 - Other macros gain an FDT_ prefix
7229 - To save some of the bulk from the previous change, an
7230 FDT_TAGALIGN() macro is introduced, where FDT_TAGALIGN(x) ==
7231 FDT_ALIGN(x, FDT_TAGSIZE)
7233 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
7235 commit c66830263af19831f2b7db307f79d1943febf7f9
7236 Author: David Gibson <david@gibson.dropbear.id.au>
7237 Date: Mon Jul 7 10:14:15 2008 +1000
7239 dtc: Enable and fix -Wcast-qual warnings
7241 Enabling -Wcast-qual warnings in dtc shows up a number of places where
7242 we are incorrectly discarding a const qualification. There are also
7243 some places where we are intentionally discarding the 'const', and we
7244 need an ugly cast through uintptr_t to suppress the warning. However,
7245 most of these are pretty well isolated with the *_w() functions. So
7246 in the interests of maximum safety with const qualifications, this
7247 patch enables the warnings and fixes the existing complaints.
7249 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
7250 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
7252 commit ef4e8ce1beb5b93aedda5a4c1b90bfd989c6791e
7253 Author: David Gibson <david@gibson.dropbear.id.au>
7254 Date: Mon Jul 7 10:10:48 2008 +1000
7256 dtc: Enable and fix -Wpointer-arith warnings
7258 This patch turns on the -Wpointer-arith option in the dtc Makefile,
7259 and fixes the resulting warnings due to using (void *) in pointer
7260 arithmetic. While convenient, pointer arithmetic on void * is not
7261 portable, so it's better that we avoid it, particularly in libfdt.
7263 Also add necessary definition of uintptr_t needed by David Gibson's
7264 changeset "dtc: Enable and fix -Wpointer-arith warnings" (the definition
7265 comes from stdint.h, which u-boot doesn't have). -- gvb
7267 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
7268 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
7270 commit 5d4b3d2b31e58fcb2d4bd10af762f5ff41b229fd
7271 Author: Tirumala R Marri <tmarri@amcc.com>
7272 Date: Thu Aug 21 21:54:53 2008 -0700
7274 ppc4xx: AMCC PPC460GT/EX PCI-E de-emphasis adjustment fix
7276 During recent PCI-E tests it has been found that current
7277 driverl level and de-emphasis values are not set correctly.
7278 After sweeping throgh all de-ephasis values, it was found that
7279 0x130 is a right value. Where 0x13 is driver level and 0 is
7282 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
7283 Signed-off-by: Stefan Roese <sr@denx.de>
7285 commit 0bb86d823b6c150c7ee17de0cfca9ffccc16463b
7286 Author: Remy Bohmer <linux@bohmer.net>
7287 Date: Wed Aug 20 20:46:56 2008 +0200
7289 Make the YAFFS filesystem work
7291 Recently the YAFFS filesystem support has been added to U-boot.
7292 However, just enabling CONFIG_YAFFS2 is not enough to get it working.
7294 ymount will generate an exception (when dereferencing mtd->readoob()), because
7295 the genericDevice is a null pointer. Further, a lot of logging is produced
7296 while using YAFFS fs, so logging should also be disabled.
7297 Both issues are solved by this patch.
7299 With this patch and CONFIG_YAFFS2 enabled, I get a readable filesystem
7300 in U-boot, as well as in Linux.
7302 Tested on a Atmel AT91SAM9261EK board.
7304 Signed-off-by: Remy Bohmer <linux@bohmer.net>
7305 Acked-by: William Juul <william.juul@tandberg.com>
7306 Signed-off-by: Scott Wood <scottwood@freescale.com>
7308 commit bfd7f38614e21f745b6d6845fcc616ebc5e4d36f
7309 Author: Kyungmin Park <kmpark@infradead.org>
7310 Date: Tue Aug 19 08:42:53 2008 +0900
7312 Fix OneNAND read_oob/write_oob functions compatability
7314 Also sync with kernel OneNAND codes
7316 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7317 Signed-off-by: Scott Wood <scottwood@freescale.com>
7319 commit 8d765456c1d33f2010d2717ee58de7647fdc6346
7320 Author: Scott Wood <scottwood@freescale.com>
7321 Date: Mon Aug 18 17:11:20 2008 -0500
7323 NAND: Remove delay from nand_boot_fsl_elbc.c.
7325 It was for debugging purposes, and shouldn't have been left in.
7327 Signed-off-by: Scott Wood <scottwood@freescale.com>
7329 commit f556483734126793522fb7a8cf36af90da78f084
7330 Author: Stefan Roese <sr@denx.de>
7331 Date: Thu Aug 21 11:05:03 2008 +0200
7333 ppc4xx: Cleanup of "ppc4xx: Optimize PLB4 Arbiter..." patch
7335 This patch fixes some minor issues introduced with the patch:
7336 ppc4xx: Optimize PLB4 Arbiter... from Prodyut Hazarika:
7338 - Rework memory-queue and PLB arbiter optimization code, that the
7339 local variable is not needed anymore. This removes one #ifdef.
7340 - Use consistant spacing in ppc4xx.h header (XXX + 0x01 instead
7341 of XXX+ 0x01). This was not introduced by Prodyut, just a
7344 Signed-off-by: Stefan Roese <sr@denx.de>
7346 commit 079589bcfb24ba11068460276a3cc9549ab5346f
7347 Author: Prodyut Hazarika <phazarika@amcc.com>
7348 Date: Wed Aug 20 09:38:51 2008 -0700
7350 ppc4xx: Optimize PLB4 Arbiter and Memory Queue settings for PPC440SP/SPe,
7351 PPC405EX and PPC460EX/GT/SX
7353 - Read pipeline depth set to 4 for PPC440SP/SPE, PPC405EX, PPC460EX/GT/SX
7355 - Moved PLB4 Arbiter register definitions to ppc4xx.h since it is shared
7356 across processors (405 and 440/460)
7357 - Optimize Memory Queue settings for PPC440SP/SPE and PPC460EX/GT/SX
7359 - Add register bit definitions for Memory Queue Configuration registers
7361 Signed-off-by: Prodyut Hazarika <phazarika@amcc.com>
7362 Signed-off-by: Stefan Roese <sr@denx.de>
7364 commit ba37aa03287c5483c61c0a3e320c8888bee0143a
7365 Author: Kumar Gala <galak@kernel.crashing.org>
7366 Date: Tue Aug 19 15:41:18 2008 -0500
7368 fdt: rework fdt_fixup_ethernet() to use env instead of bd_t
7370 Move to using the environment variables 'ethaddr', 'eth1addr', etc..
7371 instead of bd->bi_enetaddr, bi_enet1addr, etc.
7373 This makes the code a bit more flexible to the number of ethernet
7376 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7378 commit 4cacf7c64609839f809e2f9c45873f1d65861703
7379 Author: Stefan Roese <sr@denx.de>
7380 Date: Tue Aug 19 14:57:55 2008 +0200
7382 hush: Fix printf debug macro in hush.c so that it usable in U-Boot
7384 This patch changes the debug_printf() marco for U-Boot in hush.c and
7385 moves the definition of DEBUG_SHELL to a place that is actually compiled
7388 Signed-off-by: Stefan Roese <sr@denx.de>
7390 commit 8f2b457ef26a44d9e5fd7d6b16c394e5c3a71ca2
7391 Author: Heiko Schocher <hs@denx.de>
7392 Date: Tue Aug 19 09:57:41 2008 +0200
7394 cfi: rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
7396 Commit 00b1883a4cac59d97cd297b1a3a398db85982865
7397 missed a few boards:
7398 include/configs/M5253DEMO.h
7399 include/configs/ml507.h
7400 include/configs/redwood.h
7402 This patch fixes this.
7404 Signed-off-by: Heiko Schocher <hs@denx.de>
7406 commit 0768b7a872964085eece8d5e9fec9175e9deb161
7407 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7408 Date: Mon Aug 18 13:41:27 2008 +0200
7410 Consolidate strmhz() implementation
7412 ARM, i386, m68k and ppc all have identical implementations of strmhz().
7413 Other architectures don't provide this function at all.
7415 This patch moves strmhz() into lib_generic, reducing code duplication
7416 and providing a more unified API across architectures.
7418 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7420 commit a928d0df211f1d829308d335d19be3ca42558dfc
7421 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
7422 Date: Mon Aug 18 12:02:51 2008 +0200
7424 fix mvbc_p board build warnings
7426 fix build warnings @ mvBC-P board by using correct types, i.e. change
7427 out_be32 to out_be16 and out_8 accordingly.
7429 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
7431 commit a958b663d27f616bd1dfb720d1b476d1ecaaa569
7432 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7433 Date: Sat Aug 16 18:54:27 2008 +0200
7435 Makefile: fix posix support on find
7437 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7439 commit bef92e215d945cc574399c1a1b00a3a76d35aa03
7440 Author: Axel Beierlein <belatronix@web.de>
7441 Date: Sat Aug 16 00:30:48 2008 +0200
7443 Adding bootlimit/bootcount feature for MPC5XXX on TQM5200 Boards
7445 Tested with TQM5200S on STK52XX.200 Board
7447 Signed-off-by: Axel Beierlein <belatronix@web.de>
7449 commit 0800707b6d5041a840a65d556032c15c584b55f8
7450 Author: Peter Tyser <ptyser@xes-inc.com>
7451 Date: Fri Aug 15 14:36:32 2008 -0500
7453 mod_i2c_mem() bugfix
7455 The last used chip, address, and address length were not being
7456 stored for the imm and imn commands.
7458 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
7460 commit 4afbef967275b2f636abae86f91b81becee7ad03
7461 Author: Steven A. Falco <sfalco@harris.com>
7462 Date: Fri Aug 15 15:37:31 2008 -0400
7464 Fix typo in spelling of ATAPI.
7466 Correct a small spelling mistake.
7468 Signed-off-by: Steven A. Falco <sfalco@harris.com>
7470 commit 36c2d3062ecc6ab85f8e237180eb134464c48418
7471 Author: Steven A. Falco <sfalco@harris.com>
7472 Date: Fri Aug 15 15:34:10 2008 -0400
7474 Add a hook to allow board-specific PIO mode setting.
7476 This patch adds a hook whereby a board-specific routine can be called to
7477 configure hardware for a PIO mode. The prototype for the board-specific
7480 int inline ide_set_piomode(int pio_mode)
7482 ide_set_piomode should be prepared to configure hardware for a pio_mode
7483 between 0 and 6, inclusive. It should return 0 on success or 1 on failure.
7485 Signed-off-by: Steven A. Falco <sfalco@harris.com>
7487 commit 9571b84cb1423876f1153081b9e6a51d90fbcdc4
7488 Author: Steven A. Falco <sfalco@harris.com>
7489 Date: Fri Aug 15 15:29:12 2008 -0400
7491 Replace enums in ata.h with an include of libata.h
7493 This patch removes some enums from ata.h and replaces them with an
7494 include of libata.h. This way, we eliminate duplicated code, and
7495 prevent errors whereby the different versions could be out of sync.
7497 Signed-off-by: Steven A. Falco <sfalco@harris.com>
7499 commit 0de0afbca865ecf482b4d2b635236746def8518f
7500 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7501 Date: Fri Aug 15 18:32:41 2008 +0200
7503 coldfire: fix CFI drivers activation with new macro
7505 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
7507 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7509 commit 7dbc38ad915f4ae67f4cd1818b7ac8fed368aaa9
7510 Author: Kumar Gala <galak@kernel.crashing.org>
7511 Date: Fri Aug 15 08:24:35 2008 -0500
7513 fdt: fdt addr w/o any args reports back the current working address
7515 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7517 commit f953d99fd528a496b400a706b511eaf8e3ea66af
7518 Author: Kumar Gala <galak@kernel.crashing.org>
7519 Date: Fri Aug 15 08:24:34 2008 -0500
7521 fdt: added the ability to set initrd start/end via chosen command
7523 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7525 commit ffa4bafacaef67058463b3d7d0099ced57569dd2
7526 Author: Kumar Gala <galak@kernel.crashing.org>
7527 Date: Fri Aug 15 08:24:33 2008 -0500
7529 Add command to enable/disable interrupts
7531 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7533 commit 9e8e63cce69556aef10b58bcbc56d324f570ec3a
7534 Author: Nick Spence <nick.spence@freescale.com>
7535 Date: Tue Aug 19 22:21:16 2008 -0700
7537 CFI: Add CFI_CMDSET_INTEL_EXTENDED to fix flash_real_protect()
7539 This patch fixes a missing vendor code in the flash_real_protect() function.
7541 Signed-off-by: Nick Spence <nick.spence@freescale.com>
7542 Signed-off-by: Stefan Roese <sr@denx.de>
7544 commit 4e00acded2e6a8d663e12690a0f0f08f5bec5a58
7545 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7546 Date: Tue Aug 19 16:53:39 2008 +0000
7548 CFI: Fix AMD Legacy sector protect
7550 New implement sector lock and unlock or softlock commands
7551 do not exist in AMD legacy flash. Thus, causing issue
7552 when erasing AMD legacy flash (such as lv040)
7554 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7555 Signed-off-by: Stefan Roese <sr@denx.de>
7557 commit 492671404140f09d5b21b3d2ce4e362c0692c069
7558 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7559 Date: Wed Aug 20 09:40:16 2008 +0200
7561 hammerhead/mimc200: Use CONFIG_FLASH_CFI_DRIVER
7563 CFG_FLASH_CFI_DRIVER was recently renamed CONFIG_FLASH_CFI_DRIVER.
7565 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7567 commit 33eac2b3d946fc998a09245dfe54d017079b9056
7568 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7569 Date: Wed Aug 20 09:28:36 2008 +0200
7571 hammerhead: Add missing printf parameter to CONFIG_AUTOBOOT_PROMPT
7573 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7575 commit 25da0b84195fdda89a943b2d25757db5afeef5b8
7576 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7577 Date: Wed Aug 20 09:27:37 2008 +0200
7579 favr-32-ezkit: Fix printf format warnings
7581 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7583 commit 462da25e89b0b58bf4c66346c1fcb3087c61b4b8
7584 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7585 Date: Fri Aug 15 12:04:25 2008 +0200
7587 MAINTAINERS: Sort avr32 section alphabetically
7589 The rest of the MAINTAINERS file appears to be sorted
7590 almost-alphabetically, but entries for the newly added AVR32 boards were
7591 added somewhat randomly. This patch sorts the list alphabetically again.
7593 Also update my e-mail address. The old one still works, but it may not
7596 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7598 commit 13b50fe3bc065c48911fa373231421280855a9d6
7599 Author: Mark Jackson <mpfj@mimc.co.uk>
7600 Date: Wed Jul 30 13:07:27 2008 +0100
7602 avr32: Add MIMC200 board
7604 The MIMC200 board is based on Atmel's NGW100 dev kit, but with an extra
7605 8MByte FLASH and 128KByte FRAM.
7607 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
7608 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
7610 commit db70b84329315c52f6ec77f5ae5ca1afe970a9bb
7611 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
7612 Date: Wed Jul 9 21:07:34 2008 +0900
7614 rtl8169: add support for RTL8110SCL
7616 This patch fixes a problem that RTL8110SCL started transfer
7617 with an incorrect memory address.
7619 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
7620 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7622 commit 943b825bf15e6a28ac8328e0f6489478bceef1ea
7623 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7624 Date: Wed Jun 25 15:48:52 2008 -0500
7626 Fix dm9000 receive status and len little endian issue
7628 The received status and len was in little endian
7629 format and caused the ethernet unable to proceed
7630 further. Add __le16_to_cpu() in dm9000_rx_status_8/16/32bit().
7632 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7633 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
7635 commit fcd69a1a57fb2af4d26201422095a4be9f36963e
7636 Author: Kumar Gala <galak@kernel.crashing.org>
7637 Date: Fri Aug 15 08:24:32 2008 -0500
7639 Clean up usage of icache_disable/dcache_disable
7641 There is no point in disabling the icache on 7xx/74xx/86xx parts and not
7642 also flushing the icache. All callers of invalidate_l1_instruction_cache()
7643 call icache_disable() right after. Make it so icache_disable() calls
7644 invalidate_l1_instruction_cache() for us.
7646 Also, dcache_disable() already calls dcache_flush() so there is no point
7647 in the explicit calls of dcache_flush().
7649 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7651 commit a15b07104ca7bbb7093c9009c9ae1b58b4202d13
7652 Author: Kumar Gala <galak@kernel.crashing.org>
7653 Date: Fri Aug 15 08:24:31 2008 -0500
7655 Update linux bootm to support ePAPR client interface
7657 The ePAPR spec has some subtle differences from the current device
7658 tree based boot interface to the powerpc linux kernel. The powerpc
7659 linux kernel currently ignores the differences that ePAPR specifies.
7661 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
7663 commit b734e5556a239b3be5f9693b2f4b4b739683ec16
7664 Author: Wolfgang Denk <wd@denx.de>
7665 Date: Mon Aug 18 23:50:20 2008 +0200
7667 Minor code cleanup: keep lists sorted.
7669 Signed-off-by: Wolfgang Denk <wd@denx.de>
7671 commit d0039d4ed275e6ca09fb417895024ad02be118c4
7672 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7673 Date: Wed Jul 23 19:10:14 2008 +0200
7675 Add support for ADT7460 I2C monitor chip
7677 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
7679 commit eb59ea45ab77c14b090ea857d9ea9f902f40db0b
7680 Author: Michal Simek <monstr@monstr.eu>
7681 Date: Mon Jul 14 19:45:45 2008 +0200
7683 video: Clean drivers/video/Makefile
7685 Signed-off-by: Michal Simek <monstr@monstr.eu>
7687 commit 871c18dd301752270e1f74328c846c3104be1e2e
7688 Author: Michal Simek <monstr@monstr.eu>
7689 Date: Mon Jul 14 19:45:37 2008 +0200
7691 rtc: Clean drivers/rtc/Makefile
7693 Signed-off-by: Michal Simek <monstr@monstr.eu>
7695 commit a4a549b4b53adf40a0d3882cc30ac812a8f847c5
7696 Author: Michal Simek <monstr@monstr.eu>
7697 Date: Mon Jul 14 19:45:35 2008 +0200
7699 i2c: Clean drivers/i2c/ Makefile
7701 Signed-off-by: Michal Simek <monstr@monstr.eu>
7703 commit 0a823aa2a8a8c0685e73900f387d602d7edafc0e
7704 Author: Harald Welte <laforge@openmoko.org>
7705 Date: Wed Jul 9 22:30:30 2008 +0800
7707 Add 'license' command to U-Boot command line
7709 The 'license' command includes the U-Boot license (GPLv2) into the
7710 actual bootloader binary. The license text can be shown interactively
7711 at the U-Boot commandline.
7713 For products where the commandline can actually be accessed by the
7714 end user, this helps to prevent inadvertent GPL violations, since the
7715 GPLv2 license text can no longer be 'forgotten' to be included into
7718 The 'license' command can be enabled by CONFIG_CMD_LICENSE.
7720 Signed-off-by: Harald Welte <laforge@openmoko.org>
7722 commit fe2ce5500ebf43d79d227190bd2370232d5b113d
7723 Author: Harald Welte <laforge@gnumonks.org>
7724 Date: Sun Jul 6 15:56:38 2008 +0800
7726 add 'unzip' command to u-boot commandline
7728 [PATCH] add new 'unzip' command to u-boot commandline
7730 common/cmd_mem.c: new command "unzip srcaddr dstaddr [dstsize]" to unzip from
7731 memory to memory, and option CONFIG_CMD_UNZIP to enable it
7733 Signed-off-by: Werner Almesberger <werner@openmoko.org>
7734 Signed-off-by: Harald Welte <laforge@openmoko.org>
7736 commit 07efc9e321619c3dec213310c32e011aa6f02783
7737 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7738 Date: Wed Aug 6 19:37:17 2008 -0500
7740 Change CFG_ENV_SIZE to CFG_ENV_SECT_SIZE for SPI sector erase
7742 The CFG_ENV_SIZE is not suitable used for SPI flash erase
7743 sector size if CFG_ENV_SIZE is less than CFG_ENV_SECT_SIZE.
7744 Add condition check if CFG_ENV_SIZE is larger than
7745 CFG_ENV_SECT_SIZE, calculate the right number of sectors for
7748 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7750 commit 4cb4e654cafabaa1ac180d37b00c8f6095dae9c9
7751 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7752 Date: Mon Aug 11 15:54:25 2008 +0000
7754 ColdFire: Multiple fixes for M5282EVB
7756 Incorrect CFG_HZ value, change 1000000 to 1000.
7757 Rename #waring to #warning. RAMBAR1 uses twice
7758 in start.S, rename the later to FLASHBAR. Insert
7759 nop for DRAM setup. And, env_offset in linker file.
7761 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7763 commit 10db3a17a278dd3a27668b31cb32cdd1476e9513
7764 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7765 Date: Mon Aug 11 15:26:43 2008 +0000
7767 ColdFire: Move m5282evb from board to board/freescale
7769 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7771 commit 56df091d391f74bbf2dc2f7931f9f3c8f23529e4
7772 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7773 Date: Mon Aug 11 15:25:07 2008 +0000
7775 ColdFire: Move m5272c3 from board to board/freescale
7777 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7779 commit 659e9bad629a480f606b286d5703aef7159edf98
7780 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7781 Date: Mon Aug 11 15:23:16 2008 +0000
7783 ColdFire: Move m5271evb from board to board/freescale
7785 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7787 commit 05316f8ece8206339a208ec052f039cd0f7ca922
7788 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7789 Date: Mon Aug 11 13:41:49 2008 +0000
7791 ColdFire: Add M54451EVB platform support for MCF5445x
7793 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7795 commit 922cd7515597e9a2c07d68e2a6240b0b7b0f0136
7796 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7797 Date: Wed Aug 6 19:14:08 2008 -0500
7799 ColdFire: Add Serial Flash support for M54455EVB
7801 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7803 commit 9f751551456828b2d0ff417f10959fb0c7110bd0
7804 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7805 Date: Wed Jul 23 20:38:53 2008 -0500
7807 ColdFire: Implement SBF feature for M5445EVB
7809 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7811 commit a7323bba229203aae2604afde131ab47bad4eadc
7812 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7813 Date: Wed Jul 23 17:53:36 2008 -0500
7815 ColdFire: Add SSPI feature for MCF5445x
7817 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7819 commit b2d022d1ac3f59bffa9cec249341e77aea168abc
7820 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7821 Date: Wed Jul 23 17:37:10 2008 -0500
7823 ColdFire: Use CFI Flash driver for M54455EVB
7825 Remove non-common flash driver in
7826 board/freescale/m54455evb/flash.c. The non-cfi flash will
7827 use CONFIG_FLASH_CFI_LEGACY to configure the flash
7830 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7832 commit 6d33c6acfa35b1144d46ffbff7e29ee7969290d0
7833 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7834 Date: Wed Jul 23 17:11:47 2008 -0500
7836 ColdFire: Add M5253DEMO platform support for MCF5253
7838 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7840 commit 80ba61fd82569af40e04d4a089257b81881884f2
7841 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7842 Date: Wed Aug 6 14:17:09 2008 -0500
7844 ColdFire: Raise M5253EVBE uart baudrate to 115200 bps
7846 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7848 commit d361307e73ce1f6fc68760123f37d4876f851f3e
7849 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7850 Date: Wed Aug 6 14:11:36 2008 -0500
7852 ColdFire: Fix M5253EVB dram bring up issue
7854 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
7856 commit 4b0708093e15b412296328bf81325cf9b69fe512
7857 Author: Wolfgang Denk <wd@denx.de>
7858 Date: Thu Aug 14 14:41:06 2008 +0200
7860 Coding Style cleanup, update CHANGELOG
7862 Signed-off-by: Wolfgang Denk <wd@denx.de>
7864 commit 68cf19aae48f2969ec70669604d0d776f02c8bc4
7865 Author: Scott Wood <scottwood@freescale.com>
7866 Date: Wed Aug 13 18:24:05 2008 -0500
7868 socrates: Update NAND driver to new API.
7870 Also, fix some minor formatting issues, and simplify the handling of
7873 Signed-off-by: Scott Wood <scottwood@freescale.com>
7875 commit ba22d10f39eaeedd035e8265616e31ff88e314d5
7876 Author: Scott Wood <scottwood@freescale.com>
7877 Date: Wed Aug 13 18:03:40 2008 -0500
7879 quad100hd: Update NAND driver to new API.
7881 Signed-off-by: Scott Wood <scottwood@freescale.com>
7883 commit f64cb652a8a84c5c34d0afcbd7ffef886aa1d838
7884 Author: Scott Wood <scottwood@freescale.com>
7885 Date: Wed Aug 13 17:53:48 2008 -0500
7887 m5373evb: Update NAND driver to new API.
7889 Signed-off-by: Scott Wood <scottwood@freescale.com>
7891 commit 1a23a197c8722b805f40895544bbdb1a648c1c82
7892 Author: Scott Wood <scottwood@freescale.com>
7893 Date: Wed Aug 13 17:04:30 2008 -0500
7895 s3c24x0: Update NAND driver to new API.
7897 Signed-off-by: Scott Wood <scottwood@freescale.com>
7899 commit aa5f75f20db8a7103fad9c34d6f1193e10d1890f
7900 Author: Scott Wood <scottwood@freescale.com>
7901 Date: Wed Aug 13 15:56:00 2008 -0500
7903 at91: Update board NAND drivers to current API.
7905 Signed-off-by: Scott Wood <scottwood@freescale.com>
7907 commit d438d50848e9425286e5fb0493e0affb5a0b1e1b
7908 Author: Kyungmin Park <kmpark@infradead.org>
7909 Date: Wed Aug 13 09:11:02 2008 +0900
7911 Fix OneNAND build break
7913 Since page size field is changed from oobblock to writesize. But OneNAND is not updated.
7914 - fix bufferram management at erase operation
7915 This patch includes the NAND/OneNAND state filed too.
7917 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
7918 Signed-off-by: Scott Wood <scottwood@freescale.com>
7920 commit 9483df6408c25f16060432de3868901e352e23bc
7921 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7922 Date: Wed Aug 13 01:40:43 2008 +0200
7924 drivers/mtd/nand_legacy: Move conditional compilation to Makefile
7926 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7928 commit cc4a0ceeac5462106172d0cc9d9d542233aa3ab2
7929 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7930 Date: Wed Aug 13 01:40:43 2008 +0200
7932 drivers/mtd/nand: Move conditional compilation to Makefile
7934 rename CFG_NAND_LEGACY to CONFIG_NAND_LEGACY
7936 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7938 commit 4fb09b81920e5dfdfc4576883186733f0bd6059c
7939 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7940 Date: Wed Aug 13 01:40:42 2008 +0200
7942 drivers/mtd/onenand: Move conditional compilation to Makefile
7944 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7946 commit 00b1883a4cac59d97cd297b1a3a398db85982865
7947 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7948 Date: Wed Aug 13 01:40:42 2008 +0200
7950 drivers/mtd: Move conditional compilation to Makefile
7952 rename CFG_FLASH_CFI_DRIVER to CONFIG_FLASH_CFI_DRIVER
7954 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7956 commit 7ba44a5521cdb7fa1c72864025cde1e21a6f6921
7957 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7958 Date: Wed Aug 13 01:40:41 2008 +0200
7960 drivers/qe: Move conditional compilation to Makefile
7962 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7964 commit ab6878c7bc68a7b5e5b731655bdc13221bbfc493
7965 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7966 Date: Wed Aug 13 01:40:40 2008 +0200
7968 drivers/pci: Move conditional compilation to Makefile
7970 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7972 commit 55d6d2d39fe3fe87802e399aa17539368b495d2e
7973 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7974 Date: Wed Aug 13 01:40:40 2008 +0200
7976 drivers/misc: Move conditional compilation to Makefile
7978 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7980 commit 65e41ea0548b86e3d7892defac8e4dc1ea70aed1
7981 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7982 Date: Wed Aug 13 01:40:40 2008 +0200
7984 drivers/input: Move conditional compilation to Makefile
7986 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7988 commit 88f57e093114a44aa9a858d52b099bcc52034a8c
7989 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7990 Date: Wed Aug 13 01:40:39 2008 +0200
7992 drivers/dma: Move conditional compilation to Makefile
7994 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7996 commit 1a02806c4b1b4a09ad4e95d3aac3783889e5f8d7
7997 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
7998 Date: Wed Aug 13 01:40:39 2008 +0200
8000 drivers/block: Move conditional compilation to Makefile
8002 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8004 commit 1a6ffbfaf4353bec379ed1fcfc54b6f1a30af09a
8005 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8006 Date: Wed Aug 13 01:40:39 2008 +0200
8008 serial: move CFG_NS9750_UART to CONFIG_NS9750_UART
8010 move also conditional compilation to Makefile
8012 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8014 commit 6c58a030f86829fa4f0d4337cf4b794c41a1823e
8015 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8016 Date: Wed Aug 13 01:40:38 2008 +0200
8018 serial: move CFG_SCIF_CONSOLE to CONFIG_SCIF_CONSOLE
8020 move also conditional compilation to Makefile
8022 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8024 commit d6e9ee92e890f67594ab150689510df361133ead
8025 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8026 Date: Wed Aug 13 01:40:38 2008 +0200
8028 common: Move conditional compilation to Makefile
8030 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8032 commit f5acb9fd9bba1160de3ef349c7d33fe510eda286
8033 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8034 Date: Wed Aug 13 01:40:09 2008 +0200
8036 mx31: move freescale's mx31 boards to vendor board dir
8038 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8040 commit 8ed2f5f950e2581214d20b011a8f27a6396d65d2
8041 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8042 Date: Sat Jul 5 23:11:11 2008 +0200
8044 at91: move arch-at91sam9 to arch-at91
8046 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8048 commit 195ccfc5991d48764b2519941e3507f693851d5d
8049 Author: Fathi BOUDRA <fabo@debian.org>
8050 Date: Wed Aug 6 10:06:20 2008 +0200
8052 OneNAND: Fill in MTD function pointers for OneNAND.
8054 onenand_print_device_info():
8055 - Now returns a string to be placed in mtd->name,
8056 rather than calling printf.
8057 - Remove verbose parameter as it becomes useless.
8059 Signed-off-by: Fathi Boudra <fabo@debian.org>
8060 Signed-off-by: Scott Wood <scottwood@freescale.com>
8062 commit aa646643b6bc250cb3a4966bf728876e0c10d329
8063 Author: Guennadi Liakhovetski <lg@denx.de>
8064 Date: Wed Aug 6 21:42:07 2008 +0200
8066 nand_spl: Support page-aligned read in nand_load, use chipselect
8068 Supporting page-aligned reads doesn't incure any sinificant overhead, just
8069 a small change in the algorithm. Also replace in_8 with readb, since there
8072 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8073 Signed-off-by: Scott Wood <scottwood@freescale.com>
8075 commit 4f32d7760a58fe73981b6edc0b0751565d2daa4c
8076 Author: Scott Wood <scottwood@freescale.com>
8077 Date: Tue Aug 5 11:15:59 2008 -0500
8079 NAND boot: Update large page support for current API.
8081 Also, remove the ctrl variable in favor of passing the constants
8082 directly, and remove redundant (u8) casts.
8084 Signed-off-by: Scott Wood <scottwood@freescale.com>
8086 commit e4c09508545d1c45617ba45391c03c03cbc360b9
8087 Author: Scott Wood <scottwood@freescale.com>
8088 Date: Mon Jun 30 14:13:28 2008 -0500
8090 NAND boot: MPC8313ERDB support
8092 Note that with older board revisions, NAND boot may only work after a
8093 power-on reset, and not after a warm reset. I don't have a newer board
8094 to test on; if you have a board with a 33MHz crystal, please let me know
8095 if it works after a warm reset.
8097 Signed-off-by: Scott Wood <scottwood@freescale.com>
8099 commit acdab5c33f1ea6f5e08f06f08bc64af23ff40d71
8100 Author: Scott Wood <scottwood@freescale.com>
8101 Date: Thu Jun 26 14:06:52 2008 -0500
8103 mpc8313erdb: Enable NAND in config.
8105 Signed-off-by: Scott Wood <scottwood@freescale.com>
8107 commit c3db8c649c6ab3da2f1411c4c6d61aecea054aa4
8108 Author: Guennadi Liakhovetski <lg@denx.de>
8109 Date: Thu Jul 31 12:38:26 2008 +0200
8111 NAND: Do not write or read a whole block if it is larger than the environment
8113 Environment can be smaller than NAND block size, do not need to read a whole
8114 block and minimum for writing is one page. Also remove an unused variable.
8116 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8117 Signed-off-by: Scott Wood <scottwood@freescale.com>
8119 commit eafcabd15f00c142156235c519fcc55b10993241
8120 Author: Marcel Ziswiler <marcel@ziswiler.com>
8121 Date: Sun Jun 22 16:30:06 2008 +0200
8123 NAND: chip->state does not always get set.
8125 Fixes an issue with chip->state not always being set causing troubles.
8127 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
8128 Signed-off-by: Scott Wood <scottwood@freescale.com>
8130 commit 13f0fd94e3cae6f8a0d9fba5d367e311edc8ebde
8131 Author: Ilya Yanok <yanok@emcraft.com>
8132 Date: Mon Jun 30 15:34:40 2008 +0200
8134 NAND: Scan bad blocks lazily.
8136 Rather than scanning on boot, scan upon the first attempt to check the
8137 badness of a block. This speeds up boot when not using NAND, and reduces
8138 the likelihood of needing to reflash via JTAG if NAND becomes
8141 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
8142 Signed-off-by: Scott Wood <scottwood@freescale.com>
8144 commit dfbf617ff055e4216f78d358b0867c548916d14b
8145 Author: Scott Wood <scottwood@freescale.com>
8146 Date: Thu Jun 12 13:20:16 2008 -0500
8150 Implement block-skipping read/write, based on a patch from
8151 Morten Ebbell Hestens <morten.hestnes@tandberg.com>.
8153 Signed-off-by: Morten Ebbell Hestnes <morten.hestnes@tandberg.com>
8154 Signed-off-by: Scott Wood <scottwood@freescale.com>
8156 commit 984e03cdf1431bb593aeaa1b74c445d616f955d3
8157 Author: Scott Wood <scottwood@freescale.com>
8158 Date: Thu Jun 12 13:13:23 2008 -0500
8160 NAND: Always skip blocks on read/write/boot.
8162 Use of the non-skipping versions was almost always (if not always)
8163 an error, and no valid use case has been identified.
8165 Signed-off-by: Scott Wood <scottwood@freescale.com>
8167 commit e1c3dbada349992875934575c97b328ab2cb33ca
8168 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8169 Date: Thu Jun 12 11:10:21 2008 -0500
8171 nand: fsl_upm: convert to updated MTD NAND infrastructure
8173 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
8174 Signed-off-by: Scott Wood <scottwood@freescale.com>
8176 commit 300253306acc72b1b2e9faf0987f86551151d7cf
8177 Author: Scott Wood <scottwood@freescale.com>
8178 Date: Thu May 22 15:02:46 2008 -0500
8180 fsl_elbc_nand: Hard-code the FBAR/FPAR split.
8182 The hardware has separate registers for block and page-within-block,
8183 but the division between the two has no apparent relation to the
8184 actual erase block size of the NAND chip.
8186 Signed-off-by: Scott Wood <scottwood@freescale.com>
8188 commit 9c814b0a716aae884bec977b9a032dfa59cfb79a
8189 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
8190 Date: Fri Mar 28 22:10:54 2008 +0300
8192 fsl_elbc_nand: workaround for hangs during nand write
8194 Using current driver elbc sometimes hangs during nand write. Reading back
8195 last byte helps though (thanks to Scott Wood for the idea).
8197 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
8198 Signed-off-by: Scott Wood <scottwood@freescale.com>
8200 commit 9fd020d6b4b36b9fb67cd834bc1ae7fdba15ee9e
8201 Author: Scott Wood <scottwood@freescale.com>
8202 Date: Fri Mar 21 16:12:51 2008 -0500
8204 Freescale eLBC FCM NAND driver
8206 This is a driver for the Flash Control Machine of the enhanched Local Bus
8207 Controller found on some Freescale chips (such as the mpc8313 and the
8210 Signed-off-by: Scott Wood <scottwood@freescale.com>
8212 commit 41ef8c716e93fdf50efe9c1ba733ca6675daaca6
8213 Author: Scott Wood <scottwood@freescale.com>
8214 Date: Tue Mar 18 15:29:14 2008 -0500
8216 Don't panic if a controller driver does ecc its own way.
8218 Some hardware, such as the enhanced local bus controller used on some
8219 mpc83xx chips, does ecc transparently when reading and writing data, rather
8220 than providing a generic calculate/correct mechanism that can be exported to
8223 The subsystem should not BUG() when calculate, correct, or hwctl are
8224 missing, if the methods that call them have been overridden.
8226 Signed-off-by: Scott Wood <scottwood@freescale.com>
8228 commit e52b34d40a8a646e3d11638ea8797e96398dba13
8229 Author: Stefan Roese <sr@denx.de>
8230 Date: Thu Jan 10 18:47:33 2008 +0100
8232 NAND: Make NAND driver less verbose per default
8234 This patch turns off printing of bad blocks per default upon bootup.
8235 This can always be shown via the "nand bad" command later.
8237 Signed-off-by: Stefan Roese <sr@denx.de>
8239 commit fe56a2772e5c59577df906163d0d4b29b056140e
8240 Author: Sergey Kubushyn <ksi@koi8.net>
8241 Date: Wed Jan 9 15:36:20 2008 +0100
8243 NAND: Davinci driver updates
8245 Here comes a trivial patch to cpu/arm926ejs/davinci/nand.c. Unfortunately I
8246 don't have hardware handy so I can not test it at the moment but changes are
8247 rather trivial so it should work. It would be nice if somebody with a
8248 hardware checked it anyways.
8250 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
8252 commit deac913effd8d80535c9ff4687b6fcdff540c554
8253 Author: Stefan Roese <sr@denx.de>
8254 Date: Sat Jan 5 16:50:32 2008 +0100
8256 NAND: Fix compilation warning and small coding style issue
8258 Signed-off-by: Stefan Roese <sr@denx.de>
8260 commit c568f77acdf896fc3dd6413ce53205b17ba809a3
8261 Author: Stefan Roese <sr@denx.de>
8262 Date: Sat Jan 5 16:49:37 2008 +0100
8264 NAND: Update nand_spl driver to match updated nand subsystem
8266 This patch changes the NAND booting driver nand_spl/nand_boot.c to match
8267 the new infrastructure from the updated NAND subsystem. This NAND
8268 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
8271 Signed-off-by: Stefan Roese <sr@denx.de>
8273 commit 3df2ece0f0fbba47d27f02fff96c533732b98c14
8274 Author: Stefan Roese <sr@denx.de>
8275 Date: Sat Jan 5 16:47:58 2008 +0100
8277 NAND: Update 4xx NDFC driver to match updated nand subsystem
8279 This patch changes the 4xx NAND driver ndfc.c to match the new
8280 infrastructure from the updated NAND subsystem. This NAND
8281 subsystem was recently synced again with the Linux 2.6.22 MTD/NAND
8284 Tested successfully on AMCC Sequoia and Bamboo.
8286 Signed-off-by: Stefan Roese <sr@denx.de>
8288 commit 12072264528eba33737bc9674e19f0e925ffda23
8289 Author: Stefan Roese <sr@denx.de>
8290 Date: Sat Jan 5 16:43:25 2008 +0100
8292 NAND: Change nand_wait_ready() to not call nand_wait()
8294 This patch changes nand_wait_ready() to not just call nand_wait(),
8295 since this will send a new command to the NAND chip. We just want to
8296 wait for the chip to become ready here.
8298 Signed-off-by: Stefan Roese <sr@denx.de>
8300 commit 9ad754fef5053144daed3b007adaf1c9bec654c9
8301 Author: William Juul <william.juul@datarespons.no>
8302 Date: Fri Dec 14 16:33:45 2007 +0100
8304 make nand dump and nand dump.oob work
8306 Signed-off-by: William Juul <william.juul@tandberg.com>
8307 Signed-off-by: Scott Wood <scottwood@freescale.com>
8309 commit 43ea36fb8fdcbc6e26f0caffe808c63633b18838
8310 Author: William Juul <william.juul@datarespons.no>
8311 Date: Mon Nov 19 14:46:00 2007 +0100
8313 moving files from yaffs2/direct/ to yaffs2/ and deleting all symlinks
8315 Signed-off-by: William Juul <william.juul@tandberg.com>
8317 commit 98824ce3f95e6c4d08d439b779c0acb0048045a6
8318 Author: William Juul <william.juul@tandberg.com>
8319 Date: Tue Jun 10 16:18:13 2008 -0500
8321 Clean out unneeded files
8323 Signed-off-by: William Juul <william.juul@tandberg.com>
8325 commit ec29a32b5a71b203f7d9087f1f4d786e7f13dd23
8326 Author: William Juul <william.juul@datarespons.no>
8327 Date: Fri Nov 16 08:44:27 2007 +0100
8329 Create symlinks from yaffs2/direct to yaffs2
8331 Signed-off-by: William Juul <william.juul@tandberg.com>
8333 commit 90ef117b68387d66763291af0117677644166611
8334 Author: William Juul <william.juul@datarespons.no>
8335 Date: Thu Nov 15 12:23:57 2007 +0100
8337 Incorporate yaffs2 into U-boot
8339 To use YAFFS2 define CONFIG_YAFFS2
8341 Signed-off-by: William Juul <william.juul@tandberg.com>
8342 Signed-off-by: Scott Wood <scottwood@freescale.com>
8344 commit 0e8cc8bd92257da2e1df88cbc985e166e472ce61
8345 Author: William Juul <william.juul@datarespons.no>
8346 Date: Thu Nov 15 11:13:05 2007 +0100
8350 Direct import of yaffs as a tarball as of 20071113 from their public
8351 CVS-web at http://www.aleph1.co.uk/cgi-bin/viewcvs.cgi/yaffs2/
8353 The code can also be imported on the command line with:
8354 export CVSROOT=:pserver:anonymous@cvs.aleph1.co.uk:/home/aleph1/cvs cvs logon
8355 (Hit return when asked for a password)
8358 Signed-off-by: William Juul <william.juul@tandberg.com>
8359 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
8361 commit 3043c045d5a9897faba7d5c7218c2f4d06cd0038
8362 Author: William Juul <william.juul@datarespons.no>
8363 Date: Wed Nov 14 14:28:11 2007 +0100
8365 Whitespace cleanup and marking broken code.
8367 Changes requested by maintainer Stefan Roese after
8368 posting patch to U-boot mailing list.
8370 Signed-off-by: William Juul <william.juul@tandberg.com>
8371 Signed-off-by: Scott Wood <scottwood@freescale.com>
8373 commit 5e1dae5c3db7f4026f31b6a2a81ecd9e9dee475f
8374 Author: William Juul <william.juul@datarespons.no>
8375 Date: Fri Nov 9 13:32:30 2007 +0100
8377 Fixing coding style issues
8379 - Fixing leading white spaces
8380 - Fixing indentation where 4 spaces are used instead of tab
8381 - Removing C++ comments (//), wherever I introduced them
8383 Signed-off-by: William Juul <william.juul@tandberg.com>
8384 Signed-off-by: Scott Wood <scottwood@freescale.com>
8386 commit 4cbb651b29cb64d378a06729970e1e153bb605b1
8387 Author: William Juul <william.juul@datarespons.no>
8388 Date: Thu Nov 8 10:39:53 2007 +0100
8390 Remove white space at end.
8392 Signed-off-by: William Juul <william.juul@tandberg.com>
8393 Signed-off-by: Scott Wood <scottwood@freescale.com>
8395 commit cfa460adfdefcc30d104e1a9ee44994ee349bb7b
8396 Author: William Juul <william.juul@datarespons.no>
8397 Date: Wed Oct 31 13:53:06 2007 +0100
8399 Update MTD to that of Linux 2.6.22.1
8401 A lot changed in the Linux MTD code, since it was last ported from
8402 Linux to U-Boot. This patch takes U-Boot NAND support to the level
8403 of Linux 2.6.22.1 and will enable support for very large NAND devices
8404 (4KB pages) and ease the compatibility between U-Boot and Linux
8407 This patch is tested on two custom boards with PPC and ARM
8408 processors running YAFFS in U-Boot and Linux using gcc-4.1.2
8411 MAKEALL ppc/arm has some issues:
8412 * DOC/OneNand/nand_spl is not building (I have not tried porting
8413 these parts, and since I do not have any HW and I am not familiar
8414 with this code/HW I think its best left to someone else.)
8416 Except for the issues mentioned above, I have ported all drivers
8417 necessary to run MAKEALL ppc/arm without errors and warnings. Many
8418 drivers were trivial to port, but some were not so trivial. The
8419 following drivers must be examined carefully and maybe rewritten to
8422 cpu/arm926ejs/davinci/nand.c
8424 board/zylonite/nand.c
8426 Signed-off-by: William Juul <william.juul@tandberg.com>
8427 Signed-off-by: Stig Olsen <stig.olsen@tandberg.com>
8428 Signed-off-by: Scott Wood <scottwood@freescale.com>
8430 commit cd82919e6c8a73b363a26f34b734923844e52d1c
8431 Author: Wolfgang Denk <wd@denx.de>
8432 Date: Tue Aug 12 16:08:38 2008 +0200
8434 Coding style cleanup, update CHANGELOG, prepare release
8436 Signed-off-by: Wolfgang Denk <wd@denx.de>
8438 commit 17e900b8c0f38d922da47073246219dce2a847f2
8439 Author: Wolfgang Denk <wd@denx.de>
8440 Date: Tue Aug 12 14:54:04 2008 +0200
8442 MVBC_P: fix compile problem
8444 Signed-off-by: Wolfgang Denk <wd@denx.de>
8446 commit 52b047ae48219b59bebe37ba743ab103fd4f8316
8447 Author: Wolfgang Denk <wd@denx.de>
8448 Date: Tue Aug 12 12:10:11 2008 +0200
8450 MPC8272ADS: fix build error: 'bd_t' has no member named 'pci_clk'
8452 Signed-off-by: Wolfgang Denk <wd@denx.de>
8454 commit c9c101c660b3d1995045c61c7c6041f52b6cf335
8455 Author: Wolfgang Denk <wd@denx.de>
8456 Date: Tue Aug 12 00:36:53 2008 +0200
8458 ads5121: fix compiler warnings (unused variables)
8460 Signed-off-by: Wolfgang Denk <wd@denx.de>
8462 commit 902ca09246039964d59bbcb519b1e1b5aed01308
8463 Author: Kumar Gala <galak@kernel.crashing.org>
8464 Date: Mon Aug 11 11:29:28 2008 -0500
8466 85xx: Rename CONFIG_NR_CPUS to CONFIG_NUM_CPUS
8468 Use CONFIG_NUM_CPUS to match existing define used by 86xx.
8470 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8471 Acked-by: Jon Loeliger <jdl@freescale.com>
8473 commit 3216ca9692ff80d7c638723ef448f3d36301d9e7
8474 Author: Kumar Gala <galak@kernel.crashing.org>
8475 Date: Mon Aug 11 09:20:53 2008 -0500
8477 Fix fallout from autostart revert
8479 The autostart revert caused a bit of duplicated code as well as
8480 code that was using images->autostart that needs to get removed so
8483 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8485 commit 3cf8a234b8e8c02e4da1f23566043bc288b05220
8486 Author: Kumar Gala <galak@kernel.crashing.org>
8487 Date: Mon Aug 11 09:16:25 2008 -0500
8489 Fix compile error related to r8a66597-hcd & usb
8491 When building the 8544DS board we get this error:
8493 In file included from r8a66597-hcd.c:22:
8494 u-boot/include/usb.h:190:2: error: #error USB Lowlevel not defined
8495 make[1]: *** [r8a66597-hcd.o] Error 1
8497 The cleanest fix is to only build r8a66597-hcd.c if CONFIG_USB_R8A66597_HCD
8500 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8502 commit 2d0daa03612338a813e3c9d22680e54eabfea378
8503 Author: Becky Bruce <becky.bruce@freescale.com>
8504 Date: Mon Aug 4 14:02:26 2008 -0500
8506 POWERPC 86xx: Move BAT setup code to C
8508 This is needed because we will be possibly be locating
8509 devices at physical addresses above 32bits, and the asm
8510 preprocessing does not appear to deal with ULL constants
8511 properly. We now call write_bat in lib_ppc/bat_rw.c.
8513 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8514 Acked-by: Jon Loeliger <jdl@freescale.com>
8516 commit 9de67149db576c91b9c2a0a182652331e7e44211
8517 Author: Becky Bruce <becky.bruce@freescale.com>
8518 Date: Mon Aug 4 14:01:53 2008 -0500
8520 POWERPC: Add synchronization to write_bat in lib_ppc/bat_rw.c
8522 Perform sync/isync as required by the architecture.
8524 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8525 Acked-by: Jon Loeliger <jdl@freescale.com>
8527 commit 23f935c073e7578c6066804fd2f9ee116cae6ffe
8528 Author: Becky Bruce <becky.bruce@freescale.com>
8529 Date: Mon Aug 4 14:01:16 2008 -0500
8531 POWERPC: 86xx - add missing CONFIG_HIGH_BATS to sbc8641d config
8533 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
8534 Acked-by: Jon Loeliger <jdl@freescale.com>
8536 commit 5276a3584d26a9533404f0ec00c3b61cf9a97939
8537 Author: Magnus Lilja <lilja.magnus@gmail.com>
8538 Date: Sun Aug 3 21:44:10 2008 +0200
8540 i.MX31: Fix mx31_gpio_mux() function and MUX_-macros.
8542 Correct the mx31_gpio_mux() function to allow changing all i.MX31 IOMUX
8543 contacts instead of only the first 256 ones as is the case prior to
8546 Add missing MUX_* macros and update board files to use the new macros.
8548 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
8550 commit b6b183c5b2fffd4c456b7e3fcb064cceb47fe7ac
8551 Author: Magnus Lilja <lilja.magnus@gmail.com>
8552 Date: Sun Aug 3 21:43:37 2008 +0200
8554 i.MX31: Fix IOMUX related typos
8556 Correct the names of some IOMUX macros.
8558 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
8560 commit 4d57b0fb2927d4f50d834884b4ec4a7ca01708b0
8561 Author: Steve Sakoman <steve@sakoman.com>
8562 Date: Mon Aug 11 20:26:16 2008 +0200
8564 OneNAND: Remove unused parameters to onenand_verify_page
8566 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.
8568 Signed-off-by: Steve Sakoman <steve@sakoman.com>
8569 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
8571 commit e84d568fa2a9f4ce7888141e71676368ef6b3f25
8572 Author: Anatolij Gustschin <agust@denx.de>
8573 Date: Fri Aug 8 18:00:40 2008 +0200
8575 video: fix bug in cfb_console code
8577 FILL_15BIT_555RGB macro extension for pixel swapping
8578 by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
8579 introduced a bug in cfb_console:
8581 Bitmaps with odd-numbered width won't be rendered
8582 correctly and even U-Boot crashes are observed on
8583 some platforms while repeated rendering of such
8584 bitmaps with "bmp display". Also if a bitmap is
8585 rendered to an odd-numbered x starting position,
8586 the same problem occurs. This patch is an attempt
8589 Signed-off-by: Anatolij Gustschin <agust@denx.de>
8591 commit d9015f6a50d7258125349ef5c2af836458a0029a
8592 Author: Anatolij Gustschin <agust@denx.de>
8593 Date: Fri Aug 8 18:00:39 2008 +0200
8595 video: fix bug in logo_plot
8597 If logo_plot() should ever be called with x starting
8598 position other than zero and for pixel depths greater
8599 than 8bpp, logo colors distortion will be observed.
8600 This patch fixes the issue.
8602 Signed-off-by: Anatolij Gustschin <agust@denx.de>
8604 commit 406819ae94f79f5b59e01d163380ca7d83709251
8605 Author: Wolfgang Denk <wd@denx.de>
8606 Date: Mon Aug 11 00:17:52 2008 +0200
8608 MAINTAINERS: sort entries
8610 Signed-off-by: Wolfgang Denk <wd@denx.de>
8612 commit cfc442d7913d4d1c3a9bf494f90c012c2f8c3bdc
8613 Author: Roy Zang <tie-fei.zang@freescale.com>
8614 Date: Thu Aug 7 18:19:28 2008 +0800
8616 Add mpc7448hpc2 maintainer information
8618 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
8620 commit a9fe0c3e7ca48afa50d6a0db99fa91e7282d73d8
8621 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
8622 Date: Thu Aug 7 13:13:27 2008 +0530
8624 common/cmd_load.c - Minor code & Coding Style cleanup
8626 - os_data_header Variable is a carry over feature
8627 & unused. So removed all instance of this variable
8628 - Minor Code Style Update
8630 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
8631 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8633 commit 0d28f34bbe56d0971bd603789dcc6fe7adf11f14
8634 Author: Magnus Lilja <lilja.magnus@gmail.com>
8635 Date: Wed Aug 6 19:32:33 2008 +0200
8637 Update the U-Boot wiki URL.
8639 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
8641 commit aa5ffa16d7e4c461b7b77bf8e79d2ef5638cf754
8642 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
8643 Date: Sun Aug 10 17:56:36 2008 +0200
8645 OneNAND: Remove base address offset usage
8647 While locally preparing some U-Boot patches for ARM based OMAP3 boards, some
8648 using OneNAND and some using NAND, we found some differences in OneNAND and
8649 NAND command address handling.
8651 As this might confuse users (it already confused us), we like to align OneNAND
8652 and NAND address handling.
8654 The issue is that cmd_onenand.c subtracts the onenand base address from the
8655 addresses you type into the u-boot command line so, unlike nand, you can't
8656 use addresses relative to the start of the onenand part e.g. this won't work:
8658 onenand read 82000000 280000 400000
8662 onenand read 82000000 20280000 400000
8664 Looking at recent git, the only board currently using OneNAND is Apollon, and
8665 for this the OneNAND base address is 0 (apollon.h)
8667 #define CFG_ONENAND_BASE 0x00000000
8669 so patch below won't break any existing boards and will align OneNAND and NAND
8670 handling on boards where OneNAND base address is != 0.
8672 Signed-off-by: Steve Sakoman <sakoman@gmail.com>
8673 Signed-off-by: Manikandan Pillai <mani.pillai@ti.com>
8674 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
8676 commit c11528083ef6e55e76df742228c26e39d151813d
8677 Author: Kumar Gala <galak@kernel.crashing.org>
8678 Date: Thu Aug 7 09:28:20 2008 -0500
8680 mpc85xx: workaround old binutils bug
8682 The recent change to move the .bss outside of the image gives older
8683 binutils (ld from eldk4.1/binutils-2.16) some headache:
8685 ppc_85xx-ld: u-boot: Not enough room for program headers (allocated 3, need 4)
8686 ppc_85xx-ld: final link failed: Bad value
8688 We workaround it by being explicit about the program headers and not
8689 assigning the .bss to a program header.
8691 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
8693 commit 0bf202ec586d4466c900e987720fa635c594d689
8694 Author: Wolfgang Denk <wd@denx.de>
8695 Date: Sun Aug 10 01:26:26 2008 +0200
8697 Revert "[new uImage] Add autostart flag to bootm_headers structure"
8699 This reverts commit f5614e7926863bf0225ec860d9b319741a9c4004.
8701 The commit was based on a misunderstanding of the (documented)
8702 meaning of the 'autostart' environment variable. It might cause
8703 boards to hang if 'autostart' was used, with the potential to brick
8704 them. Go back to the documented behaviour.
8712 Signed-off-by: Wolfgang Denk <wd@denx.de>
8714 commit 29f8f58ff40c67f7f2e11afd1715173094e52ac2
8715 Author: Wolfgang Denk <wd@denx.de>
8716 Date: Sat Aug 9 23:17:32 2008 +0200
8718 TQM8xx{L,M}: try to normalize config files for TQM8xx? based board
8720 - enable CFI driver where this was forgotten
8721 - enable mtdparts support
8722 - adjust default environment
8725 Signed-off-by: Wolfgang Denk <wd@denx.de>
8727 commit 41266c9b5a5f873df3ec891bb0907616958b5602
8728 Author: Peter Tyser <ptyser@xes-inc.com>
8729 Date: Tue Aug 5 10:51:57 2008 -0500
8731 FIT: Fix handling of images without ramdisks
8733 boot_get_ramdisk() should not treat the case when a FIT image does
8734 not contain a ramdisk as an error.
8736 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
8737 Acked-by: Michal Simek <monstr@monstr.eu>
8739 commit f77d92a3f56d88e63cc02226a1204b3bdbac6961
8740 Author: Sergey Lapin <slapin@ossfans.org>
8741 Date: Sat Aug 9 01:39:09 2008 +0400
8743 DataFlash: AT45DB021 fix and AT45DB081 support
8745 Fix for page size of AT45DB021. Also adding bigger AT45DB081
8746 which comes with some newer boards.
8748 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
8750 commit ba9324451b662dd393afa53e5cc36fc5d3d10966
8751 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8752 Date: Fri Aug 8 16:30:23 2008 +0900
8754 sh: Update sh7763rdp config
8756 Add sh_eth support to sh7763rdp.
8758 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
8760 commit 21f971ec265f6042ec21636d55d06a6bc0751077
8761 Author: Wolfgang Denk <wd@denx.de>
8762 Date: Mon Jul 7 01:22:29 2008 +0200
8764 TQM823L: re-enable logo support; update LCD_INFO text
8766 Signed-off-by: Wolfgang Denk <wd@denx.de>
8768 commit 3b8d17f0f082073346c0df017c9dfd6acdb40d6d
8769 Author: Wolfgang Denk <wd@denx.de>
8770 Date: Fri Aug 8 16:41:56 2008 +0200
8772 TQM8xxL: fix support for second flash bank
8774 When switching the TQM8xxL modules to use the CFI flash driver,
8775 support for the second flash bank was broken because the CFI driver
8776 did not support dynamically sized banks. This gets fixed now.
8778 Signed-off-by: Wolfgang Denk <wd@denx.de>
8780 commit 2a112b234d879f6390503a5f4e38246acce9d0b0
8781 Author: Wolfgang Denk <wd@denx.de>
8782 Date: Fri Aug 8 16:39:54 2008 +0200
8784 CFI: allow for dynamically determined flash sizes and addresses
8786 The CFI driver allowed only for static initializers in the
8787 CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map
8788 several flash banks contiguously if the bank sizes were not known in
8789 advance, which kind of violates U-Boot's design philosophy.
8791 (will be used for example by the TQM8xxL boards)
8793 Signed-off-by: Wolfgang Denk <wd@denx.de>
8795 commit d9d78ee46d9a396d0a81d00c2b003a9bd32c2e61
8796 Author: Ben Warren <biggerbadderben@gmail.com>
8797 Date: Thu Aug 7 23:26:35 2008 -0700
8799 QE UEC: Fix compiler warnings
8801 Moved static functions earlier in file so forward declarations are not needed.
8803 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8805 commit d5d28fe4aad5f4535400647a5617c11039506467
8806 Author: David Saada <David.Saada@ecitele.com>
8807 Date: Mon Mar 31 02:37:38 2008 -0700
8809 QE UEC: Add MII Commands
8811 Add MII commands to the UEC driver. Note that once a UEC device is selected,
8812 any device on its MDIO bus can be addressed.
8814 Signed-off-by: David Saada <david.saada@ecitele.com>
8815 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
8817 commit fd0f2f3796ff2a7a32d35deb1b7996e485849df7
8818 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8819 Date: Wed Jul 9 21:07:38 2008 +0900
8821 usb: add support for R8A66597 usb controller
8823 add support for Renesas R8A66597 usb controller.
8824 This patch supports USB Host mode.
8826 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
8827 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
8829 commit 1d10dcd041aaeae9fd7c821005692898a0303382
8830 Author: Hunter, Jon <jon-hunter@ti.com>
8831 Date: Sat Jul 26 18:59:16 2008 -0500
8833 Add support for OMAP5912 and OMAP16xx to usbdcore_omap1510.c
8835 Add support to drivers/usb/usbdcore_omap1510.c for OMAP5912 and OMAP16xx devices.
8837 Signed-off-by: Jon Hunter <jon-hunter@ti.com>
8838 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
8840 commit eab1007334b93a6209f1ec33615e26ef5311ede7
8841 Author: Steven A. Falco <sfalco@harris.com>
8842 Date: Wed Aug 6 15:42:52 2008 -0400
8844 ppc4xx: Sequoia has two UARTs in "4-pin" mode. Configure the GPIOs as per schematic.
8846 The Sequoia board has two UARTs in "4-pin" mode. This patch modifies the GPIO
8847 configuration to match the schematic, and also sets the SDR0_PFC1 register to
8848 select the corresponding mode for the UARTs.
8850 Signed-off-by: Steven A. Falco <sfalco@harris.com>
8851 Signed-off-by: Stefan Roese <sr@denx.de>
8853 commit 0eb5717a85b6cba3f67c11fa89bdde38dcd081b5
8854 Author: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
8855 Date: Wed Aug 6 14:42:13 2008 +0200
8857 avr32: add support for EarthLCD Favr-32 board
8859 This patch adds support for the Favr-32 board made by EarthLCD.
8861 This kit, which is also called ezLCD-101 when running with EarthLCD firmware,
8862 has a 10.4" touch screen LCD panel, 16 MB 32-bit SDRAM, 8 MB parallel flash,
8863 Ethernet, audio out, USB device, SD-card slot, USART and various other
8864 connectors for cennecting stuff to SPI, I2C, GPIO, etc.
8866 Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
8867 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
8869 commit bc9019e19758a19a388fb20ef18dc771cd39fdda
8870 Author: Rafael Campos <rafael.campos@hanscan.com>
8871 Date: Thu Jul 31 10:22:20 2008 +0200
8873 cfi-flash: Added support to flash_real_protect for Atmel flash devices
8875 Some of the flash memories produced by ATMEL start in read-only mode.
8876 We need to unprotect it. This patch allows the AT49BV6416 to work with
8877 cfi_flash memories. Tested in the at91rm9200ek board.
8879 Signed-off-by: Rafael Campos Las Heras <rafael.campos@hanscan.com>
8880 Signed-off-by: Stefan Roese <sr@denx.de>
8882 commit 7949839e5836bf8b1074bb6142c46d30ac3aa350
8883 Author: Guennadi Liakhovetski <lg@denx.de>
8884 Date: Tue Aug 5 15:36:39 2008 +0200
8886 cfi-flash: Add definition for the AM29LV800BB AMD NOR-flash
8888 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
8889 Signed-off-by: Stefan Roese <sr@denx.de>
8891 commit 1318673045fe188c6e24c582b1e6efc00ae1c62c
8892 Author: Stefan Roese <sr@denx.de>
8893 Date: Wed Aug 6 14:06:03 2008 +0200
8897 Signed-off-by: Stefan Roese <sr@denx.de>
8899 commit f2302d4430e7f3f48308d6a585320fe96af8afbd
8900 Author: Stefan Roese <sr@denx.de>
8901 Date: Wed Aug 6 14:05:38 2008 +0200
8905 Signed-off-by: Stefan Roese <sr@denx.de>
8907 commit 6689484ccd43189322aaa5a1c6cd02cdd511ad7d
8908 Author: Kenneth Johansson <kenneth@southpole.se>
8909 Date: Tue Jul 15 12:13:38 2008 +0200
8911 mpc5121: Move iopin features from board specific to common files.
8913 And in the process eliminate some duplicate register defines.
8915 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
8917 commit ef11df6b66ecf5797e94ba322254b8fb7a4e2e12
8918 Author: John Rigby <jrigby@freescale.com>
8919 Date: Tue Aug 5 17:38:57 2008 -0600
8921 mpc5121: squash some fdt fixup errors
8923 On ADS5121 when booting linux the following errors are seen:
8924 Unable to update property /soc5121@80000000:bus-frequency, err=FDT_ERR_NOTFOUND
8925 Unable to update property /soc5121@80000000/ethernet@2800:local-mac-address, err=FDT_ERR_NOTFOUND
8926 Unable to update property /soc5121@80000000/ethernet@2800:address, err=FDT_ERR_NOTFOUND
8928 This is caused by ft_cpu_setup trying to deal with
8929 both old and new soc node naming. This patch
8930 fixes this by being smarter about what to
8933 Also do soc node fixups by compatible instead of by path.
8934 A new board config called OF_SOC_COMPAT defined
8935 to be "fsl,mpc5121-immr" replaces the old
8936 OF_SOC node path that was defined to be "soc@80000000".
8938 Old device trees still work, but the compatiblity
8939 is conditional on CONFIG_OF_SUPPORT_OLD_DEVICE_TREES
8940 which is on by default in include/configs/ads5121.h.
8942 Signed-off-by: John Rigby <jrigby@freescale.com>
8944 commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c
8945 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8946 Date: Sat Aug 2 23:48:30 2008 +0200
8948 drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros
8950 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8952 commit 4cd7e6528f61ec669755c3754bb4f9779874fab3
8953 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8954 Date: Sat Aug 2 23:48:32 2008 +0200
8956 nios2/sysid: fix printf warning
8958 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8960 commit 66da6fa0e35e7ee56628c85981709afe7180fc8e
8961 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8962 Date: Sat Aug 2 23:48:33 2008 +0200
8964 Fix remaining build issues with MPC8xx FADS boards.
8966 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8968 commit 81d3f1fdddafd1eb53bbca8739f488d417eb3dd2
8969 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8970 Date: Sat Aug 2 23:48:31 2008 +0200
8972 nios2: fix phys_addr_t and phys_size_t support
8974 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8976 commit 5fa62000db6d0b46ecdeadbeb50faf5197db49ef
8977 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8978 Date: Sat Aug 2 23:48:34 2008 +0200
8980 mvbc_p: Fix problem with '#if (CONFIG_CMD_KGDB)'
8982 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
8984 commit 1464eff77e7fdaed609ecf263a2423c9dcf96b1f
8985 Author: Mark Jackson <mpfj@mimc.co.uk>
8986 Date: Fri Aug 1 09:48:29 2008 +0100
8988 Fix bitmap display for atmel lcd controller
8990 The current lcd_display_bitmap() function does not work properly
8991 for the Atmel LCD controller.
8993 2 fixes need to be done:-
8995 (a) when setting the colour map, use the lcd_setcolreg() function
8996 as provided by the Atmel driver
8997 (b) the data is never actually written to the lcd framebuffer !!
8999 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9001 commit 2a433c66b1e2770349fe4911be23c375f053ebd8
9002 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9003 Date: Fri Aug 1 08:40:34 2008 +0200
9005 qemu_mips: update README to follow qemu update about default machine
9007 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9009 commit ac169d645f5f0e0b9a232563099209e92a355d8e
9010 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9011 Date: Thu Jul 31 19:53:21 2008 -0500
9013 ColdFire: Fix compilation issue caused by a missing function
9015 Implement usec2ticks() which is used by fsl_i2c.c in
9018 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9020 commit 01ae85b58b51d2fb1fac5b93095f6042cf48ae7b
9021 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9022 Date: Thu Jul 31 19:53:06 2008 -0500
9024 Fix compilation error for TASREG
9026 TASREG is ColdFire platform, the include ppc4xx.h in
9027 board/esd/common/flash.c causes conflict.
9029 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9031 commit 35d3bd3cc35c508a6823dac77e0fd126808e4fc7
9032 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9033 Date: Thu Jul 31 19:52:36 2008 -0500
9035 Fix compilation error for MCF5275
9037 Rename OBJ to COBJ in board/platform/Makefile
9039 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9041 commit 5c40548f01218360a1f1395198c50ff45f3035b5
9042 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9043 Date: Thu Jul 31 19:52:28 2008 -0500
9045 Fix compile error caused by incorrect function return type
9047 Rename int mii_init(void) to void mii_init(void) for idmr
9050 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
9052 commit a58c78067c928976c082c758d3987e89ead5b191
9053 Author: Wolfgang Denk <wd@denx.de>
9054 Date: Fri Aug 1 12:06:22 2008 +0200
9056 Fix build issues with MPC8xx FADS boards.
9058 Signed-off-by: Wolfgang Denk <wd@denx.de>
9060 commit 4b50cd12a3b3c644153c4cf393f4a4c12289e5aa
9061 Author: Wolfgang Denk <wd@denx.de>
9062 Date: Thu Jul 31 17:54:03 2008 +0200
9064 Prepare v1.3.4-rc2: update CHANGELOG
9066 Signed-off-by: Wolfgang Denk <wd@denx.de>
9068 commit a48311557db6e7e9473a6163b44bb1e6c6ed64c4
9069 Author: Mark Jackson <mpfj@mimc.co.uk>
9070 Date: Thu Jul 31 16:09:00 2008 +0100
9072 Add gzipped logo support
9074 The README file states that CONFIG_VIDEO_BMP_GZIP behaves as follows:
9076 If this option is set, additionally to standard BMP
9077 images, gzipped BMP images can be displayed via the
9078 splashscreen support or the bmp command.
9080 However, the splashscreen function *only* supports standard BMP images.
9082 This patch adds the documented gzip support.
9084 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9086 commit a5bcb01fbde6b1f1c9863cd86e5c4c369f0121ac
9087 Author: Mark Jackson <mpfj@mimc.co.uk>
9088 Date: Thu Jul 31 15:56:48 2008 +0100
9090 Fix Atmel LCD controller endianess for AVR32 processors
9092 The Atmel lcd controller is used on Atmel's AT91 (little endian) and
9093 AVR32 (big endian) platforms.
9095 As such, the controller can handle both big and little endian memory.
9097 This patch fixes the driver for the AVR32 platform.
9099 Signed-off-by: Mark Jackson <mpfj@mimc.co.uk>
9101 commit cdb8bd2fd3bcbe65d8e4334a55f5a667845426a1
9102 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9103 Date: Thu Jul 31 15:56:01 2008 +0200
9105 apollon: fix build out of tree
9107 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9109 commit 2e752be39d3e398d4ab89ffa6634c397df298297
9110 Author: Guennadi Liakhovetski <lg@denx.de>
9111 Date: Thu Jul 31 12:35:04 2008 +0200
9113 Uncompressed images loaded to their start address shall set load_end too
9115 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
9116 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
9118 commit c37207d7f51e19c17f859966f314e27cc1231801
9119 Author: Wolfgang Denk <wd@denx.de>
9120 Date: Wed Jul 16 16:38:59 2008 +0200
9122 Fix printf() format problems with configurable prompts
9124 U-Boot allows for configurable prompt strings using the
9125 CONFIG_AUTOBOOT_PROMPT resp. CONFIG_MENUPROMPT definitions. So far,
9126 the assumption was that any such user defined problts would contain
9127 exactly one "%d" format specifier. But some boards did not.
9129 To allow for flexible boot prompts without adding too complex code we
9130 now allow to specify the whole list of printf() arguments in the user
9131 definition. This is powerful, but requires a responsible user who
9132 really understands what he is doing, as he needs to know for exanple
9133 which variables are available in the respective context.
9135 Signed-off-by: Wolfgang Denk <wd@denx.de>
9137 commit 54754120637b6a7f4ff774fb199fc550bcfea1da
9138 Author: Wolfgang Denk <wd@denx.de>
9139 Date: Thu Jul 31 17:02:14 2008 +0200
9141 TQM85xx: fix typo introduce by commit ffbb5cb9
9143 Signed-off-by: Wolfgang Denk <wd@denx.de>
9145 commit 0b4951d4cddca9cc800745891c95b291e47cbbd7
9146 Author: Wolfgang Denk <wd@denx.de>
9147 Date: Thu Jul 31 15:27:01 2008 +0200
9149 mvbc_p board: fix most build warnings.
9151 Signed-off-by: Wolfgang Denk <wd@denx.de>
9153 commit c4ec6db074051d2f6fc76a66411c60621b22bc02
9154 Author: Wolfgang Denk <wd@denx.de>
9155 Date: Thu Jul 31 13:57:20 2008 +0200
9157 E1000: clean up CONFIG_E1000_FALLBACK_MAC handling
9159 Avoid "integer constant is too large for 'long' type" warnings.
9160 And simplify the code.
9162 Signed-off-by: Wolfgang Denk <wd@denx.de>
9164 commit 9196b44334c330cc13de2464c59181e4db71f549
9165 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
9166 Date: Wed Jul 30 23:21:19 2008 +0400
9168 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI
9170 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
9172 commit 6361ad4b596f5a940a01c91ae0297d98f790cbe0
9173 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
9174 Date: Wed Jul 30 23:20:32 2008 +0400
9176 PPC: Add pci_clk in the global_data for CPM2 processors
9178 This patch adds pci_clk field to the global_data structure for the
9179 processors which have CPM2 module in case the CONFIG_PCI is defined.
9181 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
9183 commit f0ff885ca64655bee6540eb8a25eed90b1152686
9184 Author: Kumar Gala <galak@kernel.crashing.org>
9185 Date: Wed Jul 30 14:13:30 2008 -0500
9187 mpc85xx: Update linker scripts for Freescale boards
9189 * Move to using absolute addressing always. Makes the scripts a bit more
9191 * Moved .bss after the end of the image. These allows us to have more
9192 room in the resulting binary image for code and data.
9193 * Removed .text object files that aren't really needed
9194 * Make sure _end is 4-byte aligned as the .bss init code expects this.
9195 (Its possible that the end of .bss isn't 4-byte aligned)
9197 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9199 commit 57c219ad5d34dd9d49991777a62e3899595f2ec7
9200 Author: Kumar Gala <galak@kernel.crashing.org>
9201 Date: Wed Jul 30 08:01:15 2008 -0500
9203 Fix compile warnings in dlmalloc
9205 The origional code was using on odd reference to get to the first
9206 real element in av_[]. The first two elements of the array are
9207 not used for actual bins, but for house keeping. If we are more
9208 explicit about how use the first few elements we can get rid of the
9211 dlmalloc.c: In function 'malloc_extend_top':
9212 dlmalloc.c:1971: warning: dereferencing type-punned pointer will break strict-aliasing rules
9213 dlmalloc.c:1999: warning: dereferencing type-punned pointer will break strict-aliasing rules
9214 dlmalloc.c:2029: warning: dereferencing type-punned pointer will break strict-aliasing rules
9217 The logic of how this code came to be is:
9218 bin_at(0) = (char*)&(av_[2]) - 2*SIZE_SZ
9220 SIZE_SZ is the size of pointer, and av_ is arry of pointers so:
9221 bin_at(0) = &(av_[0])
9223 Going from there to bin_at(0)->fd or bin_at(0)->size should be straight forward.
9225 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9227 commit 3f9ae1a5d43c49a8ecf497470c3d1d80255e44b9
9228 Author: Stefan Roese <sr@denx.de>
9229 Date: Wed Jul 30 10:21:01 2008 +0200
9231 ppc4xx: Fix W7OLMG compile problems by adding missing LM75 defines
9233 Signed-off-by: Stefan Roese <sr@denx.de>
9235 commit ebb86c4ecd37a7701358284e497ca4c6483c7cc5
9236 Author: Stefan Roese <sr@denx.de>
9237 Date: Wed Jul 30 09:59:51 2008 +0200
9239 cmd_bootm.c: Fix problem with '#if (CONFIG_CMD_USB)'
9241 A recent patch used '#if (CONFIG_CMD_USB)' instead of
9242 '#if defined(CONFIG_CMD_USB)'. This patch fixes this problem and makes
9243 common/bootm.c compile again.
9245 Signed-off-by: Stefan Roese <sr@denx.de>
9246 Acked-by: Markus Klotzbuecher <mk@denx.de>
9248 commit 2cb9080427fe641dcb71da46cd0634dd406f37ed
9249 Author: Kyungmin Park <kmpark@infradead.org>
9250 Date: Tue Jul 22 08:01:43 2008 +0900
9252 Remove unused I2C at apollon board
9254 There are no I2C devices on this board.
9256 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9258 commit 3c95960e526b3b026da20201db64526f46faf14b
9259 Author: Wolfgang Denk <wd@denx.de>
9260 Date: Thu Jul 31 10:12:09 2008 +0200
9262 at91rm9200dk, csb637: fix NAND related build problems
9264 Tried fixing NAND support for the at91rm9200dk board; untested.
9265 Disabled NAND support in the csb637 board config file.
9267 Signed-off-by: Wolfgang Denk <wd@denx.de>
9269 commit 9246f5ecfd353ae297a02ffd5328402acf16c9dd
9270 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9271 Date: Wed Jul 30 12:39:28 2008 +0200
9273 ppc4xx: ML507: Environment in flash and MTD Support
9275 - Relocate the location of U-Boot in the flash
9276 - Save the environment in one sector of the flash memory
9279 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9280 Signed-off-by: Stefan Roese <sr@denx.de>
9282 commit a8a16af4d59d14cc1c1187c10aaad80d6b8394b5
9283 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9284 Date: Tue Jul 29 17:16:10 2008 +0200
9286 ppc4xx: ML507: Use of get_ram_size in board ml507
9288 - Change suggested by WD
9290 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9291 Signed-off-by: Stefan Roese <sr@denx.de>
9293 commit 01a004313c5ec2d128b611df4c208b1b0d3c3fb4
9294 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9295 Date: Mon Jul 21 20:30:07 2008 +0200
9297 ppc4xx: ML507: U-Boot in flash and System ACE
9299 This patch allows booting from FLASH the ML507 board by Xilinx.
9300 Previously, U-Boot needed to be loaded from JTAG or a Sytem ACE CF
9302 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9303 Signed-off-by: Stefan Roese <sr@denx.de>
9305 commit 5c374c9ee16fee2bf68533cc4010b3c0df21f783
9306 Author: Julien May <mailinglist@miromico.ch>
9307 Date: Mon Jun 23 13:57:52 2008 +0200
9309 Add support for the hammerhead (AVR32) board
9311 The Hammerhead platform is built around a AVR32 32-bit microcontroller
9312 from Atmel. It offers versatile peripherals, such as ethernet, usb
9313 device, usb host etc.
9315 The board also incooperates a power supply and is a Power over Ethernet
9316 (PoE) Powered Device (PD).
9318 Additonally, a Cyclone III FPGA from Altera is integrated on the board.
9319 The FPGA is mapped into the 32-bit AVR memory bus. The FPGA offers two
9320 DDR2 SDRAM interfaces, which will cover even the most exceptional need
9321 of memory bandwidth. Together with the onboard video decoder the board
9322 is ready for video processing.
9324 For more information see: http:///www.miromico.com/hammerhead
9326 Signed-off-by: Julien May <mailinglist@miromico.ch>
9327 [haavard.skinnemoen@atmel.com: various small fixes and adaptions]
9328 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9330 commit 09d318a8bb1444ec92e31cafcdba877eb9409e58
9331 Author: Kumar Gala <galak@kernel.crashing.org>
9332 Date: Tue Jul 29 12:23:49 2008 -0500
9334 fsl_i2c: Use timebase timer functions instead of get_timer()
9336 The current implementation of get_timer() is only really useful after we
9337 have relocated u-boot to memory. The i2c code is used before that as part
9338 of the SPD DDR setup.
9340 We actually have a bug when using the get_timer() code before relocation
9341 because the .bss hasn't been setup and thus we could be reading/writing
9342 a random location (probably in flash).
9344 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9346 commit 4fc72a0d6ca85070a5e90d76cc5a853526ac09c4
9347 Author: Frank Svendsbøe <frank.svendsboe@gmail.com>
9348 Date: Tue Jul 29 14:49:31 2008 +0200
9350 Adder8xx: Fix CFG_MONITOR_LEN
9352 Due to increased space usage, U-Boot can no longer be stored in three sectors.
9353 The current U-Boot use just over three flash sectors (197k), and U-Boot will
9354 become corrupt after saving environment variables. This patch adds another 64k
9357 Signed-off-by: Frank E. Svendsbøe <frank.svendsboe@gmail.com>
9359 commit a4c59ad4a21140550ada6f97690d2527c4146ce5
9360 Author: Kyungmin Park <kmpark@infradead.org>
9361 Date: Tue Jul 29 08:47:57 2008 +0900
9363 Add OneNAND IPL related files to gitignore
9365 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
9367 commit 8d87589e8e874df7120a3d9667f051bc33bac250
9368 Author: Rafal Jaworowski <raj@semihalf.com>
9369 Date: Mon Jul 28 20:38:25 2008 +0200
9371 API: Teach the storage layer about SATA and MMC options.
9373 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
9374 Acked-by: Rafal Jaworowski <raj@semihalf.com>
9376 commit 6b73b754f782e1ecce5048bf20b22ce56a07a5b8
9377 Author: Rafal Jaworowski <raj@semihalf.com>
9378 Date: Mon Jul 28 20:37:48 2008 +0200
9380 API: Dump contents of sector 0 in the demo application.
9382 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
9383 Acked-by: Rafal Jaworowski <raj@semihalf.com>
9385 commit 13ca6305f2eba49c175f6370c35286141059c789
9386 Author: Rafal Jaworowski <raj@semihalf.com>
9387 Date: Mon Jul 28 20:37:10 2008 +0200
9389 API: Correct storage enumeration routine, other minor fixes in API storage area.
9391 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
9392 Acked-by: Rafal Jaworowski <raj@semihalf.com>
9394 commit 05c7fe0f049b1c9eb9a1992f27e5e350d865f4a8
9395 Author: Rafal Jaworowski <raj@semihalf.com>
9396 Date: Mon Jul 28 20:36:19 2008 +0200
9398 API: Fix compilation warnings in api_examples/demo.c.
9400 Signed-off-by: Rafal Czubak <rcz@semihalf.com>
9402 commit c14eefcc48212af2f3314809605698dd8393a90a
9403 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9404 Date: Sun Jul 27 17:09:43 2008 +0200
9406 Fix more printf() format warnings
9408 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9410 commit 936897d4d1365452bbbdf8430db5e7769ef08d38
9411 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9412 Date: Fri Jul 25 15:18:16 2008 +0200
9414 Fix remaining CFG_CMD_ define, ifdef and comments
9416 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9418 commit 5d1d00fb36005482e1803a00ddc46efa11d719af
9419 Author: Stefano Babic <sbabic@denx.de>
9420 Date: Fri Jul 25 08:57:40 2008 +0200
9422 Add include for config.h in command.h.
9424 Because the cmd_tbl_s structure depends on the configuration file, it
9425 must be assured that config.h is included before the structure is
9426 evaluated by the compiler. If this is not certain, it could happen
9427 that the compiler generates structures of different size, depending
9428 on the fact if the source file includes <config.h> before or after
9431 The effect is that u-boot crashes when tries to relocate the command
9432 table (for ppc) or try to access to the command table for other
9435 The problem can happen on board-depending commands. All general
9436 commands under /common are unaffected, because they include already
9437 config.h before command.h.
9439 Signed-off-by: Stefano Babic <sbabic@denx.de>
9441 commit 2dacb734bac9dba1db9e704d3e0b200ef521c79a
9442 Author: Scott Wood <scottwood@freescale.com>
9443 Date: Wed Jul 23 13:16:06 2008 -0500
9445 NAND: $(obj)-qualify ecc.h in kilauea NAND boot Makefile.
9447 This fixes building out-of-tree.
9449 Signed-off-by: Scott Wood <scottwood@freescale.com>
9451 commit 36d59bd9da9e15d19b867b48449408830f4e2ad5
9452 Author: Heiko Schocher <hs@denx.de>
9453 Date: Wed Jul 23 07:30:46 2008 +0200
9455 Fix warnings if compiling with IDE support.
9457 cmd_ide.c:827: Warnung: weak declaration of `ide_outb' after first use results in unspecified behavior
9458 cmd_ide.c:839: Warnung: weak declaration of `ide_inb' after first use results in unspecified behavior
9460 Signed-off-by: Heiko Schocher <hs@denx.de>
9462 commit 7610db17fd4d59c51d825488526d85ede2f06767
9463 Author: Adrian Filipi <adrian.filipi@eurotech.com>
9464 Date: Tue Jul 22 14:28:11 2008 -0400
9466 Removed support for the adsvix board.
9468 Support for the adsvix was originally provided by Applied Data
9469 Systems (ADS), inc., now EuroTech, Inc.
9470 The board never shipped aside from some sample boards.
9472 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
9474 commit f96b44cef897bd372beb86dde1b33637c119d84d
9475 Author: Remy Bohmer <linux@bohmer.net>
9476 Date: Tue Jul 22 16:22:11 2008 +0200
9478 ARM: set GD_FLG_RELOC for boards skipping relocation to RAM
9480 If CONFIG_SKIP_RELOCATE_UBOOT is set the flag GD_FLG_RELOC is usually
9481 never set, because relocation to RAM is actually never done by U-boot
9482 itself. However, several pieces of code check if this flag is set at
9485 So, to make sure this flag is set on boards skipping relocation, this
9486 is added to the initialisation of U-boot at a moment where it is safe
9489 Signed-off-by: Remy Bohmer <linux@bohmer.net>
9491 commit e4dafff86f289b5677143a3e41da7b45c6d27fc7
9492 Author: Timur Tabi <timur@freescale.com>
9493 Date: Mon Jul 21 14:26:23 2008 -0500
9495 fsl-i2c: fix writes to data segment before relocation
9497 Prevent i2c_init() in fsl_i2c.c from writing to the data segment before
9498 relocation. Commit d8c82db4 added the ability for i2c_init() to program the
9499 I2C bus speed and save the value in i2c_bus_speed[], which is a global
9500 variable. It is an error to write to the data segment before relocation,
9501 which is what i2c_init() does when it stores the bus speed in i2c_bus_speed[].
9503 Signed-off-by: Timur Tabi <timur@freescale.com>
9505 commit dbd32387920e5ad6f9dd58a7b5012bbabe2a6a21
9506 Author: Wolfgang Ocker <weo@reccoware.de>
9507 Date: Mon Jul 28 16:56:51 2008 +0200
9509 mips: Fix baudrate divisor computation on alchemy cpus
9511 Use CFG_MIPS_TIMER_FREQ when computing the baudrate divisor
9514 Signed-off-by: Wolfgang Ocker <weo@reccoware.de>
9515 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
9517 commit c8c845cfdc6d0217135c1d5927eebd2b133a3314
9518 Author: Ben Warren <biggerbadderben@gmail.com>
9519 Date: Sat Jul 5 00:08:48 2008 -0700
9521 Moved initialization of AVR32 Ethernet controllers to board_eth_init()
9523 Renamed initialization functions for atngw100 and atstk1000.
9524 Removed initializations for these boards from net/eth.c
9526 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
9527 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9529 commit a229d291f33308ab7761d39f25fa1a53c0fc00a2
9530 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9531 Date: Wed Jul 23 10:55:46 2008 +0200
9533 spi flash: Fix printf() format warnings
9535 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9537 commit 252a5e0738bcafaf25f7fbb40f19a59abc2cb13e
9538 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9539 Date: Wed Jul 23 10:55:31 2008 +0200
9541 atmel_mci: Fix printf() format warnings
9543 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9545 commit 7f4b009f4232d57084ce0ec5aeb3b57bccb08e4c
9546 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9547 Date: Wed Jul 23 10:55:15 2008 +0200
9549 avr32: Fix printf() format warnings
9551 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9553 commit a79c3e8d9c31db25d5ca3ec8e08a97f323410dd4
9554 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9555 Date: Wed Jul 23 10:52:19 2008 +0200
9557 avr32: asm/io.h needs asm/types.h
9559 map_physmem() takes a phys_addr_t as parameter. This type is defined in
9560 asm/types.h, so we need to include that file.
9562 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
9564 commit 1953d128fd07f07d1c3810a28c0863ea64dae1b6
9565 Author: Michal Simek <monstr@monstr.eu>
9566 Date: Thu Jul 17 12:25:46 2008 +0200
9568 microblaze: Fix printf() format issues
9570 Signed-off-by: Michal Simek <monstr@monstr.eu>
9572 commit de2a07e534f18b1ca5f9869a4ef0604ca829cff0
9573 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
9574 Date: Thu Jul 17 07:27:51 2008 +0530
9576 Remove unused code from lib_arm/bootm.c
9578 Signed-off-by: Gururaja Hebbar <gururajakr@sanyo.co.in>
9580 commit ffbb5cb942e9856fa24e946977e0a60c64df04ab
9581 Author: Detlev Zundel <dzu@denx.de>
9582 Date: Wed Jul 16 18:56:45 2008 +0200
9584 tqm85xx: Demystify 'DK: !!!' comment
9586 Signed-off-by: Detlev Zundel <dzu@denx.de>
9588 commit b2f44ba570f3a01113bbb745daf46f3858d22f53
9589 Author: Detlev Zundel <dzu@denx.de>
9590 Date: Wed Jul 16 18:56:44 2008 +0200
9592 83xx/85xx/86xx: Add LTEDR local bus definitions
9594 Signed-off-by: Detlev Zundel <dzu@denx.de>
9596 commit f13f64cf42d5abec3e0f920233f6a7a61e7ae494
9597 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9598 Date: Wed Jul 16 16:22:32 2008 +0200
9600 serial_xuartlite.c: fix compiler warnings
9602 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9603 Acked-by: Grant Likely <grant.likely@secretlab.ca>
9605 commit 86446d3a5d9d3ca81e85d1ccd3accaaae6f8e3c9
9606 Author: Stefan Roese <sr@denx.de>
9607 Date: Fri Jul 18 11:03:35 2008 +0200
9609 POST: Add disable interrupts in some of the missing CPU POST tests
9611 Some CPU POST tests did not disable the interrupts while running. This
9612 seems to be necessary to protect this self modifying code.
9614 Signed-off-by: Stefan Roese <sr@denx.de>
9616 commit 97a3bf268d096e0e97e54048448c35114edcf557
9617 Author: Stefan Roese <sr@denx.de>
9618 Date: Fri Jul 18 10:43:24 2008 +0200
9620 ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL
9622 This is needed for boards that define CFG_64BIT_STRTOUL but don't define
9625 Signed-off-by: Stefan Roese <sr@denx.de>
9627 commit 0043ac55024963295fc79b39af85b6dc3b261e17
9628 Author: Niklaus Giger <niklaus.giger@netstal.com>
9629 Date: Fri Jul 18 11:22:23 2008 +0200
9631 POST PPC4xx/spr IVPR only if PPC440
9633 The SPR IVPR register is only present (as far as I know) for
9634 processors with a PPC440 core.
9636 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
9637 Acked-by: Stefan Roese <sr@denx.de>
9639 commit 1092fbd64748dfa2e979b102611ece9bc5ec1855
9640 Author: Stefan Roese <sr@denx.de>
9641 Date: Fri Jul 18 10:42:29 2008 +0200
9643 ppc4xx: Enable 64bit printf format on 440/460 platforms
9645 This patch defines CFG_64BIT_VSPRINTF and CFG_64BIT_STRTOUL for all
9646 440/460 platforms. This may be needed since those platforms support
9647 36bit physical address space.
9649 Signed-off-by: Stefan Roese <sr@denx.de>
9651 commit 66fe183b1dd9c7534605147a8ecfed1c02345ee5
9652 Author: Stefan Roese <sr@denx.de>
9653 Date: Fri Jul 18 15:57:23 2008 +0200
9655 ppc4xx: Fix incorrect MODTx setup for some DIMM configurations
9657 This patch fixes a problem with incorrect MODTx (On Die Termination)
9658 setup for a configuration with multiple DIMM's and multiple ranks.
9659 Without this change Katmai was unable to boot Linux with DDR2 frequency
9660 >= 533MHz and mem>=3GB. With this patch Katmai successfully boots Linux
9661 with DDR2 frequency = 640MHz and mem=4GB.
9663 Signed-off-by: Stefan Roese <sr@denx.de>
9665 commit 60204d06ed9f8c2a67cc79eb67fd2b1d22bcbc8c
9666 Author: Stefan Roese <sr@denx.de>
9667 Date: Fri Jul 18 12:24:41 2008 +0200
9669 ppc4xx: Minor coding style cleanup of Xilinx Virtex5 ml507 support
9671 Signed-off-by: Stefan Roese <sr@denx.de>
9673 commit 086511fc96a8a9bb56e5e19a3d84c40f4dba80cc
9674 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9675 Date: Thu Jul 17 12:47:09 2008 +0200
9677 ppc4xx: ML507 Board Support
9679 The Xilinx ML507 Board is a Virtex 5 prototyping board that includes,
9681 -Virtex 5 FX FPGA (With a ppc440x5 in it)
9686 -Serial ATA connectors
9687 -RS232 Level Conversors
9688 -Ethernet Transceiver
9690 This patch gives support to a standard design produced by EDK for this
9691 board: ppc440, uartlite, xilinx_int and flash
9693 - Includes Changes propossed by Stefan Roese and Michal Simek
9695 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9696 Acked-by: Stefan Roese <sr@denx.de>
9698 commit d865fd09809a3a18669f35f970781820af40e4de
9699 Author: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9700 Date: Thu Jul 17 11:44:12 2008 +0200
9702 ppc4xx: CPU PPC440x5 on Virtex5 FX
9704 -This patchs gives support for the embbedded ppc440
9705 on the Virtex5 FPGAs
9706 -interrupts.c divided in uic.c and interrupts.c
9707 -xilinx_irq.c for xilinx interrupt controller
9708 -Include modifications propossed by Stefan Roese
9710 Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@uam.es>
9711 Acked-by: Stefan Roese <sr@denx.de>
9713 commit 340ccb260f21516be360745d5c5e3bd0657698df
9714 Author: Sebastian Siewior <bigeasy@linutronix.de>
9715 Date: Wed Jul 16 20:04:49 2008 +0200
9717 cfi_flash: fix flash on BE machines with CFG_WRITE_SWAPPED_DATA
9719 This got broken by commits 93c56f212c
9720 [cfi_flash: support of long cmd in U-boot.]
9722 That command needs to be in little endian format on BE machines
9723 with CFG_WRITE_SWAPPED_DATA. Without this patch, the command 0xf0
9724 gets saved on stack as 0x00 00 00 f0 and 0x00 gets written into
9725 the cmdbuf in case portwidth = chipwidth = 8bit.
9727 Cc: Alexey Korolev <akorolev@infradead.org>
9728 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
9729 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
9731 commit 11188d55bc16dd907451c00282e00a038f73dd62
9732 Author: Stefan Roese <sr@denx.de>
9733 Date: Thu Jul 17 10:40:51 2008 +0200
9735 ppc4xx: Fix alphabetical order in 4xx Makefile part (redwood)
9737 Signed-off-by: Stefan Roese <sr@denx.de>
9739 commit 021f6df6e96af5b387810cf96d24848da1faa55c
9740 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9741 Date: Thu Jul 10 17:20:51 2008 +0400
9743 83xx: mpc8315erdb: fix silly thinko in fdt_tsec1_fixup
9745 The thinko was quite silly indeed, I messed with !ptr. Normally this
9746 would trigger some fault, but in U-Boot NULL pointer is equal to phys
9747 0, so the code was working still, just didn't actually test mpc8315erdb
9748 environment variable value. Heh.
9750 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9751 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9753 commit 25f5f0d49a3ae89bf4396f2557ce98debfef21da
9754 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9755 Date: Tue Jul 8 21:00:04 2008 +0400
9757 83xx: mpc8315erdb: add support for switching between ULPI/UTMI USB PHYs
9759 Freescale ships MPC8315E-RDB boards either with TSEC1 and USB UTMI
9760 support, or without TSEC1 but with USB ULPI PHY support in addition.
9761 With this patch user can specify desired USB PHY.
9763 Also, it seems that we can't distinguish the two boards in software, so
9764 user have to set `mpc8315erdb' environment variable to either 'tsec1'
9765 (TSEC1 enabled) or `ulpi' (board with ULPI PHY, TSEC1 disabled), so that
9766 Linux will not probe for TSEC1.
9768 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9769 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9771 commit 015b27b9e165fcf220e42f2c4afbaeaa2758fcf6
9772 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
9773 Date: Tue Jul 8 20:59:43 2008 +0400
9775 fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups
9777 Currently U-Boot can only fixup the usb dr_mode, but some boards (namely
9778 MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI
9779 (connected to the four-ports hub, usb host only).
9781 This patch implements support for passing Dual-Role USB controller's
9782 device tree property phy_type through the usb_phy_type environment
9785 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
9786 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
9787 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
9789 commit 699f05125509249072a0b865c8d35520d97cd501
9790 Author: Wolfgang Denk <wd@denx.de>
9791 Date: Tue Jul 15 22:22:44 2008 +0200
9793 Prepare v1.3.4-rc1: Code cleanup, update CHANGELOG, sort Makefile
9795 Signed-off-by: Wolfgang Denk <wd@denx.de>
9797 commit bcab74baa6b1b1c969038ab6f64a186239180405
9798 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9799 Date: Tue Jul 15 11:23:02 2008 -0400
9801 Round the serial port clock divisor value returned by calc_divisor()
9803 Round the serial port clock divisor value returned by
9806 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
9807 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
9809 commit 0328ef0edfe950f0b7b8b368dae482531506b74a
9810 Author: Robin Getz <rgetz@blackfin.uclinux.org>
9811 Date: Tue Jul 15 21:44:46 2008 +0200
9813 Fix DHCP protocol so U-Boot does not respond too early
9814 on the network with it's offered IP number; it should not reply until
9815 after it has received a DHCP ACK message. Also ensures that U-Boot
9816 does it's DHCPREQUEST as broadcast (per RFC 2131).
9818 Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
9819 Acked-by: Ben Warren <biggerbadderben@gmail.com>
9820 Signed-off-by: Wolfgang Denk <wd@denx.de>
9822 commit 7288f972fcaee14a9741cb08c8688a23874b4a2e
9823 Author: Sebastian Siewior <bigeasy@linutronix.de>
9824 Date: Tue Jul 15 13:35:23 2008 +0200
9826 cfi_flash: make the command u32 only
9828 This got changed by commit 93c56f212c
9829 [cfi_flash: support of long cmd in U-boot.]
9831 Long is the wrong type because it will behave differently on 64bit
9832 machines in a way that is probably not expected. u32 should be
9835 Cc: Alexey Korolev <akorolev@infradead.org>
9836 Cc: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
9837 Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
9839 commit 31cfe57491b183acae575d486729e158f016c27b
9840 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9841 Date: Mon Jul 14 23:48:41 2008 +0200
9843 tools/gitignore: update to all generated files
9845 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
9847 commit 5e0de0e216b8fb27634afb11c60a2fa24c23349e
9848 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
9849 Date: Wed Jul 9 18:30:44 2008 +0200
9851 mpc5xxx: Add MVBC_P board support
9853 The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet
9854 controller (using e1000) and custom Altera Cyclone-II FPGA on PCI.
9856 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
9857 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
9859 commit e2d31fb3450653115452144363d5bde4e5e3e693
9860 Author: Timur Tabi <timur@freescale.com>
9861 Date: Thu Jun 19 17:56:11 2008 -0500
9863 Update Freescale sys_eeprom.c to handle CCID formats
9865 Update the sys_eeprom.c file to handle both NXID and CCID EEPROM formats. The
9866 NXID format replaces the older CCID format, but it's important to support both
9867 since most boards out there still use the CCID format. This change is in
9868 preparation for using one file to handle both formats. This will also unify
9869 EEPROM support for all Freescale 85xx and 86xx boards.
9871 Also update the 86xx board header files to use the standard CFG_I2C_EEPROM_ADDR
9872 instead of ID_EEPROM_ADDR.
9874 Signed-off-by: Timur Tabi <timur@freescale.com>
9876 commit d85f46a25ccb33ed9b295de3c2cfe1ce270ece9a
9877 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9878 Date: Fri Jul 11 17:22:43 2008 +0900
9880 pci: sh: Add pci_skip_dev and pci_print_dev function
9882 Add function of new PCI, pci_skip_dev and pci_print_dev.
9884 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
9885 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
9887 commit 1107014e835ec9d46c0333f4211d104f77442db0
9888 Author: Andy Fleming <afleming@freescale.com>
9889 Date: Mon Jul 14 20:29:07 2008 -0500
9891 Clean up INIT_RAM options
9893 The L2_INIT_RAM option was unused, and recent changes to the TLB code
9894 meant that the INIT_RAM TLBs weren't being cleared out. In order to reduce
9895 the amount of mapped space attached to nothing, we change things so the TLBs
9898 Signed-off-by: Andy Fleming <afleming@freescale.com>
9900 commit 4524561820a9327e89107854b3a7187800ccf719
9901 Author: Andy Fleming <afleming@freescale.com>
9902 Date: Mon Jul 14 20:26:57 2008 -0500
9904 Remove fake flash bank from 8544 DS
9906 The fake flash bank was generating errors for anyone who didn't have a
9907 PromJET hooked up to the board. As that constitutes the vast majority of
9908 users, we remove it.
9910 Signed-off-by: Andy Fleming <afleming@freescale.com>
9912 commit 630d9bfcb5f6d3a43f251901a6b480994dcb6ea3
9913 Author: Kumar Gala <galak@kernel.crashing.org>
9914 Date: Mon Jul 14 14:07:03 2008 -0500
9916 MPC8544DS: Add ATI Video card support
9918 Add support for using a PCIe ATI Video card on PCIe2.
9920 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9922 commit 7f9f4347cf325c63a39fe30910f3fb211ae2cc15
9923 Author: Kumar Gala <galak@kernel.crashing.org>
9924 Date: Mon Jul 14 14:07:02 2008 -0500
9926 85xx: Add some L1/L2 SPR register definitions
9928 Add new L1/L2 SPRs related to e500mc cache config and control.
9930 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9932 commit e5852787f0c3c442a276262f13d91ca450605ac0
9933 Author: Kumar Gala <galak@kernel.crashing.org>
9934 Date: Mon Jul 14 14:07:01 2008 -0500
9936 MPC8544DS: Report board id, board version and fpga version.
9938 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9940 commit 73f15a060f67a2462551c334215bd20fac6b81d1
9941 Author: Kumar Gala <galak@kernel.crashing.org>
9942 Date: Mon Jul 14 14:07:00 2008 -0500
9944 85xx: Cleanup L2 cache size detection
9946 The L2 size detection code was a bit confusing and we kept having to add
9947 code to it to handle new processors. Change the sense of detection so we
9948 look for the older processors that aren't changing.
9950 Also added support for 1M cache size on 8572.
9952 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
9954 commit c3ca7e5e00a24451f20df3bded9a61ba541921df
9955 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
9956 Date: Fri Jul 11 15:33:08 2008 -0400
9958 sbc8560: enable CONFIG_OF_LIBFDT by default
9960 Make the default build for the sbc8560 board be powerpc
9961 capable with libfdt support.
9963 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
9965 commit 6b44a44ec2aab180d7095c1c92e669cee1d3e3bd
9966 Author: Andy Fleming <afleming@freescale.com>
9967 Date: Mon Jul 14 20:04:40 2008 -0500
9969 Fix indentation for default boot environment variables
9971 This was proposed by Paul Gortmaker in response to Wolfgang's comments on
9972 similar #defines in sbc8560.h.
9974 Signed-off-by: Andy Fleming <afleming@freescale.com>
9976 commit 37fef499104e28e0a83b02b85ca0d1fbe80d294a
9977 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
9978 Date: Fri Jul 11 15:33:07 2008 -0400
9980 sbc8560: add default fdt values
9982 Add in the default fdt settings and the typical EXTRA_ENV
9983 settings as borrowed from the mpc8560ads. Fix a couple
9984 of stale references to the mpc8560ads dating back to the
9985 original clone/fork.
9987 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
9988 Signed-off-by: Andy Fleming <afleming@freescale.com>
9990 commit d04e76edf92f7f89696989e8702b97e020455af3
9991 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
9992 Date: Fri Jul 11 15:33:06 2008 -0400
9994 sbc8560: add in ft_board_setup()
9996 Add in for the sbc8560, the ft_board_setup() routine, based on what is
9997 in use for the Freescale MPC8560ADS board.
9999 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10001 commit c158bcaca3b31cbe38c4143812e6170e38a57393
10002 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10003 Date: Fri Jul 11 15:33:05 2008 -0400
10005 sbc8560: define eth0 and eth1 instead of eth1 and eth2
10007 The existing config doesn't define CONFIG_HAS_ETH0, and so the
10008 fdt support doesn't update the zeros in the dtb local-mac with
10009 real data from the u-boot env. Since the existing config is
10010 tailored to just two interfaces, get rid of the ETH2 definitions
10013 Also don't include any end user specific data into the environment
10014 by default -- things like MAC address, network parameters etc. need
10015 to come from the end user.
10017 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10018 Signed-off-by: Andy Fleming <afleming@freescale.com>
10020 commit 0ec436d2f95076d9e46ae594db6e9b1d8732840d
10021 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10022 Date: Fri Jul 11 15:33:04 2008 -0400
10024 sbc8560: properly set cs0_bnds for 512MB
10026 The sbc8560 board ships with 512MB of memory installed,
10027 but the current cs0_bnds is hard coded for 256MB. Set the
10028 value based on CFG_SDRAM_SIZE.
10030 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10032 commit 6de5bf24004c8d9c9b070bb8f7418d1c45e5eb27
10033 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10034 Date: Fri Jul 11 15:33:03 2008 -0400
10036 sbc8560: proper definitions for TSEC.
10038 The definitions for the TSEC have become out of date. There is no
10039 longer any such options like "CONFIG_MPC85xx_TSEC1" or similar.
10040 Update to match those of other boards, like the MPC8560ADS.
10042 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10043 Acked-by: Ben Warren <biggerbadderben@gmail.com>
10045 commit 71074abbe0c76429577aff58aeff0a24ad210b23
10046 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
10047 Date: Wed Jul 9 13:23:05 2008 -0400
10049 8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq
10051 Some boards that have external 16550 UARTs don't have a direct
10052 tie between bi_busfreq and the clock used for the UARTs. Boards
10053 that do have such a tie should set CFG_NS16550_CLK to be
10054 get_bus_freq(0) -- which most of them do already.
10056 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
10057 Acked-by: Kim Phillips <kim.phillips@freescale.com>
10059 commit 24ef76f320fbadf074105229826514db140f939f
10060 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
10061 Date: Wed Jul 2 07:03:53 2008 -0700
10063 Change the temp map to ROM to align addresses to page size.
10065 With a page size of BOOKE_PAGESZ_16M, both the real and effective
10066 addresses must be multiples of 16MB. The hardware silently truncates
10067 them so the code happens to work. This patch clarifies the situation
10068 by establishing addresses that the hardware doesn't need to truncate.
10070 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
10071 Signed-off-by: Andy Fleming <afleming@freescale.com>
10073 commit 06b4186c10204b6683edb047ac5f506fb0ce0937
10074 Author: Kim Phillips <kim.phillips@freescale.com>
10075 Date: Tue Jun 17 17:45:22 2008 -0500
10077 mpc85xx: use IS_E_PROCESSOR macro
10079 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10081 commit 6b70ffb9d1b2e791161f3cf92937aa45b4a07b78
10082 Author: Kim Phillips <kim.phillips@freescale.com>
10083 Date: Mon Jun 16 15:55:53 2008 -0500
10085 fdt: add crypto node handling for MPC8{3, 5}xxE processors
10087 Delete the crypto node if not on an E-processor. If on 8360 or 834x family,
10088 check rev and up-rev crypto node (to SEC rev. 2.4 property values)
10089 if on an 'EA' processor, e.g. MPC8349EA.
10091 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10093 commit 85e5808e8ea9f77da5219f23394112f0b424fa5e
10094 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10095 Date: Fri Jul 11 15:10:11 2008 -0400
10097 ARM DaVinci: Remove extern phy_t declaration by moving code to proper place
10099 ARM DaVinci: Remove extern phy_t declaration by moving
10100 code to proper place.
10102 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10104 commit 3a9e7ba2ac14018c5dd1e78a7dd735571569c971
10105 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10106 Date: Fri Jul 11 15:10:10 2008 -0400
10108 ARM DaVinci: Remove duplicate definitions of MACH_TYPE and prototype of i2c_init()
10110 ARM DaVinci: Remove duplicate definitions of MACH_TYPE
10111 and prototype of i2c_init().
10113 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10115 commit 348753d416cd2c9e7ec6520a544c8f33cf02a560
10116 Author: Kumar Gala <galak@kernel.crashing.org>
10117 Date: Mon Jul 14 14:03:02 2008 -0500
10119 Fix some more printf() format problems.
10121 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
10123 commit 45b16d22c64674ccd8c4637456a987463609141c
10124 Author: Wolfgang Denk <wd@denx.de>
10125 Date: Mon Jul 14 22:38:42 2008 +0200
10127 Fix coding style; make code better parsable by external tools
10129 Signed-off-by: Wolfgang Denk <wd@denx.de>
10131 commit b880cbf207b1c109d3a661417a8feddcbd729a9d
10132 Author: Wolfgang Denk <wd@denx.de>
10133 Date: Mon Jul 14 21:19:08 2008 +0200
10135 cpu/i386/serial.c: Fix syntax errors
10137 Signed-off-by: Wolfgang Denk <wd@denx.de>
10139 commit e2d45e6f4d9919e1afeac5e09557b2252832fccf
10140 Author: Wolfgang Denk <wd@denx.de>
10141 Date: Mon Jul 14 20:41:35 2008 +0200
10143 elppc board: Coding style cleanup.
10145 Signed-off-by: Wolfgang Denk <wd@denx.de>
10147 commit 82b24a8a505fc81466484b3c55b574ee0b4205bc
10148 Author: Wolfgang Denk <wd@denx.de>
10149 Date: Mon Jul 14 20:40:22 2008 +0200
10151 elppc board: fix syntax error.
10153 Signed-off-by: Wolfgang Denk <wd@denx.de>
10155 commit 0fe340585a6a48bd392d315b0dd84d068b1c3790
10156 Author: Wolfgang Denk <wd@denx.de>
10157 Date: Mon Jul 14 20:38:26 2008 +0200
10159 EB+MCF-EV123 board: fix coding style (alingment)
10161 Signed-off-by: Wolfgang Denk <wd@denx.de>
10163 commit 6841785a0bb0f38175456a923edd634fb7dd6947
10164 Author: Wolfgang Denk <wd@denx.de>
10165 Date: Mon Jul 14 20:36:44 2008 +0200
10167 EB+MCF-EV123 board: fix syntx error
10169 Signed-off-by: Wolfgang Denk <wd@denx.de>
10171 commit ab5cda9f88c3eaf9cf599adc3a3375906c4ed904
10172 Author: Andy Fleming <afleming@freescale.com>
10173 Date: Mon Jul 7 18:02:08 2008 -0500
10175 Remove LBC_CACHE_BASE from 8544 DS
10177 The 8544 DS doesn't have any cacheable Local Bus memories set up. By mapping
10178 space for some anyway, we were allowing speculative loads into unmapped space,
10179 which would cause an exception (annoying, even if ultimately harmless).
10180 Removing LBC_CACHE_BASE, and using LBC_NONCACHE_BASE for the LBC LAW solves the
10183 Signed-off-by: Andy Fleming <afleming@freescale.com>
10185 commit d0ff51ba5d0309dbe9e25ea54f8a0285a6d5db90
10186 Author: Wolfgang Denk <wd@denx.de>
10187 Date: Mon Jul 14 15:19:07 2008 +0200
10189 Code cleanup: fix old style assignment ambiguities like "=-" etc.
10191 Signed-off-by: Wolfgang Denk <wd@denx.de>
10193 commit d7854223c5c85b5849fbf422cc8ac0efef461c37
10194 Author: Wolfgang Denk <wd@denx.de>
10195 Date: Mon Jul 14 15:10:53 2008 +0200
10197 AmigaOneG3SE: remove dead and incomplete files
10199 Signed-off-by: Wolfgang Denk <wd@denx.de>
10201 commit b64f190b7a34224df09b559ca111eb1b733f00ad
10202 Author: Wolfgang Denk <wd@denx.de>
10203 Date: Mon Jul 14 15:06:35 2008 +0200
10205 Fix printf() format issues with sizeof_t types by using %zu
10207 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10208 Signed-off-by: Wolfgang Denk <wd@denx.de>
10210 commit f354b73e16a86f9e9085471a830605f74f84ea5d
10211 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10212 Date: Mon Jul 14 14:11:45 2008 +0200
10214 vsprintf: add z and t options
10216 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10218 commit 25dbe98abb686d8210e1731fba85ced7d3ce874c
10219 Author: Wolfgang Denk <wd@denx.de>
10220 Date: Sun Jul 13 23:07:35 2008 +0200
10222 Fix some more printf() format issues.
10224 Signed-off-by: Wolfgang Denk <wd@denx.de>
10226 commit d5996dd555edf52721b7691a4c59de016251ed39
10227 Author: Wolfgang Denk <wd@denx.de>
10228 Date: Sun Jul 13 19:51:00 2008 +0200
10230 Fix some more printf() format problems.
10232 Signed-off-by: Wolfgang Denk <wd@denx.de>
10234 commit 0f9d5f6d6e814907794995c6a22af752040c35d9
10235 Author: Wolfgang Denk <wd@denx.de>
10236 Date: Sun Jul 13 19:48:26 2008 +0200
10238 ADS5121: Fix (delete) incorrect ads5121_diu_init() prototype
10240 Signed-off-by: Wolfgang Denk <wd@denx.de>
10242 commit 322716a1d1eb33a71067ba0eb1c5346fb2dd6b34
10243 Author: Anatolij Gustschin <agust@denx.de>
10244 Date: Sat Jul 12 17:31:36 2008 +0200
10246 Fix bug in Lime video driver
10248 We need to wait while drawing engine clears frame
10249 buffer before any further software accesses to frame
10250 buffer will be initiated. Otherwise software drawn
10251 parts could be partially destroyed by the drawing
10252 engine or even GDC chip freeze could occur (as
10253 observed on socrates board).
10255 Signed-off-by: Anatolij Gustschin <agust@denx.de>
10257 commit 0a5676befb0c590212a53f7627fa5d0d8a84bf34
10258 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10259 Date: Sat Jul 12 14:36:34 2008 +0200
10261 Fix some more printf() format issues.
10263 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10265 commit 18c8a28aad49803780bd8d52432ded528e37e701
10266 Author: Michal Simek <monstr@monstr.eu>
10267 Date: Fri Jul 11 15:11:57 2008 +0200
10269 hwmon: rename CONFIG_DS1722 to CONFIG_DTT_DS1722
10271 Signed-off-by: Michal Simek <monstr@monstr.eu>
10272 Acked-by: Stefan Roese <sr@denx.de>
10274 commit 6ecbb45bb027e90c19d63b48e7b0c05acc1a87c0
10275 Author: Michal Simek <monstr@monstr.eu>
10276 Date: Fri Jul 11 11:50:53 2008 +0200
10278 hwmon: Cleaning hwmon devices
10281 Move device specific values to driver for better reading
10283 Signed-off-by: Michal Simek <monstr@monstr.eu>
10284 Acked-by: Stefan Roese <sr@denx.de>
10286 commit c78fce699c7ff467ecd841da6a79f065180bf578
10287 Author: Michal Simek <monstr@monstr.eu>
10288 Date: Fri Jul 11 10:43:13 2008 +0200
10290 FIS: repare incorrect return value with ramdisk handling
10292 Microblaze and PowerPC use boot_get_ramdisk for loading
10293 ramdisk to memory with checking return value.
10294 Return 0 means success. Return 1 means failed.
10295 Here is correspond part of code from bootm.c which check
10298 ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC,
10299 &rd_data_start, &rd_data_end);
10303 Signed-off-by: Michal Simek <monstr@monstr.eu>
10305 commit 84a2c64a26dc5e275e1cf4e76a6e194a18fb5477
10306 Author: Michal Simek <monstr@monstr.eu>
10307 Date: Fri Jul 11 10:10:32 2008 +0200
10309 microblaze: Remove useless ancient headers
10311 Signed-off-by: Michal Simek <monstr@monstr.eu>
10313 commit 53ea981c3124b13c137c2d10e975b7c6672266e0
10314 Author: Michal Simek <monstr@monstr.eu>
10315 Date: Fri Jul 11 10:10:31 2008 +0200
10317 microblaze: Clean uartlite driver
10319 Redesign uartlite driver to in_be32 and out_be32 macros
10320 Fix missing header in io.h
10322 Signed-off-by: Michal Simek <monstr@monstr.eu>
10323 Acked-by: Grant Likely <grant.likely@secretlab.ca>
10325 commit dbf3dfb386a2d5d2381814e39985ab2e21894550
10326 Author: Marcel Ziswiler <marcel@ziswiler.com>
10327 Date: Fri Jul 11 02:39:14 2008 +0200
10329 Enable passing of ATAGs required by latest Linux kernel.
10331 commit ef130d3093bdf88f01cf3e000fe5df249ebf2b1a
10332 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10333 Date: Fri Jul 11 10:24:15 2008 -0400
10335 Fix integer overflow warning in calc_divisor()
10337 which happened when rounding the serial port clock divisor
10339 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10341 commit 6b760189d77f001684e3160b355c185ca3804961
10342 Author: Marcel Ziswiler <marcel@ziswiler.com>
10343 Date: Fri Jul 11 01:09:59 2008 +0200
10345 Fix build time warnings in function mmc_decode_csd()
10347 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
10349 commit c15947d6ce0d59925c97fdfac692476af6e262d0
10350 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10351 Date: Thu Jul 10 10:46:33 2008 -0400
10353 ARM: Fix for broken compilation when defining CONFIG_CMD_ELF
10355 caused by missing dcache status/enable/disable functions.
10357 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
10359 commit 068c1b77c8f42a1a31084d2f4b1d5cc807c1a9ce
10360 Author: Stefan Roese <sr@denx.de>
10361 Date: Thu Jul 10 13:53:31 2008 +0200
10363 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
10365 This patch removes some ft_board_setup() functions from some 4xx boards.
10366 This can be done since we now have a default weak implementation for this
10367 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
10368 implementation like canyonlands need their own version.
10370 Signed-off-by: Stefan Roese <sr@denx.de>
10372 commit d39a089f8bc960ba9ae6a08fda5582b578620cc1
10373 Author: Wolfgang Denk <wd@denx.de>
10374 Date: Sun Jul 13 14:58:16 2008 +0200
10376 Add last known maintainer for orphaned boards; reformat.
10378 Signed-off-by: Wolfgang Denk <wd@denx.de>
10380 commit 5c761d57bb9940e016d561fda8b2ed84c55de5b6
10381 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10382 Date: Thu Jul 10 13:16:04 2008 +0200
10384 Remove kharris@nexus-tech.net from MAINTAINERS
10386 Mail to kharris@nexus-tech.net bounces because the user doesn't exist
10387 anymore. You can't be a maintainer without a valid e-mail address, so
10388 move all boards that used to be maintained by Kyle Harris to the
10391 Currently, only PowerPC has a list of orphaned boards, so this patch
10392 creates one for ARM as well.
10394 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
10396 commit 17bd17071463b0cde391ac4a0863d600474b4ea1
10397 Author: Anatolij Gustschin <agust@denx.de>
10398 Date: Thu Jul 10 01:15:10 2008 +0200
10400 at91: Fix to enable using Teridian MII phy (78Q21x3) with at91sam9260
10402 On the at91sam9260ep development board there is an EEPROM
10403 connected to the TWI interface (PA23, PA24 Peripheral A
10404 multiplexing), so we cannot use these pins as ETX2, ETX3.
10405 This patch configures PA10, PA11 pins for ETX2, ETX3
10406 instead of PA23, PA24 pins.
10408 Signed-off-by: Anatolij Gustschin <agust@denx.de>
10409 Signed-off-by: Manuel Sahm <Manuel.Sahm@feig.de>
10411 commit f889265753ddf4465d9d580827bb9289bfac55d6
10412 Author: Kenneth Johansson <kenneth@southpole.se>
10413 Date: Sat Jul 12 13:18:34 2008 -0600
10415 fix DIU for small screens
10417 The DIU_DIV register is 8 bit not 5 bit. This prevented large DIV values
10418 so it was not possible to set a slow pixel clock and thus prevented
10419 display on small screens.
10421 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
10422 Acked-by: John Rigby <jrigby@freescale.com>
10424 commit b60b8573875e650e4c69be667bfc88d3ed474a7c
10425 Author: John Rigby <jrigby@freescale.com>
10426 Date: Fri Jul 11 14:44:09 2008 -0600
10428 ADS5121 cleanup compile warnings
10430 board/ads5121/iopin.c
10431 Replace bit fields in struct iopin_t with a single
10432 field and intialize it via plain old macros.
10433 This fixes the type pun warnings and makes the code
10436 board/ads5121/ads5121.c
10437 Add include iopin.h to ads5121.c for the iopin_initialize
10440 Add an extern void ads5121_diu_init(void)
10442 Signed-off-by: John Rigby <jrigby@freescale.com>
10444 commit bde63587622c4b830a27d1ddf7265843de9e994f
10445 Author: Wolfgang Denk <wd@denx.de>
10446 Date: Fri Jul 11 22:56:11 2008 +0200
10448 Fix some more printf() format issues.
10450 Signed-off-by: Wolfgang Denk <wd@denx.de>
10452 commit 184f1b404a90eef8b425c0e7b3018d59ef9982c8
10453 Author: Wolfgang Denk <wd@denx.de>
10454 Date: Fri Jul 11 22:55:31 2008 +0200
10456 Fixed some out-of-tree build issues
10458 Signed-off-by: Wolfgang Denk <wd@denx.de>
10460 commit 47bf9c71ae838305a3ea3161af8d14e6f3fc2c82
10461 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10462 Date: Wed Jul 9 16:20:23 2008 -0500
10464 ColdFire: Fix FB CS not setup properly for Mcf5282
10466 Remove all CFG_CSn_RO in cpu/mcf52x2/cpu_init.c. If
10467 CFG_CSn_RO is defined as 0, the chipselect will not
10470 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10472 commit bc3ccb139f0836f0a834cfd370a120a00ad7e63a
10473 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10474 Date: Wed Jul 9 15:47:27 2008 -0500
10476 ColdFire: Fix incorrect define for mcf5227x and mcf5445x RTC
10478 Rename CONFIG_MCFTMR to CONFIG_MCFRTC to include real time
10479 clock module in cpu/<cf arch>/cpu_init.c
10481 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10483 commit f94945b517f10e01927101679c62361e03d4e837
10484 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10485 Date: Wed Jul 9 15:25:01 2008 -0500
10487 ColdFire: Fix incorrect board name in MAKEALL for M5253EVBE
10489 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10491 commit 0e0c4357d14a3563c6a2a1e6d5ad6a2cc4f35cab
10492 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10493 Date: Wed Jul 9 15:21:44 2008 -0500
10495 Fix compile error caused by missing timer function
10497 Add #define CONFIG_MCFTMR in EB+MCF-EV123.h configuration file
10499 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10501 commit c37ea031175b807c54e6bad9b270e9bede6c0078
10502 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10503 Date: Wed Jul 9 15:14:25 2008 -0500
10505 Fix compile error caused by incorrect function return type
10507 Rename int mii_init(void) to void mii_init(void)
10509 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10511 commit ab4860b255239dbaecccdd002c8d11f4ef54dd75
10512 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10513 Date: Wed Jun 18 19:27:23 2008 -0500
10515 ColdFire: Fix power up issue for MCF5235
10517 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10519 commit dd08e97361fbc9e79fa5ef1a8acf29273b934b11
10520 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10521 Date: Wed Jun 18 19:19:07 2008 -0500
10523 ColdFire: Fix compiling error for MCF5275
10525 The compiling error was caused by missing a closed parentheses
10528 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10530 commit 94603c2fd4dbe0655878416aa0da9f302d4c30d3
10531 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10532 Date: Wed Jun 18 19:14:01 2008 -0500
10534 ColdFire: Fix timer issue for MCF5272
10536 The timer was assigned to wrong timer memory mapped which
10537 caused udelay() and timer() not working properly.
10539 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10541 commit 3b1e8ac9b43f89cc9291a6a86e6b33ef55801515
10542 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10543 Date: Wed Jun 18 19:12:13 2008 -0500
10545 ColdFire: Change invalid JMP to BRA caught by new v4e toolchain
10547 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
10549 commit 8371dc2066136be21e10b7b9293e469297d77298
10550 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10551 Date: Wed Jun 18 19:05:23 2008 -0500
10553 ColdFire: Add -got=single param for new linux v4e toolchains
10555 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
10557 commit 56d52615cd47bc522ee13bb7ec7e59d6ce9426c7
10558 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10559 Date: Wed Jun 18 13:21:19 2008 -0500
10561 ColdFire: Fix code flash configuration for M547x/M548x boards
10563 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
10565 commit 6e37091afc07fdcc15590093fd066b0cb7399f85
10566 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10567 Date: Tue Jun 24 12:12:16 2008 -0500
10569 ColdFire: Fix warning messages by passing correct data type in board.c
10571 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10573 commit 81cc32322acb1b3225ee45606ced48e2a14824dc
10574 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10575 Date: Thu May 29 12:21:54 2008 -0500
10577 ColdFire: Fix UART baudrate formula
10579 The formula "counter = (u32) (gd->bus_clk / gd->baudrate) / 32"
10580 can generate the wrong divisor due to integer division truncation.
10581 Round the calculated divisor value by adding 1/2 the baudrate
10582 before dividing by the baudrate.
10584 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
10585 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
10587 commit b578fb471444cbd7db1285701ba51343baaf73fb
10588 Author: Stefan Roese <sr@denx.de>
10589 Date: Thu Jul 10 11:38:26 2008 +0200
10591 ppc4xx: Fix include sequence in 4xx_pcie.c
10593 This patch now moves common.h to the top of the inlcude list. This
10594 is needed for boards with CONFIG_PHYS_64BIT set (e.g. katmai), so that
10595 the phys_size_t/phys_addr_t are defined to the correct size in this
10598 Signed-off-by: Stefan Roese <sr@denx.de>
10600 commit 69e2c6d0d13d7c8cf1612ac090bdc4c59ba6858e
10601 Author: Stefan Roese <sr@denx.de>
10602 Date: Fri Jul 11 13:10:56 2008 +0200
10604 ppc4xx: Fix compile warning in 44x_spd_ddr2.c
10606 Signed-off-by: Stefan Roese <sr@denx.de>
10608 commit 6bd9138498c2e4f4f09190108b99157d1b2140b5
10609 Author: Stefan Roese <sr@denx.de>
10610 Date: Fri Jul 11 11:40:13 2008 +0200
10612 ppc4xx: Fix small korat merge problem
10614 Signed-off-by: Stefan Roese <sr@denx.de>
10616 commit 1d0554736a0a1dd59718acda660871ce56b69e18
10617 Author: Stefan Roese <sr@denx.de>
10618 Date: Fri Jul 11 11:34:52 2008 +0200
10620 ppc4xx: Some Rewood cleanups (coding style, leading white spaces)
10622 Signed-off-by: Stefan Roese <sr@denx.de>
10624 commit 3a82113ed5934d498f25080441a8261fc9454b15
10625 Author: Stefan Roese <sr@denx.de>
10626 Date: Thu Jul 10 16:37:09 2008 +0200
10628 ppc4xx: Add 460SX UIC defines
10630 Only the really needed ones are added (cascading and EMAC/MAL).
10632 Signed-off-by: Stefan Roese <sr@denx.de>
10634 commit 26173fc6f60521c2a8072f652f863617fc11ba9a
10635 Author: Stefan Roese <sr@denx.de>
10636 Date: Mon Jun 30 14:11:07 2008 +0200
10638 ppc4xx: Continue cleanup of ppc440.h
10640 This patch continues the ppc440.h cleanup by removing some of the unused
10643 Signed-off-by: Stefan Roese <sr@denx.de>
10645 commit d9056b7913ed6a228d2f33671d916efedee541dd
10646 Author: Stefan Roese <sr@denx.de>
10647 Date: Mon Jun 30 14:05:05 2008 +0200
10649 ppc4xx: Cleanup Katmai & Yucca PCIe register usage
10651 This patch cleans up the 440SPe PCIe register usage. Now only defines
10652 from the include/asm-ppc/4xx_pcie.h are used.
10654 Signed-off-by: Stefan Roese <sr@denx.de>
10656 commit 5de851403b01489b493fa83137ad990b8ce60d1c
10657 Author: Stefan Roese <sr@denx.de>
10658 Date: Thu Jun 26 17:36:39 2008 +0200
10660 ppc4xx: Rework 440GX UIC handling
10662 This patch reworks the 440GX interrupt handling so that the common 4xx
10663 code can be used. The 440GX is an exception to all other 4xx variants
10664 by having the cascading interrupt vectors not on UIC0 but on a special
10665 UIC named UICB0 (UIC Base 0). With this patch now, U-Boot references
10666 the 440GX UICB0 when UIC0 is selected. And the common 4xx interrupt
10667 handling is simpler without any 440GX special cases.
10669 Also some additional cleanup to cpu/ppc4xx/interrupt.c is done.
10671 Signed-off-by: Stefan Roese <sr@denx.de>
10673 commit d1631fe1a05b063ccaf62ea892a8887b829847d1
10674 Author: Stefan Roese <sr@denx.de>
10675 Date: Thu Jun 26 13:40:57 2008 +0200
10677 ppc4xx: Consolidate PPC4xx UIC defines
10679 This 2nd patch now removes all UIC mask bit definition. They should be
10680 generated from the vectors by using the UIC_MASK() macro from now on.
10681 This way only the vectors need to get defined for new PPC's.
10683 Also only the really used interrupt vectors are now defined. This makes
10684 definitions for new PPC versions easier and less error prone.
10686 Another part of this patch is that the 4xx emac driver got a little
10687 cleanup, since now the usage of the interrupts is clearer.
10689 Signed-off-by: Stefan Roese <sr@denx.de>
10691 commit 4fb25a3db3b3839094aa9ab748efd7a95924690b
10692 Author: Stefan Roese <sr@denx.de>
10693 Date: Wed Jun 25 10:59:22 2008 +0200
10695 ppc4xx: Consolidate PPC4xx UIC defines
10697 This patch is the first step to consolidate the UIC related defines in the
10698 4xx headers. Move header from asm-ppc/ppc4xx-intvec.h to
10699 asm-ppc/ppc4xx-uic.h as it will hold all UIC related defines in the next
10702 Signed-off-by: Stefan Roese <sr@denx.de>
10704 commit 7ee2619c20ccecd57966d74d844e6329e141261c
10705 Author: Stefan Roese <sr@denx.de>
10706 Date: Tue Jun 24 17:18:50 2008 +0200
10708 ppc4xx: Consolidate PPC4xx EBC defines
10710 This patch removes all EBC related defines from the PPC4xx headers
10711 ppc405.h and ppc440.h and introduces a new header
10713 include/asm-ppc/ppc4xx-ebc.h
10715 with all those defines.
10717 Signed-off-by: Stefan Roese <sr@denx.de>
10719 commit e321801bed5a6d896d298c00fd20046f039d5d66
10720 Author: Stefan Roese <sr@denx.de>
10721 Date: Thu Jul 10 13:52:44 2008 +0200
10723 ppc4xx: Remove redundant ft_board_setup() functions from some 4xx boards
10725 This patch removes some ft_board_setup() functions from some 4xx boards.
10726 This can be done since we now have a default weak implementation for this
10727 in cpu/ppc4xx/fdt.c. Only board in need for a different/custom
10728 implementation like canyonlands need their own version.
10730 Signed-off-by: Stefan Roese <sr@denx.de>
10732 commit 08250eb2edbd96514d049602d9e134110ac3185f
10733 Author: Stefan Roese <sr@denx.de>
10734 Date: Thu Jul 10 15:32:32 2008 +0200
10736 ppc4xx: Fix merge problems in 44x_spd_ddr2.c
10738 Signed-off-by: Stefan Roese <sr@denx.de>
10740 commit 1740c1bf40e3c6d03ac16c29943fdd9fc1e87038
10741 Author: Grant Erickson <gerickson@nuovations.com>
10742 Date: Tue Jul 8 08:35:00 2008 -0700
10744 ppc4xx: Add MII mode support to the EMAC RGMII Bridge
10746 This patch adds support for placing the RGMII bridge on the
10747 PPC405EX(r) into MII/GMII mode and allows a board-specific
10748 configuration to specify the bridge mode at compile-time.
10750 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
10751 Signed-off-by: Stefan Roese <sr@denx.de>
10753 commit 2e2050842e731c823ce8d41fb0c15579eb70ced9
10754 Author: Grant Erickson <gerickson@nuovations.com>
10755 Date: Wed Jul 9 16:46:35 2008 -0700
10757 ppc4xx: Add Mnemonics for AMCC/IBM DDR2 SDRAM Controller
10759 This patch completes the preprocessor mneomics for the IBM DDR2 SDRAM
10760 controller registers (MODT and INITPLR) used by the
10761 PowerPC405EX(r). The MMODE and MEMODE registers are unified with their
10762 peer values used for the INITPLR MR and EMR registers,
10763 respectively. Finally, a spelling typo is correct (MANUEL to MANUAL).
10765 With these mnemonics in place, the CFG_SDRAM0_* magic numbers for
10766 Kilauea are replaced by equivalent mnemonics to make it easier to
10767 compare and contrast other 405EX(r)-based boards (e.g. during board
10770 Finally, unified the SDRAM controller register dump routine such that
10771 it can be used across all processor variants that utilize the IBM DDR2
10772 SDRAM controller core. It produces output of the form:
10774 PPC4xx IBM DDR2 Register Dump:
10776 SDRAM_MB0CF[40] = 0x00006701
10779 which is '<mnemonic>[<DCR #>] = <value>'. The DCR number is included
10780 since it is not uncommon that the DCR values in header files get mixed
10781 up and it helps to validate, at a glance, they match what is printed
10782 in the user manual.
10785 AMCC Kilauea/Haleakala:
10786 - NFS Linux Boot: PASSED
10787 - NAND Linux Boot: PASSED
10789 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
10790 Signed-off-by: Stefan Roese <sr@denx.de>
10792 commit ad7382d828982e9c1bafc4313ef1b666f6145f58
10793 Author: Grant Erickson <gerickson@nuovations.com>
10794 Date: Wed Jul 9 16:31:59 2008 -0700
10796 ppc4xx: Add AMCC/IBM DDR2 SDRAM ECC Field Mnemonics
10798 Add additional DDR2 SDRAM memory controller DCR mneomnics, condition
10799 revision ID DCR based on 405EX, and add field mnemonics for bus error
10800 status and ECC error status registers.
10802 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
10803 Signed-off-by: Stefan Roese <sr@denx.de>
10805 commit 103201731bd8e85404d0f51a5b4e8abd14c0b6c6
10806 Author: Grant Erickson <gerickson@nuovations.com>
10807 Date: Wed Jul 9 16:31:36 2008 -0700
10809 ppc4xx: Add SDR0_SRST Mnemonics for the 405EX(r)
10811 This patch adds bit field mnemonics for the 405EX(r) SDR0_SRST soft reset register.
10813 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
10814 Signed-off-by: Stefan Roese <sr@denx.de>
10816 commit 5b457d00730d4aa0c6450d21a9104723e606fb98
10817 Author: Grant Erickson <gerickson@nuovations.com>
10818 Date: Wed Jul 9 11:55:46 2008 -0700
10820 PPC4xx: Correct SDRAM_MCSTAT for PPC405EX(r)
10822 While the PowerPC 405EX(r) shares in common the AMCC/IBM DDR2 SDRAM
10823 controller core also used in the 440SP, 440SPe, 460EX, and 460GT, in
10824 the 405EX(r), SDRAM_MCSTAT has a different DCR value.
10826 Its present value on the 405EX(r) causes a read back of 0xFFFFFFFF
10827 which causes SDRAM initialization to periodically fail since it can
10828 prematurely indicate SDRAM ready status.
10830 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
10831 Signed-off-by: Stefan Roese <sr@denx.de>
10833 commit 0ce5c8675bb2c61f1d71fb97f0bbe822663fb93d
10834 Author: Feng Kan <fkan@amcc.com>
10835 Date: Tue Jul 8 22:48:42 2008 -0700
10837 ppc4xx: Initial framework of the AMCC PPC460SX redwood reference board.
10839 Add AMCC Redwood reference board that uses the latest
10840 PPC 464 CPU processor combined with a rich mix of peripheral
10841 controllers. The board will support PCIe, mutiple Gig ethernet
10842 ports, advanced hardware RAID assistance and IEEE 1588.
10844 Signed-off-by: Feng Kan <fkan@amcc.com>
10845 Signed-off-by: Stefan Roese <sr@denx.de>
10847 commit 96e5fc0e6a1861d0fea4efa3cd376df95a5b1b89
10848 Author: Feng Kan <fkan@amcc.com>
10849 Date: Tue Jul 8 22:48:07 2008 -0700
10851 ppc4xx: Add initial 460SX reference board (redwood) config file and defines.
10853 Signed-off-by: Feng Kan <fkan@amcc.com>
10854 Signed-off-by: Stefan Roese <sr@denx.de>
10856 commit 7d30793685efcada183891c78fc892e6c9ba50c7
10857 Author: Feng Kan <fkan@amcc.com>
10858 Date: Tue Jul 8 22:47:31 2008 -0700
10860 ppc4xx: Add initial 460SX defines for the cpu/ppc4xx directory.
10862 Signed-off-by: Feng Kan <fkan@amcc.com>
10863 Signed-off-by: Stefan Roese <sr@denx.de>
10865 commit 9b55a2536919f4de1bb1044e6eb8262c2f53bc96
10866 Author: Wolfgang Denk <wd@denx.de>
10867 Date: Fri Jul 11 01:16:00 2008 +0200
10869 Fix some more print() format errors.
10871 Signed-off-by: Wolfgang Denk <wd@denx.de>
10873 commit fdd70d1921b87287d9a99d1be99bc35226c2b412
10874 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10875 Date: Thu Jul 10 20:57:54 2008 +0200
10877 MAKEALL: remove duplicated at91 from ARM9 list and add LIST_at91 to arm
10879 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
10881 commit c6457e3b8bc79a97381cf7deffa08f7c5a24f86c
10882 Author: Sergey Lapin <slapin@ossfans.org>
10883 Date: Thu Jun 5 11:06:29 2008 +0400
10885 DataFlash AT45DB021 support
10887 Some boards based on AT91SAM926X-EK use smaller DF chips to keep
10888 bootstrap, u-boot and its environment, using NAND or other external
10889 storage for kernel and rootfs. This patch adds support for
10890 small 1024x263 chip.
10892 Signed-off-by: Sergey Lapin <slapin@ossfans.org>
10894 commit 4109df6f75fc00ab7da56d286ba50149a0d16a69
10895 Author: Kim Phillips <kim.phillips@freescale.com>
10896 Date: Thu Jul 10 14:00:15 2008 -0500
10898 silence misc printf formatting compiler warnings
10900 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
10902 commit 3d71c81a9bb03f866a1e98da96363ef3f46c76b3
10903 Author: Markus Klotzbücher <mk@denx.de>
10904 Date: Thu Jul 10 14:47:09 2008 +0200
10906 USB: shutdown USB before booting
10908 This patch fixes a potentially serious issue related to USB which was
10909 discouvered by Martin Krause <martin.krause@tqs.de> and fixed for
10910 ARM920T. Martin wrote:
10912 Turn off USB to prevent the host controller from writing to the
10913 SDRAM while Linux is booting. This could happen, because the HCCA
10914 (Host Controller Communication Area) lies within the SDRAM and the
10915 host controller writes continously to this area (as busmaster!), for
10916 example to increase the HccaFrameNumber variable, which happens
10919 This is a slightly modified version of the patch in order to shutdown
10920 USB when booting on all architectures.
10922 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
10924 commit f31c49db2a5e076f415c0785eb37f67f2faa5fc8
10925 Author: Martha Marx <mmarx@silicontkx.com>
10926 Date: Thu May 29 14:23:25 2008 -0400
10928 Configuration changes for ADS5121 Rev 3
10930 ADS5121 Rev 3 board is now the default config
10932 config targets are now
10937 M41T62 on board RTC
10940 ads5121_rev2_config
10945 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
10946 Acked-by: Grant Likely <grant.likely@secretlab.ca>
10947 Acked-by: John Rigby <jrigby@freescale.com>
10949 commit 16bee7b0dc294ee01ca2434aa1dd3bd717a69615
10950 Author: Martha Marx <mmarx@silicontkx.com>
10951 Date: Thu May 29 15:37:21 2008 -0400
10953 Consolidate ADS5121 IO Pin configuration
10955 Consolidate ADS5121 IO Pin configuration to one file
10956 board/ads5121/iopin.c.
10958 Remove pin config from cpu/mpc512x/fec.c
10960 Signed-off-by: Martha Marx <mmarx@silicontkx.com>
10961 Acked-by: Grant Likely <grant.likely@secretlab.ca>
10962 Acked-by: John Rigby <jrigby@freescale.com>
10964 commit d4692b0ba83b7b454bbd92bad1f4befe6e1657b7
10965 Author: Christian Eggers <christian@p2400.wgnetz.xx>
10966 Date: Fri Jun 27 19:46:51 2008 +0200
10968 Fix "usb part" command
10970 Only print partition for selected device if user supplied the <dev>
10971 arg with the "usb part [dev]" command.
10973 Signed-off-by: Christian Eggers <ceggers@gmx.de>
10974 Acked-by: Markus Klotzbuecher <mk@denx.de>
10976 commit cc83b27217f7380041fea386ddb6d6d9b261617d
10977 Author: Harald Welte <laforge@gnumonks.org>
10978 Date: Mon Jul 7 00:58:05 2008 +0800
10980 fix USB devices with multiple configurations
10982 This patch fixes bugs in usbdcore*.c related to the use of devices
10983 with multiple configurations.
10985 The original code made mistakes about the meaning of configuration value and
10986 configuration index, and the resulting off-by-one errors resulted in:
10988 * SET_CONFIGURATION always selected the first configuration, no matter what
10989 wValue is being passed.
10990 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
10991 configuration (index 0).
10993 Signed-off-by: Harald Welte <laforge@openmoko.org>
10994 Acked-by: Markus Klotzbuecher <mk@denx.de>
10996 commit 06c53beae1a726e707971c555613f09b270a2461
10997 Author: Wolfgang Denk <wd@denx.de>
10998 Date: Thu Jul 10 13:16:09 2008 +0200
11000 Fix some more print() format errors.
11002 Signed-off-by: Wolfgang Denk <wd@denx.de>
11004 commit d4b5f3fa001228d76e2c3380cedadf804b802c2a
11005 Author: Christian Eggers <christian@p2400.wgnetz.xx>
11006 Date: Fri Jun 27 19:46:51 2008 +0200
11008 Fix "usb part" command
11010 Only print partition for selected device if user supplied the <dev>
11011 arg with the "usb part [dev]" command.
11013 Signed-off-by: Christian Eggers <ceggers@gmx.de>
11014 Acked-by: Markus Klotzbuecher <mk@denx.de>
11016 commit e73b5212e0463a3db0af0a5c95c75bfb762ca973
11017 Author: Harald Welte <laforge@gnumonks.org>
11018 Date: Mon Jul 7 00:58:05 2008 +0800
11020 fix USB devices with multiple configurations
11022 This patch fixes bugs in usbdcore*.c related to the use of devices
11023 with multiple configurations.
11025 The original code made mistakes about the meaning of configuration value and
11026 configuration index, and the resulting off-by-one errors resulted in:
11028 * SET_CONFIGURATION always selected the first configuration, no matter what
11029 wValue is being passed.
11030 * GET_DESCRIPTOR/CONFIGURATION always returned the descriptor for the first
11031 configuration (index 0).
11033 Signed-off-by: Harald Welte <laforge@openmoko.org>
11034 Acked-by: Markus Klotzbuecher <mk@denx.de>
11036 commit e870690bdca154943ecadd5212d2d59c1b9d391b
11037 Author: Stefan Roese <sr@denx.de>
11038 Date: Thu Jul 10 10:10:54 2008 +0200
11040 MTD/NAND: Fix printf format warning in nand code
11042 This patch fixes NAND related printf format warning. Those warnings are
11043 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
11044 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
11047 Signed-off-by: Stefan Roese <sr@denx.de>
11049 commit 10943c9afa25694bd9999461f4e9e50ce22fff2b
11050 Author: Stefan Roese <sr@denx.de>
11051 Date: Thu Jul 10 10:00:45 2008 +0200
11053 rtc: Fix printf format warning in m41t60.c
11055 Signed-off-by: Stefan Roese <sr@denx.de>
11057 commit dc1da42f814cd71e6756c2cf62af1ada1d0581fb
11058 Author: Stefan Roese <sr@denx.de>
11059 Date: Tue Jul 8 12:01:47 2008 +0200
11061 pci: Move PCI device configuration check into a separate weak function
11063 This patch moves the check, if a device should be skipped in PCI PNP
11064 configuration into the function pci_skip_dev(). This function is defined
11065 as weak so that it can be overwritten by a platform specific one if
11066 needed. The check if the device should get printed in the PCI summary upon
11067 bootup (when CONFIG_PCI_SCAN_SHOW is defined) is moved to the function
11068 pci_print_dev() which is also defined as weak too.
11070 Signed-off-by: Stefan Roese <sr@denx.de>
11072 commit b002144e1dc21374b1ef5281fe6b5d014af96650
11073 Author: Stefan Roese <sr@denx.de>
11074 Date: Thu Jul 10 09:58:06 2008 +0200
11076 ppc4xx: Fix printf format warnings now visible with the updated format check
11078 This patch fixes ppc4xx related printf format warning. Those warnings are
11079 now visible since patch dc4b0b38d4aadf08826f6c31270f1eecd27964fd
11080 [Fix printf errors.] by Andrew Klossner has been applied. Thanks, this is
11083 Signed-off-by: Stefan Roese <sr@denx.de>
11085 commit 5d812b8b4ad9667c77a5bf92b4ba81699abc9fc3
11086 Author: Stefan Roese <sr@denx.de>
11087 Date: Wed Jul 9 17:33:57 2008 +0200
11089 ppc4xx: Enable support for > 2GB SDRAM on AMCC Katmai
11091 Newer PPC's like 440SPe, 460EX/GT can be equipped with more than 2GB of SDRAM.
11092 To support such configurations, we "only" map the first 2GB via the TLB's. We
11093 need some free virtual address space for the remaining peripherals like, SoC
11094 devices, FLASH etc.
11096 Note that ECC is currently not supported on configurations with more than 2GB
11097 SDRAM. This is because we only map the first 2GB on such systems, and therefore
11098 the ECC parity byte of the remaining area can't be written.
11100 Signed-off-by: Stefan Roese <sr@denx.de>
11102 commit cf1c2ed91df26903b956948f37f82de9e1158a89
11103 Author: Larry Johnson <lrj@acm.org>
11104 Date: Sat Jun 14 17:02:49 2008 -0400
11106 ppc4xx: Remove implementation of testdram() from Korat board support
11108 Signed-off-by: Larry Johnson <lrj@acm.org>
11109 Signed-off-by: Stefan Roese <sr@denx.de>
11111 commit 47ce4a28ccfcfb803aa68d3d4505a8de056a8a5e
11112 Author: Larry Johnson <lrj@acm.org>
11113 Date: Sat Jun 14 16:53:02 2008 -0400
11115 ppc4xx: Update and add FDT to Korat board support
11117 Signed-off-by: Larry Johnson <lrj@acm.org>
11118 Signed-off-by: Stefan Roese <sr@denx.de>
11120 commit 4188f0491886b3b486164e819c0a83fdb97efd7d
11121 Author: Wolfgang Denk <wd@denx.de>
11122 Date: Thu Jul 10 01:13:30 2008 +0200
11124 Minor coding style cleanup; update CHANGELOG
11126 Signed-off-by: Wolfgang Denk <wd@denx.de>
11128 commit 8915f1189c1d29d8be7f4de325702d90a8988219
11129 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
11130 Date: Wed Jul 9 17:50:45 2008 -0400
11132 e1000: add support for 82545GM 64bit PCI-X copper variant
11134 This PCI-X e1000 variant works by just adding in the correct
11135 PCI IDs in the appropriate places.
11137 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
11139 commit 21ae6ca0315afdbc65dc3e95ffd5763e6773d030
11140 Author: Daniel Hellstrom <daniel@gaisler.com>
11141 Date: Wed Jul 9 12:34:11 2008 +0000
11143 SPARC: Build error fix
11145 (introduced by commit 391fd93ab23e15ab3dd58a54f5b609024009c378)
11147 This patch makes SPARC targets build again. It is caused by
11148 phys_addr_t and phys_size_t being defined in the wrong header
11149 file. include/lmb.h need those typedefs to build.
11151 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
11153 commit 11ccc33fa21acce108f6b4a6936e3271af904c64
11154 Author: Marcel Ziswiler <marcel@ziswiler.com>
11155 Date: Wed Jul 9 08:17:15 2008 +0200
11157 Many spelling fixes in README.
11159 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
11161 commit dbab0691d2533560f7e91b92ae844046a9ad1df3
11162 Author: Marcel Ziswiler <marcel@ziswiler.com>
11163 Date: Wed Jul 9 08:17:06 2008 +0200
11165 Minor spelling fix in comment.
11167 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
11169 commit 89134ea1f67208fd3160bdbb0b9eaab4eab98484
11170 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11171 Date: Tue Jul 8 14:54:58 2008 -0400
11173 Round the serial port clock divisor value returned by calc_divisor()
11175 Round the serial port clock divisor value returned by
11178 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11179 Signed-off-by: John Roberts <john.roberts@pwav.com>
11181 commit 9d2e3947b2944e5bb85b4335533f8c93c58445fe
11182 Author: Scott Wood <scottwood@freescale.com>
11183 Date: Wed Jul 9 17:47:52 2008 -0500
11185 NAND: ifdef-protect most of nand.h when using legacy NAND.
11187 Some macros such as NAND_CTL_SETALE conflict between current and legacy
11188 NAND, being defined by the subsystem in the former case and the board
11189 config file in the latter.
11191 Signed-off-by: Scott Wood <scottwood@freescale.com>
11193 commit 2b1fa9d383cbbb7d347c1583bd6ca4e181ba8e9e
11194 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11195 Date: Tue Jul 8 11:02:05 2008 -0400
11197 ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)
11199 ARM: Fix for incorrect version of patch applied when
11200 adding support for the Lyrtech SFF-SDR board.
11202 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11203 Signed-off-by: Philip Balister, OpenSDR <philip@opensdr.com>
11205 commit 47042b363ee5022b8180c65d3f4558e7972c79cd
11206 Author: Kyungmin Park <kmpark@infradead.org>
11207 Date: Tue Jul 8 09:08:40 2008 +0900
11209 Remove useless print message at apollon
11211 Remove useless print message at apollon
11213 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
11215 commit 98874ff329d4a5b32c467b43f6e966e1aa68479f
11216 Author: Andy Fleming <afleming@freescale.com>
11217 Date: Mon Jul 7 14:24:39 2008 -0500
11219 Fix LMB type issues
11221 The LMB code now uses phys_addr_t and phys_size_t. Also, there were a couple
11222 of casting problems in the bootm code that called the LMB functions.
11224 Signed-off-by: Andy Fleming <afleming@freescale.com>
11226 commit da8693a91b8eef75ade8de50a1b2ce035bc5fb54
11227 Author: Kumar Gala <galak@kernel.crashing.org>
11228 Date: Mon Jul 7 09:39:06 2008 -0500
11230 Fix compiler warnings
11232 gcc-4.3.x generates the following:
11234 bootm.c: In function 'do_bootm_linux':
11235 bootm.c:208: warning: cast from pointer to integer of different size
11236 bootm.c:215: warning: cast from pointer to integer of different size
11238 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11240 commit 5bb12dbd7ae03189b6c13d8737b5a1b37c3df698
11241 Author: Harald Welte <laforge@gnumonks.org>
11242 Date: Mon Jul 7 15:40:39 2008 +0800
11244 Remove code duplication for setting the default environment
11246 common/env_common.c (default_env): new function that resets the environment to
11248 common/env_common.c (env_relocate): use default_env instead of own copy
11249 common/env_nand.c (env_relocate_spec): use default_env instead of own copy
11250 include/environment.h: added default_env prototype
11252 Signed-off-by: Werner Almesberger <werner@openmoko.org>
11253 Signed-off-by: Harald Welte <laforge@openmoko.org>
11255 commit 99c2b434d37863df5dda5207a53760c6506fc2be
11256 Author: Marcel Ziswiler <marcel@ziswiler.com>
11257 Date: Sun Jun 22 16:13:46 2008 +0200
11259 NAND: Fix warning due to missing env_ptr casts to u_char * in env_nand.c.
11261 The writeenv() and readenv() calls introduced by the recently added bad block
11262 management for environment variables were missing casts therefore producing
11263 compile time warnings.
11264 While at it fixing some typo in a comment and indentation.
11266 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
11267 Signed-off-by: Scott Wood <scottwood@freescale.com>
11269 commit 3167c5386ea1c98b638be5d8763ef6d5938ef1bd
11270 Author: Scott Wood <scottwood@freescale.com>
11271 Date: Fri Jun 20 12:38:57 2008 -0500
11273 NAND: Rename DEBUG to MTDDEBUG to avoid namespace pollution.
11275 This is particularly problematic now that non-NAND-specific code is
11276 including <nand.h>, and thus all debugging code is being compiled
11277 regardless of whether it was requested, as reported by Scott McNutt
11278 <smcnutt@psyent.com>.
11280 Signed-off-by: Scott Wood <scottwood@freescale.com>
11282 commit c3bf1ad7baa1b0dd989dedc260b7098b6089ae05
11283 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11284 Date: Thu Jun 12 19:27:58 2008 +0200
11286 mmc: Move atmel_mci driver into drivers/mmc
11288 This makes it easier to use the driver on other platforms.
11290 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11291 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11293 commit d2d54ea449639f3d1a6007e333ab9fcc609a18f0
11294 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11295 Date: Thu Jun 12 19:27:57 2008 +0200
11297 avr32: Use CONFIG_ATMEL_MCI to select the atmel_mci driver
11299 After we move the atmel_mci driver into drivers/mmc, we can't select
11300 it with CONFIG_MMC anymore. Introduce a new symbol specifically for
11301 this driver so that there's no ambiguity.
11303 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11304 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11306 commit 5ce13051a48c62bda9723df3b4778c492fb47f36
11307 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11308 Date: Thu Jun 12 19:27:56 2008 +0200
11310 Create drivers/mmc subdirectory
11312 In order to consolidate more of the various MMC drivers around the
11313 tree, we must first have a common place to put them.
11315 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
11316 Acked-by: Jean-Chritophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11318 commit b502611b51f02718c2d1117d4981dabceb5af6de
11319 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
11320 Date: Sun Jul 6 12:30:09 2008 +0200
11322 Change env_get_char from a global function ptr to a function
11324 This avoids an early global data reference.
11326 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
11328 commit 27269417ade432189b234d9fbac98b54e37b978c
11329 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
11330 Date: Sun Jul 6 13:57:58 2008 +0400
11332 Some copy-n-paste fixes in printf usage
11334 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
11336 commit 0e6989b9faf1588e8723535539e88a0df3c71356
11337 Author: Matvejchikov Ilya <matvejchikov@gmail.com>
11338 Date: Sun Jul 6 13:57:00 2008 +0400
11340 FDT memory and pci node fixes for MPC8260ADS
11342 Signed-off-by: Matvejchikov Ilya <matvejchikov@gmail.com>
11344 commit dc4b0b38d4aadf08826f6c31270f1eecd27964fd
11345 Author: Andrew Klossner <andrew@cesa.opbu.xerox.com>
11346 Date: Mon Jul 7 06:41:14 2008 -0700
11350 The compiler will help find mismatches between printf formats and
11351 arguments if you let it. This patch adds the necessary attributes to
11352 declarations in include/common.h, then begins to correct the resulting
11353 compiler warnings. Some of these were bugs, e.g., "$d" instead of
11354 "%d" and incorrect arguments. Others were just annoying, like
11355 int-long mismatches on a system where both are 32 bits. It's worth
11356 fixing the annoying errors to catch the real ones.
11358 Signed-off-by: Andrew Klossner <andrew@cesa.opbu.xerox.com>
11360 commit 417faf285b2527acb2de24c5cd3e2621d385408c
11361 Author: Becky Bruce <becky.bruce@freescale.com>
11362 Date: Wed Jul 9 11:09:41 2008 -0500
11364 Allow print_size to print in GB
11366 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
11368 commit e7c374529c87525c9aa463e0557c287887ae4e9e
11369 Author: Jason McMullan <mcmullan@netapp.com>
11370 Date: Sun Jun 8 23:56:00 2008 -0400
11372 mips: When booting Linux images, add 'ethaddr' and 'eth1addr' to the environment
11374 Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if
11375 they are set in the U-Boot environment.
11377 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
11378 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
11380 commit 0192d7d56e9320819dea262f49789ae18fdd2c72
11381 Author: Stefan Roese <sr@denx.de>
11382 Date: Tue Jul 8 12:57:14 2008 +0200
11384 jedec_flash: Fix AM29DL800BB device ID
11386 As pointed out by Jerry Hicks, this patch corrects the device ID of
11387 the Spansion AM29DL800BB NOR device. Verified against latest Spansion
11388 datasheet (rev C4 from Dezember 2006).
11390 Signed-off-by: Stefan Roese <sr@denx.de>
11392 commit 689c1b30caacba3fbca0b1813facb3ab70b6cd63
11393 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11394 Date: Mon Jul 7 11:22:37 2008 +0900
11396 sh: Fix compile error sh7763rdp board
11398 Disable SH ether driver.
11400 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11402 commit 9e23fe0560b84e324dc5f0ff8813dab2aa34f074
11403 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11404 Date: Tue Jul 8 12:03:24 2008 +0900
11406 sh: Fix SH-boards compile error
11408 By Cleanup out-or-tree building for some boards (.depend)
11409 (commit:c8a3b109f07f02342d097b30908965f7261d9f15)
11410 because filse ware changed, some SH-boards have compile error.
11411 I revised this problem.
11413 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11415 commit 3473ab737282b08ad61841fcbb14c4d264a93a8e
11416 Author: Jason Jin <Jason.jin@freescale.com>
11417 Date: Tue May 13 11:50:36 2008 +0800
11419 Feed the watchdog in u-boot for 8610 board.
11421 The watchdog on 8610 board is enabled by setting sw[6]
11422 to on. Once enabled, the watchdog can not be disabled
11423 by software. So feed the dog in u-boot is necessary for
11426 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
11428 commit 63676841ca2d603b13765f3f7b72ff1a61c23f90
11429 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11430 Date: Wed Jun 18 12:10:33 2008 -0400
11432 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
11434 Remove duplicate code in cpu/arm926ejs/davinci/lxt972.c.
11436 Remove duplicate code in a if/else block in
11437 cpu/arm926ejs/davinci/lxt972.c.
11438 Fixed style issues.
11440 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11441 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11443 commit fec61431a003f5778bafa2624073a571af8bec9f
11444 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11445 Date: Wed Jun 18 12:10:31 2008 -0400
11447 Remove duplicate definitions in include/lxt971a.h.
11449 Remove duplicate definitions in include/lxt971a.h.
11451 Remove duplicate registers and bits definitions in
11452 include/lxt971a.h for standard MII registers, and
11453 use values in include/miiphy.h instead.
11455 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
11456 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11458 commit 9751ee0990f467941da0b095a4e995f863672d7a
11459 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11460 Date: Wed Jun 11 21:05:00 2008 +0900
11462 net: sh: Renesas SH7763 Ethernet device support
11464 Renesas SH7763 has 2 channel Ethernet device.
11465 This is 10/100/1000 Base support.
11466 But this patch check 10/100 Base only.
11468 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11469 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11471 commit 873d97aabc0b1c8822ed1d87e8c5c8ae0a7e4ae9
11472 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11473 Date: Tue Jun 17 16:28:05 2008 +0900
11475 sh: Update Renesas R2DPlus board
11477 New NOR Flash board support and remove old type flash board config.
11478 And Remove network setting from config file.
11480 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11481 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11483 commit ec39d479d2003f15e86e23ebc4e02a1c9a3a181c
11484 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11485 Date: Tue Jun 17 16:28:01 2008 +0900
11487 sh: Update Renesas R7780MP board
11489 New NOR Flash board support and remove network setting from config file.
11491 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11492 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11494 commit c001cd604e9f133743effbddb1c215b48e761c5a
11495 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11496 Date: Tue Jun 17 16:27:56 2008 +0900
11498 sh: Update Renesas Migo-R board
11500 Remove network setting from config file.
11502 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11503 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11505 commit f9599eca7cb5ebe40e5305c8006dced6ecc5cd9e
11506 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11507 Date: Tue Jun 17 16:27:52 2008 +0900
11509 sh: Update Hitachi MS7722SE board
11511 Remove network setting from config file.
11513 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11514 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11516 commit 26209e48e8791670c93108029a5c31a30016c6df
11517 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11518 Date: Tue Jun 17 16:27:48 2008 +0900
11520 sh: Cleanup source code of SH7763RDP
11522 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11523 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11525 commit 5cd5b2c96ef0025762931349d350287aec03ab47
11526 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11527 Date: Tue Jun 17 16:27:44 2008 +0900
11529 sh: Cleanup source code of R2DPlus
11531 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11532 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11534 commit 4ec7e915cfaa31b392755dd2c8231e64736d2ea8
11535 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11536 Date: Tue Jun 17 16:27:41 2008 +0900
11538 sh: Cleanup source code of R7780MP
11540 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11541 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11543 commit 0955ef34c0454ae2ee59a78657a0f01fb3ef16d6
11544 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11545 Date: Tue Jun 17 16:27:38 2008 +0900
11547 sh: Cleanup source code of MS7722SE
11549 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11550 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11552 commit 1d7b31d97b34ccb6f9b20a2465864998b0bf2691
11553 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11554 Date: Tue Jun 17 16:27:34 2008 +0900
11556 sh: Cleanup source code of MS7720SE
11558 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11559 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11561 commit 3ab4827cbe409488ebea1a2ee5094783f2672214
11562 Author: Wolfgang Denk <wd@denx.de>
11563 Date: Mon Jul 7 00:45:03 2008 +0200
11565 SH: fix out of tree building
11567 Signed-off-by: Wolfgang Denk <wd@denx.de>
11569 commit 9047bfa1e737d787be460387dd6f45737eeceb10
11570 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11571 Date: Thu Jul 3 23:16:06 2008 +0900
11573 net: smc911x: Fix typo
11575 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
11577 commit 5ed546fdd0ca46a165661c2009fa743d9c9fceca
11578 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
11579 Date: Wed Jul 2 18:54:08 2008 +0200
11581 update mvBL-M7 board config
11583 update mvBL-M7 config file to use UBOOT_VERSION and define
11586 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
11588 commit 5cacc5d0ec52678a5eb83ecda5c3bcb22eb47f30
11589 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11590 Date: Mon Jun 30 17:45:01 2008 +0900
11592 net: fix compile problem in smc911x driver.
11594 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11595 Acked-by: Ben Warren <biggerbadderben@gmail.com>
11597 commit 9fea65a6c469b1b474b27446feb58738baba2d31
11598 Author: Michal Simek <monstr@monstr.eu>
11599 Date: Tue Jun 24 09:54:09 2008 +0200
11601 ppc4xx: Rename CONFIG_XILINX_ML300 to CONFIG_XILINX_405
11603 This change helps with better handling with others
11604 Xilinx based platform.
11606 Signed-off-by: Michal Simek <monstr@monstr.eu>
11607 Acked-by: Stefan Roese <sr@denx.de>
11609 commit cbb6289569ae4fc6e2d676528e46ffcc72d743d0
11610 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11611 Date: Tue Jun 17 13:07:11 2008 +0900
11613 net: ne2000: Move dev_addr variable from grobal to local.
11615 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11616 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11618 commit dd7e5fa5f847188f78f62f2c52de6cb3def3ecdb
11619 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11620 Date: Tue Jun 17 13:07:15 2008 +0900
11622 net: ne2000: Fix compile error of NE2000
11624 If enable DEBUG, can not compile ne2000 driver.
11626 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
11627 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11629 commit dd35479a50f6c7c31ea491c07c5200c6dfd06a24
11630 Author: Ben Warren <biggerbadderben@gmail.com>
11631 Date: Mon Jun 23 22:57:27 2008 -0700
11633 Add mechanisms for CPU and board-specific Ethernet initialization
11635 This patch is the first step in cleaning up net/eth.c, by moving Ethernet
11636 initialization to CPU or board-specific code. Initial implementation is
11637 only on the Freescale TSEC controller, but others will be added soon.
11639 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11641 commit 7754f2be5d1835d263aad21b5a629526f3e680b0
11642 Author: Wolfgang Denk <wd@denx.de>
11643 Date: Sun Jul 6 01:21:46 2008 +0200
11645 include/sha256.h: fix file permissions.
11647 Signed-off-by: Wolfgang Denk <wd@denx.de>
11649 commit d3bcdf838e2991d58571308fa6e04ca335bc06e8
11650 Author: Patrice Vilchez <patrice.vilchez@atmel.com>
11651 Date: Tue May 27 11:15:29 2008 +0200
11653 [AT91SAM9] Fix NAND FLASH timings
11655 Fix NAND FLASH timings for at91sam9x evaluation kits.
11657 New timings are based on application note
11658 "NAND Flash Support on AT91SAM9 Microcontrollers" available at
11659 http://atmel.com/dyn/resources/prod_documents/doc6255.pdf
11661 Signed-off-by: Patrice Vilchez <patice.vilchez@atmel.com>
11662 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11663 Acked-by: Stelian Pop <stelian@popies.net>
11665 commit 19bd688484322fe62d1a66c8299da6ff9e967ff9
11666 Author: Stelian Pop <stelian@popies.net>
11667 Date: Thu May 22 00:15:40 2008 +0200
11669 Fix boot from NOR due to incorrect reset delay.
11671 AT91 RSTC registers are battery-backuped, so their values
11672 are not reset across power cycles. One of those registers,
11673 the AT91_RSTC_MR register, is being modified by U-Boot, in
11674 the ethernet initialisation routine, to generate a 500ms
11677 Unfortunately, this value is not being restored afterwards,
11678 causing subsequent resets to also last for 500ms.
11680 This long reset sequence causes problems (at least) in the
11681 boot sequence from NOR: by the time the CPU tries to load
11682 a program from the NOR flash, the latter is still in reset
11683 and not yet available.
11685 Additionaly, this patch fixes a bug in the original code which
11686 caused the reset delay to last for 2s instead of 500ms.
11688 Signed-off-by: Stelian Pop <stelian@popies.net>
11689 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11691 commit f492dd636fbbae529e17533995bc6e5813c007f6
11692 Author: Wolfgang Denk <wd@denx.de>
11693 Date: Fri Jul 4 20:11:49 2008 +0200
11697 Signed-off-by: Wolfgang Denk <wd@denx.de>
11699 commit 5e6e350fc489aa19402f1e79037dd8c0a4bbd73d
11700 Author: Wolfgang Denk <wd@denx.de>
11701 Date: Fri Jul 4 20:07:35 2008 +0200
11703 CCM/SCM boards: fix out of tree building
11705 Signed-off-by: Wolfgang Denk <wd@denx.de>
11707 commit ab4c3a490df9a964711556d2a05b0c787db45fde
11708 Author: Wolfgang Denk <wd@denx.de>
11709 Date: Thu Jul 3 23:22:27 2008 +0200
11711 SCM board: fix build errors.
11713 Signed-off-by: Wolfgang Denk <wd@denx.de>
11715 commit a566466f17ba0e2d2b6c250e77da678fb932470d
11716 Author: Wolfgang Denk <wd@denx.de>
11717 Date: Thu Jul 3 23:06:36 2008 +0200
11719 IAD210 board: fix ``"ALIGN" redefined'' warning.
11721 Signed-off-by: Wolfgang Denk <wd@denx.de>
11723 commit ad756314797c16fa5dca23e115aab881011f164f
11724 Author: Wolfgang Denk <wd@denx.de>
11725 Date: Thu Jul 3 23:00:24 2008 +0200
11727 CCM board: fix build errors.
11729 Signed-off-by: Wolfgang Denk <wd@denx.de>
11731 commit f16ed51702cb9fb6fa2e019bbc0fcd1466b57c3b
11732 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
11733 Date: Wed Jul 2 18:54:08 2008 +0200
11735 update mvBL-M7 board config
11737 update mvBL-M7 config file to use UBOOT_VERSION.
11739 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
11740 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
11742 commit ced209c50e80c25f13c083099b05044048d21f4f
11743 Author: Wolfgang Denk <wd@denx.de>
11744 Date: Thu Jul 3 22:39:21 2008 +0200
11746 sacsng board: fix warnings "suggest explicit braces to avoid ambiguous 'else'"
11748 Signed-off-by: Wolfgang Denk <wd@denx.de>
11750 commit 4ff170a8180a79da4cdaab1b30d58cd7b6be565e
11751 Author: Wolfgang Denk <wd@denx.de>
11752 Date: Thu Jul 3 22:34:08 2008 +0200
11754 Cleanup: fix "expected specifier-qualifier-list before 'phys_size_t'" errors
11756 Signed-off-by: Wolfgang Denk <wd@denx.de>
11758 commit 730f298485984b011b6ee8f4acb511cb45a843dd
11759 Author: Wolfgang Denk <wd@denx.de>
11760 Date: Thu Jul 3 22:04:17 2008 +0200
11762 lmb: fix "implicit declaration of function 'lmb_free'" warning
11764 Signed-off-by: Wolfgang Denk <wd@denx.de>
11766 commit 322ef5e28d2dc62571afc699b00add22a8e006e4
11767 Author: Wolfgang Denk <wd@denx.de>
11768 Date: Wed Jul 2 23:53:23 2008 +0200
11770 Cleanup: remove redundant deleting on *~ files
11772 Signed-off-by: Wolfgang Denk <wd@denx.de>
11774 commit c8a3b109f07f02342d097b30908965f7261d9f15
11775 Author: Wolfgang Denk <wd@denx.de>
11776 Date: Wed Jul 2 23:49:18 2008 +0200
11778 Cleanup out-or-tree building for some boards (.depend)
11780 Signed-off-by: Wolfgang Denk <wd@denx.de>
11782 commit a30cc5a340e7f8f5f85a0e08e7f6c4106ce117c4
11783 Author: Wolfgang Denk <wd@denx.de>
11784 Date: Wed Jul 2 23:38:50 2008 +0200
11786 Cleanup: fix out-of-tree building for some boards
11788 Signed-off-by: Wolfgang Denk <wd@denx.de>
11790 commit 461fa68d20861811487944d22291db5a13410e20
11791 Author: Wolfgang Denk <wd@denx.de>
11792 Date: Wed Jul 2 23:00:14 2008 +0200
11794 Cleanup: replace hard-wired $(AR) 'crv' settings by $(ARFLAGS)
11796 Signed-off-by: Wolfgang Denk <wd@denx.de>
11798 commit 5981ebd32017e062b08aa6747cf591276f2db779
11799 Author: Detlev Zundel <dzu@denx.de>
11800 Date: Fri Jun 20 22:26:24 2008 +0200
11802 fdt: Fix typo in variable name.
11804 Signed-off-by: Detlev Zundel <dzu@denx.de>
11806 commit a7a5982cd0f3482f88225af4da7795bc4f6cb9bc
11807 Author: Gary Jennejohn <garyj@denx.de>
11808 Date: Thu Jun 19 11:11:19 2008 +0200
11810 Add logos for RRvision board
11812 Signed-off-by: Gary Jennejohn <garyj@denx.de>
11814 commit ee4ae38342142237ca85913f88ee570c1eb5ca7c
11815 Author: Esben Haabendal <EsbenHaabendal@gmail.com>
11816 Date: Wed Jun 18 11:03:57 2008 +0200
11818 mpc8260: add fdt_fixup_ethernet support
11820 Add support for updating mac-address and local-mac-address in fdt for
11821 all MPC8260 targets.
11823 Signed-off-by: Esben Haabendal <eha@doredevelopment.dk>
11825 commit f6a69559d64498a04e1e0b087a9b920e5775f866
11826 Author: Steven A. Falco <sfalco@harris.com>
11827 Date: Thu Jun 12 13:24:42 2008 -0400
11829 cmd_nvedit.c: clean up syntax highlighting
11831 My text-editor (vim) has a bit of trouble syntax-highlighting the
11832 cmd_nvedit.c file, because it apparently does not parse C
11833 ifdef/else/endif. The following patch does not change the behavior of
11834 the code at all, but does allow the editor to properly
11835 syntax-highlight the file.
11837 Signed-off-by: Steve Falco <sfalco@harris.com>
11839 commit 75678c807a6272ecc5541eb32898c93887f08400
11840 Author: Steven A. Falco <sfalco@harris.com>
11841 Date: Thu Jun 12 13:22:12 2008 -0400
11843 Make setenv() return status
11845 Currently, the setenv function does not return an error code.
11846 This patch allows to test for errors.
11848 Signed-off-by: Steve Falco <sfalco@harris.com>
11850 commit 4928e97c8531283ca9b368b7c29a8a12e726562a
11851 Author: Kumar Gala <galak@kernel.crashing.org>
11852 Date: Wed Jun 11 10:14:06 2008 -0500
11854 PPC: Added fls, fls64, __ilog2_u64, and ffs64 to bitops
11856 fls64, __ilog2_u64, ffs64 are variants that work on an u64,
11857 and fls is used to implement them.
11859 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
11861 commit 83002a77cbdf383015ca384eff5fa31722d8e571
11862 Author: Magnus Lilja <lilja.magnus@gmail.com>
11863 Date: Mon Jun 9 22:58:48 2008 +0200
11865 i.MX31: Cleanup comments in lowlevel_init.S.
11867 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
11869 commit f8cc312bbee69257d741dc9f4062f4a0f5adf609
11870 Author: Ben Warren <biggerbadderben@gmail.com>
11871 Date: Sun Jun 8 23:28:33 2008 -0700
11873 Move conditional compilation of MPC8XXX SPI driver to Makefile
11875 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
11877 commit d92ea21bafb674ee2bf27447970b047845e7b0a2
11878 Author: Juergen Kilb <J.Kilb@gmx.de>
11879 Date: Sun Jun 8 17:59:53 2008 +0200
11881 i.MX31: fixed CTRL-C detection
11883 The Register URXD contains status information in bits [15..8].
11884 With status bit 15 set, CTRL-C was reported as 0x8003 instead
11885 of 0x03. Therefore CTRL-C was not detected.
11886 To solve this, bits [15..8] were masked out now.
11888 Signed-off-by: Juergen Kilb <J.Kilb@gmx.de>
11889 Acked-by: Felix Radensky <felix@embedded-sol.com>
11891 commit dd1c5523d6f44e842e69f2fcb50788c6060eab86
11892 Author: Stefan Roese <sr@denx.de>
11893 Date: Tue Jul 1 17:03:19 2008 +0200
11895 ppc4xx: Fix 460EX/GT PCIe port initialization
11897 This patch fixes a bug where the 460EX/GT PCIe UTLSET1 register was
11898 configured incorrectly. Thanks to Olga Buchonina from AMCC for pointing
11901 Signed-off-by: Stefan Roese <sr@denx.de>
11903 commit b571afde0295b007a45055ee49f8822c753a5651
11904 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11905 Date: Sat Jun 7 12:29:52 2008 +0200
11909 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
11910 Signed-off-by: Francesco Albanese <Francesco.Albanese@swisscom.com>
11912 commit 3bab76a26e03df4ff81342fcc16393ce37d9766b
11913 Author: Marian Balakowicz <m8@semihalf.com>
11914 Date: Fri Jun 6 23:07:40 2008 +0200
11916 Delay FIT format check on sector based devices
11918 Global FIT image operations like format check cannot be performed on
11919 a first sector data, defer them to the point when whole FIT image was
11920 uploaded to a system RAM.
11922 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
11923 Partial ('cmd_nand' case) Acked-by: Grant Erickson <gerickson@nuovations.com>
11924 NAND and DOC bits Acked-by: Scott Wood <scottwood@freescale.com>
11926 commit 9810263afec5ac5f38f92963bb3b6d799e4331d0
11927 Author: Dave Liu <r63238@freescale.com>
11928 Date: Tue Jun 3 17:38:19 2008 +0800
11930 sata: wait for device updating signature to host
11932 The driver need wait for the device updating signature to host.
11933 If we don't wait for it, the driver can not detect the device(disk)
11934 when the system powers up.
11936 Signed-off-by: Dave Liu <daveliu@freescale.com>
11938 commit 745d8a0d3cea82e6d1753e14afb4588c34761b15
11939 Author: Stefan Roese <sr@denx.de>
11940 Date: Sat Jun 28 14:56:17 2008 +0200
11942 ppc4xx: Fix 460EX errata with CPU lockup upon high AHB traffic
11944 This patch implements a fix provided by AMCC so that the lockup upon
11945 simultanious traffic on AHB USB OTG, USB 2.0 and SATA doesn't occur
11948 Set SDR0_AHB_CFG[A2P_INCR4] (bit 24) and clear SDR0_AHB_CFG[A2P_PROT2]
11949 (bit 25) for a new 460EX errata regarding concurrent use of AHB USB OTG,
11950 USB 2.0 host and SATA.
11952 This errata is not officially available yet. I'll update the comment
11953 to add the errata number later.
11955 Signed-off-by: Stefan Roese <sr@denx.de>
11957 commit 8b616edb118e37d05f6401389eaee1c636b22828
11958 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
11959 Date: Mon Jun 2 16:42:19 2008 -0400
11961 serial_pl010.c: add watchdog support
11963 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
11965 commit 86d3273e2b7be3fffb45e20c08535d6ad3aded6b
11966 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
11967 Date: Mon Jun 2 16:40:08 2008 -0400
11969 jffs2_1pass.c: add watchdog support
11971 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
11973 commit 5744ddc6637fea4f7b911a54a5fa860cb81a5d89
11974 Author: Sascha Laue <sascha.laue@liebherr.com>
11975 Date: Fri May 30 09:48:14 2008 +0200
11977 Configure DSP POST; add watchdog reset to diag command
11979 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
11981 commit f13526517859bf6b573e23ff47199e107d1009b5
11982 Author: Tor Krill <tor@excito.com>
11983 Date: Thu May 29 10:40:17 2008 +0200
11985 Add sata sil3114 support
11987 Signed-off-by: Tor Krill <tor@excito.com>
11989 commit e093a247628228100f405b6d7f6b1bfc16141938
11990 Author: Wolfgang Denk <wd@denx.de>
11991 Date: Sat Jun 28 23:34:37 2008 +0200
11993 Coding Style Cleanup
11995 Signed-off-by: Wolfgang Denk <wd@denx.de>
11997 commit 01db232dd7a0ceb81208a9f2545720c80e5bfd83
11998 Author: Wolfgang Denk <wd@denx.de>
11999 Date: Sat Jun 28 23:16:01 2008 +0200
12003 Signed-off-by: Wolfgang Denk <wd@denx.de>
12005 commit c7f879ec2b389c4f2bf726b293bd516f4c692e03
12006 Author: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12007 Date: Wed May 21 13:58:41 2008 -0400
12009 ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)
12011 This patch adds support for the Lyrtech SFF-SDR board,
12012 based on the TI DaVinci architecture (ARM926EJS).
12014 Signed-off-by: Hugo Villeneuve <hugo.villeneuve@lyrtech.com>
12015 Signed-off-by: Philip Balister <philip@balister.org>
12016 Signed-off-by: Wolfgang Denk <wd@denx.de>
12018 commit 341188b9ccaa8d4462d772cc067aca8d7618633a
12019 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12020 Date: Thu May 22 11:09:59 2008 +0200
12022 MMC: Consolidate MMC/SD command definitions
12024 This moves the MMC and SD Card command definitions from
12025 include/asm/arch/mmc.h into include/mmc.h. These definitions are
12026 given by the MMC and SD Card standards, not by any particular
12029 There's a lot more room for consolidation in the MMC drivers which
12030 I'm hoping to get done eventually, but this patch is a start.
12032 Compile-tested for all avr32 boards as well as lpc2292sodimm and
12033 lubbock. This should cover all three mmc drivers in the tree.
12035 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12037 commit fa60edfc4c952626e048c0e065f654b3c1822fa5
12038 Author: Kyungmin Park <kmpark@infradead.org>
12039 Date: Wed May 21 14:38:08 2008 +0900
12041 Use better Ethernet timings for apollon board
12043 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
12045 commit 41c5eaa7253ed82bbae1eda5667755872c615164
12046 Author: Andy Fleming <afleming@freescale.com>
12047 Date: Mon Jun 16 13:58:56 2008 -0500
12049 Resize device tree to allow space for board changes and the chosen node
12051 Current code requires that a compiled device tree have space added to the end to
12052 leave room for extra nodes added by board code (and the chosen node). This
12053 requires that device tree creators anticipate how much space U-Boot will add to
12054 the tree, which is absurd. Ideally, the code would resize and/or relocate the
12055 tree when it needed more space, but this would require a systemic change to the
12056 fdt code, which is non-trivial. Instead, we resize the tree inside
12057 boot_relocate_fdt, reserving either the remainder of the bootmap (in the case
12058 where the fdt is inside the bootmap), or adding CFG_FDT_PAD bytes to the size.
12060 Signed-off-by: Andy Fleming <afleming@freescale.com>
12062 commit 7570a9941fc565922078679a72d246fe208d696d
12063 Author: Andy Fleming <afleming@freescale.com>
12064 Date: Mon Jun 16 13:58:55 2008 -0500
12066 Fix an underflow bug in __lmb_alloc_base
12068 __lmb_alloc_base can underflow if it fails to find free space. This was fixed
12069 in linux with commit d9024df02ffe74d723d97d552f86de3b34beb8cc. This patch
12070 merely updates __lmb_alloc_base to resemble the current version in Linux.
12072 Signed-off-by: Andy Fleming <afleming@freescale.com>
12074 commit 63796c4e61b207d2e635729d41b7a7f7d188b03c
12075 Author: Andy Fleming <afleming@freescale.com>
12076 Date: Mon Jun 16 13:58:54 2008 -0500
12080 lmb_free allows us to unreserve some memory so we can use lmb_alloc_base or
12081 lmb_reserve to temporarily reserve some memory.
12083 Signed-off-by: Andy Fleming <afleming@freescale.com>
12085 commit 4b03ac8b5102ad95f9fede7d13fa236977593e7d
12086 Author: Andy Fleming <afleming@freescale.com>
12087 Date: Mon Jun 16 13:58:53 2008 -0500
12091 ALIGN() returns the smallest aligned value greater than the passed
12092 in address or size. Taken from Linux.
12094 Signed-off-by: Andy Fleming <afleming@freescale.com>
12096 commit 93262af85e3e9d9974c6c08fbd37a9a72e090ca2
12097 Author: Stefan Roese <sr@denx.de>
12098 Date: Tue Jun 24 17:15:22 2008 +0200
12100 ppc4xx: Fix compilation problems with phys_size_t
12102 This patch includes <asm/types.h> before <asm/u-boot.h> in some 4xx
12103 board specific files where it has been missing.
12105 Signed-off-by: Stefan Roese <sr@denx.de>
12107 commit 28eab0d77352b84885f938759bf2612b7bf0bc44
12108 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
12109 Date: Mon May 19 12:26:38 2008 +0200
12111 Conditionally add -fno-stack-protector to CFLAGS
12113 When compile-testing on powerpc, I get errors like this:
12115 net/nfs.c:422: undefined reference to `__stack_chk_fail_local'
12117 This seems to be because -fstack-protector is on by default, so
12118 let's explicitly disable it on all architectures that support the
12121 The Ubuntu toolchain is affected by this problem, and according to
12122 Mike Frysinger, Gentoo has been running with SSP enabled for years.
12123 More and more distros are turning SSP on by default, so this problem
12124 is likely to get worse in the future.
12126 Also, powerpc just happens to be one of the arches I do
12127 compile-testing on. There may be other arches affected by this too.
12129 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
12131 commit dfd3be881c03a26e31f0dea4a42e76061fa610ac
12132 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12133 Date: Sun May 18 19:09:52 2008 +0200
12135 pcmcia/ti_pci1410a: Move compile condition to the Makefile
12137 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12139 commit 72d5d5f7b5c74a188df238ec6dd824d80c74857a
12140 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12141 Date: Sun May 18 19:09:51 2008 +0200
12143 pxa_pcmcia: Move compile condition to the Makefile
12145 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12147 commit c9eff32881fb429101c937cf8c268f1d42e5c2a9
12148 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12149 Date: Sun May 18 19:09:50 2008 +0200
12151 marabun_pcmcia: Move compile condition to the Makefile
12153 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
12155 commit 6a19c46cae43c16c528eddefae3db97134f1915d
12156 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
12157 Date: Mon Jun 23 13:25:34 2008 +0200
12159 fix non-working mvBL-M7
12161 Add missing #define CONFIG_HIGH_BATS in mvBL-M7 board config file.
12163 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12164 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12166 commit 846f1574ddddeda2bc227655e687308695f41cdc
12167 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
12168 Date: Mon Jun 23 11:40:56 2008 +0200
12170 fix system config overwrite @ MPC834x and MPC8313
12172 During 83xx setup the "System I/O configuration register high" gets
12173 overwritten with user defined value if CFG_SICRH is defined.
12175 Regarding to the MPC834x manual (Table 5-28 reve.1) bits 28+29 of SICRH
12176 must keep their reset value regardless of configuration.
12178 On my board (using RGMII) those bits are set after reset - yet it's
12179 unclear where they come from.
12181 The patch keeps both bits on MPC834x and MPC8313.
12183 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12184 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12186 commit 4890246a2c5df90a74e2941e3673a49bbd36aee9
12187 Author: Kim Phillips <kim.phillips@freescale.com>
12188 Date: Tue Jun 17 17:45:27 2008 -0500
12190 mpc83xx: move CPU_TYPE_ENTRY over to processor.h
12194 cpu.c:47:1: warning: "CPU_TYPE_ENTRY" redefined
12195 In file included from cpu.c:33:
12196 /home/kim/git/u-boot/include/asm/processor.h:982:1: warning: this is the location of the previous definition
12198 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12200 commit aac7a5095b968d6c9a3e6422f31b4ad203cac9c8
12201 Author: Stefan Roese <sr@denx.de>
12202 Date: Mon Jun 23 11:15:09 2008 +0200
12204 ppc4xx: Fix problem in gpio_config()
12206 As pointed out by Guennadi Liakhovetski (thanks), pin2 is already shifted
12207 left by one. So the additional shift is bogus.
12209 Signed-off-by: Stefan Roese <sr@denx.de>
12211 commit 40777812316fc252c941665c0f60c148fd79d50f
12212 Author: Detlev Zundel <dzu@denx.de>
12213 Date: Fri Jun 20 22:24:05 2008 +0200
12215 fdt: Fix typo in variable name.
12217 Signed-off-by: Detlev Zundel <dzu@denx.de>
12219 commit 5f723a3b98c630bde33de74351f2121691fdef14
12220 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12221 Date: Fri Jun 20 10:41:05 2008 +0200
12223 avr32: Enable SPI flash support on ATNGW100
12225 The ATNGW100 has 8MB DataFlash on board. Give users access to it through
12226 the new SPI flash framework.
12228 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12230 commit 5605ef6b5802921cbefe6a933a9dea3497396b5c
12231 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12232 Date: Fri Jun 20 12:44:28 2008 +0200
12234 avr32: Fix SPI portmux initialization
12236 Use the new GPIO manipulation functions to set up the chip select lines,
12237 and make sure both busses use GPIO for chip select control.
12239 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12241 commit 4688f9e34a87e825aed34d07c9ca7a273e6fc8ab
12242 Author: Peter Ma <pma@mediamatech.com>
12243 Date: Sun Jun 1 22:59:24 2008 -0700
12245 avr32: Add GPIO manipulation functions
12247 Adds GPIO manipulation functions for AVR32 AP7 platform.
12249 Signed-off-by: Peter Ma <pma@mediamatech.com>
12250 [haavard.skinnemoen@atmel.com: coding style fixup, slight simplification]
12251 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
12253 commit b4fe1a71090c73efc6e4188eed188b2ff67fc02a
12254 Author: Wolfgang Grandegger <wg@grandegger.com>
12255 Date: Thu Jun 5 13:02:30 2008 +0200
12257 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
12259 This patch is based on the following patch sent a few minutes ago:
12260 "NAND FSL UPM: driver re-write using the hwcontrol callback"
12261 It is untested, of course. Anton, could you please give it a try.
12263 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12264 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12266 commit 96026d42fa4e646d28318c0a1438aac4b2017909
12267 Author: Anatolij Gustschin <agust@denx.de>
12268 Date: Thu Jun 12 12:40:11 2008 +0200
12270 Fix 4xx build issue
12272 Building for 4xx doesn't work since commit 4dbdb768:
12274 In file included from 4xx_pcie.c:28:
12275 include/asm/processor.h:971: error: expected ')' before 'ver'
12276 make[1]: *** [4xx_pcie.o] Error 1
12278 This patch fixes the problem.
12280 Signed-off-by: Anatolij Gustschin <agust@denx.de>
12281 Acked-by: Stefan Roese <sr@denx.de>
12282 Acked-by: Kumar Gala <galak@kernel.crashing.org>
12284 commit a036b0443657fe0f4773786de9092251869f08ac
12285 Author: Kumar Gala <galak@kernel.crashing.org>
12286 Date: Thu Jun 19 01:45:50 2008 -0500
12288 MPC8610HPCD: Report board id, board version and fpga version.
12290 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12292 commit 7de8c21f14df9c20fdcf6027aec8e8545f75f835
12293 Author: Kumar Gala <galak@kernel.crashing.org>
12294 Date: Thu Jun 19 01:45:27 2008 -0500
12296 MPC8641HPCN: Report board id, board version and fpga version.
12298 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12300 commit fb8c061ea05fc68d37e2a8b9f8c949d76c8d71a8
12301 Author: Stefan Roese <sr@denx.de>
12302 Date: Mon Jun 16 10:40:02 2008 +0200
12304 cfi-flash: Fix problem in flash_toggle(), busy was not detected reliably
12306 This patch simplifies flash_toggle() (AMD commandset), which is used to
12307 detect if a FLASH device is still busy with erase/program operations. On
12308 800MHz Canyonlands/Glacier boards (460EX/GT) the current implementation
12309 did not detect the busy state reliably, resulting in non erased sectors
12310 etc. This patch now simplifies this function by "just" comparing the
12311 complete data-word instead of ANDing it with the command-word (0x40)
12312 before the compatison. It is done the same way in the Linux implementation
12313 chip_ready() in cfi_cmdset_0002.c.
12315 Signed-off-by: Stefan Roese <sr@denx.de>
12317 commit 9e4006bca3d9fb4a2d061996771036cb01e539d3
12318 Author: Philip Balister <philip@balister.org>
12319 Date: Mon Jun 16 08:58:07 2008 -0400
12321 NAND: Add missing declaration to non-redundant saveenv().
12323 Signed-off-by: Scott Wood <scottwood@freescale.com>
12325 commit 2cdb7f50ac59594540fffdf8dbd7b12beac79c52
12326 Author: Wolfgang Grandegger <wg@grandegger.com>
12327 Date: Mon Jun 2 15:09:55 2008 +0200
12329 MPC8360ERDK: adapt NAND interface for the re-written FSL NAND UPM driver
12331 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12332 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12333 Signed-off-by: Scott Wood <scottwood@freescale.com>
12335 commit 212ed90615c3d20fa6bd73d70d5153bd0d124e5f
12336 Author: Stefan Roese <sr@denx.de>
12337 Date: Tue Jun 10 15:34:11 2008 +0200
12339 ppc4xx: Canyonlands: Disable the RTC M41T62 square wave output
12341 This patch disables the square wave output of the M41T62 RTC used on
12342 Canyonlands & Glacier. Here the explanation:
12344 The serial real-time clock part used in the design is an
12345 STMicro M41T62. This part has a full-time 32KHz square wave
12346 output that is connected to the TmrClk input to the
12347 processor. The default state for this square wave output is
12348 enabled so the output runs continuously when the board is
12349 powered normally and also from the battery. The TmrClk input
12350 to the processor goes to ground when the power is removed
12351 from the board/processor, and therefore the running square
12352 wave output is driving ground which drains the battery quickly.
12354 Signed-off-by: Stefan Roese <sr@denx.de>
12356 commit a94f22f08f280905926219e568568964cb9eeb9d
12357 Author: Andy Fleming <afleming@freescale.com>
12358 Date: Wed Jun 11 18:10:20 2008 -0500
12360 Fix build issue with string.h and linux/string.h
12363 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
12364 Author: Wolfgang Denk <wd@denx.de>
12365 Date: Fri Jun 6 14:28:14 2008 +0200
12367 tools/mkimage: fix compiler warnings on some systems.
12369 Broke building on some systems, because the host's string.h was interfering
12370 with u-boot's linux/string.h. It doesn't look like we need the u-boot one if
12371 we're building for the host, so now we only include when building inside
12374 Signed-off-by: Andy Fleming <afleming@freescale.com>
12376 commit 9973e3c614721bbf169882ffc3be266a6611cd60
12377 Author: Becky Bruce <becky.bruce@freescale.com>
12378 Date: Mon Jun 9 16:03:40 2008 -0500
12380 Change initdram() return type to phys_size_t
12382 This patch changes the return type of initdram() from long int to phys_size_t.
12383 This is required for a couple of reasons: long int limits the amount of dram
12384 to 2GB, and u-boot in general is moving over to phys_size_t to represent the
12385 size of physical memory. phys_size_t is defined as an unsigned long on almost
12386 all current platforms.
12388 This patch *only* changes the return type of the initdram function (in
12389 include/common.h, as well as in each board's implementation of initdram). It
12390 does not actually modify the code inside the function on any of the platforms;
12391 platforms which wish to support more than 2GB of DRAM will need to modify
12392 their initdram() function code.
12394 Build tested with MAKEALL for ppc, arm, mips, mips-el. Booted on powerpc
12397 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12399 commit 391fd93ab23e15ab3dd58a54f5b609024009c378
12400 Author: Becky Bruce <becky.bruce@freescale.com>
12401 Date: Mon Jun 9 20:37:18 2008 -0500
12403 Change lmb to use phys_size_t/phys_addr_t
12405 This updates the lmb code to use phys_size_t
12406 and phys_addr_t instead of unsigned long. Other code
12407 which interacts with this code, like getenv_bootm_size()
12410 Booted on MPC8641HPCN, build-tested ppc, arm, mips.
12412 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12414 commit 61b09fc2952dc636017df4e7970e3de132276ba1
12415 Author: Becky Bruce <becky.bruce@freescale.com>
12416 Date: Mon Jun 9 20:37:17 2008 -0500
12418 Change print_size to take phys_size_t
12420 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12422 commit b57ca3e128cc10a133ba79bc7ec3e7b50e7c8fbe
12423 Author: Becky Bruce <becky.bruce@freescale.com>
12424 Date: Mon Jun 9 20:37:16 2008 -0500
12426 Change bd/gd memsize/ram_size to be phys_size_t.
12428 Currently, both are defined as an unsigned long, but
12429 should be phys_size_t. This should result in no real change,
12430 since phys_size_t is currently an unsigned long for all the
12431 default configs. Also add print_lnum to cmd_bdinfo to deal
12432 with the potentially wider memsize.
12434 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
12436 commit ba04f7010958e88a8910f2a123fee53fdc72e013
12437 Author: Kumar Gala <galak@kernel.crashing.org>
12438 Date: Tue Jun 10 16:16:02 2008 -0500
12440 FSL LAW: Add new interface to use the last free LAW
12442 LAWs have the concept of priority so its useful to be able to allocate
12443 the lowest (highest number) priority. We will end up using this with the
12446 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12448 commit 859a86a25c569d3665ff413d1d923394b8a961f3
12449 Author: Kumar Gala <galak@kernel.crashing.org>
12450 Date: Wed Jun 11 00:51:45 2008 -0500
12452 85xx/86xx: Move to dynamic mgmt of LAWs
12454 With the new LAW interface (set_next_law) we can move to letting the
12455 system allocate which LAWs are used for what purpose. This makes life
12456 a bit easier going forward with the new DDR code.
12458 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12459 Signed-off-by: Andy Fleming <afleming@freescale.com>
12460 Acked-by: Jon Loeliger <jdl@freescale.com>
12461 Acked-by: Becky Bruce <becky.bruce@freescale.com>
12463 commit f060054dadbbe7027ca088eed806a3ef1f82fdb7
12464 Author: Kumar Gala <galak@kernel.crashing.org>
12465 Date: Wed Jun 11 00:44:10 2008 -0500
12467 FSL LAW: Keep track of LAW allocations
12469 Make it so we keep track of which LAWs have allocated and provide
12470 a function (set_next_law) which can allocate a LAW for us if one is
12473 In the future we will move to doing more "dynamic" LAW allocation
12474 since the majority of users dont really care about what LAW number
12477 Also, add CONFIG_MPC8540 or CONFIG_MPC8560 to those boards which needed them
12479 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12480 Signed-off-by: Andy Fleming <afleming@freescale.com>
12482 commit ddde74a159caa6e18b481fec01d40b885aebb566
12483 Author: Kumar Gala <galak@kernel.crashing.org>
12484 Date: Mon Jun 9 22:31:57 2008 -0500
12486 85xx: remove dummy board_early_init_f
12488 A number of board ports have empty version of board_early_init_f
12489 for no reason since we control its via CONFIG_BOARD_EARLY_INIT_F.
12491 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12493 commit 81e56e9af0d43712db8efb843606a8d62eab454f
12494 Author: Kumar Gala <galak@kernel.crashing.org>
12495 Date: Mon Jun 9 18:55:38 2008 -0500
12497 MPC8544DS: Update config.h
12499 * Enable flash progress
12500 * remove CLEAR_LAW0 since we dont really use it
12502 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12504 commit 978e81604c1b28526ed580df0fbe64eb8384e94f
12505 Author: Kumar Gala <galak@kernel.crashing.org>
12506 Date: Mon Jun 9 13:37:24 2008 -0500
12508 85xx: Remove unused and unconfigured memory test code.
12510 Remove unused and unconfigured DDR test code from FSL 85xx boards.
12511 Besides, other common code exists.
12513 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12515 commit a23cddde1a95f987e3fe2a720a7ec9375b7264d7
12516 Author: Sergei Poselenov <sposelenov@emcraft.com>
12517 Date: Fri Jun 6 15:42:45 2008 +0200
12519 Socrates: Added FPGA base address update in FDT.
12521 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12523 commit fd51b0e0e620b8bc9fd4f6daa3a4fa6f5e1316f4
12524 Author: Sergei Poselenov <sposelenov@emcraft.com>
12525 Date: Fri Jun 6 15:42:44 2008 +0200
12527 Socrates: NAND support added. Changed the U-Boot base address and
12529 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12531 commit 248ae5cfc8bf69074d1da099dc495d8e06070547
12532 Author: Sergei Poselenov <sposelenov@emcraft.com>
12533 Date: Fri Jun 6 15:42:43 2008 +0200
12535 NAND: Added support for 128-bit OOB, adapted
12537 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12539 commit 31ca0208612f2eb57690110d7c2815953650e47b
12540 Author: Sergei Poselenov <sposelenov@emcraft.com>
12541 Date: Fri Jun 6 15:42:42 2008 +0200
12543 Socrates: added missed file with UPMA configuration data.
12545 Signed-of-by: Sergei Poselenov <sposelenov@emcraft.com>
12547 commit 59abd15b43cab7a4d19de4ba0943837d9555f7ba
12548 Author: Sergei Poselenov <sposelenov@emcraft.com>
12549 Date: Fri Jun 6 15:42:41 2008 +0200
12551 Socrates: Added FPGA mapping. LAWs and TLBs cleanup.
12553 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12555 commit 740280e68ccc0b971e613face7eaaa8bd1382b8c
12556 Author: Sergei Poselenov <sposelenov@emcraft.com>
12557 Date: Fri Jun 6 15:42:40 2008 +0200
12559 Added the upmconfig() function for 85xx.
12561 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12562 Signed-off-by: Andy Fleming <afleming@freescale.com>
12564 commit d39e68514ff943930ee692cff3fde03532eb7fec
12565 Author: Sergei Poselenov <sposelenov@emcraft.com>
12566 Date: Fri Jun 6 15:42:39 2008 +0200
12568 Socrates: config file cleanup.
12570 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
12572 commit e8cc3f04b124f757af4528206e60d8eb715ae083
12573 Author: Wolfgang Grandegger <wg@grandegger.com>
12574 Date: Thu Jun 5 13:12:10 2008 +0200
12576 TQM85xx: Change memory map to support Flash memory > 128 MiB
12578 Some TQM85xx boards could be equipped with up to 1 GiB (NOR) Flash
12579 memory. The current memory map only supports up to 128 MiB Flash.
12580 This patch adds the configuration option CONFIG_TQM_BIGFLASH. If
12581 set, up to 1 GiB flash is supported. To achieve this, the memory
12582 map has to be adjusted in great parts (for example the CCSRBAR is
12583 moved from 0xE0000000 to 0xA0000000).
12585 If you want to boot Linux with CONFIG_TQM_BIGFLASH set, the new
12586 memory map also has to be considered in the kernel (changed
12587 CCSRBAR address, changed PCI IO base address, ...). Please use
12588 an appropriate Flat Device Tree blob (tqm8548.dtb).
12590 Signed-off-by: Martin Krause <martin.krause@tqs.de>
12591 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12593 commit 1c2deff22cd6e2bf0e618fd6e09ca3eec5a8d051
12594 Author: Wolfgang Grandegger <wg@grandegger.com>
12595 Date: Thu Jun 5 13:12:09 2008 +0200
12597 TQM85xx: NAND support via local bus UPMB
12599 This patch adds support for NAND FLASH on the TQM8548. It is disabled by
12600 default and can be enabled for the TQM8548 modules. It is now based on
12601 the re-written FSL NAND UPM driver. A patch has been posted earlier today
12604 "NAND FSL UPM: driver re-write using the hwcontrol callback"
12606 Note that the R/B pin is not supported by that module requiring to use
12607 the specified maximum delay time.
12609 Note: With NAND support enabled the size of the U-Boot image exceeds
12610 256 KB and TEXT_BASE must therefore be set to 0xfff80000 in config.mk,
12611 doubling the image size :-(.
12613 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
12614 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12616 commit b9e8078bb3f3c48111a7081e27279938c3a445e1
12617 Author: Wolfgang Grandegger <wg@grandegger.com>
12618 Date: Thu Jun 5 13:12:08 2008 +0200
12620 TQM8548: PCI express support
12622 This patch adds support for PCI express cards. The board support
12623 now uses common FSL PCI init code, for both, PCI and PCIe on all
12626 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
12627 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12629 commit 1287e0c55a2ee2c575ac9ce8e4302cd4085be876
12630 Author: Wolfgang Grandegger <wg@grandegger.com>
12631 Date: Thu Jun 5 13:12:07 2008 +0200
12633 TQM8548: Basic support for the TQM8548 modules
12635 This patch adds basic support for the TQM8548 module from TQ-Components
12636 (http://www.tqc.de/) including DDR2 SDRAM initialisation and support for
12639 Furthermore Flash buffer write has been enabled to speed up output to
12640 the Flash by approx. a factor of 10.
12642 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
12643 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12645 commit 25991353204c78b094c3c1fec90182dcd607ab8f
12646 Author: Wolfgang Grandegger <wg@grandegger.com>
12647 Date: Thu Jun 5 13:12:06 2008 +0200
12649 TQM85xx: Support for Flat Device Tree
12651 This patch adds support for Linux kernels using the Flat Device Tree.
12652 It also re-defines the default environment settings for booting Linux
12655 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12657 commit d9ee843d54c54776e1fdb86336ce554906a87331
12658 Author: Wolfgang Grandegger <wg@grandegger.com>
12659 Date: Thu Jun 5 13:12:05 2008 +0200
12661 TQM85xx: Support for Intel 82527 compatible CAN controller
12663 This patch adds initialization of the UPMC RAM to support up to two
12664 Intel 82527 compatible CAN controller on the TQM85xx modules.
12666 Signed-off-by: Thomas Waehner <thomas.waehner@tqs.de>
12667 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12669 commit 518d5cfe72916323c746af1647764459914f555f
12670 Author: Wolfgang Grandegger <wg@grandegger.com>
12671 Date: Thu Jun 5 13:12:04 2008 +0200
12673 TQM85xx: Bugfix in the SDRAM initialisation
12675 The CS0_BNDS register is now set according to the detected
12678 Signed-off-by Martin Krause <martin.krause@tqs.de>
12680 commit 45dee2e620ccec6ac7b3548fe8979a34fd030e5d
12681 Author: Wolfgang Grandegger <wg@grandegger.com>
12682 Date: Thu Jun 5 13:12:03 2008 +0200
12684 TQM85xx: Fix chip select configuration for second FLASH bank
12686 This patch fixes the re-calculation of the automatic chip select
12687 configuration for boards with two populated FLASH banks.
12689 Signed-off-by: Martin Krause <martin.krause@tqs.de>
12691 commit 46346f27cda6fd025a496bde8f2d4aeee04aca5f
12692 Author: Wolfgang Grandegger <wg@grandegger.com>
12693 Date: Thu Jun 5 13:12:02 2008 +0200
12695 TQM85xx: Support for Spansion 'N' type flashes added
12697 The 'N' type Spansion flashes (S29GLxxxN series) have bigger sectors,
12698 than the formerly used 'M' types (S29GLxxxM series), so the flash layout
12699 needs to be changed -> new start address of the environment. The macro
12700 definition CONFIG_TQM_FLASH_N_TYPE is undefined by default and must be
12701 defined for boards with 'N' type flashes.
12703 Signed-off-by: Martin Krause <martin.krause@tqs.de>
12704 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12706 commit 5d5bd838f76eade22c0ea40a500389f924d0da36
12707 Author: Wolfgang Grandegger <wg@grandegger.com>
12708 Date: Thu Jun 5 13:12:01 2008 +0200
12710 TQM85xx: Fix CPM port pin configuration
12712 Do not configure port pins PD30/PD31 as SCC1 TxD/RxD except for the TQM8560
12713 board. On the other TQM85xx boards (TQM8541 and TQM8555) SCC1 is not used
12714 as serial interface anyway. Worse, on some board variants configuring the
12715 pins for SCC1 leads to short circuits (for example on the TQM8541-BG).
12717 Signed-off-by: Martin Krause <martin.krause@tqs.de>
12719 commit b99ba1679e8cd51b023e67098c89e606e47137d2
12720 Author: Wolfgang Grandegger <wg@grandegger.com>
12721 Date: Thu Jun 5 13:12:00 2008 +0200
12723 TQM85xx: Various coding style fixes
12725 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12727 commit ae9e97fa96f643c8ba2b666b06a026cc8717eb00
12728 Author: Gerald Van Baren <vanbaren@cideas.com>
12729 Date: Tue Jun 10 22:15:58 2008 -0400
12731 libfdt: Move the working_fdt pointer to cmd_fdt.c
12733 The working_fdt pointer was declared in common/fdt_support.c but was
12734 not used there. Move it to common/cmd_fdt.c where it is used (it is
12735 also used in lib_ppc/bootm.c).
12737 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
12739 commit e489b9c078e22b0d9e75f002cd2a1bd967e88f5e
12740 Author: Kim Phillips <kim.phillips@freescale.com>
12741 Date: Tue Jun 10 11:06:17 2008 -0500
12743 fdt: unshadow global working fdt variable
12745 differentiate with local variables of the same name by renaming the
12746 global 'fdt' variable 'working_fdt'.
12748 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12750 commit e1eb0e25d9d8fd8efdfb93f670a417663f386022
12751 Author: Andy Fleming <afleming@freescale.com>
12752 Date: Tue Jun 10 18:49:34 2008 -0500
12754 socrates: Fix PCI clk fix patch
12756 The submitted patch seems to have been more up-to-date, but an older patch was
12757 already in the repository. This patch encompasses the differences
12759 Taken entirely from Sergei Poselenov <sposelenov@emcraft.com>
12761 Signed-off-by: Andy Fleming <afleming@freescale.com>
12763 commit a75a57ef6e4b613c81434971e96ed70cf9ec9ba0
12764 Author: Wolfgang Grandegger <wg@grandegger.com>
12765 Date: Thu Jun 5 13:02:29 2008 +0200
12767 NAND FSL UPM: driver re-write using the hwcontrol callback
12769 This is a re-write of the NAND FSL UPM driver using the more universal
12770 hwcontrol callback (instead of the cmdfunc callback). Here is a brief
12771 list of furher modifications:
12773 - For the time being, the UPM setup writing the UPM array has been
12774 removed from the driver and must now be done by the board specific
12777 - The bus width definition in "struct fsl_upm_nand" is now in bits to
12778 comply with the corresponding Linux driver and 8, 16 and 32 bit
12779 accesses are supported.
12781 - chip->dev_read is only set if fun->dev_ready != NULL, which is
12782 required for boards not connecting the R/B pin.
12784 - A few issue have been fixed with MxMR bit manipulation like in the
12785 corresponding Linux driver.
12787 Note: I think the "io_addr" field of "struct fsl_upm" could be removed
12788 as well, because the address is already determined by
12789 "nand->IO_ADDR_[RW]", but I'm not 100% sure.
12791 This patch has been tested on a TQM8548 modules with the NAND chip
12792 Micron MT29F8G08FABWP.
12794 This patch is based on the following patches posted to this list a few
12797 PPC: add accessor macros to clear and set bits in one shot
12798 83xx/85xx/86xx: add more MxMR local bus definitions
12800 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12801 Acked-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12803 commit 6beecfbb542992eede5831240cd58678274683a9
12804 Author: Wolfgang Grandegger <wg@grandegger.com>
12805 Date: Thu Jun 5 13:11:59 2008 +0200
12807 MPC85xx: Beautify boot output of L2 cache configuration
12809 The boot output is now aligned poperly with other boot output
12815 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12817 commit 398415114f0a705163a14543e9fef03f734b1ffa
12818 Author: Wolfgang Grandegger <wg@grandegger.com>
12819 Date: Wed Jun 4 12:45:22 2008 +0200
12821 PPC: add accessor macros to clear and set bits in one shot
12823 PPC: add accessor macros to clear and set bits in one shot
12825 This patch adds macros from linux/include/asm-powerpc/io.h to clear and
12826 set bits in one shot using the in_be32, out_be32, etc. accessor functions.
12827 They are very handy to manipulate bits it I/O registers.
12829 This patch is required for my forthcoming FSL NAND UPM driver re-write and
12830 the support for the TQM8548 module.
12832 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12834 commit 4677988c7edc070c3786d3db7994abeca3ab82a0
12835 Author: Wolfgang Grandegger <wg@grandegger.com>
12836 Date: Wed Jun 4 13:52:17 2008 +0200
12838 TQM: move TQM boards to board/tqc
12840 Move all TQM board directories to the vendor specific directory "tqc"
12841 for modules from TQ-Components GmbH (http://www.tqc.de).
12843 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12845 commit 6fab2fe72ca5bf95280cd52cdf378af3e506eb50
12846 Author: Wolfgang Grandegger <wg@grandegger.com>
12847 Date: Mon Jun 2 12:09:30 2008 +0200
12849 83xx/85xx/86xx: add more MxMR local bus definitions
12851 83xx/85xx/86xx: add more MxMR local bus definitions
12853 This patch adds more macro definitions for the UPM Machine Mode Registers
12854 They are copied from "include/mpc82xx.h" to simplify the merge of all 8xxx
12855 common local bus definitions into include/asm-ppc/fsl_lbc.h. They are
12856 required for my forthcoming FSL NAND UPM driver re-write and the support
12857 for the TQM8548 module.
12859 This patch is based on the following two patches from Anton Vorontsov:
12861 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06511.html
12862 http://www.mail-archive.com/u-boot-users@lists.sourceforge.net/msg06587.html
12864 I leave coding style violation fixes, code beautification and name
12865 corrections to somebody else ;-(.
12867 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
12869 commit c8c5fc266e4499e283c293ccb972863156aa4134
12870 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12871 Date: Thu May 29 18:14:56 2008 +0400
12873 83xx/85xx: further localbus cleanups
12875 Merge mpc85xx.h's LBC defines to fsl_lbc.h. Also, adopt ACS names
12876 from mpc85xx.h, so ACS_0b10 renamed to ACS_DIV4, ACS_0b11 to ACS_DIV2.
12878 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12880 commit 42dbd667c88d496882d53e22656e89b654205492
12881 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12882 Date: Wed May 28 18:20:15 2008 +0400
12884 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
12886 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
12887 use it on MPC85xx and MPC86xx processors.
12889 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12891 commit 730b2fcf6fcd9eec3ea86fbb087c3f98aa23a769
12892 Author: Kumar Gala <galak@kernel.crashing.org>
12893 Date: Thu May 29 11:22:06 2008 -0500
12895 85xx: Add setting of cache props in the device tree.
12897 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12899 commit 4dbdb7681e243431530df0725627192a0c4aefda
12900 Author: Kumar Gala <galak@kernel.crashing.org>
12901 Date: Tue Jun 10 16:53:46 2008 -0500
12903 85xx: expose cpu identification
12905 The current cpu identification code is used just to return the name
12906 of the processor at boot. There are some other locations that the name
12907 is useful (device tree setup). Expose the functionality to other bits
12910 Also, drop the 'E' suffix and add it on by looking at the SVR version
12911 when we print this out. This is mainly to allow the most flexible use
12912 of the name. The device tree code tends to not care about the 'E' suffix.
12914 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
12916 commit 2329fe113d847e43cca8e4a0e4edd613b50b8492
12917 Author: Kim Phillips <kim.phillips@freescale.com>
12918 Date: Tue Jun 10 13:25:24 2008 -0500
12920 mpc83xx: MVBLM7: minor build fixups
12922 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12924 commit a1293e549b56da135ef32ffca5b9d35a16aa6802
12925 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
12926 Date: Tue Jun 10 09:14:05 2008 +0200
12928 add MPC8343 based board mvBlueLYNX-M7 (board+make files)
12930 Add MPC8343 based board mvBlueLYNX-M7.
12931 It's a single board stereo camera system.
12932 Please read doc/README.mvblm7 for details.
12934 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12935 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12937 commit c005b93925ba49f07da2aa748527996d927e172f
12938 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
12939 Date: Tue Jun 10 09:13:16 2008 +0200
12941 add MPC8343 based board mvBlueLYNX-M7 (doc+config)
12943 Add MPC8343 based board mvBlueLYNX-M7.
12944 It's a single board stereo camera system.
12945 Please read doc/README.mvblm7 for details.
12947 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
12948 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12950 commit f9023afbdfd9f27e7c38f3cce965746e56d62dd3
12951 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12952 Date: Thu May 29 18:14:56 2008 +0400
12954 83xx/85xx: further localbus cleanups
12956 move the BRx_* and ORx_* left behind in mpc85xx.h
12958 The same is needed for mpc8xx.h and mpc8260.h (defines are almost
12959 the same, just few differences which needs some attention though).
12961 But the bad news for mpc8xx and mpc8260 is that there are a lot of users
12962 of these defines. So this cleanup I'll leave for the "better times".
12964 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12965 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12967 commit bf30bb1f7c954d7855d9b23624b33b00c50b4697
12968 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
12969 Date: Wed May 28 18:20:15 2008 +0400
12971 83xx/85xx/86xx: factor out Freescale Localbus defines out of mpc83xx.h
12973 This patch moves Freescale Localbus defines out of mpc83xx.h, so we could
12974 use it on MPC85xx and MPC86xx processors.
12976 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
12977 Acked-by: Andy Fleming <afleming@freescale.com>
12978 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12980 commit d82b4fc0ce8cca95e857fc51022e841cb2dbee6a
12981 Author: Tor Krill <tor@excito.com>
12982 Date: Mon Jun 2 15:09:30 2008 +0200
12984 Add missing CSCONFIG_BANK_BIT_3 define to mpc83xx.h
12986 Signed-off-by: Tor Krill <tor@excito.com>
12987 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
12989 commit 3b904ccb93c3196727e2e9870cb1df903cab19ad
12990 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
12991 Date: Mon Jun 9 23:37:44 2008 +0900
12993 net: Conditional COBJS inclusion of network drivers
12995 Replace COBJS-y with appropriate driver config names.
12997 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
12998 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13000 commit 2fb698bf50f4aff2485581a12fa634a07c040e4a
13001 Author: Gerald Van Baren <vanbaren@cideas.com>
13002 Date: Mon Jun 9 21:02:17 2008 -0400
13004 Use strncmp() for the fdt command
13006 Cleaner than doing multiple conditionals on characters.
13008 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
13010 commit 47abe8ab290d2721a8eeadff65b939e6af8c01b0
13011 Author: Gerald Van Baren <vanbaren@cideas.com>
13012 Date: Sat Jun 7 12:25:05 2008 -0400
13014 The fdt boardsetup command criteria was not unique
13016 It was checking just for "b", which is not unique with respect to the
13017 "boot" command. Change to check for "boa"[rdsetup].
13019 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
13021 commit 2f08bfa9526bae4f461e043530cfb903fec0d273
13022 Author: David Gibson <david@gibson.dropbear.id.au>
13023 Date: Tue May 20 17:19:11 2008 +1000
13025 libfdt: Several cleanups to parameter checking
13027 This patch makes a couple of small cleanups to parameter checking of
13030 - In several functions which take a node offset, we use an
13031 idiom involving fdt_next_tag() first to check that we have indeed been
13032 given a node offset. This patch adds a helper function
13033 _fdt_check_node_offset() to encapsulate this usage of fdt_next_tag().
13035 - In fdt_rw.c in several places we have the expanded version
13036 of the RW_CHECK_HEADER() macro for no particular reason. This patch
13037 replaces those instances with an invocation of the macro; that's what
13040 - In fdt_sw.c we rename the check_header_sw() function to
13041 sw_check_header() to match the analgous function in fdt_rw.c, and we
13042 provide an SW_CHECK_HEADER() wrapper macro as RW_CHECK_HEADER()
13043 functions in fdt_rw.c
13045 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
13047 commit fec6d9ee7c10443f65ce1788ef818919167bbf2e
13048 Author: Gerald Van Baren <vanbaren@cideas.com>
13049 Date: Tue Jun 3 20:34:45 2008 -0400
13051 Remove the deprecated CONFIG_OF_FLAT_TREE
13053 Use CONFIG_OF_LIBFDT instead to support flattened device trees. It is
13054 cleaner, has better functionality, and is better supported.
13056 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
13058 commit 62bcdda293efa752f8281fbd9da03822b27ce82f
13059 Author: Gerald Van Baren <vanbaren@cideas.com>
13060 Date: Tue Jun 3 20:26:29 2008 -0400
13062 Change the stxxst to CONFIG_OF_LIBFDT
13064 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
13065 to CONFIG_OF_LIBFDT.
13067 WARNING: It appears that this board lost its ability to boot via a
13068 flattened device tree prior to this changeset.
13070 WARNING: This conversion was untested because I do not have a board to
13073 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
13075 commit 589c04271d129729a8b01391453851ab9cc4069c
13076 Author: Gerald Van Baren <vanbaren@cideas.com>
13077 Date: Tue Jun 3 20:24:58 2008 -0400
13079 Convert mpc7448hpc2 to CONFIG_OF_LIBFDT
13081 This was configured to use the deprecated CONFIG_OF_FLAT_TREE, change
13082 to CONFIG_OF_LIBFDT.
13084 WARNING: This conversion is untested because I do not have a board to
13087 NOTE: The FDT blob (DTS) must have an /aliases/ethernet0 and (optionally)
13088 /aliases/ethernet1 property for the ethernet to work.
13090 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
13092 commit ee1e35bede91debc8bff9b02f75574486033b652
13093 Author: Kumar Gala <galak@kernel.crashing.org>
13094 Date: Thu May 29 01:21:24 2008 -0500
13096 85xx: Only use PORPLLSR[DDR_Ratio] on platforms that define it
13098 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
13100 commit 3b9519fc50802436e417c839e69df7b2016cade5
13101 Author: Becky Bruce <becky.bruce@freescale.com>
13102 Date: Wed May 14 13:10:04 2008 -0500
13104 MPC85xx: Change traps.c to not reference non-addressable memory
13106 Currently, END_OF_RAM is used by the trap code to determine if
13107 we should attempt to access the stack pointer or not. However,
13108 on systems with a lot of RAM, only a subset of the RAM is
13109 guaranteed to be mapped in and accessible. Change END_OF_RAM
13110 to use get_effective_memsize() instead of using the raw ram
13111 size out of the bd.
13113 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13115 commit 7faddaecea52f585f538fdf9c2e61f85a789b19c
13116 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13117 Date: Mon Jun 9 13:39:57 2008 +0900
13119 sh: Renesas Solutions SH7763RDP board support
13121 SH7763RDP has SCIF, NOR Flash, Ethernet, USB host, LCDC and MMC.
13122 In this patch, support SCIF, NOR Flash, and Ethernet.
13124 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13125 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13127 commit 60179098a95eaa972007d7ec58e4c1588029720f
13128 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13129 Date: Fri Jun 6 16:24:13 2008 +0900
13131 sh: Add support Renesas SH7763
13133 Renesas SH7763 has 3 SCIF, MMC, LCDC, Ethernet and other.
13134 This patch supprts CPU register's header file.
13136 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13137 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13139 commit 08c5fabe181d663eec0feba5ecd02c0b78934a52
13140 Author: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13141 Date: Fri Jun 6 16:16:08 2008 +0900
13143 sh: SH7763 SCIF support
13145 SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution,
13146 but only SCIF2 is different. This patch work all SCIF channel.
13148 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
13149 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
13151 commit 79b51ff8205f0354d5300570614c1d2db499679c
13152 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13153 Date: Sat Jun 7 20:51:59 2008 +0900
13155 [MIPS] cpu/mips/Makefile: Split [CS]OBJS onto separate lines
13157 Also get rid of some #ifdefs in *.c files.
13159 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13161 commit 8bde63eb3f79d68f693201528dafc8ae7aa087de
13162 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13163 Date: Sat Jun 7 20:51:56 2008 +0900
13165 [MIPS] Rename Alchemy processor configs into CONFIG_SOC_*
13169 Common Alchemy Au1x00 stuff. All Alchemy processor based machines
13170 need to have this config as a system type specifier.
13172 CONFIG_SOC_AU1000, CONFIG_SOC_AU1100, CONFIG_SOC_AU1200,
13173 CONFIG_SOC_AU1500, CONFIG_SOC_AU1550
13175 Machine type specifiers. Each port should have one of aboves.
13177 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13179 commit cc49cadeeb8bb2f0ae3fdc13af7051ae59f083bc
13180 Author: Stuart Wood <stuart.wood@labxtechnologies.com>
13181 Date: Fri May 30 16:05:28 2008 -0400
13183 env_nand.c: Added bad block management for environment variables
13185 Modified to check for bad blocks and to skipping over them when
13186 CFG_ENV_RANGE has been defined.
13187 CFG_ENV_RANGE must be larger than CFG_ENV_SIZE and aligned to the NAND
13190 Signed-off-by: Stuart Wood <stuart.wood@labxtechnologies.com>
13191 Signed-off-by: Scott Wood <scottwood@freescale.com>
13193 commit 279726bd00558e80263d44581c44167625b7fb9a
13194 Author: Becky Bruce <becky.bruce@freescale.com>
13195 Date: Wed May 14 13:09:58 2008 -0500
13197 MPC86xx: Change traps.c to not reference non-addressable memory
13199 Currently, END_OF_RAM is used by the trap code to determine if
13200 we should attempt to access the stack pointer or not. However,
13201 on systems with a lot of RAM, only a subset of the RAM is
13202 guaranteed to be mapped in and accessible. Change END_OF_RAM
13203 to use get_effective_memsize() instead of using the raw ram
13204 size out of the bd to prevent us from trying to access
13207 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
13209 commit 338cc038461a6c7709c5b86fd9a240209338a1ae
13210 Author: Wolfgang Denk <wd@denx.de>
13211 Date: Fri Jun 6 14:28:14 2008 +0200
13213 tools/mkimage: fix compiler warnings on some systems.
13215 Signed-off-by: Wolfgang Denk <wd@denx.de>
13217 commit b2815f79288d4da7a3ba18bdbd05120ce09d5622
13218 Author: Stefan Roese <sr@denx.de>
13219 Date: Fri Jun 6 16:10:41 2008 +0200
13221 ppc4xx: Fix misspelled CONFIG_440SPE/440EPX/GRX config options
13223 We use upper case letters for the AMCC processor defines (like
13224 CONFIG_440SPE) in U-Boot. So the 440SPe is labeled CONFIG_440SPE and
13225 not CONFIG_440SPe. This patch fixes the last misspelled config options.
13227 Signed-off-by: Stefan Roese <sr@denx.de>
13229 commit 72675dc6c06a48846d180106161d49dd714383cc
13230 Author: Stefan Roese <sr@denx.de>
13231 Date: Fri Jun 6 15:55:21 2008 +0200
13233 ppc4xx: Unify AMCC's board config files (part 3/3)
13235 This patch series unifies the AMCC eval board ports by introducing
13236 a common include header for all AMCC eval boards:
13238 include/configs/amcc-common.h
13240 This header now includes all common configuration options/defines which
13241 are removed from the board specific headers.
13243 The reason for this is ease of maintenance and unified look and feel
13244 of all AMCC boards.
13246 Signed-off-by: Stefan Roese <sr@denx.de>
13248 commit 490f204096d6e2c9940f67816f154a8125bab116
13249 Author: Stefan Roese <sr@denx.de>
13250 Date: Fri Jun 6 15:55:03 2008 +0200
13252 ppc4xx: Unify AMCC's board config files (part 2/3)
13254 This patch series unifies the AMCC eval board ports by introducing
13255 a common include header for all AMCC eval boards:
13257 include/configs/amcc-common.h
13259 This header now includes all common configuration options/defines which
13260 are removed from the board specific headers.
13262 The reason for this is ease of maintenance and unified look and feel
13263 of all AMCC boards.
13265 Signed-off-by: Stefan Roese <sr@denx.de>
13267 commit a8a11a9ed046b480a16e47a158f8f5300028dfa6
13268 Author: Stefan Roese <sr@denx.de>
13269 Date: Fri Jun 6 15:54:31 2008 +0200
13271 ppc4xx: Unify AMCC's board config files (part 1/3)
13273 This patch series unifies the AMCC eval board ports by introducing
13274 a common include header for all AMCC eval boards:
13276 include/configs/amcc-common.h
13278 This header now includes all common configuration options/defines which
13279 are removed from the board specific headers.
13281 The reason for this is ease of maintenance and unified look and feel
13282 of all AMCC boards.
13284 Signed-off-by: Stefan Roese <sr@denx.de>
13286 commit 0e38c938ed4bcadb4f4fc1419a541431e94fc202
13287 Author: Remy Bohmer <linux@bohmer.net>
13288 Date: Thu Jun 5 13:03:36 2008 +0200
13290 DM9000 fix status check fail 0x6d error for trizeps board
13292 According to the Application Notes of the DM9000, only the 2 bits 0:1 of
13293 the status byte need to be checked to identify a valid packet in the fifo
13295 But, The several different Application Notes do not all speak the same
13296 language on these bits. They do not disagree, but only 1 Application Note
13297 noted explicitly that only these 2 bits need to be checked.
13298 Even the datasheets do not mention anything about these 2 bits.
13300 Because the old code, and the kernel check the whole byte, I left this piece
13303 However, I tested all board/DM9000[A|E|EP] devices with this 2 bit check, so
13306 Notice, that the 2nd iteration through this receive loop (when a 2nd packet is
13307 in the fifo) is much shorter now, compared to the older U-boot driver code,
13308 so that we can maybe run into a hardware condition now that was never seen
13309 before, or maybe was seen very unfrequently.
13311 Additionaly added a cleanup of a stack variable.
13313 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13314 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13316 commit 7daf2ebe9196dd67131a06d85049c3a8a08ca413
13317 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13318 Date: Thu Jun 5 22:29:00 2008 +0900
13320 [MIPS] Update <asm/addrspace.h> header
13322 - Fix traditional KSEG names
13323 - Replace PHYSADDR with CPHYSADDR
13325 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13327 commit f0d5a6f060d00358b85c62a921a423ea8df71184
13328 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13329 Date: Thu Jun 5 22:29:00 2008 +0900
13331 [MIPS] mips_config.mk: Misc fixes
13333 - Kill redundant `-pipe' (this will be added by $(TOPDIR)/config.mk)
13336 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13338 commit 5f64d21c9a2998794f255b469165b91f092dfc2d
13339 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13340 Date: Thu Jun 5 22:29:00 2008 +0900
13342 [MIPS] Kill unused <version.h> inclusions
13344 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13346 commit a55d48174cfd1a5bc184159513f48dcbbe409c83
13347 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13348 Date: Thu Jun 5 22:29:00 2008 +0900
13350 [MIPS] lib_mips/time.c: Fix CP0 count register usage and timer routines
13352 MIPS port has two problems in timer routines. One is now we assume CFG_HZ
13353 equals to CP0 counter frequency, but this is wrong. CFG_HZ has to be 1000
13354 in the U-Boot system.
13356 The other is we don't have a proper time management counter like timestamp
13357 other ARCHs have. We need the 32-bit millisecond clock counter.
13359 This patch introduces timestamp and CYCLES_PER_JIFFY. timestamp is a
13360 32-bit non-overflowing CFG_HZ counter, and CYCLES_PER_JIFFY is the number
13361 of calculated CP0 counter cycles in a CFG_HZ.
13365 * Fix improper CFG_HZ value to have 1000
13367 * Use CFG_MIPS_TIMER_FREQ for timer counter frequency, instead.
13369 * timer_init: initialize timestamp and set up the first timer expiration.
13370 Note that we don't need to initialize CP0 count/compare registers here
13371 as they have been already zeroed out on the system reset. Leave them as
13374 * get_timer: calculate how many timestamps have been passed, then return
13375 base-relative timestamp. Make sure we can easily count missed timestamps
13376 regardless of CP0 count/compare value.
13378 * get_ticks: return the current timestamp, that is get_timer(0).
13380 Most parts are from good old Linux v2.6.16 kernel.
13383 - Remove FIXME comments as they turned out to be trivial.
13384 - Use CP0 compare register as a global variable for expirelo.
13385 - Kill a global variable 'cycles_per_jiffy'. Use #define CYCLES_PER_JIFFY
13388 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13390 commit 199e4f657c8af42efe3fb3ba1d1104eb6bb28c25
13391 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13392 Date: Thu Jun 5 22:29:00 2008 +0900
13394 [MIPS] lib_mips/time.c: Fix udelay
13396 What we have to do is just to wait for given micro-seconds. No need to
13397 take into account current time, get_timer and CFG_HZ.
13399 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13401 commit c7e38e413ae69120d3e51f132c7cb1d6b3514d03
13402 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13403 Date: Thu Jun 5 22:28:59 2008 +0900
13405 [MIPS] lib_mips/time.c: Replace CP0 access functions with existing macros
13407 We already have many pre-defined CP0 access macros in <asm/mipsregs.h>.
13408 This patch replaces mips_{compare,count}_set and mips_count_get with
13411 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
13413 commit 6b52cfe16cd539935e32bd8cf19146522e462a4d
13414 Author: Remy Bohmer <linux@bohmer.net>
13415 Date: Tue Jun 3 15:48:17 2008 +0200
13417 Get rid of annoying/superfluous bad-checksum warning message
13419 U-boot can complain a lot about 'checksum bad' when it is attached to the network.
13420 It is annoying for ordinary users who start to doubt the network connection
13421 in general when they see messages like this.
13423 This is caused by the routine NetCksumOk() which cannot handle IP-headers longer
13424 than 20 bytes. Those packages can be ignored anyway by U-boot, so we trash them
13425 now before checking the checksum.
13427 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13428 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13430 commit d6ee5fa40c26970d39990c6fc4a2f20a97822650
13431 Author: Remy Bohmer <linux@bohmer.net>
13432 Date: Wed Jun 4 10:47:25 2008 +0200
13434 Fix order for reading rx-status registers in 32bit mode of DM9000
13436 A last minute cleanup before submitting the DM9000A patch series yesterday introduced
13437 a bug in reading the rx-status registers in 32bit mode only.
13438 This patch repairs this.
13440 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13441 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13443 commit 98291e2e689096420465074cce926b226d2e71b4
13444 Author: Remy Bohmer <linux@bohmer.net>
13445 Date: Tue Jun 3 15:26:26 2008 +0200
13447 DM9000: Some minor code cleanups
13449 Some lines of the U-boot DM9000x driver are longer than 80 characters, or
13450 need some other minor cleanup.
13452 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13453 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13455 commit 850ba7555dbd4ca8d14fc475b864d534797adab3
13456 Author: Remy Bohmer <linux@bohmer.net>
13457 Date: Tue Jun 3 15:26:25 2008 +0200
13459 DM9000: Make driver work properly for DM9000A
13461 The DM9000A network controller does not work with the U-boot DM9000x driver.
13462 Analysis showed that many incoming packets are lost.
13464 The DM9000A Application Notes V1.20 (section 5.6.1) recommend that the poll to
13465 check for a valid rx packet be done on the interrupt status register, not
13466 directly by performing the dummy read and the rx status check as is currently
13467 the case in the u-boot driver.
13469 When the recommended poll is done as suggested the driver starts working
13470 correctly on 10Mbit/HD, but on 100MBit/FD packets come in faster so that there
13471 can be more than 1 package in the fifo at the same time.
13473 The driver must perform the rx-status check in a loop and read and handle all
13474 packages until there is no more left _after_ the interrupt RX flag is set.
13476 This change has been tested with DM9000A, DM9000E, DM9000EP.
13478 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13479 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13481 commit fbcb7ece0ea1e364180f1cf963e0fa0ce7f6560d
13482 Author: Remy Bohmer <linux@bohmer.net>
13483 Date: Tue Jun 3 15:26:24 2008 +0200
13485 DM9000: Improve eth_reset() routine
13487 According to the application notes of the DM9000 v1.22 chapter 5.2 bullet 2, the
13488 reset procedure must be done twice to properly reset the DM9000 by means of software.
13489 This errata is not needed anymore for the DM9000A, but it does not bother it.
13491 This change has been tested with DM9000A, DM9000E, DM9000EP.
13493 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13494 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13496 commit acba31847fad9ae40708cc2c9f3a634ec35f3416
13497 Author: Remy Bohmer <linux@bohmer.net>
13498 Date: Tue Jun 3 15:26:23 2008 +0200
13500 DM9000: improve eth_send() routine
13502 The eth_send routine of the U-boot DM9000x driver does not match the
13503 DM9000 or DM9000A application notes/programming guides.
13505 This change improves the stability of the DM9000A network controller.
13507 This change has been tested with DM9000A, DM9000E, DM9000EP.
13509 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13510 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13512 commit 134e266253c02a7832560da59d394989c4f64453
13513 Author: Remy Bohmer <linux@bohmer.net>
13514 Date: Tue Jun 3 15:26:22 2008 +0200
13516 DM9000: repair debug logging
13518 It seems that the debugging code of the DM9000x driver in U-boot has not been
13519 compiled for a long time, because it cannot compile...
13521 Also rearranged some loglines to get more useful info while debugging.
13523 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13524 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13526 commit a101361bfe23c120321e45d114c0603b8e0763e9
13527 Author: Remy Bohmer <linux@bohmer.net>
13528 Date: Tue Jun 3 15:26:21 2008 +0200
13530 DM9000: Add data bus-width auto detection.
13532 The U-boot DM9000x driver contains a compile time bus-width definition for
13533 the databus connected to the network controller.
13535 This compile check makes the code unclear, inflexible and is unneccessary.
13536 It can be asked to the network controller what its bus-width is by reading bits
13537 6 and 7 of the interrupt status register.
13539 The linux kernel already uses a runtime mechanism to determine this bus-width,
13540 so the implementation below looks somewhat like that implementation.
13542 This change has been tested with DM9000A, DM9000E, DM9000EP.
13544 Signed-off-by: Remy Bohmer <linux@bohmer.net>
13545 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
13547 commit 63a0afa0c32e5f4ea98a9439542870072437404d
13548 Author: Stefan Roese <sr@denx.de>
13549 Date: Wed Jun 4 19:19:20 2008 +0200
13551 ppc4xx: Fix problem with SDRAM init in bamboo NAND booting port
13553 This patch fixes a problem spotted by Eugene O'Brian (thanks Eugene)
13554 introduced by the commit:
13556 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
13558 With this patch SDRAM will get initialized again and booting from NAND
13561 Signed-off-by: Stefan Roese <sr@denx.de>
13562 Acked-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
13564 commit 9ef1cbef1a649e3779298b0e663be4865cbbbfbc
13565 Author: Wolfgang Denk <wd@denx.de>
13566 Date: Tue May 27 14:19:30 2008 +0200
13568 Socrates: Fix PCI bus frequency report
13570 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
13572 commit 8ec6e332eace0ee78c71ee5f645d12b06813b86f
13573 Author: Tor Krill <tor@excito.com>
13574 Date: Thu May 29 11:10:30 2008 +0200
13576 Fix incorrect switch for IF_TYPE in part.c
13578 Use correct field in block_dev_desc_t when writing interface type in
13579 dev_print. Error introduced in 574b3195.
13581 Also added fix from Martin Krause
13583 Signed-off-by: Tor Krill <tor@excito.com>
13585 commit b64b8a0bd310935b70af69ac970952f2b364ae56
13586 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
13587 Date: Tue May 27 10:25:39 2008 +0200
13589 Add size #defines for Altera Cyclone-II EP2C8 and EP2C20.
13591 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
13593 commit 35ef877f0a8f6232cdef748f442fed5accb2b641
13594 Author: Peter Tyser <ptyser@xes-inc.com>
13595 Date: Thu May 22 18:56:52 2008 -0500
13597 Additional fix to readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
13599 Removed unneeded command line history initialization. Also, the original
13600 code would access the 'initted' variable before relocation to SDRAM
13601 which resulted in erratic behavior since the bss is not initialized when
13602 executing from flash.
13604 Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
13606 commit 22f371b63038a4ecab04068877c1089e51a01ba1
13607 Author: Grant Erickson <gerickson@nuovations.com>
13608 Date: Wed May 21 13:28:30 2008 -0700
13610 PPC4xx: Simplified post_word_{load, store}
13612 This patch simplifies post_word_{load,store} by using the preprocessor
13613 to eliminate redundant, copy-and-pasted code.
13615 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
13617 commit 9c048b523413ae5f3ff34e00cf57569c3368ab51
13618 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
13619 Date: Wed May 7 21:25:33 2008 +0400
13621 cfi_flash: enable M18 flash chips family support.
13623 Added new command set ID. Buffered write command processing is changed
13624 in order to support M18 flash chips family.
13626 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
13627 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
13629 commit 93c56f212ccdadc182018f0769cb284426b88f1d
13630 Author: Vasiliy Leoenenko <vasiliy.leonenko@mail.ru>
13631 Date: Wed May 7 21:24:44 2008 +0400
13633 cfi_flash: support of long cmd in U-boot.
13635 Some NOR flash chips needs support of commands with length grether than max
13636 value size of uchar. For example all M18 family chips use 0x1ff command in
13637 buffered write mode as value of program loops count.
13639 Signed-off-by: Alexey Korolev <akorolev@infradead.org>
13640 Signed-off-by: Vasiliy Leonenko <vasiliy.leonenko@mail.ru>
13642 commit 4d91d1df2f16b511ab80dec50c80e050ba0d841e
13643 Author: Stefan Roese <sr@denx.de>
13644 Date: Fri May 16 11:06:06 2008 +0200
13646 DTT: Issue one-shot command on AD7414 (LM75 code) to read temp
13648 On AD7414 the first value upon bootup is not read correctly.
13649 This is most likely because of the 800ms update time of the
13650 temp register in normal update mode. To get current values
13651 each time we issue the "dtt" command including upon powerup
13652 we switch into one-short mode.
13654 This patch fixes the problem on AD7414 equipped boards (Sequoia,
13655 Canyonlands etc), that temp value printed in the bootup log was
13658 Signed-off-by: Stefan Roese <sr@denx.de>
13660 commit de5bfcf7b0425e032be12698252dbaa6b65a28c0
13661 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13662 Date: Fri May 30 16:55:06 2008 +0200
13664 ppc4xx: Cleanup CPCI405 variant's config file
13666 This patch removes some dead code from CPCI405 board's
13667 config files. JFFS2 support is also removed. It's not used and
13668 CPCI4052 does not build anymore without some size reduction.
13670 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
13672 commit 2918eb9d42bc705fcbd18c9fcc39d15ff2843c65
13673 Author: Kenneth Johansson <kenneth@southpole.se>
13674 Date: Thu May 29 16:32:33 2008 +0200
13676 Remove shell variable UNDEF_SYM.
13678 UNDEF_SYM is a shell variable in the main Makefile used to force the
13679 linker to add all u-boot commands to the final image. It has no use here.
13681 Signed-off-by: Kenneth Johansson <kenneth@southpole.se>
13683 commit 8c66497e06bf803489c589df58ee591d71033274
13684 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13685 Date: Fri May 16 11:10:35 2008 +0200
13687 Add support for environment in SPI flash
13689 This is pretty incomplete...it doesn't handle reading the environment
13690 before relocation, it doesn't support redundant environment, and it
13691 doesn't support embedded environment. But apart from that, it does
13694 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13696 commit b6368467e6a97f225e0a5fd7bfc5c7598ef5ddc4
13697 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13698 Date: Fri May 16 11:10:34 2008 +0200
13700 SPI Flash: Add "sf" command
13702 This adds a new command, "sf" which can be used to manipulate SPI
13703 flash. Currently, initialization, reading, writing and erasing is
13706 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13708 commit d25ce7d24cc0f93881559f4009175ea305af65e8
13709 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13710 Date: Fri May 16 11:10:33 2008 +0200
13712 SPI Flash subsystem
13714 This adds a new SPI flash subsystem.
13716 Currently, only AT45 DataFlash in non-power-of-two mode is supported,
13717 but some preliminary support for other flash types is in place as
13720 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13722 commit 60445cb5c3eb77ed1a07f2d908eef09174483698
13723 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
13724 Date: Fri May 16 11:10:32 2008 +0200
13726 atmel_spi: Driver for the Atmel SPI controller
13728 This adds a driver for the SPI controller found on most AT91 and AVR32
13729 chips, implementing the new SPI API.
13732 - Update to new API
13733 - Handle zero-length transfers appropriately. The user may send a
13734 zero-length SPI transfer with SPI_XFER_END set in order to
13735 deactivate the chip select after a series of transfers with chip
13736 select active. This is useful e.g. when polling the status
13737 register of DataFlash.
13739 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
13741 commit d255bb0e78d1cac5b7c8c98cb77a095f5f16de0d
13742 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
13743 Date: Fri May 16 11:10:31 2008 +0200
13745 SPI API improvements
13747 This patch gets rid of the spi_chipsel table and adds a handful of new
13748 functions that makes the SPI layer cleaner and more flexible.
13750 Instead of the spi_chipsel table, each board that wants to use SPI
13751 gets to implement three hooks:
13752 * spi_cs_activate(): Activates the chipselect for a given slave
13753 * spi_cs_deactivate(): Deactivates the chipselect for a given slave
13754 * spi_cs_is_valid(): Determines if the given bus/chipselect
13755 combination can be activated.
13757 Not all drivers may need those extra functions however. If that's the
13758 case, the board code may just leave them out (assuming they know what
13759 the driver needs) or rely on the linker to strip them out (assuming
13760 --gc-sections is being used.)
13762 To set up communication parameters for a given slave, the driver needs
13763 to call spi_setup_slave(). This returns a pointer to an opaque
13764 spi_slave struct which must be passed as a parameter to subsequent SPI
13765 calls. This struct can be freed by calling spi_free_slave(), but most
13766 driver probably don't want to do this.
13768 Before starting one or more SPI transfers, the driver must call
13769 spi_claim_bus() to gain exclusive access to the SPI bus and initialize
13770 the hardware. When all transfers are done, the driver must call
13771 spi_release_bus() to make the bus available to others, and possibly
13772 shut down the SPI controller hardware.
13774 spi_xfer() behaves mostly the same as before, but it now takes a
13775 spi_slave parameter instead of a spi_chipsel function pointer. It also
13776 got a new parameter, flags, which is used to specify chip select
13777 behaviour. This may be extended with other flags in the future.
13779 This patch has been build-tested on all powerpc and arm boards
13780 involved. I have not tested NIOS since I don't have a toolchain for it
13781 installed, so I expect some breakage there even though I've tried
13782 fixing up everything I could find by visual inspection.
13784 I have run-time tested this on AVR32 ATNGW100 using the atmel_spi and
13785 DataFlash drivers posted as a follow-up. I'd like some help testing
13786 other boards that use the existing SPI API.
13788 But most of all, I'd like some comments on the new API. Is this stuff
13789 usable for everyone? If not, why?
13792 - Build fixes for various boards, drivers and commands
13793 - Provide common struct spi_slave definition that can be extended by
13795 - Pass a struct spi_slave * to spi_cs_activate and spi_cs_deactivate
13796 - Make default bus and mode build-time configurable
13797 - Override default SPI bus ID and mode on mx32ads and imx31_litekit.
13800 - Add opaque struct spi_slave for controller-specific data associated
13802 - Add spi_claim_bus() and spi_release_bus()
13803 - Add spi_free_slave()
13804 - spi_setup() is now called spi_setup_slave() and returns a
13806 - soft_spi now supports four SPI modes (CPOL|CPHA)
13807 - Add bus parameter to spi_setup_slave()
13808 - Convert the new i.MX32 SPI driver
13809 - Convert the new MC13783 RTC driver
13812 - Convert the mpc8xxx_spi driver and the mpc8349emds board to the
13815 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
13816 Tested-by: Guennadi Liakhovetski <lg@denx.de>
13818 commit 289011207d999b2e4085150d2aa30d547ad9b800
13819 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13820 Date: Fri May 16 11:10:30 2008 +0200
13822 Move definition of container_of() to common.h
13824 AVR32 and AT91SAM9 both have their own identical definitions of
13825 container_of() taken from the Linux kernel. Move it to common.h so
13826 that all architectures can use it.
13828 container_of() is already used by some drivers, and will be used
13829 extensively by the new and improved SPI API.
13831 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13833 commit 110e006fe67fb4a6e1719ae6956c79b7ffc0148b
13834 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13835 Date: Fri May 16 11:08:11 2008 +0200
13837 soft_i2c: Pull SDA high before reading
13839 Spotted by Dean Capindale.
13841 Systems that support open-drain GPIO properly are allowed provide an
13842 empty I2C_TRISTATE define. However, this means that we need to be
13843 careful not to drive SDA low when the slave is expected to respond.
13845 This patch adds a missing I2C_SDA(1) to read_byte() required to
13846 tristate the SDA line on systems that support open-drain GPIO.
13848 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
13850 commit 3c1de1a6d36be9eee284a6c596a86e94f19cc5b2
13851 Author: Stefan Roese <sr@denx.de>
13852 Date: Mon May 19 11:34:53 2008 +0200
13854 ppc4xx: Remove implementations of testdram()
13856 This patch removes the used testdram() implementations of the board
13857 that are maintained by myself.
13859 Signed-off-by: Stefan Roese <sr@denx.de>
13861 commit bbeff30cbd1c5d551eb0ad1c2239ec01844c0b0a
13862 Author: Stefan Roese <sr@denx.de>
13863 Date: Mon Jun 2 17:37:28 2008 +0200
13865 ppc4xx: Remove superfluous dram_init() call or replace it by initdram()
13867 Historically the 405 U-Boot port had a dram_init() call in early init
13868 stage. This function was still called from start.S and most of the time
13869 coded in assembler. This is not needed anymore (since a long time) and
13870 boards should implement the common initdram() function in C instead.
13872 This patch now removed the dram_init() call from start.S and removes the
13873 empty implementations that are scattered through most of the 405 board
13874 ports. Some older board ports really implement this dram_init() though.
13884 I changed those boards to call this assembler dram_init() function now
13885 from their board specific initdram() instead. This *should* work, but please
13886 test again on those platforms. And it is perhaps a good idea that those
13887 boards use some common 405 SDRAM initialization code from cpu/ppc4xx at
13888 some time. So further patches welcome here.
13890 Signed-off-by: Stefan Roese <sr@denx.de>
13892 commit 192f90e272b3989ee7b4a666d1fdab831f20f8d2
13893 Author: Stefan Roese <sr@denx.de>
13894 Date: Mon Jun 2 17:22:11 2008 +0200
13896 ppc4xx: Use new 4xx SDRAM controller enable defines in common ECC code
13898 Signed-off-by: Stefan Roese <sr@denx.de>
13900 commit 39b32be18cd33b53a84065edcd4e465165cc5564
13901 Author: Stefan Roese <sr@denx.de>
13902 Date: Mon Jun 2 17:20:03 2008 +0200
13904 ppc4xx: Fix common ECC generation code for 440GP style platforms
13906 This patch makes the common 4xx ECC code really usable on 440GP style
13909 Since the IBM DDR controller used on 440GP/GX/EP/GR is not register
13910 compatible to the IBM DDR/2 controller used on 405EX/440SP/SPe/460EX/GT
13911 we need to make some processor dependant defines used later on by the
13914 Signed-off-by: Stefan Roese <sr@denx.de>
13916 commit ec724f883ee3f3925e6c55027e8ffa70ada83303
13917 Author: Stefan Roese <sr@denx.de>
13918 Date: Mon Jun 2 17:13:55 2008 +0200
13920 ppc4xx: Change Kilauea to use the common DDR2 init function
13922 This patch changes the kilauea and kilauea_nand (for NAND booting)
13923 board port to not use a board specific DDR2 init routine anymore. Now
13924 the common code from cpu/ppc4xx is used.
13926 Thanks to Grant Erickson for all his basic work on this 405EX early
13929 Signed-off-by: Stefan Roese <sr@denx.de>
13931 commit 17ceb069b85fbb9269c4dc09b2c237f88334c5ba
13932 Author: Stefan Roese <sr@denx.de>
13933 Date: Mon Jun 2 14:59:21 2008 +0200
13935 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part2
13937 This patch now adds a new header file (asm-ppc/ppc4xx-sdram.h) for all
13938 ppc4xx related SDRAM/DDR/DDR2 controller defines.
13940 Signed-off-by: Stefan Roese <sr@denx.de>
13942 commit 36ea16f6a066ccb046e91ebce4f326b69f4c0569
13943 Author: Stefan Roese <sr@denx.de>
13944 Date: Mon Jun 2 14:57:41 2008 +0200
13946 ppc4xx: Consolidate PPC4xx SDRAM/DDR/DDR2 defines, part1
13948 This patch removes all SDRAM related defines from the PPC4xx headers
13949 ppc405.h and ppc440.h. This is needed since now some 405 PPC's use
13950 the same SDRAM controller as 440 systems do (like 405EX and 440SP).
13952 It also introduces new defines for the equipped SDRAM controller based on
13953 which PPC variant is used. There new defines are:
13955 used on 405GR/CR/EP and some Xilinx Virtex boards.
13957 used on 440GP/GX/EP/GR.
13959 used on 440EPx/GRx.
13961 used on 405EX/r/440SP/SPe/460EX/GT.
13963 Signed-off-by: Stefan Roese <sr@denx.de>
13965 commit 64852d09e06dd6db2b2db2a3c59bc2db176a54d6
13966 Author: Stefan Roese <sr@denx.de>
13967 Date: Mon Jun 2 14:35:44 2008 +0200
13969 ppc4xx/NAND_SPL: Consolidate 405 and 440 NAND booting code in start.S
13971 This patch consolidates the 405 and 440 parts of the NAND booting code
13972 selected via CONFIG_NAND_SPL. Now common code is used to initialize the
13973 SDRAM by calling initdram() and to "copy/relocate" to SDRAM/OCM/etc.
13974 Only *after* running from this location, nand_boot() is called.
13976 Please note that the initsdram() call is now moved from nand_boot.c
13977 to start.S. I experienced problems with some boards like Kilauea
13978 (405EX), which don't have internal SRAM (OCM) and relocation needs to
13979 be done to SDRAM before the NAND controller can get accessed. When
13980 initdram() is called later on in nand_boot(), this can lead to problems
13981 with variables in the bss sections like nand_ecc_pos[].
13983 Signed-off-by: Stefan Roese <sr@denx.de>
13984 Acked-by: Scott Wood <scottwood@freescale.com>
13986 commit 8a24c07ba5da2c72ad1f05e3eb8a463750200c98
13987 Author: Grant Erickson <gerickson@nuovations.com>
13988 Date: Thu May 22 14:44:24 2008 -0700
13990 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
13992 This patch (Part 2 of 2):
13994 * Rolls up a suite of changes to enable correct primordial stack and
13995 global data handling when the data cache is used for such a purpose
13996 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
13998 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
13999 eliminating redundant ECC initialization implementations and moving
14000 redundant SDRAM initialization out of board code into shared 4xx
14003 * Enables MCSR visibility on the 405EX(r).
14005 * Enables the use of the data cache for initial RAM on
14006 both AMCC's Kilauea and Makalu and removes a redundant
14007 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
14009 - Removed, per Stefan Roese's request, defunct memory.c file for
14010 Makalu and rolled sdram_init from it into makalu.c.
14012 With respect to the 4xx DDR initialization and ECC unification, there
14013 is certainly more work that can and should be done (file renaming,
14014 etc.). However, that can be handled at a later date on a second or
14015 third pass. As it stands, this patch moves things forward in an
14016 incremental yet positive way for those platforms that utilize this
14017 code and the features associated with it.
14019 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
14020 Signed-off-by: Stefan Roese <sr@denx.de>
14022 commit c821b5f120bedf73867513466412587c6912a8f8
14023 Author: Grant Erickson <gerickson@nuovations.com>
14024 Date: Thu May 22 14:44:14 2008 -0700
14026 ppc4xx: Enable Primordial Stack for 40x and Unify ECC Handling
14028 This patch (Part 1 of 2):
14030 * Rolls up a suite of changes to enable correct primordial stack and
14031 global data handling when the data cache is used for such a purpose
14032 for PPC40x-variants (i.e. CFG_INIT_DCACHE_CS).
14034 * Related to the first, unifies DDR2 SDRAM and ECC initialization by
14035 eliminating redundant ECC initialization implementations and moving
14036 redundant SDRAM initialization out of board code into shared 4xx
14039 * Enables MCSR visibility on the 405EX(r).
14041 * Enables the use of the data cache for initial RAM on
14042 both AMCC's Kilauea and Makalu and removes a redundant
14043 CFG_POST_MEMORY flag from each board's CONFIG_POST value.
14045 - Removed, per Stefan Roese's request, defunct memory.c file for
14046 Makalu and rolled sdram_init from it into makalu.c.
14048 With respect to the 4xx DDR initialization and ECC unification, there
14049 is certainly more work that can and should be done (file renaming,
14050 etc.). However, that can be handled at a later date on a second or
14051 third pass. As it stands, this patch moves things forward in an
14052 incremental yet positive way for those platforms that utilize this
14053 code and the features associated with it.
14055 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
14056 Signed-off-by: Stefan Roese <sr@denx.de>
14058 commit a439680019e06171d4a5694b7992accce87f590e
14059 Author: Grant Erickson <gerickson@nuovations.com>
14060 Date: Wed May 21 13:28:30 2008 -0700
14062 PPC4xx: Simplified post_word_{load, store}
14064 This patch simplifies post_word_{load,store} by using the preprocessor
14065 to eliminate redundant, copy-and-pasted code.
14067 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
14069 commit f979690ee337450b2030aba128f95b7a8d9881c0
14070 Author: Kumar Gala <galak@kernel.crashing.org>
14071 Date: Thu May 15 15:13:08 2008 -0500
14073 Fix warnings from gcc-4.3.0 build on a ppc host
14075 * The cfi_flash.c memset fix actual allows the board to boot so there is
14076 a bit more going on here than just resolving warnings associated with
14077 uninitialized variables.
14079 * include/asm/bitops.h:302: warning: '__swab32p' is static but used in
14080 inline function 'ext2_find_next_zero_bit' which is not static
14082 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14084 commit 9b124a68346ce9605b6e1fcf79e1021541cdba9e
14085 Author: Becky Bruce <becky.bruce@freescale.com>
14086 Date: Wed May 14 13:09:51 2008 -0500
14088 MPC512x: Change traps.c to not reference non-addressable memory
14090 Currently, END_OF_RAM is used by the trap code to determine if
14091 we should attempt to access the stack pointer or not. However,
14092 on systems with a lot of RAM, only a subset of the RAM is
14093 guaranteed to be mapped in and accessible. Change END_OF_RAM
14094 to use get_effective_memsize() instead of using the raw ram
14095 size out of the bd.
14097 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14099 commit 81673e9ae14b771cd13faf19947192599cae3959
14100 Author: Kumar Gala <galak@kernel.crashing.org>
14101 Date: Tue May 13 19:01:54 2008 -0500
14103 Make sure common.h is the first include.
14105 If common.h isn't first we can get CONFIG_ options defined in the
14106 board config file ignored. This can cause an issue if any of those
14107 config options impact the size of types of data structures
14108 (eg CONFIG_PHYS_64BIT).
14110 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
14112 commit 95d449ad4de79dd32b1705b8a4d3550f1e9081e3
14113 Author: Marian Balakowicz <m8@semihalf.com>
14114 Date: Tue May 13 15:53:29 2008 +0200
14116 Avoid initrd and logbuffer area overlaps
14118 Add logbuffer to reserved LMB areas to prevent initrd allocation
14119 from overlaping with it.
14121 Make sure to use correct logbuffer base address.
14123 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
14125 commit 6956d53d9934862507f83f0e3255dfd4662e7482
14126 Author: Sascha Laue <sascha.laue@liebherr.com>
14127 Date: Tue May 13 13:29:54 2008 +0200
14129 lwmon5: add memory-pattern-test to FPGA POST.
14131 commit e34a0e911b6a1568d0ca864234fbd0ee060d9b35
14132 Author: Becky Bruce <becky.bruce@freescale.com>
14133 Date: Thu May 8 19:02:51 2008 -0500
14135 PPC: 86xx Add bat registers to reginfo command
14137 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14139 commit d5b9b8cdb8b6eb3a8b0f5d9909d69ccc9c703ed9
14140 Author: Becky Bruce <becky.bruce@freescale.com>
14141 Date: Fri May 9 15:41:35 2008 -0500
14143 PPC: Add print_bats() to lib_ppc/bat_rw.c
14145 This function prints the values of all the BAT register
14146 pairs - I needed this for debug earlier this week; adding it to
14147 lib_ppc so others can use it (and add it to reginfo commands
14150 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14152 commit c148f24c15743a02e855636e6bed013bd121f7f2
14153 Author: Becky Bruce <becky.bruce@freescale.com>
14154 Date: Thu May 15 21:29:04 2008 -0500
14156 PPC: Change lib_ppc/bat_rw.c to use high bats
14158 Currently, this code only deals with BATs 0-3, which makes
14159 it useless on systems that support BATs 4-7. Add the
14160 support for these registers.
14162 Signed-off-by: Becky Bruce <Becky.bruce@freescale.com>
14164 commit 31d826722434931e1152a09d140187dcf72f8aac
14165 Author: Becky Bruce <becky.bruce@freescale.com>
14166 Date: Thu May 8 19:02:12 2008 -0500
14168 PPC: Create and use CONFIG_HIGH_BATS
14170 Change all code that conditionally operates on high bat
14171 registers (that is, BATs 4-7) to look at CONFIG_HIGH_BATS
14172 instead of the myriad ways this is done now. Define the option
14173 for every config for which high bats are supported (and
14174 enabled by early boot, on parts where they're not always
14177 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
14179 commit aa3b8bf9c30065bb2ea852799d32db5020598495
14180 Author: Wolfgang Grandegger <wg@grandegger.com>
14181 Date: Wed May 28 19:55:19 2008 +0200
14183 E1000: Add support for the 82541GI LF Intel Pro 1000 GT Desktop Adapter
14185 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
14186 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14188 commit ff36fbb2e7583fb808eef773f511489c7a9c2df3
14189 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14190 Date: Wed May 28 13:06:25 2008 -0500
14192 ColdFire: Add 10 base ethernet support for mcf5445x
14194 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
14195 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14197 commit 1a9fcc4b765599db24fa9c32293599f24c7a19ba
14198 Author: Jason McMullan <mcmullan@netapp.com>
14199 Date: Fri May 30 00:53:38 2008 +0900
14201 mips: Add an 'include/asm/errno.h', like all other architectures
14203 All other u-boot architectures have an include/asm/errno.h, so
14204 this change adds it to the mips include/asm-mips headers also.
14206 Stolen from Linux 2.6.25.
14208 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
14210 commit e2ad8426624bac457acc6925b6ff408e9bf20466
14211 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14212 Date: Fri May 30 00:53:38 2008 +0900
14214 [MIPS] <asm/mipsregs.h>: Update coprocessor register access macros
14216 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14218 commit 1a3adac81c292f2ee76e43cdeb2fbe8f915fe194
14219 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14220 Date: Fri May 30 00:53:38 2008 +0900
14222 [MIPS] <asm/mipsregs.h>: Update register / bit field definitions
14224 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14226 commit bf462ae450a7f2eeeddc699ed345b391e3263540
14227 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14228 Date: Fri May 30 00:53:37 2008 +0900
14230 [MIPS] <asm/mipsregs.h>: CodinygStyle cleanups
14232 No functional changes.
14234 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14236 commit 89a1550ec6b74452274a7a23127936e2c7eec711
14237 Author: Jason McMullan <mcmullan@netapp.com>
14238 Date: Fri May 30 00:53:37 2008 +0900
14240 mips: If CONFIG_CMD_SPI is defined, call spi_init()
14242 The mips architecture currently does not call 'spi_init()' in the generic
14243 board initialization routine is CONFIG_CMD_SPI is defined.
14245 This patch rectifies that problem.
14247 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
14248 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14250 commit e996bc339b0f39f6c0b29b1455ba7eb318b023d3
14251 Author: Jason McMullan <mcmullan@netapp.com>
14252 Date: Fri May 30 00:53:37 2008 +0900
14254 [MIPS] lib_mips/board.c: Add nand_init
14256 This patch adds the standard 'nand_init()' call to the mips generic
14257 'board_init_r()' call, bringing MIPS in line with the other architectures.
14259 Signed-off-by: Jason McMullan <mcmullan@netapp.com>
14260 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
14262 commit d6ac2ed893c2168738aee01579d6283af8d37045
14263 Author: Scott Wood <scottwood@freescale.com>
14264 Date: Thu May 22 10:49:46 2008 -0500
14266 Remove prototypes of nand_init() in favor of including nand.h.
14268 Likewise with onenand_init().
14270 Signed-off-by: Scott Wood <scottwood@freescale.com>
14272 commit 229c56f07a82eacda8c8720cb146fc9be0f6db54
14273 Author: Scott Wood <scottwood@freescale.com>
14274 Date: Thu May 22 10:49:00 2008 -0500
14276 Make onenand_uboot.h self-sufficient.
14278 Don't assume types are provided by previously included headers.
14280 Signed-off-by: Scott Wood <scottwood@freescale.com>
14282 commit 9723bbb46abb7b2ca24eead5114a3faa58060c20
14283 Author: Dirk Behme <dirk.behme@gmail.com>
14284 Date: Wed Jan 16 14:26:59 2008 +0100
14286 nand: Correct NAND erase percentage output
14288 For NAND erase sizes smaller than one NAND erase block, erase
14289 percentage output becomes grater than 100% e.g.
14293 Device 0: NAND 64MiB 1,8V 8-bit, sector size 16 KiB
14294 > nand erase 0x100000 0x2000
14295 NAND erase: device 0 offset 0x100000, size 0x2000
14296 Erasing at 0x100000 -- 200% complete.
14301 Correct this and give user a warning that more is erased than specified:
14304 > nand erase 0x100000 0x2000
14305 NAND erase: device 0 offset 0x100000, size 0x2000
14306 Warning: Erase size 0x00002000 smaller than one erase block 0x00004000
14307 Erasing 0x00004000 instead
14308 Erasing at 0x100000 -- 100% complete.
14313 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
14315 commit 5922db6c0948506be91e0de44e7a6863a18a417f
14316 Author: Stelian Pop <stelian@popies.net>
14317 Date: Tue May 13 17:31:24 2008 +0200
14319 Cleanup nand_info[] declaration.
14321 The nand_info array is declared as extern in several .c files.
14322 Those days, nand.h contains a reference to the array, so there is
14323 no need to declare it elsewhere.
14325 Signed-off-by: Stelian Pop <stelian@popies.net>
14326 Signed-off-by: Scott Wood <scottwood@freescale.com>
14328 commit 135f0a7488af2947adbe4b40b79280bdfe5e9886
14329 Author: Scott Wood <scottwood@freescale.com>
14330 Date: Mon May 19 09:30:43 2008 -0500
14332 NAND: Provide a sane default for NAND_MAX_CHIPS.
14334 This allows the header to be included regardless of whether a board's
14335 config file provides NAND-related defininitions.
14337 Signed-off-by: Scott Wood <scottwood@freescale.com>
14339 commit a8092c021d27f27f4b323b7d49979ca01b3fc19d
14340 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14341 Date: Mon May 26 12:19:10 2008 +0200
14343 avr32: Fix theoretical race in udelay()
14345 If the specified delay is very short, the cycle counter may go past the
14346 "end" time we are waiting for before we get around to reading it.
14348 Fix it by checking the different between the cycle count "now" and the
14349 cycle count at the beginning. This will work as long as the delay
14350 measured in number of cycles is below 2^31.
14352 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14354 commit 48ea623eae8674793372e3e7c95e72e5a44d7a95
14355 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14356 Date: Wed May 21 13:01:09 2008 +0200
14358 avr32: Compile atmel_mci.o conditionally
14360 Remove #ifdef CONFIG_MMC from the source file and use conditional
14361 compilation in the Makefile instead.
14363 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14365 commit e92a5bf8330654e33ac13f6b3058634e58f5d1c0
14366 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14367 Date: Thu May 22 12:28:25 2008 +0200
14369 avr32: Fix wrong error flags in atmel_mci driver
14371 Make sure we check for CRC errors when sending commands that use CRC
14374 Reported-by: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
14375 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14377 commit 7a96ddadd13e6ac9a829affce9b6f8823f580e49
14378 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14379 Date: Wed May 21 11:10:59 2008 +0200
14381 avr32: Fix two warnings in atmel_mci.c
14383 The warnings are harmless but annoying. Let's fix them.
14385 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14387 commit a23e277c4a3a2bbc42d237aae29da3a8971e757f
14388 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14389 Date: Mon May 19 11:36:28 2008 +0200
14391 avr32: Rework SDRAM initialization code
14393 This cleans up the SDRAM initialization and related code a bit, and
14394 allows faster booting.
14396 * Add definitions for EBI and internal SRAM to asm/arch/memory-map.h
14397 * Remove memory test from sdram_init() and make caller responsible
14398 for verifying the SDRAM and determining its size.
14399 * Remove base_address member from struct sdram_config (was sdram_info)
14400 * Add data_bits member to struct sdram_config and kill CFG_SDRAM_16BIT
14401 * Add support for a common STK1000 hack: 16MB SDRAM instead of 8.
14403 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14405 commit 95107b7c028806919630bf02c653aa8f4f867c94
14406 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14407 Date: Mon May 19 11:27:37 2008 +0200
14409 avr32: Do stricter stack checking in the exception handler
14411 Don't do a stack dump if the stack pointer is outside the memory area
14412 reserved for stack.
14414 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14416 commit caf83ea888a0220f41747d0b7748fa43b4a4bd49
14417 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14418 Date: Fri May 2 15:32:57 2008 +0200
14420 avr32: Use the same entry point for reset and exception handling
14422 Since the reset vector is always aligned to a very large boundary, we
14423 can save a couple of KB worth of alignment padding by placing the
14424 exception vectors at the same address.
14426 Deciding which one it is is easy: If we're handling an exception, the
14427 CPU is in Exception mode. If we're starting up after reset, the CPU is
14428 in Supervisor mode. So this adds a very minimal overhead to the reset
14429 path (only executed once) and the exception handling path (normally
14430 never executed at all.)
14432 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14434 commit 0c16eed2189a190bd5655b33c029f809a9b31128
14435 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14436 Date: Fri May 2 15:24:22 2008 +0200
14438 avr32: Put memset in its own section
14440 All C code is compiled with -ffunction-sections -fdata-sections.
14441 Assembly functions should get their own sections as well so that
14442 everything looks consistent.
14444 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14446 commit 3ace2527ba80bd2fe1bceaab50d0b3c4fb5dd020
14447 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14448 Date: Fri May 2 15:21:40 2008 +0200
14450 avr32: Rename pm_init() as clk_init() and make SoC-specific
14452 pm_init() was always more about clock initialization than anything
14453 else. Dealing with PLLs, clock gating and such is also inherently
14454 SoC-specific, so move it into a SoC-specific directory.
14456 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14458 commit 4f5972c3b2454c22957f2842cfe64ec8118e015b
14459 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14460 Date: Wed Apr 30 16:15:57 2008 +0200
14462 avr32: Use new-style Makefile for the at32ap platform
14464 This makes it easier to avoid compiling certain files later.
14466 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14468 commit a9b2bb78a1bd8ebdb633509bdd1c8134d527b213
14469 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14470 Date: Wed Apr 30 14:36:47 2008 +0200
14472 avr32: Remove unused file cpu/at32ap/pm.c
14474 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14476 commit 44453b25b06426eef0b7b2fa7c026fdf19ce34f2
14477 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14478 Date: Wed Apr 30 14:19:28 2008 +0200
14480 avr32: Clean up the HMATRIX code
14482 Rework the HMATRIX configuration interface so that it becomes easier
14483 to configure the HMATRIX for boards with special needs, and add new
14486 The HMATRIX header file has been split into a general,
14487 chip-independent part with register definitions, etc. and a
14488 chip-specific part with SFR bitfield definitions and master/slave
14491 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14493 commit 0a2e48792dd372c90b80059f3235e67a567e16fc
14494 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14495 Date: Thu Nov 22 12:14:11 2007 +0100
14497 avr32: Add support for the ATSTK1006 board
14499 This is a replacement for ATSTK1002 with 64MB SDRAM and NAND flash on
14500 board. It's currently in production and will be available soon.
14502 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14504 commit 781eb9a1e4af4bd34c138e6126ec5cc6dd4b5440
14505 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14506 Date: Tue Apr 29 12:53:05 2008 +0200
14508 avr32: Get rid of the .flashprog section
14510 The .flashprog section was only needed back when we were running
14511 directly from flash, and it's even more useless on NGW100 since it
14512 uses the CFI flash driver which never used this workaround in the
14515 Remove it on STK1000 as well, and get rid of all the associated code and
14518 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14520 commit cdd42c0c7a5205fc380912d83229069a71ea3abf
14521 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14522 Date: Wed Apr 30 13:09:56 2008 +0200
14524 avr32: Use correct condition around macb clock accessors
14526 get_macb_pclk_rate() and get_macb_hclk_rate() should be available when
14527 the chip has a MACB controller, not when it has a USART.
14529 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14531 commit f793a3581901ff39c2abb94012d9bbc8573ccf02
14532 Author: David Brownell <david-b@pacbell.net>
14533 Date: Wed Apr 16 22:57:58 2008 -0700
14535 avr32: Disable the AP7000 internal watchdog on startup
14537 This patch forces the watchdog off in all cases. That will at least
14538 get rid of the constant reboot cycle, though it won't let the watchdog
14539 actually run in the new kernels: its probe() comes up with a polite
14542 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14544 commit 55ac7a7490b55da56659f95d82a0c83b9756df27
14545 Author: David Brownell <david-b@pacbell.net>
14546 Date: Fri Feb 22 12:54:39 2008 -0800
14548 avr32: stk1002 and ngw100 convergence
14550 Make STK1002 and NGW100 boards act more alike:
14551 - STK boards can use as many arguments as NGW
14552 - STK boards don't need to manage FPGAs either
14553 - NGW commands should match STK ones
14555 Also spell U-Boot right in prompts for STK1002 and NGW100.
14557 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
14558 [haavard.skinnemoen@atmel.com: update STK100[34] as well]
14559 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
14561 commit 5e1882df6a3efc7de5524d28cea4ecde7d163d54
14562 Author: Sergei Poselenov <sposelenov@emcraft.com>
14563 Date: Tue May 27 13:47:00 2008 +0200
14565 Socrates: Fix PCI bus frequency report
14567 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14569 commit 791e1dba8de76ad8e762a7badb869f224a1f8b82
14570 Author: Sergei Poselenov <sposelenov@emcraft.com>
14571 Date: Tue May 27 11:49:13 2008 +0200
14573 Socrates: Added USB support.
14575 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14577 commit 5a904e5637cff1d708dc67098004f83ba9e84c54
14578 Author: Sergei Poselenov <sposelenov@emcraft.com>
14579 Date: Tue May 27 11:35:02 2008 +0200
14581 USB: add new configuration variable CONFIG_PCI_OHCI_DEVNO
14583 In case of several PCI USB controllers on a board this variable
14584 specifys which controller to use.
14585 See doc/README.generic_usb_ohci for details.
14587 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14589 commit 2f7468aeba60e1288030a8d007c4e63bd3f13221
14590 Author: Sergei Poselenov <sposelenov@emcraft.com>
14591 Date: Tue May 27 10:36:07 2008 +0200
14593 Socrates: add support for DS75 Digital Thermo Sensor on I2C bus.
14595 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14597 commit 83e9d7a2614d4006b92690afa3390c291734267e
14598 Author: Sergei Poselenov <sposelenov@emcraft.com>
14599 Date: Mon May 26 18:16:04 2008 +0200
14601 Socrates: Config file cleanup.
14603 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14605 commit 602cac1389b755b223272f2328a47e6f8c240848
14606 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14607 Date: Sat May 24 12:47:46 2008 +0200
14609 MAKEALL: add at91 list
14611 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14613 commit 290ef6436838b1cc013bd67e0e0495c9eb3e23c0
14614 Author: Ron Madrid <ron_madrid@sbcglobal.net>
14615 Date: Fri May 23 15:37:05 2008 -0700
14617 Add Marvell 88E1118 support for TSEC
14619 Signed-off-by: Ron Madrid <ron_madrid@sbcglobal.net>
14620 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14622 commit 557b377d8bfc8b833b6e749457bcdfa298331a24
14623 Author: Jens Gehrlein <sew_s@tqs.de>
14624 Date: Mon May 5 14:06:11 2008 +0200
14626 smc911x: add 16 bit support
14628 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
14629 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
14631 commit 6324e5bec8825f7fee3026ffbd394454ae8b53fb
14632 Author: Christian Eggers <ceggers@gmx.de>
14633 Date: Wed May 21 21:29:10 2008 +0200
14635 Fix endianess conversion in usb_ohci.c
14637 Sorry, I forgot this line:
14639 Signed-off-by: Christian Eggers <ceggers@gmx.de>
14641 I think this must be swapped (result may be equal).
14643 commit c918261c6d9f265f88baf70f8a73dfe6f0cb9596
14644 Author: Christian Eggers <ceggers@gmx.de>
14645 Date: Wed May 21 22:12:00 2008 +0200
14647 USB: replace old swap_ with proper endianess conversion macros
14649 Signed-off-by: Christian Eggers <ceggers@gmx.de>
14650 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
14652 commit fb63939b4fe140849cdba69f9e64a3e0e2f3ce1c
14653 Author: Christian Eggers <ceggers@gmx.de>
14654 Date: Wed May 21 21:29:10 2008 +0200
14656 Fix endianess conversion in usb_ohci.c
14658 Signed-off-by: Christian Eggers <ceggers@gmx.de>
14659 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
14661 commit 477434c63c2ea5baa5c6c4e43500786f436511ff
14662 Author: Sergei Poselenov <sposelenov@emcraft.com>
14663 Date: Thu May 22 01:15:53 2008 +0200
14665 USB: add support for multiple PCI OHCI controllers
14667 Add new configuration variable CONFIG_PCI_OHCI_DEVNO.
14668 In case of several PCI USB controllers on a board this variable
14669 specifys which controller to use.
14671 Also add USB support for sokrates board.
14673 See doc/README.generic_usb_ohci for details.
14675 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14676 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
14678 commit ce6754df61cbe23b5b73d095a00ac9a8504b3d77
14679 Author: Wolfgang Denk <wd@denx.de>
14680 Date: Wed May 21 16:56:08 2008 +0200
14682 Fix some whitespace issues
14684 introduced by 53677ef18 "Big white-space cleanup."
14686 Signed-off-by: Wolfgang Denk <wd@denx.de>
14688 commit 4416603aeb06861b468b06a981e52c3ff805db7b
14689 Author: York Sun <yorksun@freescale.com>
14690 Date: Mon May 12 14:36:39 2008 -0500
14692 Make ads5121 out-of-tree compiling safe
14694 Reuse the existing DIU driver in board/freescale/common.
14696 Signed-off-by: York Sun <yorksun@freescale.com>
14698 commit 0e1bad47cd345c76c91a64caf41011e431b62599
14699 Author: York Sun <yorksun@freescale.com>
14700 Date: Mon May 5 10:20:01 2008 -0500
14702 Adding DIU support for Freescale 5121ADS
14704 Add DIU and cfb console support to FSL 5121ADS board.
14706 Use #define CONFIG_VIDEO in config file to enable fb console.
14708 Signed-off-by: York Sun <yorksun@freescale.com>
14710 commit a48ff68d235e671176f6b496c44246dbe5e0a93f
14711 Author: York Sun <yorksun@freescale.com>
14712 Date: Mon May 5 10:20:00 2008 -0500
14714 Replace DPRINTF with debug
14716 Remove DPRINTF macro and replace it with generic debug macro.
14718 Signed-off-by: York Sun <yorksun@freescale.com>
14720 commit 3b80c5f574ad7f6e1c55a68f42752b427fdf778d
14721 Author: York Sun <yorksun@freescale.com>
14722 Date: Mon May 5 10:19:59 2008 -0500
14724 Move pixel clock setting to board file
14726 The clock divider has different format in 5121 and 8610. This patch moves it to
14727 board specific code.
14729 Signed-off-by: York Sun <yorksun@freescale.com>
14731 commit 53677ef18e25c97ac613349087c5cb33ae5a2741
14732 Author: Wolfgang Denk <wd@denx.de>
14733 Date: Tue May 20 16:00:29 2008 +0200
14735 Big white-space cleanup.
14737 This commit gets rid of a huge amount of silly white-space issues.
14738 Especially, all sequences of SPACEs followed by TAB characters get
14739 removed (unless they appear in print statements).
14741 Also remove all embedded "vim:" and "vi:" statements which hide
14742 indentation problems.
14744 Signed-off-by: Wolfgang Denk <wd@denx.de>
14746 commit 2f845dc2bdf461bfee9fa25823f769f5db9eba0b
14747 Author: Sergei Poselenov <sposelenov@emcraft.com>
14748 Date: Thu May 8 17:46:23 2008 +0200
14750 socrates: fix second TSEC configuration (it is actually TSEC3)
14752 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14754 commit 793670c3c0f0f72caead62f0be9fc3d9fbc6060f
14755 Author: Sergei Poselenov <sposelenov@emcraft.com>
14756 Date: Thu May 8 14:17:08 2008 +0200
14758 Fixed reset for socrates
14760 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14762 commit e18575d5f589a62e19c70d471d4b4e27cad3af56
14763 Author: Sergei Poselenov <sposelenov@emcraft.com>
14764 Date: Wed May 7 15:10:49 2008 +0200
14766 socrates: changes to support FDT
14768 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14769 Signed-off-by: Wolfgang Denk <wd@denx.de>
14771 commit 5d108ac8f435924c624cd6aaacd44f35f5cf94c0
14772 Author: Sergei Poselenov <sposelenov@emcraft.com>
14773 Date: Wed Apr 30 11:42:50 2008 +0200
14775 Initial support for "Socrates" board
14777 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
14779 commit 0e15ddd11f1a84c465e434eb051d2ef08ef02b9b
14780 Author: Yuri Tikhonov <yur@emcraft.com>
14781 Date: Thu May 8 15:46:42 2008 +0200
14783 POST: replace the LOGBUFF_INITIALIZED flag in gd->post_log_word (1 << 31) with the GD_FLG_LOGINIT flag in gd->flags.
14785 This way we become able to utilize the full post_log_word for POST
14786 activities (overwise, POST ECC, which has 0x8000 ID, could be
14787 erroneously treated as started in post_output_backlog() even if there
14788 was actually no POST ECC run (because of OCM POST failure, for
14791 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14793 commit 7845d49094c81321021b50a4dbb8864d2f3777e4
14794 Author: Yuri Tikhonov <yur@emcraft.com>
14795 Date: Thu May 8 15:46:02 2008 +0200
14797 POST: mark OCM test as POST_STOP
14799 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14801 commit 28a385065882d6cb6ac5f443311ff87887ed7c13
14802 Author: Yuri Tikhonov <yur@emcraft.com>
14803 Date: Thu May 8 15:45:26 2008 +0200
14805 POST: add POST_STOP flag
14807 Don't run futher tests in case of a test fails that is marked as
14810 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14811 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14813 commit a525145d8110d15b4389d23c3ea8a78f22509d3f
14814 Author: Yuri Tikhonov <yur@emcraft.com>
14815 Date: Thu May 8 15:44:16 2008 +0200
14817 POST: switch CFG_POST_OCM with CFG_POST_CODEC (workaround)
14819 Switch the OCM testid with the codec one. The reason is that current
14820 implementation requires the POST_ROM testid to fit into lower 16
14821 bits, and the codec test will never run with POST_ROM hopefully.
14823 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14825 commit 8b96c788d58f7cb85a89ee3f19c9b335d22443cd
14826 Author: Yuri Tikhonov <yur@emcraft.com>
14827 Date: Thu May 8 15:43:28 2008 +0200
14829 lwmon5: enable OCM post test on lwmon5 board
14831 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14833 commit 6e8ec682268493b8d098f99e17b1ce71b4448977
14834 Author: Yuri Tikhonov <yur@emcraft.com>
14835 Date: Thu May 8 15:42:47 2008 +0200
14837 POST: OCM test added.
14839 Added OCM test to POST layer. This version runs before all other tests
14840 but doesn't yet interrupt post sequence on failure.
14842 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14843 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
14845 commit 6891260bdd935a382c95d9fa333922b0dfded68a
14846 Author: Yuri Tikhonov <yur@emcraft.com>
14847 Date: Thu May 8 15:40:39 2008 +0200
14851 Signed-off-by: Ilya Yanok <yanok@emcraft.com>
14853 commit 727f63334676e760877d43bfb8f0e9331ac8b101
14854 Author: Hebbar <gururajakr@sanyo.co.in>
14855 Date: Tue May 20 02:16:36 2008 -0700
14857 common/usb.c: fix incorrect escape sequence
14859 Signed off by: Gururaja Hebbar <gururajakr@sanyo.co.in>
14861 commit 4ce1e23b5e12283579828b3d23e8fd6e1328a7aa
14862 Author: York Sun <yorksun@freescale.com>
14863 Date: Thu May 15 15:26:27 2008 -0500
14865 Fix 8313ERDB board configuration
14867 Change LCRR clock ratio from 2 to 4 to commodate VSC7385.
14868 Correct TSEC1 vs TSEC2 assignment.
14869 Define ETHADDR and ETH1ADDR always.
14871 Signed-off-by: York Sun <yorksun@freescale.com>
14872 Signed-off-by: Timur Tabi <timur@freescale.com>
14874 commit 2c289e320dcfb3760e99cf1d765cb067194a1202
14875 Author: Jon Loeliger <jdl@freescale.com>
14876 Date: Mon May 19 09:47:25 2008 -0500
14878 mpc86xx: Removed unused and unconfigured memory test code.
14880 Besides, other common code exists.
14882 Signed-off-by: Jon Loeliger <jdl@freescale.com>
14884 commit 180a90abdae72587c0f679edf8991455e559440d
14885 Author: Wolfgang Denk <wd@denx.de>
14886 Date: Mon May 19 12:47:11 2008 +0200
14890 Update CHANGELOG for release.
14892 Signed-off-by: Wolfgang Denk <wd@denx.de>
14894 commit 16bedc661de0dae767b1377d8413373a3fbcfa79
14895 Author: Stefan Roese <sr@denx.de>
14896 Date: Mon May 19 07:14:38 2008 +0200
14898 ppc4xx: Canyonlands: Disable PCIe0/SATA in dev-tree depending on selection
14900 When SATA is selected (via jumper J6) we need to disable the first PCIe
14901 node in the device tree, so that Linux doesn't initialize it. Otherwise
14902 the Linux SATA driver will fail to detect the devices.
14904 The same goes the other way around too. So if PCIe is selected we need
14905 to disable the SATA node in the device tree.
14907 This is because PCIe port 0 and SATA on 460EX share the same pins
14908 (multiplexed) and we have to configure in U-Boot which peripheral is
14911 Signed-off-by: Stefan Roese <sr@denx.de>
14913 commit 3cc27b426aeefe2930f911692e9df3143fb2565f
14914 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14915 Date: Sun May 18 19:09:58 2008 +0200
14917 i386: Fix multiple definitions of __show_boot_progress
14919 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14921 commit 311f3446930c1e64c12026c1cfd00500b05be52d
14922 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14923 Date: Sun May 18 19:09:57 2008 +0200
14925 sc530_spunk: add missing SOBJS entry
14927 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14929 commit a559317143b4f95927b08cd388707e6f077e95fa
14930 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14931 Date: Sun May 18 19:09:56 2008 +0200
14933 sc520_spunk: Fix flash
14935 flash.c:593: warning: dereferencing type-punned pointer will break strict-aliasing rules
14936 flash.c:398: error: label at end of compound statement
14938 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14940 commit 91f221317af64191ee8caf303ea9305943158691
14941 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14942 Date: Sun May 18 19:09:49 2008 +0200
14944 drivers/pcmcia: add missing i82365
14946 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14948 commit dd223944132f97ffa52977ea95e5a52428f5cc2f
14949 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14950 Date: Sun May 18 19:09:47 2008 +0200
14952 i386/bootm: remove unused var
14954 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14956 commit a9da341df19b32ad2ecb58ce529f7e4fada7814e
14957 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14958 Date: Sun May 18 19:09:45 2008 +0200
14960 example/gitignore: update with all generated examples
14962 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
14964 commit a38dc3ea8614f8b0c41e432b445a9959b9711295
14965 Author: Wolfgang Denk <wd@denx.de>
14966 Date: Thu May 15 00:42:45 2008 +0200
14968 TQM8272: fix out-of-tree building
14970 ...and add to MAKEALL script
14972 Signed-off-by: Wolfgang Denk <wd@denx.de>
14974 commit 4f805c1e3a60b9263da8ec3bcd1f45edcefa7dcf
14975 Author: Wolfgang Denk <wd@denx.de>
14976 Date: Wed May 14 23:34:53 2008 +0200
14978 environment: fix bug introduced by commit a8409f4f1ac8
14980 env_get_char is not a function, but a pointer to one.
14982 Signed-off-by: Wolfgang Denk <wd@denx.de>
14984 commit 0c11935cd62ca1f65eeb228ff4c848440d4553bf
14985 Author: Gary Jennejohn <garyj@denx.de>
14986 Date: Wed May 14 13:39:22 2008 +0200
14988 ppc4xx: QUAD100HD: Allow the environment to be put into flash.
14990 After moving TEXT_BASE the value for CFG_ENV_ADDR was incorrect. Also
14991 use a redundant environment.
14993 Signed-off-by: Gary Jennejohn <garyj@denx.de>
14995 commit cda2a4a9961fd4341b7db305cb22fc05957e8b77
14996 Author: Wolfgang Denk <wd@denx.de>
14997 Date: Wed May 14 13:55:30 2008 +0200
14999 Fix config files for out-of-tree building
15001 Several board/<...>/config.mk files include dynamically built (by
15002 the Makefile) config files but used the wrong file name of
15003 $(TOPDIR)/board/$(BOARDDIR)/config.tmp
15004 instead if the correct
15005 $(OBJTREE)/board/$(BOARDDIR)/config.tmp
15007 The bug is nasty because the build result is correct for the (normal)
15008 in-tree builds, and because 'sinclude' is used no errors get raised
15009 even for out-of-tree build tests. But out-of-tree builds use an
15010 incomplete and thus usually incorrect configuration...
15012 Signed-off-by: Wolfgang Denk <wd@denx.de>
15014 commit 2dd7082e06d580404010b06fe4e0e8b7038a00c8
15015 Author: Stefan Roese <sr@denx.de>
15016 Date: Wed May 14 13:40:03 2008 +0200
15018 ppc4xx: Fix bogus Canyonlands config.mk
15020 This patch fixes the canyonlands config.mk file to enable correct
15021 out-of-tree builds. Thanks to Wolfgang Denk for spotting this.
15023 Signed-off-by: Stefan Roese <sr@denx.de>
15025 commit fdd1247a66d788a3446244f6fde9955a93c26322
15026 Author: Stefan Roese <sr@denx.de>
15027 Date: Wed May 14 10:32:32 2008 +0200
15029 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
15031 Canyonlands has a file ddr2_fixed.c which needs special treatment when
15032 building in separate directory. It has to be linked to build directory
15033 otherwise it is not seen.
15035 Signed-off-by: Stefan Roese <sr@denx.de>
15037 commit a8409f4f1ac84c36273c1a1e341189662521bcfb
15038 Author: Wolfgang Denk <wd@denx.de>
15039 Date: Wed May 14 12:22:49 2008 +0200
15041 environment: cleanup prototype declarations of env functions.
15043 Signed-off-by: Wolfgang Denk <wd@denx.de>
15045 commit cf39b07948015c480b72a6e732cf7d839aa93a9e
15046 Author: Wolfgang Denk <wd@denx.de>
15047 Date: Wed May 14 12:21:48 2008 +0200
15049 linkstation_HGLAN: Fix out of tree building.
15051 Signed-off-by: Wolfgang Denk <wd@denx.de>
15053 commit 085551c05ca09e6c491ea11a1c6727a36776a545
15054 Author: Stefan Roese <sr@denx.de>
15055 Date: Wed May 14 10:32:32 2008 +0200
15057 ppc4xx: Individual handling of ddr2_fixed.c for canyonlands_nand build
15059 Canyonlands has a file ddr2_fixed.c which needs special treatment when
15060 building in separate directory. It has to be linked to build directory
15061 otherwise it is not seen.
15063 Signed-off-by: Stefan Roese <sr@denx.de>
15065 commit 1510b82d50615f344e89d42533e8224cce067dc0
15066 Author: Wolfgang Denk <wd@denx.de>
15067 Date: Tue May 13 23:15:52 2008 +0200
15069 Makefile: fix "error: version_autogenerated.h: No such file or directory"
15071 Signed-off-by: Wolfgang Denk <wd@denx.de>
15073 commit 54694a91428f6c3280fe1ee0923488a1e7e8dbc4
15074 Author: Stelian Pop <stelian@popies.net>
15075 Date: Tue May 13 17:31:24 2008 +0200
15077 Cleanup nand_info[] declaration.
15079 The nand_info array is declared as extern in several .c files.
15080 Those days, nand.h contains a reference to the array, so there is
15081 no need to declare it elsewhere.
15083 Signed-off-by: Stelian Pop <stelian@popies.net>
15084 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15086 commit 70fab1908fc1734a403711eaabbef546bc4b77dc
15087 Author: Stefan Roese <sr@denx.de>
15088 Date: Tue May 13 20:22:01 2008 +0200
15090 ppc4xx: Add 405EX(r) revision C PVR definitions and detection code
15092 Signed-off-by: Stefan Roese <sr@denx.de>
15094 commit 65dcfa79204f4750b905a173a5365e0b2eb6c2f6
15095 Author: Wolfgang Denk <wd@denx.de>
15096 Date: Mon May 12 01:11:21 2008 +0200
15098 Revert "pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option"
15100 This reverts commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
15101 which broke many PowerPC boards.
15103 commit ee0cfa70803a3e629ea581a9b216f8ecef402bfc
15104 Author: Wolfgang Denk <wd@denx.de>
15105 Date: Mon May 12 00:56:28 2008 +0200
15107 Revert "Avoid initrd and logbuffer area overlaps"
15109 This reverts commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
15110 which breaks building on all PPC boards that don't use a log buffer.
15112 commit 02b9b22446e3d7ad6a6382be17a1ce79a7de589b
15113 Author: Nick Spence <nick.spence@freescale.com>
15114 Date: Sat May 10 14:02:04 2008 -0700
15116 Fix offset calculation for multi-type legacy images.
15118 Calculation of tail was incorrect when size % 4 == 0.
15120 New code removes the conditional and does the same thing but with arithmetic
15122 Signed-off-by: Nick Spence <nick.spence@freescale.com>
15124 commit c9dca3c3f37d2647aec4509b24b16d15882ae3e4
15125 Author: Wolfgang Denk <wd@denx.de>
15126 Date: Mon May 12 00:40:58 2008 +0200
15128 Revert "Change env_get_char from a global function ptr to a function."
15130 This reverts commit c0559be371b2a64b1a817088c3308688e2182f93
15131 which is known to break booting from dataflash and NAND.
15133 commit 20e5ed137483823aaea5178169f3b144c7a4d9e0
15134 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15135 Date: Sun May 11 23:13:57 2008 +0200
15137 API: remove duplicate syscall check
15139 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15141 commit 67e3beb52c320b0a31cf030716c99392cde2d532
15142 Author: Stelian Pop <stelian@popies.net>
15143 Date: Fri May 9 21:46:51 2008 +0200
15145 AT91: Cleanup unused config header file definitions.
15147 CONFIG_ENV_OVERWRITE is commented out in the config header files,
15148 so let's cleanup the files by removing the whole definition.
15150 Signed-off-by: Stelian Pop <stelian@popies.net>
15151 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15153 commit 19883aede2ac0a522493bfb2b35a7dbb200071b1
15154 Author: Stelian Pop <stelian@popies.net>
15155 Date: Thu May 8 14:52:34 2008 +0200
15157 Support AT91CAP9 revC CPUs
15159 The AT91CAP9 revC CPU has a few differences over the previous,
15160 revB CPU which was distributed in small quantities only (revA was
15161 an internal Atmel product only).
15163 The revC silicon needs a special initialisation sequence to
15164 switch from the internal (imprecise) RC oscillator to the
15165 external 32k clock.
15167 Signed-off-by: Stelian Pop <stelian@popies.net>
15168 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15170 commit 098b7b4b441b12c2a64dd517930f43c793542759
15171 Author: Stelian Pop <stelian@popies.net>
15172 Date: Thu May 8 14:52:33 2008 +0200
15174 Use custom logo for Atmel boards
15176 This patch adds a custom vendor logo for the Atmel AT91 boards.
15178 Signed-off-by: Stelian Pop <stelian@popies.net>
15179 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15181 commit 761c70b80cdd3bead40146b96a8e713d6ae01632
15182 Author: Stelian Pop <stelian@popies.net>
15183 Date: Thu May 8 14:52:32 2008 +0200
15185 AT91SAM9RLEK: hook up the ATMEL LCD driver
15187 This patch makes the necessary adaptations (PIO configurations and
15188 defines in config header file) to hook up the Atmel LCD driver to the
15189 AT91SAM9RLEK board.
15191 Signed-off-by: Stelian Pop <stelian@popies.net>
15192 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15194 commit 56a2479cd7fecabdd91348a775b2801dd2e65c7f
15195 Author: Stelian Pop <stelian@popies.net>
15196 Date: Thu May 8 14:52:31 2008 +0200
15198 AT91SAM9263EK: hook up the ATMEL LCD driver
15200 This patch makes the necessary adaptations (PIO configurations and
15201 defines in config header file) to hook up the Atmel LCD driver to the
15202 AT91SAM9263EK board.
15204 Signed-off-by: Stelian Pop <stelian@popies.net>
15205 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15207 commit 820f2a958325061a446115f3035e48e4726b3390
15208 Author: Stelian Pop <stelian@popies.net>
15209 Date: Thu May 8 14:52:30 2008 +0200
15211 AT91SAM9261EK: hook up the ATMEL LCD driver
15213 This patch makes the necessary adaptations (PIO configurations and
15214 defines in config header file) to hook up the Atmel LCD driver to the
15215 AT91SAM9261EK board.
15217 Signed-off-by: Stelian Pop <stelian@popies.net>
15218 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15220 commit c139b17d20c8371c1e0a8d7fb27c11050cf86304
15221 Author: Stelian Pop <stelian@popies.net>
15222 Date: Thu May 8 14:52:29 2008 +0200
15224 AT91CAP9ADK: hook up the ATMEL LCD driver
15226 This patch makes the necessary adaptations (PIO configurations and
15227 defines in config header file) to hook up the Atmel LCD driver to the
15230 Signed-off-by: Stelian Pop <stelian@popies.net>
15231 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15233 commit 39cf480484fcce5c04a590ee1c30be0c17b02c34
15234 Author: Stelian Pop <stelian@popies.net>
15235 Date: Fri May 9 21:57:18 2008 +0200
15237 Add ATMEL LCD driver
15239 This patch adds support for the ATMEL LCDC driver which is used on some
15240 AT91 and AVR platforms.
15242 Is has been tested with the AT91CAP9ADK, AT91SAM9261EK, AT91SAM9263EK and
15243 AT91SAM9RLEK boards. Adaptation for AVR32 should probably be easy.
15245 Signed-off-by: Stelian Pop <stelian@popies.net>
15246 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15248 commit 2118ebb44dc40f8117c94950fd95799a9ef821b2
15249 Author: Stelian Pop <stelian@popies.net>
15250 Date: Thu May 8 18:52:25 2008 +0200
15252 AT91SAM9RLEK support
15254 This patch adds support for the AT91SAM9RL chip and the AT91SAM9RLEK
15257 Signed-off-by: Stelian Pop <stelian@popies.net>
15258 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15260 commit 8e429b3eee23927c1222679f6b6f53667b21595c
15261 Author: Stelian Pop <stelian@popies.net>
15262 Date: Thu May 8 18:52:23 2008 +0200
15264 AT91SAM9263EK support
15266 This patch adds support for the AT91SAM9263 chip and the AT91SAM9263EK
15269 Signed-off-by: Stelian Pop <stelian@popies.net>
15270 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15272 commit d99a8ff66d8ae87e5c87590ed2e4ead629540607
15273 Author: Stelian Pop <stelian@popies.net>
15274 Date: Thu May 8 20:52:22 2008 +0200
15276 AT91SAM9261EK support
15278 This patch adds support for the AT91SAM9261 chip and the AT91SAM9261EK
15281 Signed-off-by: Stelian Pop <stelian@popies.net>
15282 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15284 commit 86c8c8a414988c50104a3b02c29f50af2be738c0
15285 Author: Stelian Pop <stelian@popies.net>
15286 Date: Thu May 8 20:52:21 2008 +0200
15288 AT91SAM9260EK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
15290 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
15291 in order to cope with the changes in DataFlash partitionning scheme
15294 Signed-off-by: Stelian Pop <stelian@popies.net>
15295 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15297 commit 96996ac25d5222611a8888968db6e53a6d3726da
15298 Author: Stelian Pop <stelian@popies.net>
15299 Date: Thu May 8 20:52:20 2008 +0200
15301 AT91SAM9260EK: Normalize BOOTARGS
15303 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
15304 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
15307 Signed-off-by: Stelian Pop <stelian@popies.net>
15308 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15310 commit 79f0cb6e9c54d31a1d9e3f5e226a9bebc3c3a47a
15311 Author: Stelian Pop <stelian@popies.net>
15312 Date: Thu May 8 20:52:19 2008 +0200
15314 AT91SAM9260EK: Normalize SPI timings
15316 This patch changes the SPI timings to closely match the ones
15317 used by the Linux kernel and the Atmel's own bootstrap project.
15319 Signed-off-by: Stelian Pop <stelian@popies.net>
15320 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15322 commit c1212b2f5c5ed440bf8e9ebc8e4fd7488858b935
15323 Author: Stelian Pop <stelian@popies.net>
15324 Date: Thu May 8 20:52:18 2008 +0200
15326 AT91SAM9260EK: Handle 8 or 16 bit NAND
15328 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
15329 makes the support configurable in the board config header file
15330 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
15332 Signed-off-by: Stelian Pop <stelian@popies.net>
15333 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15335 commit ab52640fc01624e208424e527af0b7b3a5a65a12
15336 Author: Stelian Pop <stelian@popies.net>
15337 Date: Thu May 8 20:52:17 2008 +0200
15339 AT91CAP9ADK: Fix dataflash offsets in CONFIG_BOOTCOMMAND
15341 This patch fixes the dataflash offsets used in CONFIG_BOOTCOMMAND
15342 in order to cope with the changes in DataFlash partitionning scheme
15345 Signed-off-by: Stelian Pop <stelian@popies.net>
15346 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15348 commit 3267508ec4c9e74c39ee41c9ae6951ad185fe270
15349 Author: Stelian Pop <stelian@popies.net>
15350 Date: Thu May 8 20:52:16 2008 +0200
15352 AT91CAP9ADK: Normalize BOOTARGS
15354 This patch adapts CONFIG_BOOTARGS to the chosen boot method (boot from
15355 DataFlash or from NAND), and gives to Linux a fully specified mtdparts
15358 Signed-off-by: Stelian Pop <stelian@popies.net>
15359 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15361 commit 93da48b910511911ce110656e17ed733c8ac4c45
15362 Author: Stelian Pop <stelian@popies.net>
15363 Date: Thu May 8 20:52:15 2008 +0200
15365 AT91CAP9ADK: Normalize SPI timings
15367 This patch changes the SPI timings to closely match the ones
15368 used by the Linux kernel and the Atmel's own bootstrap project.
15370 Signed-off-by: Stelian Pop <stelian@popies.net>
15371 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15373 commit 1c90df3e148ce0a3e2c86c63b38b19d47772f2a0
15374 Author: Stelian Pop <stelian@popies.net>
15375 Date: Thu May 8 20:52:14 2008 +0200
15377 AT91CAP9ADK: Handle 8 or 16 bit NAND
15379 The Atmel boards can handle 8 or 16 bit NAND memories. This patch
15380 makes the support configurable in the board config header file
15381 (CFG_NAND_DBW_8 or CFG_NAND_DBW_16).
15383 Signed-off-by: Stelian Pop <stelian@popies.net>
15384 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15386 commit 11b162bae058e96c7929e358d4adff2bee6c2cc4
15387 Author: Stelian Pop <stelian@popies.net>
15388 Date: Thu May 8 20:52:13 2008 +0200
15390 Use a common u-boot.lds file across all AT91CAP9/AT91SAM9 platforms
15392 All the AT91CAP9/AT91SAM9 boards have the same linker script. The patch
15393 below avoids the duplication of u-boot.lds by putting the file in the
15394 cpu directory instead of the board one.
15396 Signed-off-by: Stelian Pop <stelian@popies.net>
15397 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15399 commit d48abea4b89adaf5e45ea75b5e38c0d8de179ece
15400 Author: Stelian Pop <stelian@popies.net>
15401 Date: Thu May 8 20:52:12 2008 +0200
15403 Add proper copyright notices in Atmel boards Makefiles
15405 The Makefiles for the AT91CAP9/AT91SAM9 boards have an incomplete
15406 copyright notice. This patch adds the missing pieces.
15408 Signed-off-by: Stelian Pop <stelian@popies.net>
15409 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15411 commit e817a042cef6164bf26fee86f90326f2ec9e6745
15412 Author: Stelian Pop <stelian@popies.net>
15413 Date: Thu May 8 20:52:11 2008 +0200
15415 Add copyright information in Atmel boards partition.c
15417 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
15418 the new created files. This patch fixes the problem.
15420 Signed-off-by: Stelian Pop <stelian@popies.net>
15421 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15423 commit 4f6c810106f4f76d83cfc57d98f4540cd45f9a19
15424 Author: Stelian Pop <stelian@popies.net>
15425 Date: Thu May 8 20:52:10 2008 +0200
15427 Update origin and copyright information in arch-at91sam9 header files
15429 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
15430 copied from the Linux kernel sources. This patch explicitly specifies
15431 this origin for all the copied headers, and for those missing copyright
15432 information, adds it.
15434 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
15435 in the latest kernel sources by 'at91sam9_smc.h'.
15437 The copyright information has been confirmed by the AT91 Linux kernel
15438 maintainer, Andrew Victor <avictor.za@gmail.com>.
15440 Signed-off-by: Stelian Pop <stelian@popies.net>
15441 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15443 commit 79dd1712689d6a5031d7cbff54957049680751c7
15444 Author: Markus Klotzbücher <mk@denx.de>
15445 Date: Thu May 8 16:00:55 2008 +0200
15447 ppc4xx: Kilauea: Add CONFIG_BOOTP_SUBNETMASK to Kilauea board config
15449 When using dhcp/bootp the "netmask" environment variable is not set
15450 because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
15451 desireable, so the following patch adds this this option to the board
15454 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
15455 Signed-off-by: Stefan Roese <sr@denx.de>
15457 commit 869d14b4cc2e47de2ddcb117bad0407a44436684
15458 Author: Stefan Roese <sr@denx.de>
15459 Date: Sat May 10 10:30:36 2008 +0200
15461 ppc4xx: Update Makalu defconfig to use device-tree booting as default
15463 This patch reworks the default environment on Makalu. Now "net_nfs" for
15464 example uses the device-tree style booting formerly know as "net_nfs_fdt".
15465 Also the addresses in RAM were changed because of the new image booting
15466 support, which check for image overwriting. So the addresses needed to
15469 Signed-off-by: Stefan Roese <sr@denx.de>
15471 commit f3612a7b199cab3942f60d9c1392eb39d58cc699
15472 Author: Becky Bruce <bgill@freescale.com>
15473 Date: Wed May 7 13:28:16 2008 -0500
15475 PPC: fix map_physmem build warning
15477 map_physmem currently generates a warning when CONFIG_PHYS_64BIT is
15478 enabled. This quiets the warning.
15480 Signed-off-by: Becky Bruce <Becky.Bruce@freescale.com>
15482 commit 36f32675f40292002ee1fed252c180a43022d2d4
15483 Author: Becky Bruce <bgill@freescale.com>
15484 Date: Wed May 7 13:24:57 2008 -0500
15486 Update pci code to use phys_addr_t
15488 Physical addrs need to be represented by phys_addr_t, not
15489 unsigned long. Otherwise, systems that use CONFIG_PHYS_64BIT
15490 are going to fail mightily.
15492 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
15494 commit 91a616741fc128cdb88f39bddcd4d72fe17466d0
15495 Author: Nick Spence <nick.spence@freescale.com>
15496 Date: Thu May 8 22:32:22 2008 -0700
15498 Support legacy multi-type images without FDT section.
15500 This patch enables legacy multi-type images containing only a Linux kernel
15501 and root file system to be loaded, maintaining compatibility with previous
15502 versions of u-boot.
15504 This is required when using old image files such as a Linux 2.4 kernel /
15507 Signed-off-by: Nick Spence <nick.spence@freescale.com>
15508 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
15510 commit 881031d9732783b7aeae2198fc7eb480ae8974a6
15511 Author: Wolfgang Denk <wd@denx.de>
15512 Date: Sat May 10 00:38:02 2008 +0200
15516 Signed-off-by: Wolfgang Denk <wd@denx.de>
15518 commit e5e9d6c9c08160be7e5a36e04d125ccce99b8774
15519 Author: Wolfgang Denk <wd@denx.de>
15520 Date: Sat May 10 00:36:09 2008 +0200
15522 post/cpu/ppc4xx/Makefile: line length cleanup
15524 Signed-off-by: Wolfgang Denk <wd@denx.de>
15526 commit cce9cfdabcf416ecd2aacc3681c91e5378c75a3d
15527 Author: Stelian Pop <stelian@popies.net>
15528 Date: Thu May 8 22:52:09 2008 +0200
15530 Fix @ -> <at> substitution
15532 When applying the AT91CAP9 patches upstream, something transformed
15533 the '@' character into the ' <at> ' sequence.
15535 The patch below restores the original form in all the places where
15536 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
15537 were copied from AT91CAP9, and a couple of other files where the
15538 ' <at> ' sequence was present).
15540 Signed-off-by: Stelian Pop <stelian@popies.net>
15542 commit 9606b3c81b3c47a1d58514e9a232c6f461a17597
15543 Author: Stelian Pop <stelian@popies.net>
15544 Date: Thu May 8 22:52:10 2008 +0200
15546 Update origin and copyright information in arch-at91sam9 header files
15548 When doing the AT91CAP9/AT91SAM9 port, a number of header files were
15549 copied from the Linux kernel sources. This patch explicitly specifies
15550 this origin for all the copied headers, and for those missing copyright
15551 information, adds it.
15553 Additionaly, the header file 'at91sam926x_mc.h' has been superceeded
15554 in the latest kernel sources by 'at91sam9_smc.h'.
15556 The copyright information has been confirmed by the AT91 Linux kernel
15557 maintainer, Andrew Victor <avictor.za@gmail.com>.
15559 Signed-off-by: Stelian Pop <stelian@popies.net>
15561 commit ceb6b4fbe1dcc40bb672ef8133ddf4813e97cbb1
15562 Author: Stelian Pop <stelian@popies.net>
15563 Date: Thu May 8 22:52:11 2008 +0200
15565 Add copyright information in Atmel boards partition.c
15567 When Ulf did the dataflash.c cleanup, he didn't add his copyright on
15568 the new created files. This patch fixes the problem.
15570 Signed-off-by: Stelian Pop <stelian@popies.net>
15572 commit 2ab02fd456d8ef92ae9f5439618d1fa7ca16e5f3
15573 Author: Guennadi Liakhovetski <lg@denx.de>
15574 Date: Thu May 8 10:09:27 2008 +0200
15576 mx31ads: fix 32kHz clock handling
15578 According to schematics and to RedBoot sources, the MX31ADS uses a 32768Hz
15579 oscillator as a SKIL source. Fix previously wrongly assumed 32000Hz value.
15580 Also fix a typo when verifying a jumper configuration. While at it, make
15581 two needlessly global functions static.
15583 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
15585 commit 1b5605ca57fbb364f4d78eeee28b974ed875e888
15586 Author: Marian Balakowicz <m8@semihalf.com>
15587 Date: Wed May 7 13:10:04 2008 +0200
15589 Avoid initrd and logbuffer area overlaps
15591 Add logbuffer to reserved LMB areas to prevent initrd allocation
15592 from overlaping with it.
15594 Make sure to use correct logbuffer base address.
15596 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
15598 commit c59518e15949b3403df5c5b0c2c48ea0e5bea24b
15599 Author: Marian Balakowicz <m8@semihalf.com>
15600 Date: Wed May 7 13:08:54 2008 +0200
15602 ppc: Cleanup get_effective_memsize() use
15604 Removed duplicated effective memory size calculation code.
15606 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
15608 commit 273c37d843d5b581090378016cd12dd9c586907b
15609 Author: Marian Balakowicz <m8@semihalf.com>
15610 Date: Wed May 7 09:03:53 2008 +0200
15612 Fix build errors when CONFIG_LOGBUFFER and CONFIG_FIT are enabled
15614 Recent modifcations to LOGBUFFER handling code were incorrecly
15615 introduced to fit_check_kernel() routine during
15616 "Merge branch 'new-image' of git://www.denx.de/git/u-boot-testing",
15617 commit 27f33e9f45ef7f9685cbdc65066a1828e85dde4f.
15619 This patch cleans up this merge issue.
15621 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
15623 commit bc11756daff89a3de09ca80adac962b88cf06e6e
15624 Author: Grant Erickson <gerickson@nuovations.com>
15625 Date: Tue May 6 20:16:15 2008 -0700
15627 Propagate Error Status to the Shell on fw_printenv Errors
15629 Changed implementation such that fw_printenv returns failure status
15630 when one or more specified variables do not exist or when incorrect
15631 command syntax is used.
15633 This aids scripting fw_printenv such that the script can key of the
15634 return status rather than relying on standard error "scraping".
15636 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
15637 Signed-off-by: Wolfgang Denk <wd@denx.de>
15639 commit f3b6d528e4dd719640a4bfcd954f4e4c7f5db0d6
15640 Author: Grant Erickson <gerickson@nuovations.com>
15641 Date: Tue May 6 16:18:00 2008 -0700
15643 Fix Compilation Errors with 'tools/env/fw_printenv'
15645 In the current top-of-tree, 1.3.3.-rc2, the optional tool
15646 'tools/env/fw_printenv' fails to compile for two reasons:
15648 1) The header watchdog.h cannot be found.
15649 2) The header zlib.h is picked up from the tool chain rather than the
15650 project causing a prototype conflict for crc32.
15652 This patch addresses both of these issues.
15654 Platforms Tested On:
15657 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
15659 commit 597f6c26a18b389903a64692bacbf9a1ca69355b
15660 Author: James Yang <James.Yang@freescale.com>
15661 Date: Mon May 5 10:22:53 2008 -0500
15663 Fix readline_into_buffer() with CONFIG_CMDLINE_EDITING before relocating
15665 When CONFIG_CMDLINE_EDITING is enabled, readline_into_buffer() doesn't
15666 work before relocating to RAM because command history is written into
15667 a global array that is not writable before relocation. This patch
15668 defers to the no-editing and no-history code in readline_into_buffer()
15669 if it is called before relocation.
15671 Signed-off-by: James Yang <James.Yang@freescale.com>
15672 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
15674 commit 726c0f1e5f108dccea052965123b95837d2bd402
15675 Author: Detlev Zundel <dzu@denx.de>
15676 Date: Mon May 5 16:11:22 2008 +0200
15678 cosmetic: Adjust coding style for switch statements to be consistent
15680 Signed-off-by: Detlev Zundel <dzu@denx.de>
15682 commit 574b319512b13e10800f0045e39b993f4ca25e42
15683 Author: Detlev Zundel <dzu@denx.de>
15684 Date: Mon May 5 16:11:21 2008 +0200
15686 Fix disk type output in disk/part.c
15688 Signed-off-by: Detlev Zundel <dzu@denx.de>
15690 commit 045b4d2d7168ef09c7349dcf6ecebe7432b74171
15691 Author: Vlad Lungu <vlad.lungu@windriver.com>
15692 Date: Mon May 5 14:20:03 2008 +0300
15694 Mail address change, documentation modified
15696 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
15698 commit 4d49b28038e2819088e8356a77212fc95a89ce5a
15699 Author: Michal Simek <monstr@monstr.eu>
15700 Date: Sun May 4 15:42:41 2008 +0200
15702 microblaze: Repare intc handling
15704 Signed-off-by: Michal Simek <monstr@monstr.eu>
15706 commit 878b3b1e193e570caf3e96ad8e31e561f68d0287
15707 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15708 Date: Sun May 4 15:17:52 2008 +0200
15710 include/gitignore: update to all architectures
15712 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15714 commit 1df368aed3b8bc240fe1595d290b0e91b22961da
15715 Author: Marcel Ziswiler <marcel@ziswiler.com>
15716 Date: Mon May 5 02:12:06 2008 +0200
15718 ide: Remove spurious second include of io.h
15720 Removed the second include, with all the #ifdef around as suggested by Wolfgang.
15722 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
15724 commit 8fbc985bdad09b23b7eb4df1d2ea589619d8db4c
15725 Author: Adrian Filipi <adrian.filipi@eurotech.com>
15726 Date: Tue May 6 16:46:37 2008 -0400
15730 This patch fixes three typos.
15731 The first is a repetition of CONFIG_CMD_BSP.
15732 The second makes the #endif comment match its #if.
15733 The third is a spelling error.
15735 Signed-off-by: Adrian Filipi <adrian.filipi@eurotech.com>
15737 commit e419e12d04ae3b280c99a87a2ea4ad7a40628bcb
15738 Author: Grant Erickson <gerickson@nuovations.com>
15739 Date: Sun May 4 16:45:01 2008 -0700
15741 Recognize 'powerpc' As an Alias for IH_ARCH_PPC
15743 Add support for the recognition of 'powerpc' as an alias for the PowerPC
15744 architecture type since Linux is already trending in that direction,
15745 preferring 'powerpc' to 'ppc'.
15747 Signed-off-by: Grant Erickson <gerickson@nuovations.com>
15749 commit f5a24259190c388c2527bdc49fee34577d862cc7
15750 Author: Wheatley Travis <Travis.Wheatley@freescale.com>
15751 Date: Fri May 2 13:35:15 2008 -0700
15753 7450 and 86xx L2 cache invalidate bug corrections
15755 The 7610 and related parts have an L2IP bit in the L2CR that is
15756 monitored to signal when the L2 cache invalidate is complete whereas the
15757 7450 and related parts utilize L2I for this purpose. However, the
15758 current code does not account for this difference. Additionally the 86xx
15759 L2 cache invalidate code used an "andi" instruction where an "andis"
15760 instruction should have been used.
15762 This patch addresses both of these bugs.
15764 Signed-off-by: Travis Wheatley <travis.wheatley@freescale.com>
15765 Acked-By: Jon Loeliger <jdl@freescale.com>
15767 commit 4d31cdc45d3592a5545a649fb5a24b458a4e4b72
15768 Author: Wolfgang Denk <wd@denx.de>
15769 Date: Fri May 9 10:16:13 2008 +0200
15771 Avoid infinite loop "Generating include/autoconf.mk"
15773 Fix a bogus circular dependency that caused an infinite loop of
15774 "Generating include/autoconf.mk" again and again.
15776 Signed-off-by: Wolfgang Denk <wd@denx.de>
15778 commit 567fb852178dbf59529d7301620a3f3732a4b02d
15779 Author: Stelian Pop <stelian@popies.net>
15780 Date: Thu May 8 22:52:09 2008 +0200
15782 Fix @ -> <at> substitution
15784 When applying the AT91CAP9 patches upstream, something transformed
15785 the '@' character into the ' <at> ' sequence.
15787 The patch below restores the original form in all the places where
15788 it has been modified (the AT91CAP9 files, the AT91SAM9260 files which
15789 were copied from AT91CAP9, and a couple of other files where the
15790 ' <at> ' sequence was present).
15792 Signed-off-by: Stelian Pop <stelian@popies.net>
15793 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
15795 commit 73ccb3410a0785593cda7aee455dfc51f790e281
15796 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
15797 Date: Mon Apr 28 14:04:32 2008 +0200
15799 ppc4xx: Add the Harris QUAD100HD AMCC 405EP-based board
15801 Signed-off-by: Gary Jennejohn <garyj@denx.de>
15802 Signed-off-by: Stefan Roese <sr@denx.de>
15804 commit ef2642625cbfb1c3695e3478d08ae515052a4950
15805 Author: Stefan Roese <sr@denx.de>
15806 Date: Thu May 8 11:10:46 2008 +0200
15808 ppc4xx: Kilauea: Fix incorrect FPGA FIFO address
15810 Signed-off-by: Stefan Roese <sr@denx.de>
15812 commit a00eccfebc954ad9485161efeca7d9aaf626d530
15813 Author: Stefan Roese <sr@denx.de>
15814 Date: Thu May 8 11:05:15 2008 +0200
15816 ppc4xx: Add fdt support to all remaining AMCC PPC4xx eval boards
15818 This patch adds fdt (flattened device tree) support to all remaining AMCC
15819 eval boards. Most newer boards already support device tree. With this patch,
15820 all AMCC boards now enable device tree passing from U-Boot to Linux
15821 arch/powerpc kernels.
15823 Signed-off-by: Stefan Roese <sr@denx.de>
15825 commit cb5d88b9611e0c35c53543ad3b4ab99fa82203e3
15826 Author: Stefan Roese <sr@denx.de>
15827 Date: Thu May 8 11:01:09 2008 +0200
15829 ppc4xx: Add weak default ft_board_setup() routine
15831 This patch adds a default ft_board_setup() routine to the 4xx fdt code.
15832 This routine is defined as weak and can be overwritten by a board specific
15835 Signed-off-by: Stefan Roese <sr@denx.de>
15837 commit d1c1ba85c7915053adf6a8d14a08ac6fcb750d01
15838 Author: Stefan Roese <sr@denx.de>
15839 Date: Thu May 8 10:48:58 2008 +0200
15841 ppc4xx: acadia: Add fdt support and fix section overlap problem
15843 This patch adds fdt (flattened device tree) support to the AMCC
15844 Acadia eval board. This increases the image size and it doesn't
15845 fit anymore into 256kByte. Since we didn't want to remove features
15846 from the configuration, we decided to increase the U-Boot image size
15847 (add one flash sector).
15849 Also changed the default environment definition to make it
15850 independent of such changes.
15852 Signed-off-by: Stefan Roese <sr@denx.de>
15854 commit 4adb3023de75bc150f088c8935db340930ad38c8
15855 Author: Ira Snyder <iws@ovro.caltech.edu>
15856 Date: Tue Apr 29 11:18:54 2008 -0700
15858 ppc4xx: Add device tree support to AMCC Yosemite
15860 Add support for booting with a device tree blob. This is needed to boot
15861 ARCH=powerpc kernels. Also add support for setting the eth0 mac address
15862 via the ethaddr variable.
15864 Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu>
15865 Signed-off-by: Stefan Roese <sr@denx.de>
15867 commit b9bbefce1a653ea35f74a66ec117cdda2e043a4b
15868 Author: Dave Mitchell <dmitchell@amcc.com>
15869 Date: Wed May 7 09:00:23 2008 -0700
15871 ppc4xx: Fix typos in 460GT/EX FBDV array
15873 Corrected two typos in the 460GT/EX FBDV array.
15875 Signed-off-by: Dave Mitchell <dmitchell@amcc.com>
15876 Signed-off-by: Stefan Roese <sr@denx.de>
15878 commit 66f5fa9263629271edc86178b1f224e3c9aab2b3
15879 Author: Andy Fleming <afleming@freescale.com>
15880 Date: Wed May 7 16:54:31 2008 -0500
15882 85xx: Limit CPU2 workaround to parts that have the errata
15884 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
15885 Signed-off-by: Andy Fleming <afleming@freescale.com>
15887 commit a5fe514e8ace564300d2c1d73846ddff49654243
15888 Author: Lee Nipper <lee.nipper@freescale.com>
15889 Date: Fri Apr 25 15:44:45 2008 -0500
15891 mpc83xx: system performance settings for MPC8349EMDS.
15893 These same settings are used on MPC8349ITX, and
15894 improve performance on MPC8349EMDS.
15896 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
15897 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
15899 commit 49387dba910e485640b575e920ee463b7e611dc3
15900 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15901 Date: Tue May 6 13:22:52 2008 +0900
15903 [MIPS] cpu/mips/cache.S: Fix build warning
15905 Some old GNU assemblers, such as v2.14 (ELDK 3.1.1), v2.16 (ELDK 4.1.0),
15906 warns illegal global symbol references by bal (and jal also) instruction.
15907 This does not happen with the latest binutils v2.18.
15909 Here's an example on gth2_config:
15911 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
15912 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
15913 c -EB -c -o cache.o cache.S
15914 cache.S: Assembler messages:
15915 cache.S:243: Warning: Pretending global symbol used as branch target is local.
15916 cache.S:250: Warning: Pretending global symbol used as branch target is local.
15918 In principle, gas might be sensitive to global symbol references in PIC
15919 code because they should be processed through GOT (global offset table).
15920 But if `bal' instruction is used, it results in PC-based offset jump.
15921 This is the cause of this warning.
15923 In practice, we know it doesn't matter whether PC-based reference or GOT-
15924 based. As for this case, both will work before/after relocation. But let's
15927 This patch explicitly sets up a target address, then jump there.
15928 Here's an example of disassembled code with/without this patch.
15930 90000668: 1485ffef bne a0,a1,90000628 <mips_cache_reset+0x20>
15931 9000066c: ac80fffc sw zero,-4(a0)
15932 90000670: 01402821 move a1,t2
15933 -90000674: 0411ffba bal 90000560 <mips_init_icache>
15934 -90000678: 01803021 move a2,t4
15935 -9000067c: 01602821 move a1,t3
15936 -90000680: 0411ffcc bal 900005b4 <mips_init_dcache>
15937 -90000684: 01a03021 move a2,t5
15938 -90000688: 03000008 jr t8
15939 -9000068c: 00000000 nop
15940 +90000674: 01803021 move a2,t4
15941 +90000678: 8f8f83ec lw t7,-31764(gp)
15942 +9000067c: 01e0f809 jalr t7
15943 +90000680: 00000000 nop
15944 +90000684: 01602821 move a1,t3
15945 +90000688: 01a03021 move a2,t5
15946 +9000068c: 8f8f81e0 lw t7,-32288(gp)
15947 +90000690: 01e0f809 jalr t7
15948 +90000694: 00000000 nop
15949 +90000698: 03000008 jr t8
15950 +9000069c: 00000000 nop
15952 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
15954 commit 0f8c62a14b523c56874ebcb67c1a16c99aad48b3
15955 Author: Vlad Lungu <vlad.lungu@windriver.com>
15956 Date: Mon May 5 14:04:00 2008 +0300
15958 Allow building mips versions with ELDK 3.1.1
15960 .gpword works only with local symbols on certain binutils versions
15962 Signed-off-by: Vlad Lungu <vlad.lungu@windrvier.com>
15964 commit 12a67a9e51f6b3ec26cb0f077fb5685a447c359d
15965 Author: Wolfgang Denk <wd@denx.de>
15966 Date: Mon May 5 12:52:36 2008 +0200
15968 MAKEALL: add inka4x0 board
15970 Signed-off-by: Wolfgang Denk <wd@denx.de>
15972 commit b83dcc13ae7b2dab394bfef6f699750d11490ee2
15973 Author: Wolfgang Denk <wd@denx.de>
15974 Date: Sun May 4 21:34:23 2008 +0200
15976 kb9202 board: fix build problem.
15978 Signed-off-by: Wolfgang Denk <wd@denx.de>
15980 commit 6adf61dc4cb5c53a2df990cbc8df2bceacbfd869
15981 Author: Wolfgang Denk <wd@denx.de>
15982 Date: Sun May 4 12:10:33 2008 +0200
15984 Prepare for v1.3.3-rc3
15986 Update ChNAGELOG, minor white space cleanup.
15988 Signed-off-by: Wolfgang Denk <wd@denx.de>
15990 commit 7c0773fde6100b61be2558cb5d8c442a3194aecb
15991 Author: Wolfgang Denk <wd@denx.de>
15992 Date: Sun May 4 00:35:15 2008 +0200
15994 drivers/net/tsec.c: Fix typo.
15996 Signed-off-by: Wolfgang Denk <wd@denx.de>
15998 commit aa737945e6f37a5de5dbad550a7694e0cb2a8120
15999 Author: Mike Frysinger <vapier@gentoo.org>
16000 Date: Fri May 2 21:45:12 2008 -0400
16002 version_autogenerated.h: use printf rather than echo -n
16004 Some systems are dumb and do not implement the -n flag to echo (like OS X).
16005 Convert the Makefile to use printf as this should work everywhere.
16007 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16008 Signed-off-by: Wolfgang Denk <wd@denx.de>
16010 commit 4acc2a108ad0a669165924704a6cb083f9138242
16011 Author: Mike Frysinger <vapier@gentoo.org>
16012 Date: Fri May 2 18:17:50 2008 -0400
16014 fix building when saveenv is disabled in some setups
16016 If you enable environment in the flash, but disable the embedded
16017 option, and you disable the saveenv command, then the #if nested
16018 logic will trigger a compile failure:
16019 env_flash.c: In function 'env_relocate_spec':
16020 env_flash.c:399: error: 'flash_addr' undeclared (first use in this function)
16021 The fix is to add CMD_SAVEENV ifdef protection like everywhere else.
16023 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16025 commit ccf1ad535ae1c0dc2d466235c668adbdfe3a55b7
16026 Author: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
16027 Date: Fri May 2 16:10:04 2008 -0400
16029 SBC8548: fix address mask to allow 64M flash
16031 Fix incorrect mask to enable all 64MB of onboard flash.
16032 Previously U-Boot incorrectly mapped only 8MB of flash, this
16033 patch correctly maps all the available flash.
16035 Signed-off-by: Jeremy McNicoll <jeremy.mcnicoll@windriver.com>
16037 commit 3648085c464c8c22ef76fab006ca4344d3796124
16038 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16039 Date: Fri May 2 19:48:56 2008 +0200
16041 qemu_mips: add README
16043 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16045 commit 6fdd002689190a0022c7b3dbab37fcba724580ce
16046 Author: Marcel Ziswiler <marcel@ziswiler.com>
16047 Date: Fri May 2 02:35:59 2008 +0200
16049 Fix misspelled comment
16051 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
16053 commit fa956fde60b7ec4dd66bd62f9910fd341b5049a1
16054 Author: Mike Frysinger <vapier@gentoo.org>
16055 Date: Thu May 1 04:13:05 2008 -0400
16057 mkimage: make mmap() checks consistent
16059 The mmap() related code is full of inconsistent casts/constants when
16060 it comes to error checking, and may break when building on some
16061 systems (like ones that do not implicitly define the caddr_t type).
16062 Let's just avoid the whole mess by writing the code nice and clean in
16065 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
16067 commit 8e90cd0447a0f0ccf529ef86f0e6b56187d3b82a
16068 Author: Marcel Ziswiler <marcel@ziswiler.com>
16069 Date: Thu May 1 09:05:34 2008 +0200
16071 Fix defined but not used build warning
16073 - warning: 'srom' defined but not used
16075 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
16077 commit b71190f3250aaffcc81c35f6cfd3498cb7c48013
16078 Author: Marcel Ziswiler <marcel@ziswiler.com>
16079 Date: Thu May 1 09:05:26 2008 +0200
16081 Fix implicit declaration build warnings
16083 - warning: implicit declaration of function ‘serial_initialize’
16085 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
16087 commit 9acde129cc3f9c1b3bc11a821480dd446774d618
16088 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
16089 Date: Tue Apr 29 19:18:32 2008 +0200
16091 TSEC: add config options for VSC8601 RGMII PHY
16093 The Vitesse VSC8601 RGMII PHY has internal delay for both Rx
16094 and Tx clock lines. They are configured using 2 bits in extended
16096 Therefore CFG_VSC8601_SKEW_TX and CFG_VSC8601_SKEW_RX have
16097 been introduced with valid values 0-3 giving 0.0, 1.4,1.7 and 2.0ns delay.
16099 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
16100 Acked-by: Andy Fleming <afleming@freescale.com>
16101 Acked-by: Ben Warren <biggerbadderben@gmail.com>
16104 drivers/net/tsec.c | 6 ++++++
16105 drivers/net/tsec.h | 3 +++
16106 2 files changed, 9 insertions(+), 0 deletions(-)
16108 commit bd98ee60df43ee6dd6f5ebe32c67d03e90513ff8
16109 Author: Wolfgang Denk <wd@denx.de>
16110 Date: Sat May 3 23:07:15 2008 +0200
16112 Revert "ColdFire: Get information from the correct GCC"
16114 This reverts commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
16115 (replaced by commit c4e5f52a58d278eebb87f476e353972c5dacea40).
16117 commit c4e5f52a58d278eebb87f476e353972c5dacea40
16118 Author: Wolfgang Denk <wd@denx.de>
16119 Date: Sat May 3 22:25:00 2008 +0200
16121 config.mk: use correct (cross) compiler
16123 Some config.mk files reference $(CC) to test for specific tool chain
16124 features, so make sure $(CC) gets set before including any such
16127 This patch replaces commit b7166e05a5 ("ColdFire: Get information from
16130 Signed-off-by: Wolfgang Denk <wd@denx.de>
16132 commit 27c38689d0cfde0e444239345f97b5eecc9f4067
16133 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16134 Date: Thu May 1 02:13:44 2008 +0200
16136 pxa: fix previous definition on cpu init
16138 start.S:183:1: warning: "ICMR" redefined
16139 In file included from start.S:33:
16140 include/asm/arch/pxa-regs.h:935:1: warning: this is the location of the previous definition
16141 start.S:187:1: warning: "RCSR" redefined
16144 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16146 commit 6d12e697de794d700767f22f950e3026ccf4daf6
16147 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16148 Date: Thu May 1 02:13:43 2008 +0200
16150 pxa: fix pcmcia operation on 'i' may be undefined
16152 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16153 Signed-off-by: Wolfgang Denk <wd@denx.de>
16155 commit 4d77f5102dfeaa36cd58d9a9f083bd2cc491526f
16156 Author: Kumar Gala <galak@kernel.crashing.org>
16157 Date: Wed Apr 30 16:24:35 2008 -0500
16159 MPC8610HPCD: Drop -O2 from the build flags
16161 Make the flags use -Os like all other boards
16163 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16165 commit 0072b78be2b41e5a0ca3ddc39335574dc2e855bd
16166 Author: Stefan Roese <sr@denx.de>
16167 Date: Wed Apr 30 15:50:39 2008 +0200
16169 RTC: Fix month offset by one problem in M41T62 RTC driver
16171 This patch fixes a problem with the month being read and written
16172 incorrectly (offset by one). This only gets visible by also using
16173 the Linux driver (rtc-m41t80).
16175 Tested on AMCC Canyonlands.
16177 Signed-off-by: Stefan Roese <sr@denx.de>
16179 commit 141ba1cad8e6598a2466e7e2976c6a12285df619
16180 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16181 Date: Sat May 3 13:51:44 2008 +0900
16183 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
16185 Current trick to pick up GNU assembler minor version uses a dot(.) as a
16186 delimiter, and take the second field to obtain minor version number. But
16187 as can be expected, this doesn't work with a version string which has
16188 dots more than needs.
16192 $ mips-linux-gnu-as --version | grep 'GNU assembler'
16193 GNU assembler (Sourcery G++ Lite 4.2-129) 2.18.50.20080215
16194 $ mips-linux-gnu-as --version | grep 'GNU assembler' | cut -d. -f2
16198 This patch restricts the version format to 2.XX.XX... This will work
16201 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+'
16203 $ mips-linux-gnu-as --version | grep 'GNU assembler' | egrep -o '2\.[0-9\.]+' | cut -d. -f2
16207 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16209 commit ea638951acead7f1086c908c0b9f086beab82a22
16210 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16211 Date: Sat May 3 13:51:28 2008 +0900
16213 [MIPS] cpu/mips/cache.S: Add dcache_enable
16215 Recent bootelf command fixes (017e9b7925f74878d0e9475388cca9bda5ef9482,
16216 "allow ports to override bootelf behavior") requires ports to have this
16219 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
16220 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16222 commit d2c6fbec4397c936b18cd42482b6973cd6781bdf
16223 Author: Wolfgang Denk <wd@denx.de>
16224 Date: Thu May 1 21:30:16 2008 +0200
16226 onenand: rename 16 bit memory copy into memcpy_16() to avoid conflicts
16228 Onenand needs a version of memcpy() which performs 16 bit accesses
16229 only; make sure the name does not conflict with the standard
16232 Signed-off-by: Wolfgang Denk <wd@denx.de>
16234 commit 12bc4e94251c369c529ffa505cf58b148c372f7f
16235 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16236 Date: Wed Apr 30 22:38:17 2008 +0200
16238 cmd_nand: fix warning: str2long ncompatible pointer type
16240 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16242 commit 1b9ed2574a38c93cb03dad41885fc06be4bfc9dd
16243 Author: Timur Tabi <timur@freescale.com>
16244 Date: Fri Apr 4 11:16:11 2008 -0500
16246 Fix calculation of I2C clock for some 86xx chips
16248 Some 86xx chips use CCB as the base clock for the I2C, and others used CCB/2.
16249 There is no pattern that can be used to determine which chips use which
16250 frequency, so the only way to determine is to look up the actual SOC
16251 designation and use the right value for that SOC.
16253 Signed-off-by: Timur Tabi <timur@freescale.com>
16255 commit f32f7fe7bd3a5bda3a476520f00e1aca7c2103a9
16256 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16257 Date: Wed Apr 30 12:11:19 2008 -0500
16259 ColdFire: Fix ethernet hang issue for mcf547x_8x
16261 The ethernet hang is caused by receiving buffer in DRAM is not
16262 yet ready due to access cycles require longer time in DRAM.
16263 Relocate DMA buffer descriptors from DRAM to internal SRAM.
16265 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16267 commit 886d90176fc257e0ab4d0db05d11d0749bbed3ca
16268 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16269 Date: Wed Apr 30 12:10:47 2008 -0500
16271 ColdFire: Fix compilation issue caused by new changes in fsl_i2c.c
16273 Signed-off-by: Luigi Comio Mantellini <luigi.mantellini@idf-hit.com>
16274 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16276 commit b7166e05a513c0806b63b9dfb6f1d77645cede2a
16277 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16278 Date: Wed Apr 30 12:10:23 2008 -0500
16280 ColdFire: Get information from the correct GCC
16282 Signed-off-by: Kurt Mahan <kmahan@freescale.com>
16283 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
16285 commit 378e7ec95da4751ec8fe461baacab2bf7d2512a9
16286 Author: dirk.behme@googlemail.com <dirk.behme@googlemail.com>
16287 Date: Wed Apr 30 18:02:59 2008 +0200
16289 Fix warning in env_nand.c if compiled for DaVinci Schmoogie
16293 nv_nand.c: In function 'saveenv':
16294 env_nand.c:200: warning: passing argument 3 of 'nand_write' from incompatible pointer type
16295 env_nand.c: In function 'env_relocate_spec':
16296 env_nand.c:275: warning: passing argument 3 of 'nand_read' from incompatible pointer type
16298 if compiled for davinci_schmoogie_config.
16300 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
16301 Ack by: Sergey Kubushyn <ksi@koi8.net>
16303 commit 33a4a70d48d622cc4950c60a84fec23b9421f23e
16304 Author: Anatolij Gustschin <agust@denx.de>
16305 Date: Wed Apr 30 13:34:40 2008 +0200
16307 Fix warnings while compiling net/net.c for MPC8610HPCD board
16309 MPC8610HPCD board adds -O2 gcc option to PLATFORM_CPPFLAGS
16310 causing overriding default -Os option. New gcc (ver. 4.2.2)
16311 produces warnings while compiling net/net.c file with -O2
16312 option. The patch is an attempt to fix this.
16314 Signed-off-by: Anatolij Gustschin <agust@denx.de>
16316 commit 58b575e575c25fdf8c88141e145db201f3092149
16317 Author: Sascha Laue <Sascha.Laue@gmx.biz>
16318 Date: Wed Apr 30 15:23:38 2008 +0200
16320 lwmon5: fix offset error in sysmon0 POST
16322 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
16323 Signed-off-by: Wolfgang Denk <wd@denx.de>
16325 commit e7419b243a373de4ee042f7d4f45f66de787240d
16326 Author: Sascha Laue <Sascha.Laue@gmx.biz>
16327 Date: Wed Apr 30 15:16:35 2008 +0200
16329 lwmon5: fix manual merge error in POST
16331 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
16333 commit 42ffcec3f9eba010a662d5b42981812b6bebfb9a
16334 Author: Wolfgang Denk <wd@denx.de>
16335 Date: Wed Apr 30 17:46:26 2008 +0200
16337 cmd_nand.c: fix another 'incompatible pointer type' warning.
16339 Signed-off-by: Wolfgang Denk <wd@denx.de>
16341 commit de109d909707e2dfe806be5efc3cdb103b47c8ad
16342 Author: Wolfgang Denk <wd@denx.de>
16343 Date: Wed Apr 30 17:25:07 2008 +0200
16345 Makefile: fix parallel builds
16347 This problem shows up with parallel builds only; it results in
16348 somewhat cryptic error messages like
16350 $ JOBS=-j6 MAKEALL netstar
16351 Configuring for netstar board...
16352 arm-linux-ld: cannot find -lgeneric
16353 make[1]: *** [eeprom.srec] Error 1
16355 A few boards (like netstar and voiceblue) need some libraries for
16356 building; however, the board Makefile does not contain any such
16357 dependencies which may cause problems with parallel builds. Adding
16358 such dependencies is difficult as we would also have to provide build
16359 rules, which already exist in the respective library Makefiles.
16361 To solve this, we make sure that all libraries get built before the
16364 Signed-off-by: Wolfgang Denk <wd@denx.de>
16366 commit 4f27098e5b0736989b13cd61d7bca94b3574cf5f
16367 Author: Stefan Roese <sr@denx.de>
16368 Date: Wed Apr 30 14:51:36 2008 +0200
16370 ppc4xx: Adapt Canyonlands fixed DDR2 setup to new DIMM module
16372 This patch changes the Canyonlands/Glacier fixed DDR2 controller setup
16373 used for NAND booting to match the values needed for the new 512MB
16374 DIMM modules shipped with the productions boards:
16376 Crucial: CT6464AC667.8FB
16378 Signed-off-by: Stefan Roese <sr@denx.de>
16380 commit ea9202a659dc75996facf1475f1866a19a9d3129
16381 Author: Stefan Roese <sr@denx.de>
16382 Date: Wed Apr 30 10:49:43 2008 +0200
16384 ppc4xx: Fix problem with DIMMs with 8 banks in 44x_spd_ddr2.c
16386 This patch fixes a problem with DIMMs that have 8 banks. Now the
16387 MCIF0_MBxCF register will be setup correctly for this setup too.
16389 This was noticed with the 512MB DIMM on Canyonlands/Glacier.
16391 Signed-off-by: Stefan Roese <sr@denx.de>
16393 commit 76617299358ebba260ecc02d33e8e75d8d13dd3b
16394 Author: Wolfgang Denk <wd@denx.de>
16395 Date: Tue Apr 29 23:41:06 2008 +0200
16397 Prepare v1.3.3-rc2, again.
16399 Signed-off-by: Wolfgang Denk <wd@denx.de>
16401 commit b7fcc4c13993782342cf5cd20d237a6281648a0b
16402 Author: Wolfgang Denk <wd@denx.de>
16403 Date: Tue Apr 29 23:35:24 2008 +0200
16407 Signed-off-by: Wolfgang Denk <wd@denx.de>
16409 commit f7b16a0a4d571dd33b2b5185a54f7ddc311f89d4
16410 Author: Wolfgang Denk <wd@denx.de>
16411 Date: Tue Apr 29 23:32:20 2008 +0200
16413 common/env_nand.c: fix one more incompatible pointer type issue
16415 Signed-off-by: Wolfgang Denk <wd@denx.de>
16417 commit ea6f66894f952229eebfc4ad03cd21fe5c8b3f0f
16418 Author: Wolfgang Denk <wd@denx.de>
16419 Date: Tue Apr 29 21:33:08 2008 +0200
16421 post/board/lwmon5/sysmon.c: fix manual merge error.
16423 Signed-off-by: Wolfgang Denk <wd@denx.de>
16425 commit 70a0f81412b0b18a6fd0bea960451bc6c2cca49a
16426 Author: Kumar Gala <galak@kernel.crashing.org>
16427 Date: Tue Apr 29 12:54:59 2008 -0500
16429 85xx: Add -mno-spe to e500/85xx builds
16431 Newer gcc's might be configured to enable autovectorization by default.
16432 If we happen to build with one of those compilers we will get SPE
16433 instructions in random code.
16435 -mno-spe disables the compiler for automatically generating SPE
16436 instructions without our knowledge.
16438 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16440 commit 8ea08e5be69436abcc95d3da114de4a2ff8a6ab5
16441 Author: Kumar Gala <galak@kernel.crashing.org>
16442 Date: Tue Apr 29 10:18:34 2008 -0500
16444 Update .gitignore for zlib.h
16446 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16448 commit 45239cf4152109caa925145ccd433529902df887
16449 Author: Kumar Gala <galak@kernel.crashing.org>
16450 Date: Tue Apr 29 10:27:08 2008 -0500
16452 85xx/86xx: Rename ext_refrec to timing_cfg_3 to match docs
16454 All the 85xx and 86xx UM describe the register as timing_cfg_3
16457 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16459 commit ef7d30b14394e4c4a153118f5845760cadada02a
16460 Author: Kumar Gala <galak@kernel.crashing.org>
16461 Date: Tue Apr 29 10:28:34 2008 -0500
16463 85xx/86xx: Rename DDR init address and init extended address register
16465 Rename init_addr and init_ext_addr to match the docs between
16466 85xx and 86xx. Both now use 'init_addr' and 'init_ext_addr'.
16468 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16470 commit cf6cc014270549684873a5972d2595052c468cb6
16471 Author: Kumar Gala <galak@kernel.crashing.org>
16472 Date: Mon Apr 28 02:24:04 2008 -0500
16474 85xx: Additional fixes and cleanup of MP code
16476 * adjust __spin_table alignment to match ePAPR v0.94 spec
16477 * loop over all cpus when determing who is up. This fixes an issue if
16478 the "boot cpu" isn't core0. The "boot cpu" will already be in the
16479 cpu_up_mask so there is no harm
16480 * Added some protection in the code to ensure proper behavior. These
16481 changes are explicitly needed but don't hurt:
16482 - Added eieio to ensure the "hot word" of the table is written after
16483 all other table updates have occurred.
16484 - Added isync to ensure we don't prefetch loading of table entries
16485 until we a released
16487 These issues we raised by Dave Liu.
16489 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16491 commit b2d527a8b9fb50afccbaf79b5540952585cdc760
16492 Author: Yuri Tikhonov <yur@emcraft.com>
16493 Date: Tue Apr 29 15:06:41 2008 +0200
16495 lwmon5: minor clean-up to include/configs/lwmon5.h
16497 LWMON5 DSPIC POST uses the watch-dog scratch register. So, make
16498 the CFG_DSPIC_TEST_ADDR definition more readable.
16500 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
16502 commit f4c4d21a885ccc222fd0acdf653b683249e85117
16503 Author: Stefan Roese <sr@denx.de>
16504 Date: Tue Apr 29 16:08:05 2008 +0200
16506 ppc4xx: Fix CFG_MONITOR_LEN on Katmai failsave this time
16508 Signed-off-by: Stefan Roese <sr@denx.de>
16510 commit 138105efe1d2b1a40a3a97b4c1f85c2111bea2d8
16511 Author: Yuri Tikhonov <yur@emcraft.com>
16512 Date: Tue Apr 29 13:32:45 2008 +0200
16514 ppc flush_cache: add watch-dog triggering into the loops.
16516 Some boards (e.g. lwmon5) need rather a frequent watch-dog
16517 kicking. Since the time it takes for the flush_cache() function
16518 to complete its job depends on the size of data being flushed, one
16519 may encounter watch-dog resets on such boards when, for example,
16520 download big files over ethernet.
16522 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
16524 commit cab99d6f3281ab6784feccf98b9b425daa58418a
16525 Author: Stefan Roese <sr@denx.de>
16526 Date: Tue Apr 29 14:44:54 2008 +0200
16528 ppc4xx: Fix compilation warning in denali_spd_ddr2.c
16530 Signed-off-by: Stefan Roese <sr@denx.de>
16532 commit 4ec9d78fe5cd585d2868731fa108ca1e62730e70
16533 Author: Stefan Roese <sr@denx.de>
16534 Date: Tue Apr 29 14:12:07 2008 +0200
16536 ppc4xx: Fix Katmai CFG_MONITOR_LEN
16538 Signed-off-by: Stefan Roese <sr@denx.de>
16540 commit 85ad184b3b2b0f8af9228477303c55dca1b52ed7
16541 Author: Stefan Roese <sr@denx.de>
16542 Date: Tue Apr 29 13:57:07 2008 +0200
16544 ppc4xx: Complete remove bogus dflush()
16546 Since the current dflush() implementation is know to have some problems
16547 (as seem on lwmon5 ECC init) this patch removes it completely and replaces
16548 it by using clean_dcache_range().
16550 Tested on Katmai with ECC DIMM.
16552 Signed-off-by: Stefan Roese <sr@denx.de>
16554 commit 135846d6ecaad255ad28d93ebbb78b3d5da68cdc
16555 Author: Stefan Roese <sr@denx.de>
16556 Date: Tue Apr 29 13:36:51 2008 +0200
16558 ppc4xx: Change ECC initialization on lwmon5 to use clean_dcache_range()
16560 As it seems the "old" ECC initialization routine by using dflush() didn't
16561 write all lines in the dcache back to memory on lwmon5. This could lead
16562 to ECC error upon Linux booting. This patch changes the program_ecc()
16563 routine to now use clean_dcache_range() instead of dflush().
16564 clean_dcache_range() uses dcbst which is exactly what we want in this
16567 Since dflush() is known is cause problems, this routine will be
16568 removed completely and replaced by clean_dcache_range() with an
16571 Signed-off-by: Stefan Roese <sr@denx.de>
16573 commit 18ec19e4aa1a045dfbf2c7c2e33963488e92d757
16574 Author: Yuri Tikhonov <yur@emcraft.com>
16575 Date: Mon Apr 28 18:19:34 2008 +0200
16577 POST: fix Makefiles for mpc8xx, lwmon, and netta POSTs.
16579 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
16581 commit eea5a743a2193ef2a05b9bc6dc447ba241416f35
16582 Author: Markus Brunner <super.firetwister@googlemail.com>
16583 Date: Mon Apr 28 08:47:47 2008 +0200
16585 ppc4xx: Fixup ebc clock in FDT for 405GP/EP
16587 On ppc405EP and ppc405GP (at least) the ebc is directly attached to the plb
16588 and not to the opb. This patch will try to fixup /plb/ebc if /plb/opb/ebc
16591 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
16593 commit 2ef7503a593c77a80c2a054011970227c4b62774
16594 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16595 Date: Thu Apr 24 07:57:17 2008 +0200
16597 NE2000: Fix regresssion introduced by e710185aae90 on non AX88796
16599 Move non-inlied functions into specific drivers file
16600 Set get_prom as weak
16602 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
16603 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
16604 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16606 commit 40cb90ee2b97db1f697e1b54f19a548ffc96d71b
16607 Author: Guennadi Liakhovetski <lg@denx.de>
16608 Date: Thu Apr 3 17:04:19 2008 +0200
16610 net: make ARP timeout configurable
16612 Currently the timeout waiting for an ARP reply is hard set to 5 seconds.
16613 On i.MX31ADS due to a hardware "strangeness" up to four first IP packets
16614 to the boards get lost, which typically are ARP replies. By configuring
16615 the timeout to a lower value we significantly improve the first network
16616 transfer time on this board. The timeout is specified in milliseconds,
16617 later internally it is converted to deciseconds, because it has to be
16618 converted to hardware ticks, and CFG_HZ ranges from 900 to 27000000 on
16621 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16622 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16624 commit 13e0b8f7ca9d29267bf01d7a01e521a0517adce1
16625 Author: Guennadi Liakhovetski <lg@denx.de>
16626 Date: Thu Apr 3 13:36:18 2008 +0200
16628 minor cs8900 driver clean up
16630 Remove a redundant register definition, clean up some coding style
16633 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16634 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
16636 commit 707fa917cca24c0f22776f48ac4a6fa5e5189b10
16637 Author: Wolfgang Denk <wd@denx.de>
16638 Date: Mon Apr 28 22:01:04 2008 +0200
16640 jffs2_1pass.c: fix incompatible pointer type warning
16642 Signed-off-by: Wolfgang Denk <wd@denx.de>
16644 commit 6aee00f5e6a1cf29d8fe8fdc9b7252fbd31115d9
16645 Author: Sascha Laue <Sascha.Laue@gmx.biz>
16646 Date: Tue Apr 1 10:10:18 2008 +0200
16648 lwmon5: update dsPIC POST spezification
16650 The specification for the lwmon5 board dsPIC POST got changed.
16651 Also add defines for the temperatures and voltages.
16653 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
16655 commit 3e4615ab7ff38781a5dd80d0f49b9af55b4fe0b7
16656 Author: Sascha Laue <Sascha.Laue@gmx.biz>
16657 Date: Tue Apr 1 15:13:03 2008 +0200
16659 Fix watchdog POST for lwmon5
16661 If the hardware watchdog detects a voltage error, the watchdog sets
16662 GPIO62 to low. The watchdog POST has to detect this low level.
16664 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
16665 Signed-off-by: Wolfgang Denk <wd@denx.de>
16667 commit dd5748bcd669f46aeb6686c1b341323843738ccc
16668 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
16669 Date: Mon Apr 28 14:37:14 2008 +0200
16671 rtl8169: fix compiler warnings
16673 Fix multiple compiler warnings related to argument type mismatch.
16675 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
16677 commit 413bf586266f86c6bdbc6c6d140f67a15af4c4f1
16678 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
16679 Date: Mon Apr 28 14:36:06 2008 +0200
16681 IDE: fix compiler warnings
16683 The IDE driver can use 32-bit addresses in LBA mode, in which case it
16684 spits multiple warnings during compilation. Fix them.
16686 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
16688 commit db9084de28c46ac81c8f681722cb0d7411be4d7f
16689 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
16690 Date: Mon Apr 28 14:35:57 2008 +0200
16692 LinkStation: fix compiler warning, add a maintainer
16694 out_8 wants a pointer to an unsigned as the first argument. Add a
16695 maintainer for Linkstation boards.
16697 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
16699 commit c71abba3cb67b063f789f17abf6c7447727c0cd5
16700 Author: Wolfgang Denk <wd@denx.de>
16701 Date: Mon Apr 28 14:55:12 2008 +0200
16703 cmd_nand.c: fix "differ in signedness" problem
16705 Signed-off-by: Wolfgang Denk <wd@denx.de>
16707 commit f2c288a35341ad02ac03b1563d786763c9c8f159
16708 Author: Wolfgang Denk <wd@denx.de>
16709 Date: Mon Apr 28 12:48:47 2008 +0200
16711 pcnet.c: fix a merge issue
16713 Signed-off-by: Wolfgang Denk <wd@denx.de>
16715 commit 4ca79f477ebd25a6872e6196d80e2f5eff441376
16716 Author: Wolfgang Denk <wd@denx.de>
16717 Date: Mon Apr 28 12:08:18 2008 +0200
16719 NAND: fix some strict-aliasing compiler warnings
16721 Signed-off-by: Wolfgang Denk <wd@denx.de>
16723 commit 5cd0130ecc79d6dcde1b1ac253abc457ca8c3115
16724 Author: Stefan Roese <sr@denx.de>
16725 Date: Mon Apr 28 11:37:14 2008 +0200
16727 ppc4xx: Fix compile warning of hcu4 board
16729 Signed-off-by: Stefan Roese <sr@denx.de>
16731 commit 5379cd15dd6c74ac51499bce3455bf6e0cdbe9f1
16732 Author: Wolfgang Denk <wd@denx.de>
16733 Date: Mon Apr 28 11:31:23 2008 +0200
16735 MPC8323ERDB: fix implicit declaration of function 'mac_read_from_eeprom'
16737 Signed-off-by: Wolfgang Denk <wd@denx.de>
16739 commit 7602ed50a2f0ef3dc8d7da93f116de50288f5b59
16740 Author: Guennadi Liakhovetski <lg@denx.de>
16741 Date: Mon Apr 28 00:25:32 2008 +0200
16743 mx31ads: fix loadaddr environment variable define
16745 Arithmetic expressions do not get evaluated under stringification. Remove
16746 default network configuration, add DHCP command support. Thanks to Felix
16747 Radensky for reporting.
16749 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
16751 commit 144eec777ac07bcb12bd38245a5a289f694a7f98
16752 Author: Wolfgang Denk <wd@denx.de>
16753 Date: Mon Apr 28 10:55:24 2008 +0200
16755 katmai: fix section overlap problem
16757 Since we didn't want to remove features from the configuration, we
16758 decided to increase the U-Boot image size (add one flash sector).
16760 Also changed the default environment definition to make it
16761 independent of such changes.
16763 Signed-off-by: Wolfgang Denk <wd@denx.de>
16764 Acked-by: Stefan Roese <sr@denx.de>
16766 commit 941d696d25624e3cc65ebf924199541acf52d74e
16767 Author: Wolfgang Denk <wd@denx.de>
16768 Date: Mon Apr 28 10:55:24 2008 +0200
16770 katmai: fix section overlap problem
16772 Since we didn't want to remove features from the configuration, we
16773 decided to increase the U-Boot image size (add one flash sector).
16775 Also changed the default environment definition to make it
16776 independent of such changes.
16778 Signed-off-by: Wolfgang Denk <wd@denx.de>
16779 Acked-by: Stefan Roese <sr@denx.de>
16781 commit 03c6cd39f9184143fd8c537872b3d4b2e03f1466
16782 Author: Kumar Gala <galak@kernel.crashing.org>
16783 Date: Sat Apr 26 11:44:44 2008 -0500
16785 post: Fix building with O=
16787 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16789 commit fd7531c1e9d56b9e5e06d2c0e02b798dab72f70c
16790 Author: Wolfgang Denk <wd@denx.de>
16791 Date: Sat Apr 26 01:55:00 2008 +0200
16795 Signed-off-by: Wolfgang Denk <wd@denx.de>
16797 commit 19cf2ec90d8ce52da60c1693693c4048cb810967
16798 Author: Wolfgang Denk <wd@denx.de>
16799 Date: Sat Apr 26 01:25:39 2008 +0200
16801 post/Makefile: make sure to use the correct flags
16803 ARFLAGS was not set, which caused "ppc_8xx-ar: creating libgenpost.a"
16804 messages to be printed.
16806 Signed-off-by: Wolfgang Denk <wd@denx.de>
16808 commit 7ed4011733e7dca8f64d21291e4294662f7dc3e2
16809 Author: Wolfgang Denk <wd@denx.de>
16810 Date: Sat Apr 26 00:34:42 2008 +0200
16812 Coding Style cleanup, update CHANGELOG
16814 Signed-off-by: Wolfgang Denk <wd@denx.de>
16816 commit f9204e15173834ff8d123e36279ce49c3c6c74fc
16817 Author: Magnus Lilja <lilja.magnus@gmail.com>
16818 Date: Sun Apr 20 10:38:12 2008 +0200
16820 i.MX31: Enable SPI and MC13783/RTC support for the Litekit board
16822 This patch enables SPI and MC13783/RTC support for the Litekit board.
16824 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
16826 commit f97abbfb47d9e407354e157cae3f6369e460cd37
16827 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
16828 Date: Fri Apr 25 01:08:32 2008 -0500
16830 MPC8544DS: decode pcie3 end-point configuration correctly.
16832 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
16833 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16835 commit 292188e15523c165c4269403fdcd33c26d89176e
16836 Author: Roy Zang <tie-fei.zang@freescale.com>
16837 Date: Fri Apr 25 00:55:09 2008 -0500
16839 MPC8544DS: Removes the unknown flash message information
16841 This patch removes the unknown flash message information:
16842 '## Unknown FLASH on Bank 1 - Size = 0xdeadbeef = -286261248 MB'
16843 This unknown flash message is caused by PromJet.
16844 Some of the board user is unhappy with this information.
16846 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
16847 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
16849 commit b2115757403beef0ac6bc2c6c3b24f31256a75d2
16850 Author: Kim Phillips <kim.phillips@freescale.com>
16851 Date: Thu Apr 24 14:07:38 2008 -0500
16853 mpc83xx: bump loadaddr over fdtaddr to 0x500000
16855 this seems as a good compromise between human memory, typing,
16856 and last but not least, to accommodate for current and future kernel bloat.
16858 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
16859 Acked-by: Dave Liu <daveliu@freescale.com>
16861 commit be5a7190265a34d968578ff266549c60f6f57654
16862 Author: Dave Liu <r63238@freescale.com>
16863 Date: Tue Apr 15 13:12:23 2008 +0800
16865 mpc83xx: clean up the readme for 83xx boards
16867 1. correct the typo
16868 2. correct the memory map for 837xerdb board
16870 Signed-off-by: Dave Liu <daveliu@freescale.com>
16872 commit bcae52a6819ee9dad5d0d96cd7daeb20108d45ff
16873 Author: Dave Liu <r63238@freescale.com>
16874 Date: Tue Apr 15 13:11:11 2008 +0800
16876 mpc83xx: remove the unused CPM's stuff
16878 The MPC83xx family never have CPM block, so remove it from 83xx.
16880 Signed-off-by: Dave Liu <daveliu@freescale.com>
16882 commit c63ad6325a8ac0097a54b418a3288926b0484b18
16883 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16884 Date: Fri Apr 18 16:29:40 2008 +0200
16886 cfi-flash: Add CFG_FLASH_AUTOPROTECT_LIST
16888 This patch adds a configurable flash auto protection list that can be used
16889 to make U-Boot protect flash regions in flash_init().
16891 The idea has been discussed on the u-boot mailing list starting
16894 Even this patch brings a new feature it is used as a bugfix for 4xx
16895 platforms where flash_init() does not completely protect the
16896 monitor's flash range in all situations.
16898 U-Boot protects the flash range from CFG_MONITOR_BASE to
16899 (CFG_MONITOR_BASE + monitor_flash_len - 1) by default. This does not
16900 include the reset vector at 0xfffffffc.
16903 #define CFG_FLASH_AUTOPROTECT_LIST {{0xfff80000, 0x80000}}
16905 This config option will auto protect the last 512k of flash that
16906 contains the bootloader on board like APC405 and PMC405.
16908 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16910 commit d0d91ae3acb4f29d1a2a3a766747478ed54e2848
16911 Author: Stefan Roese <sr@denx.de>
16912 Date: Fri Apr 25 13:59:03 2008 +0200
16914 ppc4xx: Remove double defines in lwmon5.h
16916 introduced with latest lwmon5/POST merge
16918 Signed-off-by: Stefan Roese <sr@denx.de>
16920 commit 7590378fb9c686709492ceb142825cd058255956
16921 Author: Bartlomiej Sieka <tur@semihalf.com>
16922 Date: Fri Apr 25 13:54:02 2008 +0200
16924 Use watchdog-aware functions when calculating hashes of images - take two
16926 Some files didn't get updated properly with the "Use watchdog-aware
16927 functions when calculating hashes of images" commit, this commit
16930 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
16931 Signed-off-by: Wolfgang Denk <wd@denx.de>
16933 commit 8e048c438e20ec89b49da5f085f8f756eba6e587
16934 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16935 Date: Fri Apr 25 12:01:39 2008 +0200
16937 ppc4xx: Add bootcount limit handling for APC405 boards
16939 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
16941 commit 1de6b28be5d107ae90ad7a8a43653c49966e8afe
16942 Author: Bartlomiej Sieka <tur@semihalf.com>
16943 Date: Fri Apr 25 12:10:09 2008 +0200
16945 Use watchdog-aware functions when calculating hashes of images
16947 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
16949 commit d00ce09040d3100e2c7998ef56db62c2d20d9ee3
16950 Author: Wolfgang Denk <wd@denx.de>
16951 Date: Fri Apr 25 12:44:08 2008 +0200
16953 USB: fix more GCC 4.2.x aliasing warnings
16955 Signed-off-by: Wolfgang Denk <wd@denx.de>
16956 Acked-by: Markus Klotzbuecher <mk@denx.de>
16958 commit aff4f86448f6586930f0a3be7fc4b0ddcf450980
16959 Author: Wolfgang Denk <wd@denx.de>
16960 Date: Fri Apr 25 12:41:53 2008 +0200
16962 lib_generic/crc32.c: add missing #include <watchdog.h>
16964 Signed-off-by: Wolfgang Denk <wd@denx.de>
16966 commit 03ccdbcd5602610cea4bd0db7e48e1ef881a51ef
16967 Author: Wolfgang Denk <wd@denx.de>
16968 Date: Fri Apr 25 11:52:21 2008 +0200
16970 lib_generic/crc32.c: fix compile problem
16972 Signed-off-by: Wolfgang Denk <wd@denx.de>
16974 commit 24bfedbd0be4dcaa94861407820d6a70fea7e03b
16975 Author: Stefan Roese <sr@denx.de>
16976 Date: Tue Apr 22 12:20:32 2008 +0200
16978 ppc4xx: Pass PCIe root-complex/endpoint configuration to Linux via the fdt
16980 The PCIe root-complex/endpoint setup as configured via the "pcie_mode"
16981 environment variable will now get passed to the Linux kernel by setting
16982 the device_type property of the PCIe device tree node. For normal root-
16983 complex configuration it will keep its defaults value of "pci" and for
16984 endpoint configuration it will get changed to "pci-endpoint".
16986 Signed-off-by: Stefan Roese <sr@denx.de>
16988 commit eb0615bf600d2caf5aa2958f47f5ba364c52d5e7
16989 Author: Yuri Tikhonov <yur@emcraft.com>
16990 Date: Thu Apr 24 10:30:53 2008 +0200
16992 lwmon5: watchdog POST fix
16994 Use the GPT0_MASKx registers as the temporary storage for watch-dog
16995 timer POST test instead of GPT0_COMPx. The latter
16996 (GPT0_COMP1..GPT0_COMP5) are used for the log-buffer header.
16998 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
16999 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
17001 commit 78e488298824bc150b5f3ebf7958cd71fa2af1b9
17002 Author: Kim Phillips <kim.phillips@freescale.com>
17003 Date: Mon Apr 21 18:10:14 2008 -0500
17005 lib_ppc: Revert "Make MPC83xx one step closer to full relocation."
17007 This reverts commit 70431e8a7393b6b793f77957f95b999fc9a269b8 which has
17008 proven problematic getting right from the start at least on 83xx and
17011 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
17013 commit a99715b8ebfc500f3f40e01b36b64d473938443d
17014 Author: Detlev Zundel <dzu@denx.de>
17015 Date: Fri Apr 18 14:50:01 2008 +0200
17017 Realining some header definitions.
17019 Signed-off-by: Detlev Zundel <dzu@denx.de>
17021 commit 4acbc6c7f993cae409c424615415a3e76820f13d
17022 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17023 Date: Thu Apr 24 07:57:16 2008 +0200
17025 NE2000: coding style cleanup
17027 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17029 commit b4aff1ffaf7120032c653357c007faa14f74d29d
17030 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17031 Date: Wed Apr 23 00:11:47 2008 +0900
17033 qemu-mips.h: Add CFI support
17035 CONFIG_ENV_OVERWRITE is also added.
17037 This patch is originally created by Jean-Christophe PLAGNIOL-VILLARD.
17039 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17040 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17042 commit 4a1f11b45a82908e5b0df602d703082413a6b7ed
17043 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17044 Date: Tue Apr 22 22:47:27 2008 +0900
17046 doc/README.mips: Add MIPS notes
17048 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17050 commit 215b01bba8bc662d35f72b084700b192d367dfb4
17051 Author: Bartlomiej Sieka <tur@semihalf.com>
17052 Date: Tue Apr 22 12:27:56 2008 +0200
17054 Add support for calculating hashes with watchdog triggering
17056 Implement watchodg-aware variants of hash calculation functions:
17060 The above functions calculate the hash of the input buffer in chunks,
17061 triggering the watchdog after processing each chunk. The chunk size
17062 is given as a function call parameter.
17064 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
17066 commit 8875e3abab986df930167ce5c1ac4f95dcacc81c
17067 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17068 Date: Wed Apr 23 11:02:12 2008 +0900
17070 qemu-mips: Cleanup whitespace, indentation, etc.
17072 No functional change.
17074 This patch was originally submitted by Jean-Christophe PLAGNIOL-VILLARD.
17075 Then I re-created from scratch, and changed more lines than the original.
17077 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17078 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17080 commit 386563197e3a50b0e97ad9aae87f57d9aab909ab
17081 Author: Vlad Lungu <vlad@comsys.ro>
17082 Date: Wed Oct 10 23:02:09 2007 +0300
17084 Fixed pcnet io_base
17086 Bus and phys address are not always the same
17088 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
17090 commit 11ea26fd1cb63c91403fe04a6eea975cd418603f
17091 Author: Wolfgang Denk <wd@denx.de>
17092 Date: Thu Apr 24 23:44:26 2008 +0200
17094 drivers/net/pcnet.c: Coding Style cleanup.
17096 Signed-off-by: Wolfgang Denk <wd@denx.de>
17098 commit 899ef7b84578b7cafadfd78488c2fd2aac93f636
17099 Author: Vlad Lungu <vlad@comsys.ro>
17100 Date: Wed Oct 10 23:04:23 2007 +0300
17102 Added Am79C970A chip id to pcnet
17104 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
17106 commit 17c9de6bb33f676eb776dcbfc46fc1b14c3871a5
17107 Author: Magnus Lilja <lilja.magnus@gmail.com>
17108 Date: Sun Apr 20 10:35:03 2008 +0200
17110 i.MX31: Fix architecture numbers for ADS and Litekit boards
17112 Correct the Linux architecture number for i.MX31 Litekit and ADS boards.
17114 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
17116 commit e7ae84d6c7288790e88639f57cb60daf89c11369
17117 Author: Magnus Lilja <lilja.magnus@gmail.com>
17118 Date: Sun Apr 20 10:36:36 2008 +0200
17120 i.MX31: Use symbolic names for Litekit membases.
17122 Use symbolic names instead of hard coded addresses for Litekit membases.
17124 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
17126 commit 2ef1d9b6030d02f576b1bcd9fec948e602522012
17127 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17128 Date: Sat Apr 19 17:59:20 2008 +0200
17130 Fix show_boot_progress prototype
17132 in commit fad634071 "make show_boot_progress () weak."
17133 show_boot_progress is supposed to be declared as weak but declared as
17136 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17138 commit edbed247a14d70b94958010f736621212285de91
17139 Author: Bartlomiej Sieka <tur@semihalf.com>
17140 Date: Fri Apr 18 12:39:23 2008 +0200
17142 Memory footprint optimizations
17144 As suggested by Wolfgang Denk:
17145 - image printing functions:
17147 - remove indentation prefix from functions' signatures
17148 - merge getenv_verify and getenv_autostart into one parametrized function
17150 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
17152 commit 0a0b606faaec4afb3f750b09aa4df1e40a39dcb8
17153 Author: Guennadi Liakhovetski <lg@denx.de>
17154 Date: Tue Apr 15 13:33:11 2008 +0200
17156 MX31ADS environment variable update, spi and rtc support
17158 Update MX31ADS default environment to better match the flash layout and
17159 the memory map, support SPI and RTC.
17161 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17163 commit 022f12163595b9a55380c6d77c3119b93d6a9a4b
17164 Author: Kumar Gala <galak@kernel.crashing.org>
17165 Date: Mon Apr 21 09:28:36 2008 -0500
17167 85xx: Round up frequency calculations to get reasonable output
17169 eg. because of rounding error we can get 799Mhz instead of 800Mhz.
17171 Introduced DIV_ROUND_UP and roundup taken from linux kernel.
17173 Signed-off-by: Dejan Minic <minic@freescale.com>
17174 Signed-off-by: Srikanth Srinivasan <srikanth.srinivasan@freescale.com>
17175 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17176 Acked-by: Andy Fleming <afleming@freescale.com>
17178 commit 876b8f978982216ab4a22dcd9efddfcd9b0e04e6
17179 Author: Kumar Gala <galak@kernel.crashing.org>
17180 Date: Wed Apr 23 16:58:04 2008 -0500
17182 fsl_pci: Only modify registers if we have them
17184 pme_msg_det exists only on PCIe controllers only set it if we are a "bridge".
17186 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
17188 commit 83fe32334337def160b302aa9d152d808bfcc68e
17189 Author: Markus Klotzbücher <mk@denx.de>
17190 Date: Wed Apr 23 10:57:33 2008 +0200
17192 USB: remove a cpu bug workaround for an unsupported architecture.
17194 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17196 commit f957576cb53e6cfab412709cfc8db1afd39d21c3
17197 Author: Markus Klotzbücher <mk@denx.de>
17198 Date: Wed Apr 23 10:53:23 2008 +0200
17200 USB: fix those pesky aliasing warnings issued by gcc-4.2
17202 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
17203 Signed-off-by: Detlev Zundel <dzu@denx.de>
17205 commit 89cdab788f3716b335fefb60b836ebcf975aceab
17206 Author: Mike Frysinger <vapier@gentoo.org>
17207 Date: Mon Mar 31 11:02:01 2008 -0400
17209 crc32: use uint32_t rather than unsigned long
17211 The envcrc.c does sizeof(unsigned long) when calculating the crc, but
17212 this is done with the build toolchain instead of the target tool
17213 chain, so if the build is a 64bit system but the target is 32bits,
17214 the size will obviously be wrong. This converts all unsigned long
17215 stuff related to crc32 to uint32_t types. Compile tested only: output
17216 of ./tools/envcrc when run on a 32bit build system matches that of a
17217 64bit build system.
17219 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17220 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17222 commit 80c40b765b3642ddb9f3392b7898715aab44a29c
17223 Author: Dirk Behme <dirk.behme@googlemail.com>
17224 Date: Wed Mar 26 09:53:29 2008 +0100
17226 ARM: Davinci: Fix DM644x timer overflow handling and cleanup
17228 Fix ARM based DaVinci DM644x timer overflow handling and cleanup timer code.
17232 - Remove *_masked() functions as noted by Wolfgang
17234 - Adapt register naming to recent TI spec (sprue26, March 2007)
17236 - Fix reset_timer() handling
17238 - 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.
17240 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
17242 - Remove software division of timer count value (DIV(x) macro) and do it in hardware (TIM_CLK_DIV).
17244 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com> and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for the hints & testing!
17246 Patch is compile tested with davinci_dvevm & sonata & schmoogie configuration and tested by Pieter on DaVinci EVM hardware.
17248 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
17249 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
17251 commit a6e6fc610e39dec41b79680413d4ed38145bd3c8
17252 Author: Sergei Poselenov <sposelenov@emcraft.com>
17253 Date: Wed Apr 9 16:09:41 2008 +0200
17255 Added watchdog triggering calls in the "mtest" test function.
17257 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
17259 commit d32a874b9b4c1e949ee38be7790f6bf6d6143451
17260 Author: Yuri Tikhonov <yur@emcraft.com>
17261 Date: Sun Apr 6 19:19:14 2008 +0200
17263 lwmon5 watchdog: limit trigger rate
17265 Limit the rate of h/w watch-dog triggering on the LWMON5 board by
17266 the CONFIG_WD_MAX_RATE value.
17268 Note that an earlier version of this patch which used microseconds
17269 instead of ticks dis not work. The problem was that we used
17270 usec2ticks() to convert microseconds into ticks. usec2ticks() uses
17271 get_tbclk(), which in turn calls get_sys_info(). It turns out that
17272 this function does a lot of prolonged operations (like divisions)
17273 which take too much time so we do not trigger the watchdog in time,
17274 and it resets the system.
17276 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
17278 commit 2d2b994a30bb100774dc747ae9865b7f95285a88
17279 Author: Yuri Tikhonov <yur@emcraft.com>
17280 Date: Mon Mar 31 10:51:37 2008 +0200
17282 POST: move CONFIG_POST to Makefiles
17284 Introduce the new logical option CONFIG_HAS_POST which is set when the
17285 platform has CONFIG_POST set. Use CONFIG_HAS_POST in the post/ Makefiles
17286 to determine should the POST libs be compiled for the selected target
17289 To avoid breaking u-boot linking process, the empty post/libpost.a file is
17290 created for platforms which do not have POSTs.
17292 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
17293 Signed-off-by: Wolfgang Denk <wd@denx.de>
17295 commit 0a51e9248e2d27e0a02ef1e740c576ce90a39ee1
17296 Author: Yuri Tikhonov <yur@emcraft.com>
17297 Date: Mon Mar 31 10:49:34 2008 +0200
17299 POST: preparations for moving CONFIG_POST to Makefiles
17301 Remove CONFIG_POST ifdefs from the post/ source files.
17303 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
17304 Signed-off-by: Wolfgang Denk <wd@denx.de>
17306 commit 5d40d4430d9ebc8434c6f0798594836e1efa7a1e
17307 Author: Stefan Roese <sr@denx.de>
17308 Date: Tue Apr 22 14:14:20 2008 +0200
17310 ppc4xx: Fix Canyonlands and Glacier default environment for fdt usage
17312 This patch fixes the Canyonlands and Glacier default environment to better
17313 fit to the arch/powerpc device-tree kernels. The variables dealing with
17314 arch/ppc booting are removed, since these boards are supported only in
17315 arch/powerpc. Glacier uses the same config file as Canyonlands.
17317 Also, the Glacier now uses non-FPU rootpath, since 460GT has no FPU.
17319 Signed-off-by: Stefan Roese <sr@denx.de>
17321 commit b789cb4a4c0c1deff82053539cfe29a9c6e23f8b
17322 Author: Stefan Roese <sr@denx.de>
17323 Date: Tue Apr 22 14:06:42 2008 +0200
17325 ppc4xx: Small coding style cleanup for the latest esd patches
17327 Signed-off-by: Stefan Roese <sr@denx.de>
17329 commit 79941d63bc03aed8c48d7602f18217cc200ee931
17330 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17331 Date: Mon Apr 21 18:01:07 2008 +0200
17333 ppc4xx: Update CPU strapping for PMC440 boards
17335 This patch removes the temporary 'test' strapping option
17336 of the sbe command. The '667' strapping option now uses
17337 a PLB/PCI divider of 3.
17339 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17341 commit f00cf3193a6635355b121e90debb2f54e777e7da
17342 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17343 Date: Mon Apr 21 14:42:21 2008 +0200
17345 ppc4xx: Remove unused APC405 strataflash driver
17347 The APC405 board support has been migrated to use the common
17350 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17352 commit 1c686676a86473bbd92151f0544e109413f6ed06
17353 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17354 Date: Mon Apr 21 14:42:17 2008 +0200
17356 ppc4xx: Update APC405 configuration
17358 - enable esd's auto_update mechanism
17359 - support alternative flash layout on rev. 1.8 boards
17360 - update default environment
17361 - use common CFI flash driver
17362 - coding style cleanup
17364 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17366 commit 0b9872515a521bf7866dc24b85ddce708e60d702
17367 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17368 Date: Mon Apr 21 14:42:11 2008 +0200
17370 ppc4xx: Update APC405 board support
17372 - enable esd's auto_update mechanism
17373 - fix LCD support on latest hardware revision (uses other LCD controller)
17374 - support alternative flash layout on rev. 1.8 boards
17375 - coding style cleanup
17377 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17379 commit 83975d02e225e231960784972e7820a8b303756b
17380 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17381 Date: Mon Apr 21 14:42:06 2008 +0200
17383 ppc4xx: update esd's common auto_update code for 405 boards
17385 - Coding style cleanup (long lines)
17386 - improve handling of protected flash regions
17389 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17391 commit b9233fe5d59cb25d975071616bd1035d6f4c2285
17392 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17393 Date: Mon Apr 21 14:41:59 2008 +0200
17395 ppc4xx: Update esd's common LCD code for 405 boards
17397 - Coding style cleanup (long lines)
17398 - Add s1d13505 support
17399 - Make some functions return a result code instead of void
17401 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17403 commit dea68189424c3f1242427a8146a3861bf093173c
17404 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17405 Date: Mon Apr 21 11:36:55 2008 +0200
17407 ppc4xx: Update FPGA image for APC405 boards
17409 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17411 commit 2a05b152924acfcec3b037693329e517e6d3578f
17412 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17413 Date: Mon Apr 21 11:36:08 2008 +0200
17415 ppc4xx: Update bootlogo for APC405 boards
17417 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17419 commit 8deafdc6ad368368cf03b58cab4bd39f45d64b5c
17420 Author: Stefan Roese <sr@denx.de>
17421 Date: Fri Apr 18 16:41:31 2008 +0200
17423 ppc4xx: Add dcache_enable() for 440
17425 dcache_enable() was missing for 440 and the patch
17426 017e9b7925f74878d0e9475388cca9bda5ef9482 ["allow ports to override bootelf
17427 "] behavior uses this function.
17429 Note: Currently the cache handling functions like
17430 d/icache_disable/enable() are NOP's on 440. This may be changed in the
17433 Signed-off-by: Stefan Roese <sr@denx.de>
17435 commit a49e0d177a0749614b316ec847fb623f09c82c07
17436 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17437 Date: Mon Apr 21 11:19:04 2008 +0200
17439 video: Add missing free for logo memory
17441 This patch adds two missing free()s.
17443 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17445 commit 84c01d3a05ae3aca5f7c0c13a31ca72ba1199a42
17446 Author: Troy Kisky <troy.kisky@boundarydevices.com>
17447 Date: Mon Sep 24 16:41:43 2007 -0700
17449 PATCH - Fix oob data copied into supplied buffer
17451 This patch correctly sets the oobavail variable
17452 and fixes a bug where the oob data was not valid when
17453 there where multiple groups in oobfree.
17455 First segment fixes a typo
17456 Second segment fixes a bug where oob data may be copied incorrectly.
17457 Third segment adds an error message when exiting due to write protect.
17458 Forth segment fixes a bug where oobavail may be set incorrectly.
17460 Signed-off-by: Troy Kisky <troy.kisky@boundarydevices.com>
17462 commit e1d09680f64b452adde89ed9fe28a77c56bedc9a
17463 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17464 Date: Fri Apr 18 17:24:32 2008 +0200
17466 ppc4xx: Fix sys_get_info() for 405GP(r)
17468 This patch assigns the correct EBC clock for 405GP(r) CPUs
17469 to PPC4xx_SYS_INFO structure. Without this patch U-Boot
17470 uses an uninitialized EBC clock in its startup message.
17472 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
17474 commit dc7746d86d2a3dfe01ab9a70cb427f92adc303c7
17475 Author: Wolfgang Denk <wd@denx.de>
17476 Date: Sun Apr 20 15:39:38 2008 -0700
17478 Makefile: remove nand_spl/System.map when cleaning up.
17480 commit d9a42c0ace4d4f9cb061d62a7265d1780f90447b
17481 Author: Wolfgang Denk <wd@denx.de>
17482 Date: Sun Apr 20 15:35:52 2008 -0700
17484 MAKEALL: sort entries / lists.
17486 Signed-off-by: Wolfgang Denk <wd@denx.de>
17488 commit 0878af169b181868a105b5c33f3a6423e2c9fd60
17489 Author: Kumar Gala <galak@kernel.crashing.org>
17490 Date: Fri Apr 18 11:29:01 2008 -0500
17492 85xx: Fix size of cpu-release-addr property
17494 The cpu-release-addr is defined as always being a 64-bit quanity regardless
17495 if we are running on a 32-bit or 64-bit machine.
17497 commit 88353a985109562a639b2f8a0c90d77011bfe374
17498 Author: Timur Tabi <timur@freescale.com>
17499 Date: Fri Apr 4 11:15:58 2008 -0500
17501 Fix calculation of I2C clock for some 85xx chips
17503 Some 85xx chips use CCB as the base clock for the I2C. Some use CCB/2, and
17504 some use CCB/3. There is no pattern that can be used to determine which
17505 chips use which frequency, so the only way to determine is to look up the
17506 actual SOC designation and use the right value for that SOC.
17508 Update immap_85xx.h to include the GUTS PORDEVSR2 register.
17510 Signed-off-by: Timur Tabi <timur@freescale.com>
17512 commit 1e01477aeaf409ddb97e2633aab9cf8c9c60612e
17513 Author: Wolfgang Denk <wd@denx.de>
17514 Date: Fri Apr 18 11:44:27 2008 -0700
17516 Fix build breakage casued by commit c0559be371b2
17518 Change env_get_char from a global function ptr to a function.
17520 Signed-off-by: Wolfgang Denk <wd@denx.de>
17522 commit 268a804d7e2fa07b64211fd2f9a9615db4539f23
17523 Author: Wolfgang Denk <wd@denx.de>
17524 Date: Fri Apr 18 10:53:41 2008 -0700
17526 Coding Style cleanup, update CHANGELOG.
17528 Signed-off-by: Wolfgang Denk <wd@denx.de>
17530 commit 92bad20ad74b70adf3839df9a0a47cce000ac3d7
17531 Author: Mike Frysinger <vapier@gentoo.org>
17532 Date: Tue Apr 8 14:00:57 2008 -0400
17534 Add support for u-boot in svn and localversion-* files
17536 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17538 commit d23ff6827decf121461fbc5622612fd7effe207e
17539 Author: Guennadi Liakhovetski <lg@denx.de>
17540 Date: Thu Apr 3 17:04:22 2008 +0200
17542 MX31ADS network and flash updates
17544 This patch allows U-Boot to use buffered writes to the Spansion NOR
17545 flash installed on this board, and eliminates long delays in network
17546 transfers after the board startup.
17548 Also modify flash layout to embed main and redundant environment
17549 blocks in the U-Boot image.
17551 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17553 commit b5dc9b304d289831f291843ff88a45cbdf1a6290
17554 Author: Guennadi Liakhovetski <lg@denx.de>
17555 Date: Mon Apr 14 10:53:12 2008 +0200
17557 Support for the MX31ADS evaluation board from Freescale
17559 This patch adds support for the MX31ADS evaluation board from Freescale,
17560 initialization code is copied from RedBoot sources, also provided by
17563 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17565 commit 499e7831e1baaac6bfb959213f1950c216fbc5ba
17566 Author: Stefan Roese <sr@denx.de>
17567 Date: Tue Apr 8 10:33:29 2008 +0200
17569 ppc4xx: Change Canyonlands to support booting from 2k page NAND devices
17571 Signed-off-by: Stefan Roese <sr@denx.de>
17573 commit 5e182dce04d68cc94407a1b1fa09307f2bb96719
17574 Author: Stefan Roese <sr@denx.de>
17575 Date: Tue Apr 8 10:33:28 2008 +0200
17577 ppc4xx: Adjust Canyonlands fixed DDR2 setup (NAND booting) to 512MB SODIMM
17579 Signed-off-by: Stefan Roese <sr@denx.de>
17581 commit fe7c0db6b2a9004f96c2a2d4fff2849e19c2d825
17582 Author: Stefan Roese <sr@denx.de>
17583 Date: Tue Apr 8 10:33:27 2008 +0200
17585 ppc4xx: Add Glacier NAND booting target
17587 Signed-off-by: Stefan Roese <sr@denx.de>
17589 commit 46f373838e384a4c23d13581b1dfa5acb66b5810
17590 Author: Stefan Roese <sr@denx.de>
17591 Date: Tue Apr 8 10:31:00 2008 +0200
17593 nand_spl: Update nand_spl to support 2k page size NAND devices
17595 This patch adds support for booting from 2k page sized NAND device
17596 (e.g. Micron 29F2G08AAC).
17598 Tested on AMCC Canyonlands.
17600 Signed-off-by: Stefan Roese <sr@denx.de>
17602 commit 5e3dca577b7c1bf58bd2b48449b18b7e7dcd8e04
17603 Author: Anatolij Gustschin <agust@denx.de>
17604 Date: Thu Apr 17 18:18:00 2008 +0200
17606 Fix crash on sequoia in ppc_4xx_eth_init
17608 Currently U-Boot crashes in ppc_4xx_eth_init on sequoia
17609 with cache enabled (TLB Parity exeption). This patch
17612 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17614 commit accf7355767dc7f6b85d88bb1c75c9d95e84ba5b
17615 Author: Anatolij Gustschin <agust@denx.de>
17616 Date: Thu Apr 17 18:15:27 2008 +0200
17618 ppc4xx: Fix crash on sequoia with cache enabled
17620 Currently U-Boot crashes on sequoia board in CPU POST if
17621 cache is enabled (CONFIG_4xx_DCACHE defined). The cache
17622 won't be disabled by change_tlb before CPU POST because
17623 there is an insufficient adress range check since
17624 CFG_MEM_TOP_HIDE was introduced. This patch tries to fix
17627 Signed-off-by: Anatolij Gustschin <agust@denx.de>
17629 commit 43c509254fab375c49936498da944658117ed07c
17630 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17631 Date: Thu Apr 17 23:35:13 2008 +0900
17633 Use jr as register jump instruction
17635 Current assembler codes are inconsistent in the way of register jump
17636 instruction usage; some use jr, some use j. Of course GNU as allows both
17637 usages, but as can be expected from `Jump Register' the mnemonic `jr' is
17638 more intuitive than `j'. For example, Linux doesn't have `j <reg>' usage
17641 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
17643 commit 7ce63709828d37b08866e537339a169bd0db2bd3
17644 Author: Guennadi Liakhovetski <lg@denx.de>
17645 Date: Tue Apr 15 14:15:30 2008 +0200
17647 RTC driver for MC13783
17649 MC13783 is a multifunction IS with an SPI interface to the host. This
17650 driver handles the RTC controller in this chip.
17652 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17654 commit 38254f45b0b412332726c90d3184ad47479fcffb
17655 Author: Guennadi Liakhovetski <lg@denx.de>
17656 Date: Tue Apr 15 14:14:25 2008 +0200
17658 New i.MX31 SPI driver
17660 This is an SPI driver for i.MX and MXC based SoCs from Freescale. So far
17661 only implemented and tested on i.MX31, can with a modified register layout
17662 and definitions be used for i.MX27, I think, MXC CPUs have similar SPI
17665 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17667 commit 7064122c2eef92f02a03ef37a1a1c07e70cd4e38
17668 Author: Magnus Lilja <lilja.magnus@gmail.com>
17669 Date: Tue Apr 15 19:09:10 2008 +0200
17671 Fix name of i.MX31 boards in config file header
17673 Correct the name of the i.MX31 Litekit and phyCORE boards in config files.
17675 Signed-off-by: Magnus Lilja <lilja.magnus@gmail.com>
17677 commit a49864593e083a5d0779fb9ca98e5a0f2053183d
17678 Author: Mike Frysinger <vapier@gentoo.org>
17679 Date: Sun Apr 13 19:42:19 2008 -0400
17681 allow ports to override go behavior
17683 Split the arch-specific logic out of the common go code and into a dedicated
17684 weak function called do_go_exec() that lives in cpu directories. This will
17685 need review from i386/nios people to make sure I didn't break them.
17687 commit 017e9b7925f74878d0e9475388cca9bda5ef9482
17688 Author: Mike Frysinger <vapier@gentoo.org>
17689 Date: Sun Apr 13 19:42:18 2008 -0400
17691 allow ports to override bootelf behavior
17693 Change the bootelf setup function into a dedicated weak function called
17694 do_bootelf_exec. This way ports can control the behavior however they
17695 like before/after calling the ELF entry point.
17697 commit a4b46ed6b3502335c3f3a5d672abe0bcb44f20b7
17698 Author: Ulf Samuelsson <ulf@atmel.com>
17699 Date: Sat Apr 12 20:56:03 2008 +0200
17701 Reorder ARM boards in Makefile
17703 Rearrange ARM boards in Makefile so that ARM926EJ-S boards
17704 are no longer under ARM92xT header.
17706 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
17707 Ack-By Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17709 commit c3a60cb3bd67e120fc99b6ba88d9295c3c07f688
17710 Author: Ulf Samuelsson <ulf@atmel.com>
17711 Date: Sat Apr 12 20:29:44 2008 +0200
17713 Clean up dataflash partitioning
17715 This patch removes the board dependent parts from
17716 "drivers/mtd/dataflash.c".
17717 Each board relying on this, will have the appropriate
17718 code in a new file, "partition.c" in the board directory.
17719 board Makefiles updated to use the file.
17721 The dataflash partitions are aligned on sector/page boundaries.
17723 The CONFIG_NEW_DF_PARTITION was used to create named partitions
17724 This is now the default operation, and the CONFIG variable is removed.
17726 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
17728 commit 51ecde946fec511a16346e498204ca10ad71080d
17729 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17730 Date: Sat Apr 12 14:08:45 2008 +0200
17732 gitignore: udpate stgit generated and .patch file
17734 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17736 commit 66e39818e95f51ee1c1dd2094407a8929543fa6d
17737 Author: Wolfgang Denk <wd@denx.de>
17738 Date: Fri Apr 18 00:15:36 2008 -0700
17740 Get rid of redundant copy of renamed header file.
17742 Signed-off-by: Wolfgang Denk <wd@denx.de>
17744 commit c3aafd8cf814e33a77de81c2f22b8c772216a3cc
17745 Author: Vlad Lungu <vlad@comsys.ro>
17746 Date: Fri Apr 11 21:20:14 2008 +0300
17748 Fix dependency generation for older gcc versions
17750 With gcc 3.3.3 at least, compilation fails with
17752 Generating include/autoconf.mk
17753 gcc: compilation of header file requested
17754 make: *** [include/autoconf.mk] Error 1
17756 since commit 16fe77752eee099b9fb61ed73460e51cc94b37ba.
17758 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
17760 commit cb1c4896905ab22fcd982e6a8a539f0031942e71
17761 Author: Marian Balakowicz <m8@semihalf.com>
17762 Date: Fri Apr 11 11:07:49 2008 +0200
17764 Restore the ability to continue booting after legacy image overwrite
17766 Before new uImage code was merged, bootm code allowed for the kernel image to
17767 get overwritten during decompresion. new uImage introduced a check for image
17768 overwrites and refused to boot the image that got overwritten. This patch
17769 restores the old behavior. It also adds a warning when the image overwriten is
17770 a multi-image file, because in such case accessing componentes other than the
17771 first one will fail.
17773 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
17775 commit de2b3216e6b4f3b2fe93759c05b17504f9dfe036
17776 Author: Marian Balakowicz <m8@semihalf.com>
17777 Date: Fri Apr 11 11:07:43 2008 +0200
17779 ppc: Fix ftd_blob variable init when processing raw blob
17781 Set fdt_blob variable before its value is printed out.
17783 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
17785 commit 3d36be030043cd841a2551d00a395135e363a64b
17786 Author: Jason Wessel <jason.wessel@windriver.com>
17787 Date: Thu Apr 10 14:30:16 2008 -0500
17789 Remove all the search paths from the .lds files.
17791 The cross compiler is responsible for providing the correct libraries
17792 and the logic to find the linking libraries.
17794 Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
17796 commit 7d721e34ae6be7d7db63e8d060a246278bb7ae58
17797 Author: Bartlomiej Sieka <tur@semihalf.com>
17798 Date: Mon Apr 14 15:44:16 2008 +0200
17800 Boot-related documentation update
17802 - document 'bootm_low' and 'bootm_size' environment variables
17803 - update inaccurate CFG_BOOTMAPSZ entry
17805 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
17807 commit a6f0bd9f2b1971e2a61ac0fd1fc2c96cb7a4b67a
17808 Author: Guennadi Liakhovetski <lg@denx.de>
17809 Date: Wed Apr 9 17:34:08 2008 +0200
17811 Fix regression introduced by a typo in "Tidied other cpu/arm920t/start.S code"
17813 Restore logic reverted by commit
17815 commit 80767a6cead9990d9e77e62be947843c2c72f469
17816 Author: Peter Pearse <peter.pearse@arm.com>
17817 Date: Wed Sep 5 16:04:41 2007 +0100
17819 Changed API name to coloured_led.h
17820 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
17821 Tidied other cpu/arm920t/start.S code
17823 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17825 commit e25cb8d3f4fcc265a9cdf8e9d577b59bdb64bbaf
17826 Author: Mike Frysinger <vapier@gentoo.org>
17827 Date: Tue Apr 8 10:24:24 2008 -0400
17829 Remove conflicting NAND ID
17831 There are two NAND entries with ID 0xDC and this obviously causes problems.
17832 In the kernel, they punted the first entry, so we should do the same.
17834 See this upstream e-mail for more info:
17835 http://lists.infradead.org/pipermail/linux-mtd/2007-July/018795.html
17837 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
17838 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
17840 commit 188e94c370621708d13547d58dbc6ed3c5602aa8
17841 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17842 Date: Tue Apr 8 16:20:35 2008 +0900
17844 cpu/mips/cpu.c: Fix flush_cache bug
17846 Cache operations have to take line address (addr), not start_addr.
17847 I noticed this bug when debugging ping failure.
17849 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
17851 commit 8f2a68a07c058fca1d413e54f71c2e7e78a74ed4
17852 Author: Martin Krause <martin.krause@tqs.de>
17853 Date: Thu Apr 3 14:29:01 2008 +0200
17855 TQM5200: fix default IDE reset level
17857 Before the first call of ide_reset(), the level of the IDE reset
17858 signal on the TQM5200 is low (reset asserted). This patch sets the
17859 default value to high (reset not asserted).
17861 Currently this patch fixes no real problem, but it is cleaner to
17862 assert the reset signal only on demand, and not permanently.
17864 Signed-off-by: Martin Krause <martin.krause@tqs.de>
17866 commit c61e033d6e8abb7b4060ee36060961e1399f6079
17867 Author: Detlev Zundel <dzu@denx.de>
17868 Date: Thu Apr 3 14:18:48 2008 +0200
17870 mgcoge, mgsuv: realign CONFIG_EXTRA_ENV_SETTING
17872 Signed-off-by: Detlev Zundel <dzu@denx.de>
17874 commit f308572e19eb7fe63aa3d41f214cde4c23c9800f
17875 Author: Detlev Zundel <dzu@denx.de>
17876 Date: Thu Apr 3 14:18:47 2008 +0200
17878 mgcoge, mgsuv: rename 'addcon' to 'addcons'
17880 The latter name with 13 users is already established, so we will use
17883 Signed-off-by: Detlev Zundel <dzu@denx.de>
17885 commit e175eacc87c3a9e4dad0799fee0e95732520afc7
17886 Author: Martin Krause <martin.krause@tqs.de>
17887 Date: Thu Apr 3 13:37:56 2008 +0200
17889 IDE: fix bug in reset sequence
17891 According to the ata (ata5) specification the RESET- signal
17892 shall be asserted for at least 25 us. Without this patch,
17893 the RESET- signal is asserted on some boards for only < 1 us
17894 (e. g. on the TQM5200). This patch adds a general delay of
17895 25 us to the RESET- signal.
17897 Without this patch a Platinum 4 GiB CF card is not recognised
17898 properly on boards with a TQM5200 (STK52xx, TB5200).
17900 Signed-off-by: Martin Krause <martin.krause@tqs.de>
17902 commit 813bea96a960916c72b4a3a7df840151529c26ce
17903 Author: Sascha Laue <Sascha.Laue@gmx.biz>
17904 Date: Thu Apr 3 14:43:11 2008 +0200
17906 lwmon5: disable CONFIG_ZERO_BOOTDELAY
17908 Signed-off-by: Sascha Laue <sascha.laue@liebherr.com>
17910 commit 53eec6f1d25932e76d63ccb14082792b0b96bf41
17911 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17912 Date: Wed Apr 2 08:03:58 2008 +0200
17914 ds174x: Fix warning on return in rtc_get and rtc_set functions
17916 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17918 commit a253b38bf50c85227c33ca0febc870ee49d1588e
17919 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17920 Date: Wed Apr 2 08:03:57 2008 +0200
17922 cmd_log.c: Fix assignment differ in signedness
17924 In function 'logbuff_init_ptrs':
17925 cmd_log.c:79: warning: pointer targets in assignment differ in signedness
17927 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17929 commit 6c0e9a8f1cc090fbfbc6f86b6b4fd17a1628f3df
17930 Author: Gururaja Hebbar K R <gururajakr@sanyo.co.in>
17931 Date: Wed Apr 2 11:04:43 2008 +0530
17933 Remove duplicate #undef SHOW_INFO in drivers/usb/usb_ohci.c
17935 Signed-off-by: gururaja hebbar <gururajakr@sanyo.co.in>
17937 commit 478d5ec9ae3cbcc6040241d2d73dbbc61fe9b49d
17938 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17939 Date: Tue Apr 1 14:07:10 2008 +0200
17941 s3c4510b_eth: fix 'packed' attribute ignored for fields of MACFrame
17943 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
17945 commit c08fb3ea36d19b1640b7906264581e9105534399
17946 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
17947 Date: Tue Apr 15 10:24:14 2008 +0200
17949 Additional PCI IDs for IDE and network controllers
17951 These PCI IDs are required by the Linkstation platforms.
17953 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
17955 commit c0559be371b2a64b1a817088c3308688e2182f93
17956 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
17957 Date: Mon Apr 14 23:01:50 2008 +0200
17959 Change env_get_char from a global function ptr to a function.
17961 This avoids an early global data reference.
17963 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
17965 commit 3e0f331c05d72f140715c1e9fca991927e44d422
17966 Author: Guennadi Liakhovetski <lg@denx.de>
17967 Date: Tue Apr 29 12:35:08 2008 +0000
17969 Clean up smsc911x driver
17971 Replace direct register address derefencing with accessor functions.
17972 Restrict explicitly 32-bit bus-width, extend affected configurations
17975 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
17976 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17978 commit de1b686b763aa8b87a86f6748ce9169e7fc0e4cd
17979 Author: Sascha Hauer <s.hauer@pengutronix.de>
17980 Date: Tue Apr 15 00:08:20 2008 -0400
17982 This patch adds a driver for the following smsc network controllers:
17990 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
17991 Signed-off-by: Guennadi Liakhovetski<lg@denx.de>
17992 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
17994 commit 3dfd4aab929cccddb63d9ea509967861e1333b52
17995 Author: Sascha Laue <Sascha.Laue@gmx.biz>
17996 Date: Tue Apr 1 15:13:03 2008 +0200
17998 Fix watchdog POST for lwmon5
18000 If the hardware watchdog detects a voltage error, the watchdog sets
18001 GPIO62 to low. The watchdog POST has to detect this low level.
18003 Signed-off-by: Sascha Laue <leglas0@legpc180.leg.liebherr.i>
18005 commit 24b448448a917e52806f82660a5c9d47608894fb
18006 Author: Dave Liu <r63238@freescale.com>
18007 Date: Tue Apr 1 15:22:11 2008 +0800
18009 ata: update the libata.h from ata.h of linux kernel
18011 Current libata.h of u-boot is out of sync from linux kernel,
18012 this patch make it be consistent with linux kernel.
18014 Signed-off-by: Dave Liu <daveliu@freescale.com>
18015 Signed-off-by: Tor Krill <tor@excito.com>
18017 commit f8f9dc98883f66f59eb0601da65808e6b139c87c
18018 Author: Kumar Gala <galak@kernel.crashing.org>
18019 Date: Mon Mar 31 11:59:27 2008 -0500
18021 Allow use of ARCH=powerpc when building
18023 The linux kernel is now mostly ARCH=powerpc, so to make life easier
18024 allow use to use ARCH=powerpc and convert it to ARCH=ppc.
18026 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18028 commit 8af657d2c6d1ca4f2f76973531394d4578ba2ef0
18029 Author: Kyungmin Park <kmpark@infradead.org>
18030 Date: Mon Mar 31 10:40:54 2008 +0900
18032 Add apollon board MAINTAINERS entry
18034 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18036 commit 77e475cc0ed1832160017d364be32a0be9ff02a9
18037 Author: Kyungmin Park <kmpark@infradead.org>
18038 Date: Mon Mar 31 10:40:36 2008 +0900
18042 It should access with 16-bit instead of 8-bit
18044 Now it uses the generic memcpy with 8-bit access. It means it reads wrong data from OneNAND.
18046 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18048 commit a9da2b41079d230db3a5641625311983f85ce1fb
18049 Author: Kyungmin Park <kmpark@infradead.org>
18050 Date: Mon Mar 31 10:40:19 2008 +0900
18052 Fix OneNAND erase command
18054 It mis-calculates the block address.
18055 Also fix DECLARE_GLOBAL_DATA_PTR in env_onenand.
18057 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
18059 commit 61525f2ffa156665a66908fda47dbf29d65ea579
18060 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
18061 Date: Mon Mar 31 01:32:15 2008 +0200
18063 Support for LinkStation / KuroBox HD and HG PPC models
18065 This patch is based on the port by Mihai Georgian (see linkstation.c for
18066 Copyright information) and implements support for LinkStation / KuroBox HD
18067 and HG PPC models from Buffalo Technology, whereby HD is deactivated at
18068 the moment, pending network driver fixing.
18070 Notice to users: this is pretty much a barebone port. Support for network
18071 on HG models is already in the U-Boot mainline, but you might also want
18072 patches to switch fan / phy modes depending on the negotiated ethernet
18073 parameters. This patch also doesn't support console switching, booting EM
18074 mode, Buffalo specific ext2 magic number. So, if you want to use any of
18075 those, you need additional patches. Otherwise this patche provides a fully
18076 functional u-boot with a network console on your system.
18078 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18080 commit 0f3ba7e9783f352318f197a3148f6d5cc3d75bea
18081 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18082 Date: Sun Mar 30 01:22:13 2008 -0500
18084 Add CONFIG_MII_INIT support to related boards
18086 Replace CONFIG_8xx and CONFIG_MCF532x to CONFIG_MII_INIT in
18087 cmd_init.c. Add CONFIG_MII_INIT to board configuration files
18088 that use mii_init() in cmd_init.c.
18090 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18091 Acked-by: Ben Warren <biggerbadderben@gmail.com>
18093 commit f33fca22e76f20e4e4793810ca7a06a4805a6cf4
18094 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18095 Date: Sun Mar 30 01:19:06 2008 -0500
18097 Update CONFIG_PCIAUTO_SKIP_HOST_BRIDGE to related boards
18099 Remove test for CONFIG_MPC5200 in drivers/pci/pci_auto.c and define
18100 CONFIG_PCIAUTO_SKIP_HOST_BRIDGE in related board configuration files.
18102 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18104 commit e99ccb488181d012248c6be30b2093e950319fc5
18105 Author: Kumar Gala <galak@kernel.crashing.org>
18106 Date: Thu Mar 27 11:46:38 2008 -0500
18108 Introduce phys_size_t and move phys_addr_t into asm/types.h
18110 Also add CONFIG_PHYS_64BIT on powerpc to deal with 32-bit ppc's
18111 that have larger physical addresses like 44x, 85xx, and 86xx.
18113 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18115 commit 20a14a42a25f72e379f38460b8a8484667536795
18116 Author: Andy Fleming <afleming@freescale.com>
18117 Date: Wed Apr 2 16:19:07 2008 -0500
18119 Rename include/md5.h to include/u-boot/md5.h
18121 Some systems have md5.h installed in /usr/include/. This isn't the
18122 desired file (we want the one in include/md5.h). This will avoid the
18123 conflict. This fixes the host tools building problem by creating a new
18124 directory for U-Boot specific header files.
18126 [Patch by Andy Fleming, modified to use separate directory by Wolfgang
18129 Signed-off-by: Wolfgang Denk <wd@denx.de>
18130 Signed-off-by: Andy Fleming <afleming@freescale.com>
18131 Acked-by: Timur Tabi <timur@freescale.com>
18133 commit f297b7a1ec87433f66320d89d993e1bc738c66b8
18134 Author: Dave Liu <r63238@freescale.com>
18135 Date: Thu Mar 27 18:51:17 2008 +0800
18137 drivers: code clean up
18139 Signed-off-by: Dave Liu <daveliu@freescale.com>
18141 commit 0ff7cba4a2e51c90827f6d21a0b28b4d67109597
18142 Author: Dave Liu <r63238@freescale.com>
18143 Date: Thu Mar 27 18:50:41 2008 +0800
18145 drivers: clean up the ata_piix.h
18147 Signed-off-by: Dave Liu <daveliu@freescale.com>
18149 commit e8f7ba404f1409606962815ecc955a06984b08b3
18150 Author: Dave Liu <r63238@freescale.com>
18151 Date: Thu Mar 27 18:49:56 2008 +0800
18153 doc: english polishing for README.sata
18155 according to gvb's suggestion, polishing for the doc.
18157 Signed-off-by: Jerry Van Baren <gerald.vanbaren@ge.com>
18158 Signed-off-by: Dave Liu <daveliu@freescale.com>
18160 commit 3e3f766a5274d204780460e1879723b565296d34
18161 Author: Kumar Gala <galak@kernel.crashing.org>
18162 Date: Wed Mar 26 18:53:28 2008 -0500
18164 Fix warnings introduced by I2C bus speed setting patch
18166 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18168 commit 3c735e7437150e8615f26930c7819db85634276d
18169 Author: eran liberty <eran.liberty@gmail.com>
18170 Date: Thu Mar 27 00:50:49 2008 +0100
18172 Altera Stratix II support
18174 Adds Support for Altera's Stratix II.
18176 Within your board specific init file you will have to call
18178 1. fpga_init (/* relocated code offset. usually => */ gd->reloc_off);
18179 2. fpga_add (fpga_altera, (Altera_desc*)&altera_desc);
18181 Altera_desc* contines (for example):
18183 Altera_StratixII, /* part type */
18184 passive_serial, /* interface type */
18185 1, /* bytes of data part can accept */
18186 (void *)(&funcs), /* interface function table */
18187 0L, /* base interface address */
18188 0 /* implementation specific cookie */
18191 funcs is the interface. It is of type altera_board_specific_func.
18192 It looks like this:
18193 altera_board_specific_func func = {
18204 you will have to implement these functions, which is usually bit
18207 Signed-off-by: Eran Liberty <liberty@extricom.com>
18209 commit 5ece9ec9f6cd52950ab848e2fe422dacf1d3a335
18210 Author: Wolfgang Denk <wd@denx.de>
18211 Date: Sun Apr 13 14:32:54 2008 -0700
18215 Signed-off-by: Wolfgang Denk <wd@denx.de>
18217 commit 5ad862166aa24d62a69aa9c708f6b2f5c0d28fb7
18218 Author: Sascha Hauer <s.hauer@pengutronix.de>
18219 Date: Wed Mar 26 20:41:17 2008 +0100
18221 Phytec Phycore-i.MX31 support
18223 This patch adds support for the Phytec Phycore-i.MX31 board
18225 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
18226 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18228 commit caebc95be3b42e5147b5fac7672ac4b2693ef7e1
18229 Author: Sascha Hauer <s.hauer@pengutronix.de>
18230 Date: Wed Mar 26 20:41:09 2008 +0100
18232 mx31 litekit support
18234 This patch adds support for the mx31 litekit board
18236 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
18237 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18239 commit cdace0661208754a53019ea0dc7b803a040e0939
18240 Author: Sascha Hauer <s.hauer@pengutronix.de>
18241 Date: Wed Mar 26 20:40:49 2008 +0100
18243 add an i2c driver for mx31
18245 This patch adds an i2c driver for Freescale i.MX processors
18247 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
18248 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18250 commit 9b56f4f0306f3940b0aafd823ed6ecfc2d75d6c6
18251 Author: Sascha Hauer <s.hauer@pengutronix.de>
18252 Date: Wed Mar 26 20:40:42 2008 +0100
18254 core support for Freescale mx31
18256 This patch adds the core support for Freescale mx31
18258 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
18259 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18261 commit 7ec68862a27c8f6f6d566228de8f6724d964a939
18262 Author: Wolfgang Denk <wd@denx.de>
18263 Date: Sun Apr 13 14:19:23 2008 -0700
18267 ...as suggested by Peter Pearse
18269 Signed-off-by: Wolfgang Denk <wd@denx.de>
18271 commit 5252ed95204bdf55bec5a90ea69860bf2f78c643
18272 Author: Sascha Hauer <s.hauer@pengutronix.de>
18273 Date: Wed Mar 26 20:40:36 2008 +0100
18275 Separate omap24xx specific code from arm1136
18277 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136
18278 to cpu/arm1136/omap24xx.
18280 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
18281 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18283 commit 1f1d88dd40815332df32982e739f2ddd2da6fe1a
18284 Author: Mike Frysinger <vapier@gentoo.org>
18285 Date: Tue Jan 29 18:21:05 2008 -0500
18287 disable caches before booting an app for Blackfin apps
18289 It isn't generally save to execute applications outside of U-Boot with caches
18290 enabled due to the way the Blackfin processor handles caches (requires
18291 software assistance). This patch disables caches before booting an ELF or
18292 just booting raw code. The previous discussion on the patch was that we
18293 wanted to use weaks instead, but that proved to not be feasible when multiple
18294 symbols are involved, which puts us back at the ifdef solution. I've
18295 minimized the ugliness by moving the setup step outside of the main function.
18297 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
18299 commit e6dfed705efa44ebf00d21bb1588c6ccc8f3ad32
18300 Author: Wolfgang Denk <wd@denx.de>
18301 Date: Sun Apr 13 10:03:54 2008 -0700
18303 ppc: Get rid of unused machine type definitions
18305 Signed-off-by: Wolfgang Denk <wd@denx.de>
18307 commit 1aeed8d71acb3290cf2446f316d6ba437e7881c4
18308 Author: Wolfgang Denk <wd@denx.de>
18309 Date: Sun Apr 13 09:59:26 2008 -0700
18311 Coding Style cleanup; update CHANGELOG
18313 Signed-off-by: Wolfgang Denk <wd@denx.de>
18315 commit 7754f33c6fb7a2c050388d20bf3847038558bdcf
18316 Author: Larry Johnson <lrj@acm.org>
18317 Date: Thu Feb 21 13:58:11 2008 -0500
18319 LM73 bug fix for negative temperatures and cleanup
18321 When the LM73 temperature sensor measures a temperature below 0 C, the
18322 current driver does not perform sign extension, so the result returned is
18323 512 C too high. This patch fixes the problem, and does general cleanup
18326 Signed-off-by: Larry Johnson <lrj@acm.org>
18328 commit 96ef831f713289afba19da0c8f905e99da2b23e0
18329 Author: Guennadi Liakhovetski <lg@denx.de>
18330 Date: Thu Apr 3 13:36:02 2008 +0200
18332 cfi_flash: Support buffered writes on non-standard Spansion NOR flash
18334 Some NOR flash chip from Spansion, for example, the s29ws-n MirrorBit
18335 series require different addresses for buffered write commands. Define a
18336 configuration option to support buffered writes on those chips. A more
18337 elegant solution would be to automatically detect those chips by parsing
18338 their CFI records, but that would require introduction of a fixup table
18339 into the cfi_flash driver.
18341 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
18343 commit 3f9c542d3d69b1a10a5e193e779133a0454d1f44
18344 Author: Lee Nipper <lee.nipper@freescale.com>
18345 Date: Thu Apr 10 09:35:06 2008 -0500
18347 mpc83xx: Update DIMM data bus width test to support 40-bit width
18349 32-bit wide ECC memory modules report 40-bit width.
18350 Changed the DIMM data bus width test to 'less than 64' instead of 'equal 32'.
18352 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
18353 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18355 commit 5fb5a689d822ca61e814bd523fc930af335242fa
18356 Author: Dave Liu <r63238@freescale.com>
18357 Date: Mon Mar 31 17:05:12 2008 +0800
18359 mpc83xx: Fix the bug of serdes initialization
18361 Currently the serdes will not be initializated due to the
18364 Signed-off-by: Dave Liu <daveliu@freescale.com>
18365 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18367 commit 2000784818f043db7ca60e2846a72d097766b894
18368 Author: Dave Liu <r63238@freescale.com>
18369 Date: Thu Apr 3 16:28:29 2008 +0800
18371 mpc83xx: Fix the SATA clock setting of 837x targets
18373 Currently the SATA controller clock is configured as CSB clock,
18374 usually the CSB clock is 400/333/266MHz.
18376 However, The SATA IP block is only guaranteed to operate up to
18377 200 MHz as stated in the HW spec.
18379 The bug is reported by Joe D'Abbraccio <ljd015@freescale.com>
18381 This patch makes the SATA clock as half of CSB clock.
18383 Signed-off-by: Dave Liu <daveliu@freescale.com>
18384 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18386 commit 1ac4f320bf0b593aa0a741f2d649a8ece8838672
18387 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18388 Date: Wed Apr 2 13:41:21 2008 +0200
18390 mpc837xerdb: Fix warning: implicit declaration of function 'fdt_fixup_dr_usb'
18392 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18393 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18395 commit 97b3ecb575a92fa34c1765229dbc06f2b662f139
18396 Author: Kumar Gala <galak@kernel.crashing.org>
18397 Date: Wed Apr 9 04:20:57 2008 -0500
18399 85xx: Fix detection of MP cpu spin up
18401 We were looking at the wrong memory offset to determine of a secondary
18402 cpu had been spun up or not. Also added a warning message if the
18403 all the secondary cpus we expect don't spin up.
18405 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18407 commit f3e04bdc3f360c66801a9048956e61e41a16edba
18408 Author: Kumar Gala <galak@kernel.crashing.org>
18409 Date: Tue Apr 8 10:45:50 2008 -0500
18411 85xx: Use SVR_SOC_VER instead of SVR_VER
18413 The recent change introduced by 'Update SVR numbers to expand support'
18414 now requires that we use SVR_SOC_VER instead of SVR_VER if we want
18415 to compare against a particular processor id.
18417 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
18419 commit 5b2052e5f5fcce5dbd4d2750a29c0e45bce806e7
18420 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
18421 Date: Fri Apr 11 10:00:35 2008 -0400
18423 ppc4xx: Fix power mgt definitions for PPC440
18425 Corrected DCR addresses of PPC440EP power management registers.
18427 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
18429 commit 950a392464e616b4590bc4501be46e2d7d162dea
18430 Author: Wolfgang Denk <wd@denx.de>
18431 Date: Fri Apr 11 15:11:26 2008 +0200
18433 Revert merge of git://www.denx.de/git/u-boot-arm, commit 62479b18:
18435 Reverting became necessary after it turned out that the patches in
18436 the u-boot-arm repo were modified, and in some cases corrupted.
18438 This reverts the following commits:
18440 066bebd6353e33af3adefc3404560871699e9961
18441 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
18442 c88ae20580b2b01487b4cdcc8b2a113f551aee36
18443 a147e56f03871bba4f05058d5e04ce7deb010b04
18444 d6674e0e2a6a1f033945f78838566210d3f28c95
18445 8c8463cce44d849e37744749b32d38e1dfb12e50
18446 c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
18447 8bf69d81782619187933a605f1a95ee1d069478d
18448 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
18449 a574a73852a527779234e73e17e7597fd8128882
18450 1377b5583a48021d983e1fd565f7d40c89e84d63
18451 1704dc20917b4f71e373e2c888497ee666d40380
18453 Signed-off-by: Wolfgang Denk <wd@denx.de>
18455 commit 64e541f4c1b413dd84c7e409f5c2bf328db2ac13
18456 Author: Stefan Roese <sr@denx.de>
18457 Date: Fri Apr 11 07:02:29 2008 +0200
18459 ppc4xx: Update Kilauea defconfig to use device-tree booting as default
18461 This patch reworks the default environment on Kilauea/Haleakala. Now
18462 "net_nfs" for exmaple uses the device-tree style booting formerly know
18463 as "net_nfs_fdt". Also the addresses in RAM were changed because of the
18464 new image booting support, which check for image overwriting. So the
18465 addresses needed togeet adjusted.
18467 Signed-off-by: Stefan Roese <sr@denx.de>
18469 commit 756f5dacda3810b094b94bcceffd3ce6c7ff9a28
18470 Author: Stefan Roese <sr@denx.de>
18471 Date: Wed Apr 9 11:58:02 2008 +0200
18473 ppc4xx: Fix Canyonlands default environment to work with new image support
18475 Since the new image support checks for image overwriting, the default
18476 environment needs to get adjusted to use correct addresses.
18478 Signed-off-by: Stefan Roese <sr@denx.de>
18480 commit dfc6c7b647dba7ab86749616f0e9e5740deed422
18481 Author: Stefan Roese <sr@denx.de>
18482 Date: Wed Apr 9 11:54:11 2008 +0200
18484 ppc: Revert patch 70431e8a that used _start instead of CFG_MONITOR_BASE
18486 The patch 70431e8a7393b6b793f77957f95b999fc9a269b8 (Make MPC83xx one step
18487 closer to full relocation.) doesn't use CFG_MONITOR_BASE anymore. But
18488 on 4xx systems _start currently cannot be used for this calculation.
18489 So revert back to the original version for now.
18491 Signed-off-by: Stefan Roese <sr@denx.de>
18493 commit f91374f65eae8b42cac329e06ba1c54728278efb
18494 Author: Michal Simek <monstr@monstr.eu>
18495 Date: Fri Mar 28 12:49:52 2008 +0100
18497 microblaze: Sort microblaze boards in MAKEALL script
18499 commit 62032deb7214c6d9b4396297e2aaa559bc2f8495
18500 Author: Michal Simek <monstr@monstr.eu>
18501 Date: Fri Mar 28 11:58:45 2008 +0100
18503 microblaze: clean microblaze_config.mk
18505 FLAGS are generated by U-BOOT generator.
18506 Board specific FLAGS are in board directory
18508 Signed-off-by: Michal Simek <monstr@monstr.eu>
18510 commit cf5c679ca04a6b54bf53a55b8b9c29335b387287
18511 Author: Michal Simek <monstr@monstr.eu>
18512 Date: Fri Mar 28 12:47:19 2008 +0100
18514 microblaze: xupv2p fix config file for supporting FDT
18516 commit 188dc16b189143573b1ed90e584bf866d75cdd12
18517 Author: Michal Simek <monstr@monstr.eu>
18518 Date: Fri Mar 28 11:53:02 2008 +0100
18520 microblaze: ml401 fix config file for supporting FDT
18522 Signed-off-by: Michal Simek <monstr@monstr.eu>
18524 commit 4c6a6f02e239236261333759997eeaf86b30b54c
18525 Author: Michal Simek <monstr@monstr.eu>
18526 Date: Fri Mar 28 11:22:48 2008 +0100
18528 microblaze: ml401 - add ifdef for GPIO
18530 Signed-off-by: Michal Simek <monstr@monstr.eu>
18532 commit af7ae1a411c67ee9d17a66d17ce50b374f3dd4e7
18533 Author: Michal Simek <monstr@monstr.eu>
18534 Date: Fri Mar 28 12:13:03 2008 +0100
18536 microblaze: clean uart16550 and uartlite handling
18538 Signed-off-by: Michal Simek <monstr@monstr.eu>
18540 commit 0b20f250877441460fb79d72192954abe8498834
18541 Author: Michal Simek <monstr@monstr.eu>
18542 Date: Fri Mar 28 11:08:31 2008 +0100
18544 microblaze: Add Emaclite driver to Makefile
18546 Signed-off-by: Michal Simek <monstr@monstr.eu>
18548 commit 868cde5310f88234b774878e4f06e79df10a88b3
18549 Author: Michal Simek <monstr@monstr.eu>
18550 Date: Fri Mar 28 11:08:01 2008 +0100
18552 microblaze: Add Emac driver to Makefile
18554 Signed-off-by: Michal Simek <monstr@monstr.eu>
18556 commit 6f961b4f461f6cbb83a467d468a02e6078c2b327
18557 Author: Michal Simek <monstr@monstr.eu>
18558 Date: Fri Mar 28 12:42:29 2008 +0100
18560 microblaze: add Emac ethernet driver
18562 commit 89c53891b18cbafd29ab8931b40e27ad231b6085
18563 Author: Michal Simek <monstr@monstr.eu>
18564 Date: Fri Mar 28 12:41:56 2008 +0100
18566 microblaze: add Emaclite ethernet driver
18568 commit e5845e21224dbe2fe47b11f1cdf95de7f84be7cb
18569 Author: Michal Simek <monstr@monstr.eu>
18570 Date: Fri Mar 28 11:04:01 2008 +0100
18572 microblaze: ML401 and XUPV2P remove emac and emaclite reference
18574 Signed-off-by: Michal Simek <monstr@monstr.eu>
18576 commit 6bf3e982aefdb1daf9f5462d482c8f9d1cc90a57
18577 Author: Michal Simek <monstr@monstr.eu>
18578 Date: Fri Mar 28 10:59:32 2008 +0100
18580 microblaze: remove old setting for emac driver
18582 Signed-off-by: Michal Simek <monstr@monstr.eu>
18584 commit cd2b75efb9cc037c74ecee9b3586f9bf9e1d4e57
18585 Author: Michal Simek <monstr@monstr.eu>
18586 Date: Fri Mar 28 10:58:15 2008 +0100
18588 microblaze: Clean Makefile from ancient emac driver
18590 Signed-off-by: Michal Simek <monstr@monstr.eu>
18592 commit ab68f921d9c741830f721c3d879c13a0c5597183
18593 Author: Daniel Hellstrom <daniel@gaisler.com>
18594 Date: Fri Mar 28 10:20:43 2008 +0100
18596 SPARC/LEON2: added support for Gaisler simulator GRSIM/TSIM for SPARC/LEON2 targets. See www.gaisler.com for information.
18598 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18600 commit 6ed8a43a19bb0275501bc286007daafa923552cf
18601 Author: Daniel Hellstrom <daniel@gaisler.com>
18602 Date: Wed Mar 26 23:38:48 2008 +0100
18604 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.
18606 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18608 commit 6940383d9ec1bfe2f13e339e6f723e8d34af2b12
18609 Author: Daniel Hellstrom <daniel@gaisler.com>
18610 Date: Wed Mar 26 23:34:47 2008 +0100
18612 SPARC/LEON3: added support for Altera NIOS Development kit (STRATIX II Edition) with GRLIB template design. See www.gaisler.com for information.
18614 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18616 commit 823edd8a66ed50af5aaba0c79567f67061e4d79a
18617 Author: Daniel Hellstrom <daniel@gaisler.com>
18618 Date: Fri Mar 28 10:06:52 2008 +0100
18620 SPARC/LEON3: added support for Gaisler GRSIM/TSIM2 SPARC/LEON3 simulatorn. See www.gaisler.com for information.
18622 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18624 commit 71d7e4c0489e5ed8fc69382236aaa2a1e510c135
18625 Author: Daniel Hellstrom <daniel@gaisler.com>
18626 Date: Wed Mar 26 23:26:48 2008 +0100
18628 SPARC/LEON3: added support for GR-XC3S-1500 board with GRLIB template design. See www.gaisler.com for board information.
18630 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18632 commit b330990c2f36ee4a8bb318360e1c8ba965269ab6
18633 Author: Daniel Hellstrom <daniel@gaisler.com>
18634 Date: Fri Mar 28 10:00:33 2008 +0100
18636 SPARC: Added support for SPARC LEON2 SOC Processor.
18638 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18640 commit 2a2fa797e63b1e3cd4d570318ca5fbf8723ef53a
18641 Author: Daniel Hellstrom <daniel@gaisler.com>
18642 Date: Wed Mar 26 23:00:38 2008 +0100
18644 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.
18646 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18648 commit 1e9a164e22976933002c5e4b0b79b09fcede9cd4
18649 Author: Daniel Hellstrom <daniel@gaisler.com>
18650 Date: Wed Mar 26 22:51:29 2008 +0100
18652 SPARC: Added support for SPARC LEON3 SOC processor.
18654 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18656 commit bf3d8b31169546fcddb4737391e1893fb12d033a
18657 Author: Daniel Hellstrom <daniel@gaisler.com>
18658 Date: Fri Mar 28 08:29:26 2008 +0100
18660 SPARC: added SPARC support for new uimage in common code.
18662 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18664 commit 00ab32c85405a4fe65fd4128243086210fc90a21
18665 Author: Daniel Hellstrom <daniel@gaisler.com>
18666 Date: Wed Mar 26 22:36:03 2008 +0100
18668 SPARC: added SPARC board information to the command bdinfo.
18670 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18672 commit c2f02da21a3f37f0878554eebc785e04fdc4e128
18673 Author: Daniel Hellstrom <daniel@gaisler.com>
18674 Date: Fri Mar 28 09:47:00 2008 +0100
18676 SPARC: Added generic support for SPARC architecture.
18678 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18680 commit e54ec0f016803e4d9524ff71f7971bda0c51b287
18681 Author: Stefan Roese <sr@denx.de>
18682 Date: Thu Apr 3 14:50:34 2008 +0200
18684 ppc4xx: Fix 4xx enet driver to support 460GT EMAC2+3
18686 This patch fixes a problem with the RGMII setup of the 460GT. The 460GT
18687 has 2 RGMII instances and we need to configure the 2nd RGMII instance
18688 for the EMAC2+3 channels.
18690 Signed-off-by: Stefan Roese <sr@denx.de>
18692 commit c2a545ce33b26d80337f80b533828839249fb1c9
18693 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18694 Date: Wed Apr 2 08:03:56 2008 +0200
18696 MPC8xx: Fix libfdt support introduced in commit 77ff7b74
18698 fdt.c: In function 'ft_cpu_setup':
18699 fdt.c:33: warning: implicit declaration of function 'do_fixup_by_prop_u32'
18700 fdt.c:39: warning: implicit declaration of function 'do_fixup_by_compat_u32'
18701 fdt.c:43: warning: implicit declaration of function 'fdt_fixup_ethernet'
18702 fdt.c:45: warning: implicit declaration of function 'fdt_fixup_memory'
18704 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18706 commit 4abd844d8eb108736e1cf8fbf3dbf61f2d5fc11b
18707 Author: Andy Fleming <afleming@freescale.com>
18708 Date: Mon Mar 31 20:45:56 2008 -0500
18710 Fix fdt set command to conform to dts spec
18712 The fdt set command was treating properties specified as <00> and <0011>
18713 as byte streams, rather than as an array of cells. As we already have
18714 syntax for expressing the desire for a stream of bytes ([ xx xx ...]),
18715 we should use the <> syntax to describe arrays of cells, which are always
18716 32-bits per element. If we imagine this likely (IMHO) scenario:
18718 > fdt set /ethernet-phy@1 reg <1>
18720 With the old code, this would create a bad fdt, since the reg cell would be
18721 made to be one byte in length. But the cell must be 4 bytes, so this would
18722 break mysteriously.
18724 Also, the dts spec calls for constants inside the angle brackets (<>)
18725 to conform to C constant standards as they pertain to base.
18726 Take this scenario:
18728 > fdt set /ethernet@f00 reg <0xe250000\ 0x1000>
18730 The old fdt command would complain that it couldn't parse that. Or, if you
18731 wanted to specify that a certain clock ran at 33 MHz, you'd be required to
18734 > fdt set /mydev clock <1f78a40>
18736 Whereas the new code will accept decimal numbers.
18738 While I was in there, I extended the fdt command parser to handle property
18739 strings which are split across multiple arguments:
18741 > fdt set /ethernet@f00 interrupts < 33 2 34 2 36 2 >
18742 > fdt p /ethernet@f00
18744 interrupts = <0x21 0x2 0x22 0x2 0x24 0x2>;
18747 Lastly, the fdt print code was rearranged slightly to print arrays of cells
18748 if the length of the property is a multiple of 4 bytes, and to not print
18751 Signed-off-by: Andy Fleming <afleming@freescale.com>
18753 commit 1c2926abdd7db89296a8cc7f224dd9d5d4e37a56
18754 Author: Stefan Roese <sr@denx.de>
18755 Date: Wed Apr 2 08:39:33 2008 +0200
18757 ppc4xx: Canyonlands: Init SATA/PCIe port correctly
18759 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
18760 interface. This usage can be configured with the jumper J6. This patch
18761 correctly configures the SATA/PCIe PHY for SATA usage when this jumper
18764 Signed-off-by: Stefan Roese <sr@denx.de>
18766 commit 6fe2946f198481254a6ee9600d7456b8316a4083
18767 Author: Kim Phillips <kim.phillips@freescale.com>
18768 Date: Fri Mar 28 17:37:49 2008 -0500
18770 remove remaining CONFIG_OF_HAS_{UBOOT_ENV,BD_T} code
18772 finish off what commit 43ddd9c820fec44816188f53346b464e20b3142d,
18773 "Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T"
18776 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
18778 commit b5873f1732b92a25690e1513b90dfb0d644f6697
18779 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18780 Date: Tue Apr 1 07:30:51 2008 +0200
18782 dataflash: Move CONFIG_HAS_DATAFLASH to Makefile
18784 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18786 commit 2d934ea51f276522b532f870a820e844ff480b5b
18787 Author: Tor Krill <tor@excito.com>
18788 Date: Fri Mar 28 15:29:45 2008 +0100
18790 Add Vitesse 8601 support to TSEC driver
18792 Add phy_info for Vitesse VSC8601.
18793 Add config option, CFG_VSC8601_SKEWFIX, to enable RGMII skew timing compensation.
18795 Signed-off-by: Tor Krill <tor@excito.com>
18796 Reviewed-by: Kim Phillips <kim.phillips@freescale.com>
18797 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18799 commit 3eac6402a508b0f68a21cc9cbc2cc49347de0c31
18800 Author: Daniel Hellstrom <daniel@gaisler.com>
18801 Date: Mon Mar 31 14:25:00 2008 +0000
18803 SPARC: added SMC91111 driver in and out macros for LEON processors.
18805 This patch makes SPARC/LEON processors able to read and write
18806 to the SMC91111 chip using the chip external I/O bus of the memory
18807 controller. This patchs defines the standard in and out macros
18808 expected by the SMC9111 driver.
18810 To access that I/O bus one must set up the memory controller
18811 (MCTRL or FTMCTRL) correctly. It is assumed that the user sets
18812 up this correctly when the other MCTRL parameters are set up. It
18813 can be set up from the board configuration header file.
18815 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
18816 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
18818 commit 3ca7c558eba36332556bc470d45e2f5d42bd0ca6
18819 Author: Stelian Pop <stelian@popies.net>
18820 Date: Wed Mar 26 18:52:34 2008 +0100
18822 Add maintainership information for AT91CAP9ADK and AT91SAM9260EK boards
18824 Signed-off-by: Stelian Pop <stelian@popies.net>
18826 commit 4e03dde84dd2c91e327cdc23ae119d432559a7a3
18827 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18828 Date: Mon Mar 31 21:31:04 2008 +0200
18830 AT91SAM9260EK: Move CONFIG_CMD_NAND to Makefile
18832 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18834 commit 0176d43e759a6e00cacc85eff26fd60f74b4f6b7
18835 Author: Stelian Pop <stelian@popies.net>
18836 Date: Wed Mar 26 18:52:33 2008 +0100
18838 Add support for AT91SAM9260EK
18840 Support for booting from internal DataFlash, external DataFlash card
18841 or NAND flash is available.
18843 Signed-off-by: Stelian Pop <stelian@popies.net>
18845 commit 1762f13b4aab88b685b1722f17dada247945624b
18846 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18847 Date: Mon Mar 31 21:20:49 2008 +0200
18849 AT91SAM9: Move CONFIG_HAS_DATAFLASH to Makefile
18851 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18853 commit 761712188b353494defb2b644491ff73d0daaa6f
18854 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18855 Date: Mon Mar 31 21:12:17 2008 +0200
18857 AT91CAP9ADK: Move CONFIG_CMD_NAND to Makefile
18859 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
18861 commit 983c1db04c1dd0f92e02f06d29f0c65a3d9a2687
18862 Author: Stelian Pop <stelian@popies.net>
18863 Date: Wed Mar 26 20:52:32 2008 +0100
18865 Port AT91CAP9 to the new headers
18867 Adapt the existing AT91CAP9 code to the new headers and APIs.
18869 Signed-off-by: Stelian Pop <stelian@popies.net>
18871 commit 177e8a5ac81bbc531a1d54abdb47f2860266c3aa
18872 Author: Stelian Pop <stelian@popies.net>
18873 Date: Wed Mar 26 19:52:31 2008 +0100
18875 Finish header files reworking
18877 Replace AT91CAP9.h file with several splitted header files coming
18878 from the Linux kernel.
18880 This is part 2 of the replacement: more header imports and edits.
18882 Signed-off-by: Stelian Pop <stelian@popies.net>
18884 commit 6d1dbbbf9fdf727384002e553e615c15d8b967f4
18885 Author: Stelian Pop <stelian@popies.net>
18886 Date: Wed Mar 26 19:52:30 2008 +0100
18888 Import several header files from Linux
18890 Replace AT91CAP9.h file with several splitted header files coming
18891 from the Linux kernel.
18893 This is part 1 of the replacement: pristine header files import.
18895 Signed-off-by: Stelian Pop <stelian@popies.net>
18897 commit a8a78f2d99dc1bd30dc3595da118539b506c6118
18898 Author: Stelian Pop <stelian@popies.net>
18899 Date: Wed Mar 26 20:52:28 2008 +0100
18901 Move at91cap9 specific files to at91sam9 directory
18903 AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a
18904 common infrastructure can be used. Let this infrastructure be
18905 named after the AT91SAM9 family, and move the existing AT91CAP9
18906 files to the new place.
18908 Signed-off-by: Stelian Pop <stelian@popies.net>
18910 commit 61106a565870ff503f92b251b94bd7afef889a04
18911 Author: Stelian Pop <stelian@popies.net>
18912 Date: Wed Mar 26 21:52:27 2008 +0100
18914 Use timer_init() instead of board supplied interrupt_init()
18916 The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by
18917 the board, so use timer_init() instead of interrupt_init().
18919 Signed-off-by: Stelian Pop <stelian@popies.net>
18921 commit 5604e2178c5218fbfdba2e4293ca7652e829ac25
18922 Author: Stelian Pop <stelian@popies.net>
18923 Date: Wed Mar 26 21:52:36 2008 +0100
18925 Cleanup DataFlash partition handling
18927 DataFlash partition information has become a mess. This patch
18928 defines a single partition scheme for Atmel DataFlashes. This partition
18929 scheme will be used by all AT91CAP9 and AT91SAM9 boards.
18931 Signed-off-by: Stelian Pop <stelian@popies.net>
18933 commit 9b46432fc65ce0f0826b32e4f15c15b33ccb8d42
18934 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18935 Date: Fri Mar 28 08:47:45 2008 -0500
18937 ColdFire: Fix alignment issue after CONFIG_IDENT_STRING in start.S
18939 When the version_string function in start.S is not 4-byte align,
18940 it will cause the compiler generates "unaligned opcodes detected
18941 in executable segment". This issue affects all ColdFire CPUs.
18942 By adding .align 4 after CONFIG_IDENT_STRING, it will pad 0's if
18945 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18946 Acked-by: John Rigby <jrigby@freescale.com>
18948 commit bae61eefe15b4d454060a7140e49ae58322be803
18949 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18950 Date: Tue Mar 25 15:41:15 2008 -0500
18952 ColdFire: Add dspi and serial flash support for MCF5445x
18954 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18955 Acked-by: John Rigby <jrigby@freescale.com>
18957 commit 48ead7a7a922fceaf494e352abfab8216a41b417
18958 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18959 Date: Tue Mar 18 17:37:01 2008 -0500
18961 ColdFire: Remove R5200 board
18963 This board never went into production
18965 Signed-off-by: Zachary P. Landau <zachary.landau@labxtechnologies.com>
18966 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18967 Acked-by: John Rigby <jrigby@freescale.com>
18969 commit 545c8e0a7cd3ca9d3846668f69b0d201250abea8
18970 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
18971 Date: Thu Jan 24 14:02:32 2008 -0600
18973 ColdFire: Added M5275EVB support.
18975 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
18976 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18977 Acked-by: John Rigby <jrigby@freescale.com>
18979 commit f71d9d91a2cd9c30b2b6369f15c1a46c11537c2b
18980 Author: Matthew Fettke <[matthew.fettke@gmail.com]>
18981 Date: Mon Feb 4 15:38:20 2008 -0600
18983 ColdFire: Added MCF5275 cpu support.
18985 Signed-off-by: Matthew Fettke <mfettke@videon-central.com>
18986 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18987 Acked-by: John Rigby <jrigby@freescale.com>
18989 commit 44e5b9edab077aba6e9b849afa4b7fbd8fd7b02b
18990 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18991 Date: Mon Mar 17 12:14:11 2008 -0500
18993 ColdFire: Define bootdelay in configuration file for M52277EVB
18995 Signed-off-by: Matt Wadel <Matt.Waddel@freescale.com>
18996 Acked-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
18997 Acked-by: John Rigby <jrigby@freescale.com>
18999 commit 77878f16cedee17161ff2336990970fffc6cea35
19000 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19001 Date: Mon Mar 17 12:09:07 2008 -0500
19003 ColdFire: Fix second memory Chipselect for M5475EVB
19005 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19006 Acked-by: John Rigby <jrigby@freescale.com>
19008 commit 43d60642395a550956cb21d287c8cfa563913d28
19009 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19010 Date: Thu Mar 13 14:26:32 2008 -0500
19012 ColdFire: Update correct FLASHBAR and RAMBAR1 for MCF5282
19014 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19015 Acked-by: John Rigby <jrigby@freescale.com>
19017 commit eb14ebe813a0cb5d47905228da446a5ad692473b
19018 Author: Larry Johnson <lrj@acm.org>
19019 Date: Sun Mar 30 20:33:04 2008 -0500
19021 ppc4xx: Add CFG_MEM_TOP_HIDE to Denali SPD-based SDRAM setup
19023 Signed-off-by: Larry Johnson <lrj@acm.org>
19025 commit 02e3892021112f21067d9ed1d04ae4182725ba52
19026 Author: Stefan Roese <sr@denx.de>
19027 Date: Mon Mar 31 12:20:48 2008 +0200
19029 ppc4xx: Small whitespace fix of esd patches
19031 Signed-off-by: Stefan Roese <sr@denx.de>
19033 commit 034394abb524785047c815f00dde8cdbdc1593c5
19034 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19035 Date: Sun Mar 30 18:52:44 2008 +0200
19037 ppc4xx: Cleanup PMC440 board support
19039 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19041 commit a6cc6c37188d85c25d167a4515da86f48d9a583e
19042 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19043 Date: Sun Mar 30 18:52:06 2008 +0200
19045 ppc4xx: Add ptm configuration variables for PMC440
19047 Add support for the ptm1la, ptm1ms, ptm2la and ptm2ms
19048 environment variables.
19050 Cleanup pci_target_init.
19052 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19054 commit 7c91f51a2fe296909147f1646a1412729dd10b1d
19055 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19056 Date: Sun Mar 30 18:01:15 2008 +0200
19058 ppc4xx: Minor updates for DU440 boards
19060 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
19062 commit d5bffeb868d6b4d462f558dac43011027b6644b7
19063 Author: Mike Frysinger <vapier@gentoo.org>
19064 Date: Tue Feb 19 00:54:20 2008 -0500
19066 Blackfin: cleanup and overhaul common board init functions
19068 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19070 commit b86b3416f874358acaf07519e7620cdb2145f75b
19071 Author: Mike Frysinger <vapier@gentoo.org>
19072 Date: Tue Feb 19 00:50:58 2008 -0500
19074 Blackfin: cleanup lib_blackfin/cache.c
19076 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19078 commit 9171fc81722c20fdb5a829a58b17c9eaadd5fb44
19079 Author: Mike Frysinger <vapier@gentoo.org>
19080 Date: Sun Mar 30 15:46:13 2008 -0400
19082 Blackfin: unify cpu and boot modes
19084 All of the duplicated code for Blackfin processors and boot modes have been
19085 unified. After all, the core is the same for all processors, just the
19086 peripheral set differs (which gets handled in the drivers).
19088 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19090 commit 880cc4381ea8360248cddcdf87a64566745a5724
19091 Author: Stelian Pop <stelian@popies.net>
19092 Date: Wed Mar 26 22:52:35 2008 +0100
19094 Fix CFG_NO_FLASH compilation.
19096 Many Atmel boards have no "real" (NOR) flash on board, and rely only
19097 on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to
19098 be present in a board configuration file, while still enabling flash
19099 commands like 'flinfo', 'protect', etc.
19101 Signed-off-by: Stelian Pop <stelian@popies.net>
19103 commit 9ce7e53abd039decea1af67aec81bbd5df7a2593
19104 Author: Mike Frysinger <vapier@gentoo.org>
19105 Date: Tue Feb 19 00:58:13 2008 -0500
19107 Blackfin: BF537-stamp: cleanup spi flash driver
19109 This punts the old spi flash driver for a new/generalized one until the
19110 common one can be integrated.
19112 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
19114 commit bb8e3cf25bc0b04936c0c1a075985dd8700a244b
19115 Author: Ben Warren <biggerbadderben@gmail.com>
19116 Date: Sun Mar 30 11:34:34 2008 -0400
19118 Fix macro typo in common/cmd_mii.c
19120 This typo was introduced in commit 233a8bcd94997f3f345833a3b82e836222f2a206. I
19121 actually applied the wrong patch.
19123 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19125 commit f1b985f2d724ccaa4d3def07917f0caaf18fa77d
19126 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19127 Date: Sun Mar 30 16:39:53 2008 +0200
19129 use correct at91rm9200 register name in m501sk board
19131 This fixes a naming bug for at91rm9200 lowlevel init code:
19132 NOR boot flash is on chipselect 0, not chipselect 2. This
19133 makes code use the register name from chip datasheets.
19135 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
19137 commit 480ed1dea103a1c8f4591afc77d2de3c7868d983
19138 Author: David Brownell <david-b@pacbell.net>
19139 Date: Fri Jan 18 12:55:00 2008 -0800
19141 use correct at91rm9200 register name
19143 This fixes a naming bug for at91rm9200 lowlevel init code:
19144 NOR boot flash is on chipselect 0, not chipselect 2. This
19145 makes code use the register name from chip datasheets.
19147 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
19149 commit a3543d6dc52b0ba9c64016687cf32d600b31a476
19150 Author: David Brownell <david-b@pacbell.net>
19151 Date: Fri Jan 18 12:45:45 2008 -0800
19153 add missing ARM boards to MAKEALL
19155 Add some missing ARM boards to MAKEALL. These build correctly,
19156 unlike several of the boards already listed.
19158 Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
19160 commit 066bebd6353e33af3adefc3404560871699e9961
19161 Author: Peter Pearse <peter.pearse@arm.com>
19162 Date: Sun Mar 30 11:34:09 2008 +0100
19164 Bracket READ_TIMER macro in cpu/arm1136/omap24xx/interrupts.c
19165 to prevent compilation error.
19167 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
19169 commit 7a837b7310166ae8fc8b8d66d7ef01b60a80f9d6
19170 Author: Guennadi Liakhovetski <[lg@denx.de]>
19171 Date: Sun Mar 30 11:32:30 2008 +0100
19173 Support for the MX31ADS evaluation board from Freescale
19175 This patch adds support for the MX31ADS evaluation board from Freescale,
19176 initialization code is copied from RedBoot sources, also provided by Freescale.
19178 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19180 commit c88ae20580b2b01487b4cdcc8b2a113f551aee36
19181 Author: Sascha Hauer <s.hauer@pengutronix.de>
19182 Date: Sun Mar 30 11:32:27 2008 +0100
19184 Phytec Phycore-i.MX31 support
19186 This patch adds support for the Phytec Phycore-i.MX31 board
19188 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
19189 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19191 commit a147e56f03871bba4f05058d5e04ce7deb010b04
19192 Author: Sascha Hauer <s.hauer@pengutronix.de>
19193 Date: Sun Mar 30 11:32:24 2008 +0100
19195 mx31 litekit support
19197 This patch adds support for the mx31 litekit board
19199 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
19200 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19202 commit d6674e0e2a6a1f033945f78838566210d3f28c95
19203 Author: Sascha Hauer <s.hauer@pengutronix.de>
19204 Date: Sun Mar 30 11:32:21 2008 +0100
19206 add SMSC LAN9x1x Network driver
19208 This patch adds a driver for the following smsc network controllers:
19216 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
19217 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19219 commit 8c8463cce44d849e37744749b32d38e1dfb12e50
19220 Author: Sascha Hauer <s.hauer@pengutronix.de>
19221 Date: Sun Mar 30 11:32:16 2008 +0100
19223 add an i2c driver for mx31
19225 This patch adds an i2c driver for Freescale i.MX processors
19227 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
19228 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19230 commit c98b47ad24b2d91f41c09a3d62d7f70ad84f4b7d
19231 Author: Sascha Hauer <s.hauer@pengutronix.de>
19232 Date: Sun Mar 30 11:30:43 2008 +0100
19234 core support for Freescale mx31
19236 This patch adds the core support for Freescale mx31
19238 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
19239 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19241 commit 8bf69d81782619187933a605f1a95ee1d069478d
19242 Author: Sascha Hauer <s.hauer@pengutronix.de>
19243 Date: Sun Mar 30 11:28:46 2008 +0100
19245 Separate omap24xx specific code from arm1136
19247 Move omap24xx code to cpu/arm1136/omap24xx, rename include/asm-arm/arch-arm1136 to cpu/arm1136/omap24xx.
19249 Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
19250 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
19252 commit 8c16cb0d3b971f46fbe77c072664c0f2dcd4471d
19253 Author: Peter Pearse <peter.pearse@arm.com>
19254 Date: Sun Mar 30 11:23:05 2008 +0100
19256 Add pmdra into MAKEALL
19258 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
19260 commit a574a73852a527779234e73e17e7597fd8128882
19261 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
19262 Date: Sun Mar 30 11:21:58 2008 +0100
19264 Adds support for the Prodrive PMDRA board, based on a DM6441
19266 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
19268 commit 1377b5583a48021d983e1fd565f7d40c89e84d63
19269 Author: Pieter Voorthuijsen <[pieter.voorthuijsen@Prodrive.nl]>
19270 Date: Sun Mar 30 11:11:34 2008 +0100
19272 Removes all board specific code from the arch. part for DM644x (DaVinci) boards
19274 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
19276 commit 1704dc20917b4f71e373e2c888497ee666d40380
19277 Author: Dirk Behme <dirk.behme@gmail.com>
19278 Date: Sun Mar 30 11:09:01 2008 +0100
19280 - Remove *_masked() functions as noted by Wolfgang
19281 - Adapt register naming to recent TI spec (sprue26, March 2007)
19282 - Fix reset_timer() handling
19283 - As reported by Pieter [1] the overflow fix introduced a
19284 delay of factor 16 (e.g 2 seconds became 32). While the
19285 overflow fix is basically okay, it missed to divide udelay by
19287 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/38179
19288 - Remove software division of timer count value (DIV(x)
19289 macro) and do it in hardware (TIM_CLK_DIV).
19290 Many thanks to Troy Kisky <troy.kisky@boundarydevices.com>
19291 and Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl> for
19292 the hints & testing!
19294 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
19296 Acked-by: Pieter Voorthuijsen <pieter.voorthuijsen@Prodrive.nl>
19298 commit ac3315c26e143c31680750c9c13f027efbcc887e
19299 Author: Andre Schwarz <andre.schwarz@matrix-vision.de>
19300 Date: Thu Mar 6 16:45:44 2008 +0100
19302 new PHY @ e1000 - 2nd try
19304 Add 82541ER device with latest integrated IGP2 PHY.
19305 Introduced CONFIG_E1000_FALLBACK_MAC for NIC bring-up with empty eeprom.
19307 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
19308 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19310 commit c2b7da552293b50c9c9e46ed71267b02c2de9ea8
19311 Author: Daniel Hellstrom <daniel@gaisler.com>
19312 Date: Fri Mar 28 20:22:53 2008 +0100
19314 SPARC/LEON3: Added GRETH Ethernet 10/100/1000 driver.
19316 GRETH is an Ethernet 10/100 or 10/100/1000 MAC with out without
19317 a debug link (EDCL). The GRETH core is documented in GRIP.pdf
19318 available at www.gaisler.com.
19320 If the GRETH has GigaBit support (GBIT, Scatter gather, checksum
19321 offloading etc.) can be determined by a bit in the control register.
19322 The GBIT MAC is supported by operating in GRTEH 10/100 legacy mode.
19324 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
19325 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19327 commit 233a8bcd94997f3f345833a3b82e836222f2a206
19328 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
19329 Date: Mon Mar 17 17:08:22 2008 -0500
19331 Add CONFIG_MII_INIT in cmd_mii.c
19333 Provide common configuration in do_mii() to execute mii_init()
19334 for all cpu architectures
19336 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19337 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19339 commit f605479de2deb11e834f31dfdb0af107c86aced6
19340 Author: Tsi-Chung Liew <Tsi-Chung.Liew@freescale.com>
19341 Date: Mon Mar 17 17:08:16 2008 -0500
19343 ColdFire: Fix FEC transmit issue for MCF5275
19345 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
19346 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19348 commit d9a2f416d6ac6058cd7845033ae4dc32ef1c0746
19349 Author: Aras Vaichas <arasv@magtech.com.au>
19350 Date: Wed Mar 26 09:43:57 2008 +1100
19352 DHCP request fix for Windows Server 2003
19354 Added option CONFIG_BOOTP_DHCP_REQUEST_DELAY. This provides an optional
19355 delay before sending "DHCP Request" in net/bootp.c. Required to overcome
19356 interoperability problems with Windows Server 200x DHCP server when U-Boot
19357 client responds too fast for server to handle.
19359 Signed-off-by: Aras Vaichas <arasv@magtech.com.au>
19360 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
19362 commit 97bf85d784fbed485e652eb907589ad0d5cb7262
19363 Author: Daniel Hellstrom <daniel@gaisler.com>
19364 Date: Fri Mar 28 20:40:19 2008 +0100
19366 MTD/CFI: flash_read64 is defined a weak function (for SPARC)
19368 SPARC has implemented __raw_readq, it reads 64-bit from any 32-bit address.
19369 SPARC CPUs implement flash_read64 which calls __raw_readq.
19371 For current SPARC architectures (LEON2 and LEON3) each read from the
19372 FLASH must lead to a cache miss. This is because FLASH can not be set
19373 non-cacheable since program code resides there, and alternatively disabling
19374 cache is poor from performance view, or doing a cache flush between each
19375 read is even poorer.
19377 Forcing a cache miss on a SPARC is done by a special instruction "lda" -
19378 load alternative space, the alternative space number (ASI) is processor
19379 implementation spcific and can be found by including <asm/processor.h>.
19381 Signed-off-by: Daniel Hellstrom <daniel@gaisler.com>
19383 commit 70431e8a7393b6b793f77957f95b999fc9a269b8
19384 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
19385 Date: Fri Mar 28 15:41:25 2008 +0100
19387 Make MPC83xx one step closer to full relocation.
19389 Remove a few absolute references to CFG_MONITOR_BASE for ppc/mpc83xx
19390 and use GOT relative reference.
19392 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
19393 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19395 commit 5b2793a3f3de34d439232b05acc8af67a028fd35
19396 Author: Michael Barkowski <michael.barkowski@freescale.com>
19397 Date: Thu Mar 27 14:34:43 2008 -0400
19399 mpc8323erdb: fix EEPROM page size and get MAC from EEPROM
19401 This patch fixes eeprom page size so that you can now write more than
19402 64 bytes at a time.
19404 It also makes the board take MAC addresses, if found, from EEPROM.
19406 User should place up to 4 addresses at offset 0x7f00, for
19407 eth{,1,2,3}addr. Any unused addresses should be zero. This group of
19408 four six-byte values should have it's CRC at the end. crc32 and
19409 eeprom commands can be used to accomplish this.
19411 If CRC fails, MAC addresses come from the environment. If CRC
19412 succeeds, the environment is overwritten at startup.
19414 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
19415 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19417 commit 8f325cff31f6e745e6540014b131b9a97f61944c
19418 Author: Michael Barkowski <michael.barkowski@freescale.com>
19419 Date: Fri Mar 28 15:15:38 2008 -0400
19421 mpc8323erdb: define CONFIG_PCI_SKIP_HOST_BRIDGE
19423 Commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2 broke the onboard USB
19424 controller on the PCI bus in Linux on the MPC8323ERDB.
19426 This fixes it by defining CONFIG_PCI_SKIP_HOST_BRIDGE in the board's
19429 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
19430 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19432 commit e5c4ade4db1e16d3e5d4a7887f34e10e516ed3a9
19433 Author: Kim Phillips <kim.phillips@freescale.com>
19434 Date: Fri Mar 28 10:19:07 2008 -0500
19436 mpc83xx: cleanup System Part and Revision ID Register (SPRIDR) code
19438 in the spirit of commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6,
19439 85xx's "Update SVR numbers to expand support", simplify SPRIDR processing
19440 and processor ID display. Add REVID_{MAJ,MIN}OR macros to make
19441 REVID dependent code simpler. Also added PARTID_NO_E and IS_E_PROCESSOR
19442 convenience macros.
19444 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19446 commit 81fd52c6c8fd19f0b7856b98217ce37c46c521af
19447 Author: Kim Phillips <kim.phillips@freescale.com>
19448 Date: Fri Mar 28 10:18:53 2008 -0500
19450 mpc83xx: display ddr frequency in board_add_ram_info banner
19452 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19454 commit 35cf155c5ec1ceab2849fa5b6aa3d9a3e9e6f482
19455 Author: Kim Phillips <kim.phillips@freescale.com>
19456 Date: Fri Mar 28 10:18:40 2008 -0500
19458 mpc83xx: unreinvent mem_clk
19460 delete ddr_clk and use mem_clk instead. Rename other ddr_*_clk to
19461 mem_*_clk for consistency's sake.
19463 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19465 commit 730e792926ca3fe4dd1b734a3bf44e55afa6f536
19466 Author: Kim Phillips <kim.phillips@freescale.com>
19467 Date: Fri Mar 28 14:31:23 2008 -0500
19469 mpc83xx: enable the SATA interface on mpc8315 rdb and mpc837x rdb boards
19471 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19473 commit 2eeb3e4fc54ef2f5d574dafd42c6ce93afa30393
19474 Author: Dave Liu <r63238@freescale.com>
19475 Date: Wed Mar 26 22:57:19 2008 +0800
19477 mpc83xx: enable the SATA interface on mpc837xemds board
19479 Enable the first two SATA interfaces on MPC837xEMDS board,
19480 The two SATA ports are on LYNX1. (SATA0/1 on J4/5)
19482 Signed-off-by: Dave Liu <daveliu@freescale.com>
19483 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19485 commit 6f8c85e8d1865730c158d9ef5a06c70c3a10600a
19486 Author: Dave Liu <r63238@freescale.com>
19487 Date: Wed Mar 26 22:56:36 2008 +0800
19489 mpc83xx: initialize serdes for MPC837xEMDS boards
19491 This patch is stolen from Anton Vorontsov's patch
19492 for mpc837xerdb boards.
19494 The reference clk and xcorevdd voltage of serdes1/2
19495 is same between mpc837xemds and mpc837xerdb.
19497 8377E: LYNX1- 2 SATA LYNX2- 2 PCIE
19498 8378E: LYNX1- 2 SGMII LYNX2- 2 PCIE
19499 8379E: LYNX1- 2 SATA LYNX2- 2 SATA
19501 Signed-off-by: Dave Liu <daveliu@freescale.com>
19502 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
19504 commit cc8e839abc80887ae832767b5930d40edd6d7eb7
19505 Author: Stefan Roese <sr@denx.de>
19506 Date: Fri Mar 28 14:09:04 2008 +0100
19508 ppc4xx: Canyonlands: Print SATA/PCIe configuration and board revision
19510 Canyonlands (460EX) shares the first PCIe interface with the SoC SATA
19511 interface. This usage can be configured with the jumper J6. This patch
19512 displays the current configuration upon bootup and changes the PCIe
19513 init loop, to only initialize the availabel PCIe slots.
19515 Signed-off-by: Stefan Roese <sr@denx.de>
19517 commit 90447ecbbac8572457b6d8903073ac3f120995ba
19518 Author: Tor Krill <tor@excito.com>
19519 Date: Fri Mar 28 11:29:10 2008 +0100
19521 MTD/CFI: Add support for 16bit legacy AMD flash
19523 Add entry for 512Kx16 AMD flash to jedec_table.
19524 Read out 16bit device id if chipwidth is 16bit.
19525 Fixed coding style after Stefans feedback
19527 Signed-off-by: Tor Krill <tor@excito.com>
19529 commit 5e12e75d17c4b15a310a45cd78fe71b7698a8a8e
19530 Author: Stefan Roese <sr@denx.de>
19531 Date: Fri Mar 28 11:02:53 2008 +0100
19533 ppc: Small change to CFG_MEM_TOP_HIDE description
19535 Signed-off-by: Stefan Roese <sr@denx.de>
19537 commit 280df59a8d62c6e74c281b1cb7e2052df4d6cb00
19538 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19539 Date: Thu Mar 27 15:44:12 2008 +0900
19541 sh: Add support stat structure and stat.h
19543 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19545 commit 4be9eb789e72b845d6693cc36b70a0b3529b3f09
19546 Author: Mark Jonas <toertel@gmail.com>
19547 Date: Sat Mar 22 19:27:52 2008 +0100
19549 sh: Removed warning when compiling drivers/serial/serial_sh.c.
19551 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
19552 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19554 commit f309fa38929ffba71230c02330ffa42f4bba6333
19555 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19556 Date: Wed Mar 12 18:02:57 2008 +0900
19558 sh: Remove disable_ctrlc function from R7780MP
19560 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19562 commit 6f4b266ff2a4fcc2bff985d6a217852469afddb3
19563 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19564 Date: Wed Mar 12 17:55:15 2008 +0900
19566 sh: Add maintainer of R7780MP to MAINTAINER file
19568 Update MAINTAINER entry for R7780MP. And fix maintainer's name.
19570 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19572 commit f5e2466f7baa887a7df0c536333eea8231333497
19573 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19574 Date: Tue Mar 25 17:11:24 2008 +0900
19576 sh: Add support Renesas Solutions R2D plus board
19578 R2D plus is SH reference board used with SH7751R.
19579 This board has 266Mhz CPU, 64MB SDRAM, Cardbus, CF interface,
19580 one PCI bus, VGA, and two Ethernet controller.
19582 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19584 commit e92c95180bb5bc5fd4051598a9d60beaba48988d
19585 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19586 Date: Wed Mar 12 12:15:29 2008 +0900
19588 sh: Add support SH4 cache control
19590 Add support SH4 cache control and flash_cache function
19592 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19594 commit 28e5efde4d925fcb34901d0030d0648de2da7e89
19595 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19596 Date: Mon Mar 24 01:53:01 2008 +0900
19598 sh: Add support PCI host driver for SH7751/SH7751R
19600 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19602 commit ab8f4d40d069cd3cbe7563ddfe3e5f03b0c7c721
19603 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19604 Date: Mon Mar 24 02:11:26 2008 +0900
19606 sh: Move SuperH PCI driver from cpu/sh4 to drivers/pci
19608 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19610 commit 566933278101c144d75361ea682678a326c1290d
19611 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19612 Date: Wed Mar 12 12:10:28 2008 +0900
19614 sh: Add support SuperH SH7751/SH7751R
19616 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19618 commit 3313e0e26224fc9a0c445124f3455058c696df84
19619 Author: Mark Jonas <toertel@gmail.com>
19620 Date: Mon Mar 10 11:37:10 2008 +0100
19622 sh: Added support for SH7720 based board MPR2.
19624 Signed-off-by: Mark Jonas <mark.jonas@de.bosch.com>
19625 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19627 commit 3ecff1d70ae93e628fe65b3fe1fc7c9c76cdf99f
19628 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19629 Date: Thu Mar 6 14:05:53 2008 +0900
19631 sh: Fix receive FIFO level register of SH4A
19633 Receive FIFO level register is different in SH4A.
19634 Because register is different, cannot occasionally receive data.
19636 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19638 commit c133c1fb0b590662206b0eba70f4478ee0300a9a
19639 Author: Yusuke Goda <goda.yusuke@renesas.com>
19640 Date: Tue Mar 11 12:55:12 2008 +0900
19642 sh: Add support Renesas Solutions R7780MP
19644 Renesas Solutions R7780MP is a reference board on SH7780.
19645 This board has serial, 10/100 base Ethernet deivice, CF slot
19646 and VGA devices. This board can set extension board.
19647 Extension board has 10/100/1000 base Ethernet device, PCI slot,
19650 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
19651 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19653 commit 1a2334a4eb6386d7cd35d9de5fa39af2c764ad28
19654 Author: Yusuke Goda <goda.yusuke@renesas.com>
19655 Date: Wed Mar 5 14:30:02 2008 +0900
19657 sh: Add support PCI of SuperH and SH7780
19659 This patch add support PCI of SuperH base code and SH7780 specific code.
19661 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
19662 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19664 commit b55523efff2ae11f0b9ae3cc405893c32eb78156
19665 Author: Yusuke Goda <goda.yusuke@renesas.com>
19666 Date: Wed Mar 5 14:23:26 2008 +0900
19668 sh: Add support SH7780
19670 SH7780 is CPU of Renesas Technology.
19674 - DDR-SDRAM controller
19677 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
19678 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19680 commit c2042f5952a686c414031309b8f244513bf578f0
19681 Author: goda.yusuke <goda.yusuke@renesas.com>
19682 Date: Fri Jan 25 20:46:36 2008 +0900
19684 sh: Add support Renesas Solutions Migo-R board
19686 Migo-R is a board based on SH7722 and has may devices.
19687 In this patch, supported SCIF, NOR flash and Ethernet.
19689 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
19690 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
19692 commit 74d1e66d22dac91388bc538b2fe19f735edc5b82
19693 Author: Bartlomiej Sieka <tur@semihalf.com>
19694 Date: Thu Mar 27 15:06:40 2008 +0100
19696 Fix host tool build breakage, take two
19698 Revert commit 87c8431f and fix build breakage so that the build continues
19699 to work on FC systems.
19701 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
19703 commit 7e4a0d25ed18f6437bdf59ebfa49bb0edc2f24e6
19704 Author: Stefan Roese <sr@denx.de>
19705 Date: Wed Mar 19 09:36:47 2008 +0100
19707 ppc4xx: Enable ECC on LWMON5
19709 Since all ECC related problems seem to be resolved on LWMON5, this patch
19710 now enables ECC support.
19712 We have to write the ECC bytes by zeroing and flushing in smaller
19713 steps, since the whole 256MByte takes too long for the external
19716 Signed-off-by: Stefan Roese <sr@denx.de>
19718 commit 6433fa202a91a6594dd48f06807ac38ba27fa0bb
19719 Author: Larry Johnson <lrj@acm.org>
19720 Date: Mon Mar 17 11:10:35 2008 -0500
19722 ppc4xx: Updates to Korat-specific code
19724 This patch contains updates for changes for the Korat PPC440EPx board.
19725 These changes include:
19727 (1) Support for "permanent" and "upgradable" copies of U-Boot, as
19728 described in the new "doc/README.korat" file;
19730 (2) a new memory map for the registers in the board's CPLD;
19732 (3) a revised format for manufacturer's data in serial EEPROM; and
19734 (4) changes to track updates to U-Boot for the Sequoia board.
19736 Signed-off-by: Larry Johnson <lrj@acm.org>
19738 commit f766cdf89b3a2a7634b8c5869f606150e332036c
19739 Author: Markus Brunner <super.firetwister@gmail.com>
19740 Date: Thu Mar 27 10:46:25 2008 +0100
19742 ppc4xx: PPC405EP Set EMAC noise filter bits
19744 This bug was introduced with commit aee747f19b460a0e9da20ff21e90fdaac1cec359
19745 which enabled CFG_4xx_GPIO_TABLE for PPC405 and unintentionally
19746 disabled the setting of the emac noise filter bits for PPC405EP when CFG_4xx_GPIO_TABLE is set.
19748 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
19749 Signed-off-by: Stefan Roese <sr@denx.de>
19751 commit f66e2c8b25c04b79e5fb385bc8989c2de7f63991
19752 Author: Mike Nuss <mike@terascala.com>
19753 Date: Wed Feb 20 11:54:20 2008 -0500
19755 ppc4xx: Reconfigure PLL for 667MHz processor for PPC440EPx
19757 On PPC440EPx without a bootstrap I2C EEPROM, the PLL can be reconfigured
19758 after startup to change the speed of the clocks. This patch adds the
19759 option CFG_PLL_RECONFIG. If this option is set to 667, the CPU
19760 initialization code will reconfigure the PLL to run the system with a CPU
19761 frequency of 667MHz and PLB frequency of 166MHz, without the need for an
19764 Signed-off-by: Mike Nuss <mike@terascala.com>
19765 Acked-by: Stefan Roese <sr@denx.de>
19767 commit 87c8431fe24d48121f053fe67cff4ccfe097d4d1
19768 Author: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19769 Date: Thu Mar 27 09:12:40 2008 +0100
19771 new-image: Fix host tool build breakage
19773 Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
19775 commit 6fb4b640562a10daff0dbe537638d511b5b48650
19776 Author: Stefan Roese <sr@denx.de>
19777 Date: Thu Mar 27 10:24:03 2008 +0100
19779 ppc: Set CFG_MEM_TOP_HIDE to 0 if not already defined
19781 Signed-off-by: Stefan Roese <sr@denx.de>
19783 commit 9462732a3ec551c11862450902cd8ee1bedea6d9
19784 Author: Stefan Roese <sr@denx.de>
19785 Date: Wed Mar 19 10:23:43 2008 +0100
19787 ppc4xx: Add fdt support to Prodrive alpr
19789 Since this board will probably be ported to arch/powerpc in the
19790 near future, we add device tree support now. This way we are
19791 "ready" for arch/powerpc from now on.
19793 Signed-off-by: Stefan Roese <sr@denx.de>
19795 commit 511e4f9e7f7b6719e4d91d7f0fc89412b13b5150
19796 Author: Pieter Voorthuijsen <pieter.voorthuijsen@prodrive.nl>
19797 Date: Mon Mar 17 09:27:56 2008 +0100
19799 ppc4xx: Enable cache support on the ALPR board
19801 Signed-off-by: Pieter Voorthuijsen <pv@prodrive.nl>
19803 commit 14f73ca679f6fdb44cff0b7304d419db41a0ab69
19804 Author: Stefan Roese <sr@denx.de>
19805 Date: Wed Mar 26 10:14:11 2008 +0100
19807 ppc: Add CFG_MEM_TOP_HIDE option to hide memory area that doesn't get "touched"
19809 If CFG_MEM_TOP_HIDE is defined in the board config header, this specified
19810 memory area will get subtracted from the top (end) of ram and won't get
19811 "touched" at all by U-Boot. By fixing up gd->ram_size the Linux kernel
19812 should gets passed the now "corrected" memory size and won't touch it
19813 either. This should work for arch/ppc and arch/powerpc. Only Linux board
19814 ports in arch/powerpc with bootwrapper support, which recalculate the
19815 memory size from the SDRAM controller setup, will have to get fixed
19816 in Linux additionally.
19818 This patch enables this config option on some PPC440EPx boards as a workaround
19819 for the CHIP 11 errata. Here the description from the AMCC documentation:
19821 CHIP_11: End of memory range area restricted access.
19825 The 440EPx DDR controller does not acknowledge any
19826 transaction which is determined to be crossing over the
19827 end-of-memory-range boundary, even if the starting address is
19828 within valid memory space. Any such transaction from any PLB4
19829 master will result in a PLB time-out on PLB4 bus.
19832 In case of such misaligned bursts, PLB4 masters will not
19833 retrieve any data at all, just the available data up to the
19834 end of memory, especially the 440 CPU. For example, if a CPU
19835 instruction required an operand located in memory within the
19836 last 7 words of memory, the DCU master would burst read 8
19837 words to update the data cache and cross over the
19838 end-of-memory-range boundary. Such a DCU read would not be
19839 answered by the DDR controller, resulting in a PLB4 time-out
19840 and ultimately in a Machine Check interrupt. The data would
19841 be inaccessible to the CPU.
19844 Forbid any application to access the last 256 bytes of DDR
19845 memory. For example, make your operating system believe that
19846 the last 256 bytes of DDR memory are absent. AMCC has a patch
19847 that does this, available for Linux.
19849 This patch sets CFG_MEM_TOP_HIDE for the following 440EPx boards:
19850 lwmon5, korat, sequoia
19852 The other remaining 440EPx board were intentionally not included
19853 since it is not clear to me, if they use the end of ram for some
19854 other purpose. This is unclear, since these boards have CONFIG_PRAM
19855 defined and even comments like this:
19858 /* esd expects pram at end of physical memory.
19859 * So no logbuffer at the moment.
19862 It is strongly recommended to not use the last 256 bytes on those
19863 boards too. Patches from the board maintainers are welcome.
19865 Signed-off-by: Stefan Roese <sr@denx.de>
19867 commit c664bf8c3c9bb9e236891f0d8dfda883e86d159b
19868 Author: Stefan Roese <sr@denx.de>
19869 Date: Thu Mar 27 10:09:05 2008 +0100
19871 ppc4xx: Fix Canyonlands linker script (remove bogus ASSERT)
19873 Signed-off-by: Stefan Roese <sr@denx.de>
19875 commit d56a3ce179688cde61073a3690e21703d68fafd7
19876 Author: Stefan Roese <sr@denx.de>
19877 Date: Tue Mar 25 17:51:13 2008 +0100
19879 ppc4xx: Correctly pass phyiscal FLASH base address into dtb
19881 The routine ft_board_setup() configures the EBC NOR mappings for the
19882 Linux physmap_of driver. Since on 460EX/GT we remap the FLASH from
19883 0x4.fc00.0000 to 0x4.cc00.0000 because of the max. 16MByte boot-CS
19884 problem, we need to pass the corrected address here too.
19886 Signed-off-by: Stefan Roese <sr@denx.de>
19888 commit 9ad31989de12ce5c67b07c4867ead47465655c4b
19889 Author: Stefan Roese <sr@denx.de>
19890 Date: Wed Mar 19 16:35:12 2008 +0100
19892 ppc4xx: Fix compilation warning in 4xx_enet.c
19894 Signed-off-by: Stefan Roese <sr@denx.de>
19896 commit 4c9e855734c523900322a7c3cdd9099b4f51b51d
19897 Author: Stefan Roese <sr@denx.de>
19898 Date: Wed Mar 19 16:20:49 2008 +0100
19900 ppc4xx: Add AMCC Glacier 406GT eval board support
19902 This patch adds support for the AMCC Glacier 460GT eval board.
19903 The main difference to the Canyonlands board are listed here:
19905 - 4 ethernet ports instead of 2
19909 Currently EMAC2+3 are not working. This will be fixed in a later
19912 Signed-off-by: Stefan Roese <sr@denx.de>
19914 commit d8bd643141af4710d7f1b69bbab6b760de0af0a1
19915 Author: Stefan Roese <sr@denx.de>
19916 Date: Thu Mar 27 08:47:26 2008 +0100
19918 ppc4xx: Mask 'vec' with 0x1f in uic_interrupt() for bit set/clear
19920 Signed-off-by: Stefan Roese <sr@denx.de>
19922 commit b9670dd85be6e0496ef2e231043c23cad9b1d903
19923 Author: Anatolij Gustschin <agust@denx.de>
19924 Date: Wed Mar 26 21:05:43 2008 +0100
19926 Fix out of tree building issue
19928 Currently U-Boot building in some external directory
19929 doesn't work. This patch tries to fix the problem.
19931 Signed-off-by: Anatolij Gustschin <agust@denx.de>
19933 commit d4ee711d8a5c366ee3f857c26b927d12e66614ff
19934 Author: Anatolij Gustschin <agust@denx.de>
19935 Date: Wed Mar 26 18:13:33 2008 +0100
19937 README: update documentation (availability, links, etc.)
19941 Signed-off-by: Anatolij Gustschin <agust@denx.de>
19943 commit e813eae3bfeba9c0bda9d1bf9fc3d081f790972f
19944 Author: Anatolij Gustschin <agust@denx.de>
19945 Date: Wed Mar 26 17:47:44 2008 +0100
19947 Fix compilation error in cmd_usb.c
19949 This patch fixes compilation error
19950 cmd_usb.c: In function 'do_usb':
19951 cmd_usb.c:552: error: void value not ignored as it ought to be
19953 Signed-off-by: Anatolij Gustschin <agust@denx.de>
19955 commit d8c82db482d6b535d12b419d6440b88bf7091c9b
19956 Author: Timur Tabi <timur@freescale.com>
19957 Date: Fri Mar 14 17:45:29 2008 -0500
19959 Add support for setting the I2C bus speed in fsl_i2c.c
19961 Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying
19962 the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro,
19963 but fsl_i2c.c ignores it and uses conservative value when programming the
19966 Signed-off-by: Timur Tabi <timur@freescale.com>
19967 Acked-by: Andy Fleming <afleming@freescale.com>
19969 commit d049cc7f71c0d875e8f5099d1ed23666a82b8f8e
19970 Author: Wolfgang Denk <wd@denx.de>
19971 Date: Thu Mar 27 00:03:57 2008 +0100
19973 Coding style cleanup, update CHANGELOG
19975 Signed-off-by: Wolfgang Denk <wd@denx.de>
19977 commit fd0b1fe3c388a77e8fe00cdd930ca317a91198d4
19978 Author: Dave Liu <r63238@freescale.com>
19979 Date: Wed Mar 26 22:55:32 2008 +0800
19981 drivers: add the support for Freescale SATA controller
19983 Add the Freescale on-chip SATA controller driver to u-boot,
19984 The SATA controller is used on the 837x and 8315 targets,
19985 The driver can be used to load kernel, fs and dtb.
19988 - 1.5/3 Gbps link speed
19989 - LBA48, LBA28 support
19990 - DMA and FPDMA support
19991 - Two ports support
19993 Signed-off-by: Dave Liu <daveliu@freescale.com>
19995 commit bede87f4c87c3ccd868cc60ebf792e0560c6d024
19996 Author: Dave Liu <r63238@freescale.com>
19997 Date: Wed Mar 26 22:54:44 2008 +0800
19999 ata: add the readme for SATA command line
20001 Signed-off-by: Dave Liu <daveliu@freescale.com>
20003 commit cd54081cd479e542fc399b8a40651ff11a1ad849
20004 Author: Dave Liu <r63238@freescale.com>
20005 Date: Wed Mar 26 22:53:24 2008 +0800
20007 ata: enable the sata initialize on boot up
20009 Signed-off-by: Dave Liu <daveliu@freescale.com>
20011 commit 69386383c5c2b323c66495b0b0cef6a9714d83bf
20012 Author: Dave Liu <r63238@freescale.com>
20013 Date: Wed Mar 26 22:52:36 2008 +0800
20015 ata: add the fis struct for SATA
20017 Signed-off-by: Dave Liu <daveliu@freescale.com>
20019 commit ffc664e80dfb2e17de0df5ad39e91a02e9c361bc
20020 Author: Dave Liu <r63238@freescale.com>
20021 Date: Wed Mar 26 22:51:44 2008 +0800
20023 ata: add the libata support
20025 add simple libata support in u-boot
20027 Signed-off-by: Dave Liu <daveliu@freescale.com>
20029 commit 8e9bb43429e50df55fa41932cbe65841ff579220
20030 Author: Dave Liu <r63238@freescale.com>
20031 Date: Wed Mar 26 22:50:45 2008 +0800
20033 ata: make the ata_piix driver using new SATA framework
20035 original ata_piix driver is using IDE framework, not real
20036 SATA framework. For now, the ata_piix driver is only used
20037 by x86 sc520_cdp board. This patch makes the ata_piix driver
20038 use the new SATA framework, so
20040 - remove the duplicated command stuff
20041 - remove the CONFIG_CMD_IDE define in the sc520_cdp.h
20042 - add the CONFIG_CMD_SATA define to sc520_cdp.h
20044 Signed-off-by: Dave Liu <daveliu@freescale.com>
20046 commit c7057b529c3c3cb9c0ac9060686a4068f1491bbe
20047 Author: Dave Liu <r63238@freescale.com>
20048 Date: Wed Mar 26 22:49:44 2008 +0800
20050 ata: add the support for SATA framework
20052 - add the SATA framework
20053 - add the SATA command line
20055 Signed-off-by: Dave Liu <daveliu@freescale.com>
20057 commit 83c7f470a4ce94f33600f11ae85ce4dcf00aa90c
20058 Author: Dave Liu <r63238@freescale.com>
20059 Date: Wed Mar 26 22:48:18 2008 +0800
20061 ata: merge the header of ata_piix driver
20063 move the sata.h from include/ to drivers/block/ata_piix.h
20065 Signed-off-by: Dave Liu <daveliu@freescale.com>
20067 commit 9eef62804d9695425b24c87b46a61a7fa74afee0
20068 Author: Dave Liu <r63238@freescale.com>
20069 Date: Wed Mar 26 22:47:06 2008 +0800
20071 ata: merge the ata_piix driver
20073 move the cmd_sata.c from common/ to drivers/ata_piix.c,
20074 the cmd_sata.c have some part of ata_piix controller drivers.
20075 consolidate the driver to have better framework.
20077 Signed-off-by: Dave Liu <daveliu@freescale.com>
20079 commit b9e749e95354f33eb5dc6653c6db7d502adb95fe
20080 Author: Markus Klotzbuecher <mk@denx.de>
20081 Date: Wed Mar 26 18:26:43 2008 +0100
20083 USB, Storage: fix a bug introduced in commit
20084 f6b44e0e4d18fe507833a0f76d24a9aa72c123f1 that will cause usb_stor_info
20085 to only print only information on one storage device, but not for
20088 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
20090 commit 841e5edd1623f3fecb6bffc5c2f938ed7a947360
20091 Author: Anatolij Gustschin <agust@denx.de>
20092 Date: Wed Mar 26 17:47:44 2008 +0100
20094 Fix compilation error in cmd_usb.c
20096 This patch fixes compilation error
20097 cmd_usb.c: In function 'do_usb':
20098 cmd_usb.c:552: error: void value not ignored as it ought to be
20100 Signed-off-by: Anatolij Gustschin <agust@denx.de>
20101 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
20103 commit dd6c910aadf27c822f17b87eae1a9bd0b2e3aa15
20104 Author: Kumar Gala <galak@kernel.crashing.org>
20105 Date: Wed Mar 26 08:53:53 2008 -0500
20107 85xx: Add cpu_mp_lmb_reserve helper to reserve boot page
20109 Provide a board_lmb_reserve helper function to ensure we reserve
20110 the page of memory we are using for the boot page translation code.
20112 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20114 commit 79679d80021ab095e639e250ca472fe526da02e2
20115 Author: Kumar Gala <galak@kernel.crashing.org>
20116 Date: Wed Mar 26 08:34:25 2008 -0500
20118 85xx: Update multicore boot mechanism to ePAPR v0.81 spec
20120 The following changes are needed to be inline with ePAPR v0.81:
20122 * r4, r5 and now always set to 0 on boot release
20123 * r7 is used to pass the size of the initial map area (IMA)
20124 * EPAPR_MAGIC value changed for book-e processors
20125 * changes in the spin table layout
20126 * spin table supports a 64-bit physical release address
20128 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20130 commit 25eedb2c1958a13110c7de1fc809b624053cc69c
20131 Author: Jon Loeliger <jdl@freescale.com>
20132 Date: Wed Mar 19 15:02:07 2008 -0500
20134 FSL: Clean up board/freescale/common/Makefile
20136 Each file that can be built here now follows some
20137 CONFIG_ option so that they are appropriately built
20138 or not, as needed. And CONFIG_ defines were added
20139 to various board config files to make sure that happens.
20141 The other board/freescale/*/Makefiles no longer need
20142 to reach up and over into ../common to build their
20143 individually needed files any more.
20145 Boards that are CDS specific were renamed with cds_ prefix.
20147 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20149 commit a5af4b358a7caa9c0aa374d4d894bf762ec37669
20150 Author: Kumar Gala <galak@kernel.crashing.org>
20151 Date: Wed Feb 27 22:00:27 2008 -0600
20153 85xx: Fix merge duplication
20155 ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate.
20157 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20159 commit 5893b3d0a4084f87a06a5d3dc03db91206818941
20160 Author: James Yang <James.Yang@freescale.com>
20161 Date: Tue Feb 12 16:35:07 2008 -0600
20163 85xx: Expand CCSR space with more DDR controller registers.
20165 Signed-off-by: James Yang <James.Yang@freescale.com>
20166 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20167 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20169 commit a3e77fa5359b3f9f59e4e946b46d57a53057cc85
20170 Author: James Yang <James.Yang@freescale.com>
20171 Date: Fri Feb 8 18:05:08 2008 -0600
20173 85xx: Speed up get_ddr_freq() and get_bus_freq()
20175 get_ddr_freq() and get_bus_freq() used get_sys_info() each time they were
20176 called. However, get_sys_info() recalculates extraneous information when
20177 called each time. Have get_ddr_freq() and get_bus_freq() return memoized
20178 values from global_data instead.
20180 Signed-off-by: James Yang <James.Yang@freescale.com>
20181 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20183 commit e9ea679918fbc9a53fa2f2a904aac874ea736036
20184 Author: James Yang <James.Yang@freescale.com>
20185 Date: Fri Feb 8 16:46:27 2008 -0600
20187 85xx: Show DDR memory data rate in addition to the memory clock frequency.
20189 Show the DDR memory data rate in addition to the memory clock
20190 frequency. For DDR/DDR2 memories the memory data rate is 2x the
20193 Signed-off-by: James Yang <James.Yang@freescale.com>
20194 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20196 commit 591933ca6eabc440e6ed6967233aaf56fce464a3
20197 Author: James Yang <James.Yang@freescale.com>
20198 Date: Fri Feb 8 16:44:53 2008 -0600
20200 85xx: get_tbclk() speed up and rounding fix
20202 Speed up get_tbclk() by referencing pre-computed bus clock
20203 frequency value from global data instead of sys_info_t. Fix
20204 rounding of result to nearest; previously it was rounding
20207 Signed-off-by: James Yang <James.Yang@freescale.com>
20208 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20210 commit 1ced121600b2060ab2ff9f0fddd9421fd70a0dc6
20211 Author: Andy Fleming <afleming@freescale.com>
20212 Date: Wed Feb 6 01:19:40 2008 -0600
20214 Update SVR numbers to expand support
20216 FSL has taken to using SVR[16:23] as an SOC sub-version field. This
20217 is used to distinguish certain variants within an SOC family. To
20218 account for this, we add the SVR_SOC_VER() macro, and update the SVR_*
20219 constants to reflect the larger value. We also add SVR numbers for all
20220 of the current variants. Finally, to make things neater, rather than
20221 use an enormous switch statement to print out the CPU type, we create
20222 and array of SVR/name pairs (using a macro), and print out the CPU name
20223 that matches the SVR SOC version.
20225 Signed-off-by: Andy Fleming <afleming@freescale.com>
20227 commit b83eef440cf3cef816172ccbb5897ccd8e403cf3
20228 Author: Andy Fleming <afleming@freescale.com>
20229 Date: Wed Feb 6 01:12:57 2008 -0600
20231 Add the Freescale PCI device IDs
20233 Signed-off-by: Andy Fleming <afleming@freescale.com>
20235 commit 7aff0c051ad0613171cf2b9941ee48675c62e7cd
20236 Author: Kumar Gala <galak@kernel.crashing.org>
20237 Date: Thu Feb 14 11:04:23 2008 -0600
20239 85xx: Added support for multicore boot mechanism
20241 Added the cpu command that provides a generic mechanism to get status,
20242 reset, and release secondary cores in multicore processors.
20244 Added support for using the ePAPR defined spin-table mechanism on 85xx.
20246 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20247 Signed-off-by: Andy Fleming <afleming@freescale.com>
20249 commit ec2b74ffd36f02c6123725e7c2533dd2deaf4b64
20250 Author: Kumar Gala <galak@kernel.crashing.org>
20251 Date: Thu Jan 17 16:48:33 2008 -0600
20253 85xx: Added support for multicore boot mechanism
20255 Added the cpu command that provides a generic mechanism to get status,
20256 reset, and release secondary cores in multicore processors.
20258 Added support for using the ePAPR defined spin-table mechanism on 85xx.
20260 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20262 commit f69766e4b5d47ecd3aa58677a8da875694f364f2
20263 Author: Kumar Gala <galak@kernel.crashing.org>
20264 Date: Wed Jan 30 14:55:14 2008 -0600
20266 85xx: Add the concept of CFG_CCSRBAR_PHYS
20268 When we go to 36-bit physical addresses we need to keep the concept of
20269 the physical CCSRBAR address seperate from the virtual one.
20271 For the majority of boards CFG_CCSBAR_PHYS == CFG_CCSRBAR
20273 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20275 commit 5b5eb9ca5b778f763bcf332697b35cc1e747626e
20276 Author: Wolfgang Denk <wd@denx.de>
20277 Date: Wed Mar 26 15:38:47 2008 +0100
20279 Coding style cleanup.
20281 Signed-off-by: Wolfgang Denk <wd@denx.de>
20283 commit da8808df7a9cef5a3d2ee286ef9ebf9de1780660
20284 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
20285 Date: Wed Mar 26 13:02:13 2008 +0100
20287 Add CFG_RTC_DS1337_NOOSC to turn off OSC output
20289 The default settings for RTC DS1337 keeps the OSC
20290 output, 32,768 Hz, on. This add CFG_RTC_DS1337_NOOSC to
20293 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
20295 commit 438a4c11260b4ea9805039b0b4f92f9df5306b02
20296 Author: Wolfgang Denk <wd@denx.de>
20297 Date: Wed Mar 26 11:48:46 2008 +0100
20299 Cleanup coding style, update CHANGELOG
20301 Signed-off-by: Wolfgang Denk <wd@denx.de>
20303 commit 218ca724c08ca8a649f0917cf201cf23d4b33f39
20304 Author: Wolfgang Denk <wd@denx.de>
20305 Date: Wed Mar 26 10:40:12 2008 +0100
20307 README: update documentation (availability, links, etc.)
20309 Signed-off-by: Wolfgang Denk <wd@denx.de>
20311 commit f6b44e0e4d18fe507833a0f76d24a9aa72c123f1
20312 Author: Aras Vaichas <arasv@magtech.com.au>
20313 Date: Tue Mar 25 12:09:07 2008 +1100
20315 USB Storage, add meaningful return value
20317 This patch changes the "usb storage" command to return success if it
20318 finds a USB storage device, otherwise it returns error.
20320 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
20322 commit 18e69a35efbb078403db0c0063986470dad7d082
20323 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20324 Date: Fri Mar 14 23:20:18 2008 +0300
20326 83xx/fdt_support: let user specifiy FSL USB Dual-Role controller role
20328 Linux understands "host" (default), "peripheral" and "otg" (broken).
20329 Though, U-Boot doesn't restrict dr_mode variable to these values (think
20330 of renames in future).
20332 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20333 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20335 commit c7604783b236e368f225efb7b3efb418fe20b404
20336 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20337 Date: Fri Mar 14 23:20:30 2008 +0300
20339 tsec: fix link detection for the RTL8211B PHY
20341 RTL8211B sets link state register after autonegotiation complete,
20342 so with bootdelay=0 RTL8211B will report lack of the link.
20344 To fix this, we should wait for aneg to complete, even if the
20345 link is currently down.
20347 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20348 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20350 commit 7fa9cbb00dc83fcf175042b6f20c2c9bce9a15f4
20351 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20352 Date: Mon Mar 24 20:47:09 2008 +0300
20354 mpc83xx: add "fsl,soc" and "fsl,immr" compatible fixups
20356 device_type = "soc" is being deprecated, newer device trees will use
20357 "fsl,soc" and/or "fsl,immr" for the soc nodes.
20359 This patch also adds clock-frequency property for soc nodes (the same
20360 value as bus-frequency).
20362 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20364 commit 507e2d79c91441a0bb2cd3d0c31c8bfe3f8cec07
20365 Author: Joe D'Abbraccio <ljd015@freescale.com>
20366 Date: Mon Mar 24 13:00:59 2008 -0400
20368 Modified the DDR SDRAM clock control register to delay MCK/MCK_B 3/4 clock
20370 With the original value of 1/2 clock cycle delay, the system ran relatively
20371 stable except when we run benchmarks that are intensive users of memory.
20372 When I run samba connected disk with a HDBENCH test, the system locks-up
20373 or reboots sporadically.
20375 Signed-off by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
20377 commit a7ba32d480a86db5db8dcd8ca66b21b4cadda923
20378 Author: Scott Wood <scottwood@freescale.com>
20379 Date: Mon Mar 24 12:44:13 2008 -0500
20381 mpc83xx: Set PCI I/O bus-address base to zero.
20383 The device trees for these boards describe PCI I/O as starting from
20384 address zero from the device's perspective.
20386 Placing I/O elsewhere may cause problems with certain PCI boards, and may
20387 cause problems with Linux.
20389 Signed-off-by: Scott Wood <scottwood@freescale.com>
20391 commit f700e7df7fecf2d3765ae568ce77ce788cde4f3e
20392 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20393 Date: Mon Mar 24 20:47:05 2008 +0300
20395 mpc83xx: MPC8360E-RDK: use 33.3(3)MHz CLKIN/SYS_CLK
20397 At least on the "33MHz Pilot" board crystal is actually 33.3MHz.
20398 This patch fixes "system time drifting" problem.
20400 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20402 commit 3a0cfdd576dc9b16d1468d37339182607c697fb7
20403 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20404 Date: Mon Mar 24 20:47:02 2008 +0300
20406 mpc83xx: MPC8360E-RDK: define CONFIG_OF_STDOUT_VIA_ALIAS
20408 This is needed to update /choosen/linux,stdout-path properly.
20410 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20412 commit 3419eb62f088d7a22f1d2a3cebf76b77e408b5b9
20413 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20414 Date: Mon Mar 24 20:47:00 2008 +0300
20416 mpc83xx: MPC8360E-RDK: add dhcp command
20418 Plus modify environment to use it and remove bootfile env variable,
20419 it is internal and CONFIG_BOOTFILE is used for these purposes.
20421 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20423 commit d892b2dbb4087a26778bfd42470c3ea7d0e2b6aa
20424 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20425 Date: Mon Mar 24 20:46:57 2008 +0300
20427 mpc83xx: MPC8360E-RDK: rework ddr setup, enable ecc
20429 Current DDR setup easily causes memory corruption, this patch fixes it.
20431 Also fix TIMING_CFG0_MRS_CYC definition.
20433 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20435 commit d47d49cc37a38f2719a3e1b9bbe08ac810cf2d9a
20436 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20437 Date: Mon Mar 24 20:46:53 2008 +0300
20439 mpc83xx: MPC8360E-RDK: configure pario pins for AD7843 and FHCI
20441 This patch adds qe pario pins configuration for AD7843 ADC/Touchscreen
20442 controller and FHCI (QE USB).
20444 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20446 commit 7ad959490962e6842648d87d4bd795ea6cdcce67
20447 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20448 Date: Mon Mar 24 20:46:51 2008 +0300
20450 mpc83xx: MPC8360E-RDK: add support for NAND
20452 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20454 commit 9a3e832aeb491861d029991241572ebdf4b5b61b
20455 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20456 Date: Mon Mar 24 20:46:46 2008 +0300
20458 mpc83xx: MPC8360E-RDK: use RGMII_RXID interface mode
20460 This is needed for BCM PHYs to work on this board.
20462 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20464 commit 300615dc5d9b0a2022fbc6af0c13159e33fd752e
20465 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20466 Date: Mon Mar 24 20:46:34 2008 +0300
20468 uec: add support for Broadcom BCM5481 Gigabit PHY
20470 This patch adds basic support for Broadcom BCM5481 PHY.
20472 RXD-RXC delay quirk comes from MPC8360E-RDK BSP source, author is
20473 Peter Barada <peterb@logicpd.com>.
20475 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20477 commit 6a600c3a1876bc203445df4f0fd6b12648259666
20478 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20479 Date: Mon Mar 24 20:46:28 2008 +0300
20481 uec: add support for RGMII_RXID interface mode
20483 PHY drivers will use it to setup software delay between RXD and RXC
20486 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20488 commit 91cdaa3a9d7562b869d96774e9c9ddf142c0848d
20489 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20490 Date: Mon Mar 24 20:46:24 2008 +0300
20492 uec: add support for gbit mii status readings
20494 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20496 commit aabce7fb505ffe55ebf3bf4dcafdae97a581558d
20497 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20498 Date: Mon Mar 24 17:40:47 2008 +0300
20500 83xx: define CONFIG_OF_STDOUT_VIA_ALIAS for the MPC837XERDB boards
20502 This is primarily for the early console support.
20504 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20506 commit 2bd7460e9283ec98565189b3cdbcfb2bcdcdd635
20507 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20508 Date: Mon Mar 24 17:40:43 2008 +0300
20510 83xx: initialize serdes for MPC837XRDB boards
20512 On the MPC8377ERDB: 2 SATA and 2 PCI-E.
20513 On the MPC8378ERDB: 2 PCI-E
20514 On the MPC8379ERDB: 4 SATA
20516 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20518 commit 453316a2a19642d8afcbca7452e40a6b44a197b1
20519 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20520 Date: Mon Mar 24 17:40:32 2008 +0300
20522 83xx: serdes setup routines
20524 This patch adds few routines to configure serdes on 837x targets.
20526 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20528 commit a796cdf9c377cb4e5d61d1079a296608f8fbd903
20529 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20530 Date: Mon Mar 24 17:40:27 2008 +0300
20532 83xx: split COBJS onto separate lines
20534 ..plus get rid of some #ifdefs in the .c files.
20536 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20538 commit 46a3aeea73c13ab04ebf7a8739afb87ac5da94a3
20539 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
20540 Date: Mon Mar 24 17:40:23 2008 +0300
20542 83xx: nand support for MPC837XRDB boards
20544 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
20546 commit 82e45a204190593e8613145a928f998fb8c909c4
20547 Author: Jerry Van Baren <gvb.uboot@gmail.com>
20548 Date: Tue Mar 18 21:44:41 2008 -0400
20550 Enable CONFIG_FLASH_SHOW_PROGRESS on the MPC8360EMDS.
20552 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
20553 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20555 commit 0fa7a1b4719e325fce332689fb8754ec166191ff
20556 Author: Michael Barkowski <michael.barkowski@freescale.com>
20557 Date: Thu Mar 20 13:15:39 2008 -0400
20559 mpc8323erdb: remove RTC and add EEPROM
20561 There's no on-board RTC on the MPC8323ERDB, but there is an EEPROM.
20563 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
20564 Acked-by: Kim Phillips <kim.phillips@freescale.com>
20566 commit 5bbeea86eb6afb872374cd23217cb3c1018443ed
20567 Author: Michael Barkowski <michael.barkowski@freescale.com>
20568 Date: Thu Mar 20 13:15:34 2008 -0400
20570 mpc8323erdb: Improve the system performance
20572 The following changes are based on kernel UCC ethernet performance:
20574 1. Make the CSB bus pipeline depth as 4, and enable the repeat mode
20575 2. Optimize transactions between QE and CSB. Added CFG_SPCR_OPT
20576 switch to enable this setting.
20578 The following changes are based on the App Note AN3369 and
20579 verified to improve memory latency using LMbench:
20581 3. CS0_CONFIG[AP_n_EN] is changed from 1 to 0
20582 4. CS0_CONFIG[ODT_WR_CONFIG] set to 1. Was a reserved setting
20584 5. TIMING_CFG_1[WRREC] is changed from 3clks to 2clks (based on
20585 Twr=15ns, and this was already the setting in DDR_MODE)
20586 6. TIMING_CFG_1[PRETOACT] is changed from 3clks to 2clks. (based on
20588 7. TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 6clks. (based on
20590 8. TIMING_CFG_1[ACTTORW] is changed from 3clks to 2clks. (based on
20592 9. TIMING_CFG_1[REFREC] changed from 21 clks to 11clks. (based on
20594 10. TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 7clks. (based
20596 11. TIMING_CFG_2[ADD_LAT] and DDR_MODE[AL] changed from 0 to 1 (based
20599 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
20600 Acked-by: Kim Phillips <kim.phillips@freescale.com>
20602 commit fc549c871f43933396a5b3e21d897023d4b31b8d
20603 Author: Michael Barkowski <michael.barkowski@freescale.com>
20604 Date: Thu Mar 20 13:15:28 2008 -0400
20606 mpc8323erdb: use readable DDR config macros
20608 Use available shift/mask macros to define DDR configuration.
20610 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
20611 Acked-by: Kim Phillips <kim.phillips@freescale.com>
20613 commit 89c7784ed90ba50301eec521144f95111e472906
20614 Author: Timur Tabi <timur@freescale.com>
20615 Date: Fri Feb 8 13:15:55 2008 -0600
20617 83xx: Add Vitesse VSC7385 firmware uploading
20619 Update the MPC8349E-mITX, MPC8313E-RDB, and MPC837XE-RDB board files to upload
20620 the Vitesse VSC7385 firmware. Changed CONFIG_VSC7385 to CONFIG_VSC7385_ENET.
20621 Cleaned up the board header files to make selecting the VSC7385 easier to
20624 Signed-off-by: Timur Tabi <timur@freescale.com>
20625 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
20627 commit b55d98c6d5b8694e560a0e727b14cb6921d7cfcc
20628 Author: Timur Tabi <timur@freescale.com>
20629 Date: Fri Feb 8 13:15:54 2008 -0600
20631 NET: Add Vitesse VSC7385 firmware uploading
20633 The Vitesse VSC7385 is a 5-port switch found on the Freescale MPC8349E-mITX
20634 and other boards. A small firwmare must be uploaded to its on-board memory
20635 before it can be enabled. This patch adds the code which uploads firmware
20636 (but not the firmware itself).
20638 Previously, this feature was provided by a U-Boot application that was
20639 made available only on Freescale BSPs. The VSC7385 firmware must still
20640 be obtained separately, but at least there is no longer a need for a separate
20643 Signed-off-by: Timur Tabi <timur@freescale.com>
20644 Acked-by: Ben Warren <biggerbadderben@gmail.com>
20646 commit aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
20647 Author: Wolfgang Denk <wd@denx.de>
20648 Date: Wed Mar 26 00:52:10 2008 +0100
20650 Coding Style cleanyp; update CHANGELOG
20652 Signed-off-by: Wolfgang Denk <wd@denx.de>
20654 commit 43ddd9c820fec44816188f53346b464e20b3142d
20655 Author: Jerry Van Baren <gvb.uboot@gmail.com>
20656 Date: Sat Mar 22 14:23:49 2008 -0400
20658 Remove deprecated CONFIG_OF_HAS_UBOOT_ENV and CONFIG_OF_HAS_BD_T
20660 These defines embedded the u-boot env variables and/or the bd_t structure
20661 in the fdt blob. The conclusion of discussion on the u-boot email list
20662 was that embedding these in the fdt blob is not useful: there are better
20663 ways of passing the data (in fact, the fdt blob itself replaces the
20666 The only board that enables these is the stxxtc and they don't appear
20667 to be used by linux.
20669 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
20670 Acked-by: Kim Phillips <kim.phillips@freescale.com>
20672 commit 22ed2285743359fd1fe73e411dff914b2256e68f
20673 Author: Stefan Roese <sr@denx.de>
20674 Date: Mon Mar 17 10:49:25 2008 +0100
20676 rtc: Remove 2nd reference to max6900.o in drivers/rtc/Makefile
20678 Signed-off-by: Stefan Roese <sr@denx.de>
20680 commit 1bb707c39a0833e91d9f797dd862aaaaf4af264d
20681 Author: Kyungmin Park <kmpark@infradead.org>
20682 Date: Mon Mar 17 08:54:06 2008 +0900
20684 Add Flex-OneNAND booting support
20686 Flex-OneNAND is a monolithic integrated circuit with a NAND Flash array
20687 using a NOR Flash interface. This on-chip integration enables system designers
20688 to reduce external system logic and use high-density NAND Flash
20689 in applications that would otherwise have to use more NOR components.
20691 Flex-OneNAND enables users to configure to partition it into SLC and MLC areas
20692 in more flexible way. While MLC area of Flex-OneNAND can be used to store data
20693 that require low reliability and high density, SLC area of Flex-OneNAND
20694 to store data that need high reliability and high performance. Flex-OneNAND
20695 can let users take advantage of storing these two different types of data
20696 into one chip, which is making Flex-OneNAND more cost- and space-effective.
20698 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
20700 commit c512389cc4a10253249271ff6c887c6dab1f0db2
20701 Author: André Schwarz <andre.schwarz@matrix-vision.de>
20702 Date: Thu Mar 13 13:50:52 2008 +0100
20704 MPC5200: support setup without FEC
20706 Include FEC specific nodes in ft_cpu_setup only if CONFIG_MPC5xxx_FEC is
20707 defined. Systems without FEC, i.e. no FEC node in DTB, should be possible.
20709 Signed-off-by: Andre Schwarz <andre.schwarz@matrix-vision.de>
20710 Acked-by: Grant Likely <grant.likely@secretlab.ca>
20712 commit aa3511e422946041ef626f80a05ae5e8bfc700e6
20713 Author: Jon Loeliger <jdl@freescale.com>
20714 Date: Wed Mar 5 18:05:46 2008 -0600
20716 FSL: Move board/mpc8266ads under board/freescale
20718 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20720 commit 7f1d846e5c5754449c286587d099d85246062772
20721 Author: Jon Loeliger <jdl@freescale.com>
20722 Date: Wed Mar 5 18:05:47 2008 -0600
20724 FSL: Move board/mpc7448hpc2 under board/freescale
20726 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20728 commit b7e24d283e34727c2a6cdfdac2e09a426c579b73
20729 Author: Jon Loeliger <jdl@freescale.com>
20730 Date: Wed Mar 5 18:05:45 2008 -0600
20732 FSL: Move board/mpc8260ads under board/freescale
20734 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20736 commit 6a8a5dc4759867c45aa95580deb8bf26669a5d97
20737 Author: goda.yusuke <goda.yusuke@renesas.com>
20738 Date: Wed Mar 5 17:08:33 2008 +0900
20740 net: Add support AX88796L ethernet device
20742 AX88796L is device of NE2000 compatible.
20743 This patch support AX88796L ethernet device.
20745 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
20746 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20748 commit e0a6140dd381e1eed1ada2291166ef2616d8822b
20749 Author: Wolfgang Denk <wd@denx.de>
20750 Date: Tue Mar 25 22:50:41 2008 +0100
20752 ne2000 driver: change #ifdef to Makefile conditional compilation
20754 Signed-off-by: Wolfgang Denk <wd@denx.de>
20756 commit e710185aae90c64d39c2d453e40e58ceefe4f250
20757 Author: goda.yusuke <goda.yusuke@renesas.com>
20758 Date: Wed Mar 5 17:08:20 2008 +0900
20760 net: Divided code of NE2000 ethernet driver
20762 There are more devices of the NE2000 base.
20763 A present code is difficult for us to support more devices.
20764 To support more NE2000 clone devices, separated the function.
20766 Signed-off-by: Yusuke Goda <goda.yusuke@renesas.com>
20767 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
20769 commit 395bce4f59a507a60a475f7ee46bed47de9482df
20770 Author: Mike Frysinger <vapier@gentoo.org>
20771 Date: Sun Feb 24 23:58:13 2008 -0500
20773 net/Blackfin: move on-chip MAC driver into drivers/net/
20775 The Blackfin on-chip MAC driver was being managed in the BF537-STAMP board
20776 directory, but it is not board specific, so relocate it to the drivers dir
20777 so that other Blackfin ports can utilize it.
20779 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20781 commit 8a30b4700942f37495d2e67f5998cdffb6e3ba8a
20782 Author: Mike Frysinger <vapier@gentoo.org>
20783 Date: Sun Feb 24 23:52:35 2008 -0500
20785 smc91111: use SSYNC() rather than asm(ssync) for Blackfin
20787 Since the "ssync" instruction may have hardware anomalies associated with
20788 it, have the smc91111 driver use the SSYNC macro rather than invoking it
20789 directly. We workaround all the anomalies via this macro.
20791 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
20793 commit 77ff7b7444ceb8022b46114f3d0b6d18e2fd1138
20794 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
20795 Date: Sun Feb 17 22:57:47 2008 +0000
20797 8xx: Update OF support on 8xx
20799 This patch does some shifting around of OF support on 8xx.
20801 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
20803 commit 9c666a7db0b2285a270c68810889ce7d5dba304b
20804 Author: Kumar Gala <galak@kernel.crashing.org>
20805 Date: Fri Feb 15 15:16:18 2008 -0600
20807 ppc: Allow boards to specify how much memory they can map
20809 For historical reasons we limited the stack to 256M because some boards
20810 could only map that much via BATS. However newer boards are capable of
20811 mapping more memory (for example 85xx is capble of doing up to 2G).
20813 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20815 commit a6f5f317cd074bbbfa2aab4fca05904c811c19fb
20816 Author: Bryan O'Donoghue <bodonoghue@codehermit.ie>
20817 Date: Fri Feb 15 01:05:58 2008 +0000
20819 8xx : Add OF support to Adder875 board port - resubmit
20821 Signed-off-by: Bryan O'Donoghue <bodonoghue@codehermit.ie>
20823 commit d058698fd2d9f769ff38ac53c8708b3fdd314f2d
20824 Author: Kumar Gala <galak@kernel.crashing.org>
20825 Date: Thu Feb 14 20:44:42 2008 -0600
20827 Add setexpr command
20829 Add a simple expr style command that will set an env variable as the result
20830 of the command. This allows us to do simple math in shell. The following
20831 operations are supported: &, |, ^, +, -, *, /.
20833 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
20835 commit 3f105faa64b9826e088711fdfcaa70cb1230397a
20836 Author: Jon Loeliger <jdl@freescale.com>
20837 Date: Wed Mar 5 17:27:48 2008 -0600
20839 FSL: Move board/mpc7448hpc2 under board/freescale
20841 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20843 commit 449c703374a8868453425e15da7e2f76221b72e4
20844 Author: Jon Loeliger <jdl@freescale.com>
20845 Date: Wed Mar 5 17:21:43 2008 -0600
20847 FSL: Move board/mpc8266ads under board/freescale
20849 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20851 commit 5863577989ad689427bb750107e9a75f1c1645d2
20852 Author: Jon Loeliger <jdl@freescale.com>
20853 Date: Wed Mar 5 16:41:41 2008 -0600
20855 FSL: Move board/mpc8260ads under board/freescale
20857 Signed-off-by: Jon Loeliger <jdl@freescale.com>
20859 commit 8a773983957ee6c4aa344469b742f29c7d26afbd
20860 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20861 Date: Tue Mar 25 21:30:08 2008 +0900
20863 [MIPS] Move gth2_config from ARM section to MIPS
20865 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20867 commit 373b16fc0c5ae34d28b9027f809ae3cbf45cdd15
20868 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20869 Date: Tue Mar 25 21:30:07 2008 +0900
20871 [MIPS] Extend MIPS_MAX_CACHE_SIZE upto 64kB
20873 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20875 commit d98e348e2ed5aab8f7a6471ff628ab0688b8a459
20876 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20877 Date: Tue Mar 25 21:30:07 2008 +0900
20879 [MIPS] Fix dcache_status()
20881 You can't judge UNCACHED by Config.K0 LSB.
20883 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20885 commit b0c66af53ec9385ac2d1cc2e5d7d1ecdc81caf34
20886 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20887 Date: Tue Mar 25 21:30:07 2008 +0900
20889 [MIPS] Introduce _machine_restart
20891 Handles machine specific functions by using weak functions.
20893 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20895 commit decaba6f5cf386d569ac3997bebb871b966c6b18
20896 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20897 Date: Tue Mar 25 21:30:07 2008 +0900
20899 [MIPS] Cleanup CP0 Status initialization
20901 Add setup_c0_status from Linux. For the moment we disable interrupts, set
20902 CU0, mark the kernel mode, and clear ERL and EXL. This is good enough for
20903 reset-time configuration and will work well across most processors.
20905 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20907 commit d43d43ef2845af309c25a64bb9c2c5fb3261bc23
20908 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20909 Date: Tue Mar 25 21:30:07 2008 +0900
20911 [MIPS] Initialize CP0 Cause before setting up CP0 Status register
20913 Without this change, we'll be suffering from deffered WATCH exception
20914 once Status.EXL is cleared. Make sure Cause.WP is cleared.
20916 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20918 commit 26138623230ca2bad3c78e05a65527ea70c8b688
20919 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20920 Date: Tue Mar 25 21:30:07 2008 +0900
20922 [MIPS] INCA-IP: Move watchdog init code from start.S to lowlevel_init()
20924 Move things to appropriate place.
20926 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20928 commit ccf8f824ef67df028dedb29f8ea5d71a5a88d895
20929 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20930 Date: Tue Mar 25 21:30:06 2008 +0900
20932 [MIPS] Implement flush_cache()
20934 We do Hit_Writeback_Inv_D and Hit_Invalidate_I. You might think that you
20935 don't need to do Hit_Invalidate_I, but flush_cache() needs it since this
20936 function is used not only in U-Boot specfic programs but also at loading
20939 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20941 commit 2e0e5271aac917812a76c72030a2b2c6f1d3387d
20942 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20943 Date: Tue Mar 25 21:30:06 2008 +0900
20945 [MIPS] Fix I-/D-cache initialization loops
20947 Currently we do 1) Index_Store_Tag_I, 2) Fill and 3) Index_Store_Tag_I
20948 again per a loop for I-cache initialization. But according to 'See MIPS
20949 Run', we're encouraged to use three separate loops rather than combining
20950 them *for both I- and D-cache*. This patch tries to fix this.
20952 In accordance with fixing above, mips_init_[id]cache are separated from
20953 mips_cache_reset(), and rewrite cache loops are completely rewritten with
20956 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20958 commit 1898840797c7f50799377bd5b285a8a93a82c419
20959 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20960 Date: Tue Mar 25 21:30:06 2008 +0900
20962 [MIPS] Replace memory clearance code with f_fill64
20964 This routine fills memory with zero by 64 bytes, and is 64-bit capable.
20966 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20968 commit 2f5d414ccb4024dd0992ff6b22561732dbc73590
20969 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20970 Date: Tue Mar 25 21:30:06 2008 +0900
20972 [MIPS] cpu/mips/cache.S: Introduce NESTED/LEAF/END macros
20974 This patch replaces the current function definitions with NESTED, LEAF
20975 and END macro. They specify some more additional information about the
20976 function; an alignment of symbol, type of symbol, stack frame usage, etc.
20977 These information explicitly tells the assembler and the debugger about
20978 the types of code we want to generate.
20980 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20982 commit 282223a607c611425fa33f5428f8eae6636972bb
20983 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20984 Date: Tue Mar 25 11:43:17 2008 +0900
20986 [MIPS] asm headers' updates
20988 Make some asm headers adjusted to the latest Linux kernel.
20990 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20992 commit e1390801a3c1a2b6d12fa90be368efc19f5b9bfd
20993 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
20994 Date: Tue Mar 25 11:39:29 2008 +0900
20996 [MIPS] Request for the 'mips_cache_lock()' removal
20998 The initial intension of having mips_cache_lock() was to use the cache
20999 as memory for temporary stack use so that a C environment can be set up
21000 as early as possible.
21002 But now mips_cache_lock() follow lowlevel_init(). We've already have the
21003 real memory initilaized at this point, therefore we could/should use it.
21004 No reason to lock at all.
21008 Cache locking is not consistent across MIPS implementaions. Some imple-
21009 mentations don't support locking at all. The style of locking varies -
21010 some support per line locking, others per way, etc. Some parts use bits
21011 in status registers instead of cache ops. Current mips_cache_lock() is
21012 not necessarily general-purpose.
21014 And this is worthy of special mention; once U-Boot/MIPS locks the lines,
21015 they are never get unlocked, so the code relies on whatever gets loaded
21016 after U-Boot to re-initialize the cache and clear the locks. We're sup-
21017 posed to have CFG_INIT_RAM_LOCK and unlock_ram_in_cache() implemented,
21018 but leave the situation as it is for a long time.
21020 For these reasons, I proposed the removal of mips_cache_lock() from the
21021 global start-up code.
21023 This patch adds CFG_INIT_RAM_LOCK_MIPS to make existing users aware that
21024 *things have changed*. If he wants the same behavior as before, he needs
21025 to have CFG_INIT_RAM_LOCK_MIPS in his config file.
21027 If we don't have any regression report through several releases, then
21028 we'll remove codes entirely.
21030 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
21031 Acked-by: Andrew Dyer <amdyer@gmail.com>
21033 commit 0d48926c87ec96f974a6ac4034f4a2f2eab3255f
21034 Author: Yuri Tikhonov <yur@emcraft.com>
21035 Date: Mon Mar 24 11:30:54 2008 +0100
21037 lwmon5 SYSMON POST: fix backlight control
21039 If the LWMON5 config has SYSMON POST among CONFIG_POSTs which may be
21040 run on the board, then the SYSMON POST controls the display backlight
21041 (doesn't switch backlight ON if POST FAILED, and does switch the
21042 backlight ON if PASSED).
21044 If not, then the video driver controls the display backlight (just
21045 switch ON the backlight upon initialization).
21047 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21049 commit ff2bdfb2c1e073f65c065011f1e18d0a130bd3d8
21050 Author: Yuri Tikhonov <yur@emcraft.com>
21051 Date: Mon Mar 24 11:29:14 2008 +0100
21053 lwmon5 SYSMON POST: fix handling of negative temperatures
21055 Fix errors in the LWMON5 Sysmon POST for negative temperatures.
21057 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21059 commit 55774b512fdf63c0516d441cc5da7c54bbffb7f2
21060 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21061 Date: Fri Mar 7 16:04:25 2008 +0900
21063 pci: Add CONFIG_PCI_SKIP_HOST_BRIDGE config option
21065 In current source code, when the device number of PCI is 0, process PCI
21066 bridge without fail. However, when the device number is 0, it is not PCI
21067 always bridge. There are times when device of PCI allocates.
21069 When CONFIG_PCI_SKIP_HOST_BRIDGE is enable, this problem is solved when
21072 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
21073 Acked-by: Stefan Roese <sr@denx.de>
21075 commit 86aea3eaefa248ffb9328e2b50c64720489cdbeb
21076 Author: Yuri Tikhonov <yur@emcraft.com>
21077 Date: Fri Mar 21 09:18:40 2008 +0100
21079 LWMON5: fix dsPIC POST
21081 Add test for DPIC_SYS_ERROR_REG to be zero in the LWMON5 dsPIC POST.
21083 Signed-off-by: Yuri Tikhonov <yur@emcraft.com> ---
21085 commit 388b82fddc7c05596f3f615f190da0448227dc82
21086 Author: Bartlomiej Sieka <tur@semihalf.com>
21087 Date: Thu Mar 20 23:23:13 2008 +0100
21089 [new uImage] Enable new uImage support for the pcs440ep board.
21091 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21093 commit 95f4ec2b9c910c7261e6f060ea530d58b039692d
21094 Author: Bartlomiej Sieka <tur@semihalf.com>
21095 Date: Thu Mar 20 23:23:13 2008 +0100
21097 [new uImage] Do not compile new uImage format support by default
21099 Disable default building of new uImage format support in preparation
21100 for merge with the master. Support for new format can be enabled on
21101 a per-board basis, by defining the following in the board's config file:
21103 #define CONFIG_FIT 1
21104 #define CONFIG_OF_LIBFDT 1
21106 This can be optionally defined to give more verbose output:
21108 #define CONFIG_FIT_VERBOSE 1 /* enable fit_format_{error,warning}() */
21110 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21112 commit dafaede8a46c7159310239e036c93e31c6374487
21113 Author: Bartlomiej Sieka <tur@semihalf.com>
21114 Date: Thu Mar 20 23:20:31 2008 +0100
21116 [new uImage] Disable debuging output in preparation for merge with master
21118 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21120 commit fbe7a155027beacebaee9b32e1ada781fe924bca
21121 Author: Bartlomiej Sieka <tur@semihalf.com>
21122 Date: Thu Mar 20 19:38:45 2008 +0100
21124 [new uImage] Compilation and new uImage handling fixes for imxtract
21126 Fix imxtract command not being compiled-in despite CONFIG_CMD_XIMG being in
21127 include/config_cmd_default.h. Fix few warnings and handling of new format
21130 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21132 commit 36cc8cbb3379d5166f882641123521735c469f92
21133 Author: Bartlomiej Sieka <tur@semihalf.com>
21134 Date: Thu Mar 20 23:10:19 2008 +0100
21136 [new uImage] Fix autoscr command used with new uImage format
21138 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21140 commit 43142e817f0597be412e7cbe19413f5532eafa5d
21141 Author: Bartlomiej Sieka <tur@semihalf.com>
21142 Date: Thu Mar 20 23:10:19 2008 +0100
21144 [new uImage] Fix *.its files location in documentation
21146 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21148 commit 81a0ac62ea29f8252d0a714709d0ecfdbba2a15e
21149 Author: Wolfgang Denk <wd@denx.de>
21150 Date: Thu Mar 20 22:01:38 2008 +0100
21152 lwmon5 POST: remove unreachable code
21154 plus some coding style cleanup
21156 Signed-off-by: Wolfgang Denk <wd@denx.de>
21158 commit b73a19e1609d0f705cbab8014ca17aefe89e4c76
21159 Author: Yuri Tikhonov <yur@emcraft.com>
21160 Date: Thu Mar 20 17:56:04 2008 +0300
21162 LWMON5: POST RTC fix
21164 Modify the RTC API to provide one a status for the time reported by
21165 the rtc_get() function:
21166 0 - a reliable time is guaranteed,
21167 < 0 - a reliable time isn't guaranteed (power fault, clock issues,
21170 The RTC chip drivers are responsible for providing this info if the
21171 corresponding chip supports such functionality. If not - always
21172 report that the time is reliable.
21174 The POST RTC test was modified to detect the RTC faults utilizing
21175 this new rtc_get() feature.
21177 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21179 commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
21180 Author: Martin Krause <martin.krause@tqs.de>
21181 Date: Wed Mar 19 14:25:14 2008 +0100
21183 TQM5200B: update MTD partition layout
21185 - insert partition for dtb blob to TQM5200B MTD layout
21186 - set env variables dependent on the configured board
21187 (TQM5200 or TQM5200B)
21189 Signed-off-by: Martin Krause <martin.krause@tqs.de>
21191 commit f0105727d132f56a21fa3ed8b162309cca6cac44
21192 Author: Stefan Roese <sr@denx.de>
21193 Date: Wed Mar 19 07:09:26 2008 +0100
21195 CFI: Small cleanup for FLASH_SHOW_PROGRESS
21197 With this patch we don't need that many #ifdef's in the code. It moves
21198 the subtraction into the macro and defines a NOP-macro when
21199 CONFIG_FLASH_SHOW_PROGRESS is not defined.
21201 Signed-off-by: Stefan Roese <sr@denx.de>
21202 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
21204 commit 9a042e9ca512beaaa2cb450274313fc477141241
21205 Author: Jerry Van Baren <gvb.uboot@gmail.com>
21206 Date: Sat Mar 8 13:48:01 2008 -0500
21208 Flash programming progress countdown.
21210 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
21212 commit 5e339fd9ed539a7d7fec59cfc88f0857ab26a53f
21213 Author: Bartlomiej Sieka <tur@semihalf.com>
21214 Date: Wed Mar 19 10:00:06 2008 +0100
21216 [new uImage] Fix style issue spotted by Wolfgang Denk <wd@denx.org>
21218 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21220 commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
21221 Author: David Gibson <david@gibson.dropbear.id.au>
21222 Date: Mon Feb 18 18:09:04 2008 +1100
21224 libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
21226 Since fdt_node_offset_by_compatible() was converted to the new
21227 fdt_next_node() iterator, a chunk of initialization code became
21228 redundant, but was not removed by oversight. This patch cleans it up.
21230 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21232 commit d0ccb9b140b472039732de102fc14597eedb14df
21233 Author: David Gibson <david@gibson.dropbear.id.au>
21234 Date: Mon Feb 18 18:06:31 2008 +1100
21236 libfdt: Trivial cleanup for CHECK_HEADER)
21238 Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
21239 However, there are a handful of functions (fdt_move, rw_check_header,
21240 fdt_open_into) from other files which could also use it (currently
21241 they open-code something more-or-less identical). Therefore, this
21242 patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
21245 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21247 commit fe30a354cdbb808b5f15366a935b151a4ccee74f
21248 Author: Kumar Gala <galak@kernel.crashing.org>
21249 Date: Wed Feb 20 14:32:36 2008 -0600
21251 Fix fdt boardsetup command parsing
21253 The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
21255 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21257 commit 804887e6001e2f00bea11431bf34d6d472512cda
21258 Author: Kumar Gala <galak@kernel.crashing.org>
21259 Date: Fri Feb 15 03:34:36 2008 -0600
21261 Add sub-commands to fdt
21263 fdt header - Display header info
21264 fdt bootcpu <id> - Set boot cpuid
21265 fdt memory <addr> <size> - Add/Update memory node
21266 fdt rsvmem print - Show current mem reserves
21267 fdt rsvmem add <addr> <size> - Add a mem reserve
21268 fdt rsvmem delete <index> - Delete a mem reserves
21270 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21272 commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
21273 Author: David Gibson <david@gibson.dropbear.id.au>
21274 Date: Thu Feb 14 16:50:34 2008 +1100
21276 libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
21278 fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
21279 node which has NOP tags interspersed with its properties. In this
21280 case fdt_add_subnode_namelen() will put the new subnode before the
21281 first NOP tag, even if there are properties after it, which will
21282 result in an invalid blob.
21284 This patch fixes the bug, and adds a testcase for it.
21286 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21288 commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
21289 Author: David Gibson <david@gibson.dropbear.id.au>
21290 Date: Tue Feb 12 11:58:31 2008 +1100
21292 libfdt: Add and use a node iteration helper function.
21294 This patch adds an fdt_next_node() function which can be used to
21295 iterate through nodes of the tree while keeping track of depth. This
21296 function is used to simplify the iteration code in a lot of other
21297 functions, and is also exported for use by library users.
21299 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21301 commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
21302 Author: David Gibson <david@gibson.dropbear.id.au>
21303 Date: Fri Jan 11 14:55:05 2008 +1100
21305 libfdt: Add fdt_set_name() function
21307 This patch adds an fdt_set_name() function to libfdt, mirroring
21308 fdt_get_name(). This is a r/w function which alters the name of a
21309 given device tree node.
21311 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
21313 commit 23e20aa6488e6c0622496549861bfdc74108debe
21314 Author: Yuri Tikhonov <yur@pollux.denx.de>
21315 Date: Tue Mar 18 13:33:30 2008 +0100
21317 lwmon5: Fix register test logic to match the specific GDC h/w.
21319 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21320 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21322 commit 46bc0a938779aa1d664b847d36b08aa00f22e539
21323 Author: Yuri Tikhonov <yur@pollux.denx.de>
21324 Date: Tue Mar 18 13:27:57 2008 +0100
21326 Fix backlight in the lwmon5 POST.
21328 Backlight was switched on even when temperature was too low.
21330 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21331 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21333 commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
21334 Author: Yuri Tikhonov <yur@pollux.denx.de>
21335 Date: Wed Feb 6 18:48:36 2008 +0100
21337 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).
21339 To enable this, alternative, configuration the U-Boot board configuration
21340 file for lwmon5 includes the definitions of alternative addresses for header
21341 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
21343 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
21344 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
21345 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
21347 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21349 commit 0f009f781b5b88f25769e154ea4d42db13baf0c6
21350 Author: Yuri Tikhonov <yur@pollux.denx.de>
21351 Date: Mon Feb 4 17:11:53 2008 +0100
21353 Add support for the lwmon5 board reset via GPIO58.
21355 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21356 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21358 commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
21359 Author: Yuri Tikhonov <yur@pollux.denx.de>
21360 Date: Mon Feb 4 17:09:55 2008 +0100
21362 Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
21364 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21365 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21367 commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
21368 Author: Yuri Tikhonov <yur@pollux.denx.de>
21369 Date: Mon Feb 4 14:11:03 2008 +0100
21371 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.
21373 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21374 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21376 commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
21377 Author: Yuri Tikhonov <yur@pollux.denx.de>
21378 Date: Mon Feb 4 14:10:42 2008 +0100
21380 The patch adds new POST tests for the Lwmon5 board. These are:
21382 * External Watchdog test;
21388 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21389 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21391 commit c2ed33efbfff5767bca236828e021c55fd547b6c
21392 Author: Yuri Tikhonov <yur@pollux.denx.de>
21393 Date: Mon Feb 4 14:10:01 2008 +0100
21395 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
21397 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21399 commit 3a5d1e7f1309998791702b2a559e3126781746b9
21400 Author: Yuri Tikhonov <yur@pollux.denx.de>
21401 Date: Tue Mar 18 13:33:30 2008 +0100
21403 lwmon5: Fix register test logic to match the specific GDC h/w.
21405 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21406 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21408 commit 0f855a1f056a8c22116a2103a3900cbfb669df0b
21409 Author: Yuri Tikhonov <yur@pollux.denx.de>
21410 Date: Tue Mar 18 13:27:57 2008 +0100
21412 Fix backlight in the lwmon5 POST.
21414 Backlight was switcehd on even when temperature was too low.
21416 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21417 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21419 commit 2d991958b1e420fbfe17b128bd26ade74be5efcc
21420 Author: Yuri Tikhonov <yur@pollux.denx.de>
21421 Date: Wed Feb 6 18:48:36 2008 +0100
21423 The patch introduces the alternative configuration of the log buffer for
21424 the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory),
21425 the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ...,
21426 PPC440EPX_GPT0_COMP5).
21428 To enable this, alternative, configuration the U-Boot board configuration
21429 file for lwmon5 includes the definitions of alternative addresses for header
21430 (CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
21432 The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
21433 and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
21434 lwmon5 board-specific header (arch/ppc/platforms/4xx/lwmon5.h).
21436 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21438 commit ff818b21b069f4bc9cb73373cc5a16014be101b7
21439 Author: Yuri Tikhonov <yur@pollux.denx.de>
21440 Date: Mon Feb 4 17:11:53 2008 +0100
21442 Add support for the lwmon5 board reset via GPIO58.
21444 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21445 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21447 commit 603f194e5ad81bb2ef42d6d8aaa74de175bcb411
21448 Author: Yuri Tikhonov <yur@pollux.denx.de>
21449 Date: Mon Feb 4 17:09:55 2008 +0100
21451 Some fixes to dspic, fpga, and gdc post tests for lwmon5.
21452 Disable external watch-dog for now.
21454 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21455 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21457 commit e262efe35742c1ad4b0966ff501efc26f34a0aec
21458 Author: Yuri Tikhonov <yur@pollux.denx.de>
21459 Date: Mon Feb 4 14:11:03 2008 +0100
21461 The patch introduces the CRITICAL feature of POST tests. If the test
21462 marked as POST_CRITICAL fails then the alternative, post_critical,
21463 boot-command is used. If this command is not defined then U-Boot
21464 enters into interactive mode.
21466 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21467 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21469 commit 65b20dcefc89618193fa51947968dada91e4c778
21470 Author: Yuri Tikhonov <yur@pollux.denx.de>
21471 Date: Mon Feb 4 14:10:42 2008 +0100
21473 The patch adds new POST tests for the Lwmon5 board.
21476 * External Watchdog test;
21482 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21483 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
21485 commit 8dc3b2303d2b57c774b609ca0e7043ed8f9b88c1
21486 Author: Yuri Tikhonov <yur@pollux.denx.de>
21487 Date: Mon Feb 4 14:10:01 2008 +0100
21489 Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
21491 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
21493 commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
21494 Author: Wolfgang Denk <wd@denx.de>
21495 Date: Tue Mar 18 17:35:51 2008 +0100
21497 HMI1001: fix compile problem.
21499 Signed-off-by: Wolfgang Denk <wd@denx.de>
21501 commit 1f2a9970109cebf7446e0503b10b71f8673045ee
21502 Author: Mike Frysinger <vapier@gentoo.org>
21503 Date: Mon Feb 18 05:32:30 2008 -0500
21505 Blackfin: BF537-stamp: drop board-specific flash driver for CFI
21507 The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
21508 for the board specific driver at all. Just use the common CFI driver.
21510 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21512 commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
21513 Author: Mike Frysinger <vapier@gentoo.org>
21514 Date: Tue Feb 19 00:36:14 2008 -0500
21516 Blackfin: add proper ELF markings to some assembly functions
21518 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21520 commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
21521 Author: Mike Frysinger <vapier@gentoo.org>
21522 Date: Tue Feb 19 00:35:17 2008 -0500
21524 Blackfin: new cplbinfo command for viewing cplb tables
21526 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21528 commit aadb72503cd1602349a5fe53356d5f55ecc1b900
21529 Author: Mike Frysinger <vapier@gentoo.org>
21530 Date: Mon Feb 18 05:37:51 2008 -0500
21532 Blackfin: update MAINTAINERS list
21534 Add maintainer information for the Blackfin boards.
21536 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21538 commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
21539 Author: Mike Frysinger <vapier@gentoo.org>
21540 Date: Mon Feb 18 05:26:48 2008 -0500
21542 Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
21544 Stop tying things to the processor that should be tied to other defines and
21545 change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
21546 system to select the -mcpu option.
21548 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21550 commit 86a20fb920bd198105acf7b1191117f566d637ed
21551 Author: Mike Frysinger <vapier@gentoo.org>
21552 Date: Sat Feb 16 07:40:36 2008 -0500
21554 Blackfin: move bootldr command to common code
21556 This moves the Blackfin-common bootldr command out of the BF537-STAMP
21557 specific board directory and into the common directory so that all Blackfin
21558 boards may utilize it.
21560 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
21562 commit decbe029b2a9d3333d02c433389b1c821eea96d7
21563 Author: Heiko Schocher <hs@denx.de>
21564 Date: Fri Mar 14 11:05:20 2008 +0100
21566 mgcoge: update configuration
21568 Fix configuration for mgcoge board
21570 Signed-off-by: Heiko Schocher <hs@denx.de>
21572 commit c136724cda0219c49f1d4b346f00da29b14fdf14
21573 Author: Wolfgang Denk <wd@denx.de>
21574 Date: Sun Mar 16 01:22:59 2008 +0100
21576 drivers/rtc/Makefile: keep list sorted
21578 Signed-off-by: Wolfgang Denk <wd@denx.de>
21580 commit 9536dfcce03e7be4ccbceb47a08d9ba07ada362f
21581 Author: Tor Krill <tor@excito.com>
21582 Date: Sat Mar 15 15:40:26 2008 +0100
21584 Add support for Intersil isl1208 RTC
21586 Signed-off-by: Tor Krill <tor@excito.com>
21588 commit 0210cff3d079d97b2156b13685ee8de368e68a1a
21589 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21590 Date: Sat Mar 15 17:36:41 2008 +0100
21594 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
21596 commit 0b8f2a27861a9fd06eb55a34f855ec9c5102aab4
21597 Author: Wolfgang Denk <wd@denx.de>
21598 Date: Sun Mar 16 01:12:58 2008 +0100
21600 Conding style cleanup
21602 Signed-off-by: Wolfgang Denk <wd@denx.de>
21604 commit 41712b4e8c95dff23354bcd620e1f9477160c190
21605 Author: Stefan Roese <sr@denx.de>
21606 Date: Wed Mar 5 12:31:53 2008 +0100
21608 ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board
21610 This patch adds USB OHCI support to the Canyonlands board port. It also
21611 enables EXT2 support.
21613 Signed-off-by: Stefan Roese <sr@denx.de>
21615 commit 2596f5b9d353ff3e4387a3325d05740f16958038
21616 Author: Stefan Roese <sr@denx.de>
21617 Date: Wed Mar 5 12:29:32 2008 +0100
21619 usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
21621 This patch adds CFG_OHCI_USE_NPS to the common USB-OHCI driver. This
21622 way a board just needs to define this new option to enable the "force
21623 NoPowerSwitching mode" instead of adding new CPU/architecture defines
21624 to the USB source itself.
21626 This new option will be used first with the new AMCC 460EX Canyonlands
21627 board port, which will be posted in a few days.
21629 This patch also fixes a small compilation problem when DEBUG is enabled.
21631 Signed-off-by: Stefan Roese <sr@denx.de>
21633 commit 71665ebf88408ff2acb762af47989fd4365b321a
21634 Author: Stefan Roese <sr@denx.de>
21635 Date: Mon Mar 3 17:27:02 2008 +0100
21637 ppc4xx: Add Canyonlands NAND booting support
21639 460EX doesn't support a fixed bootstrap option to boot from 512 byte page
21640 NAND devices. The only bootstrap option for NAND booting is option F for
21641 2k page devices. So to boot from a 512 bype page device, the I2C bootstrap
21642 EEPROM needs to be programmed accordingly.
21644 This patch adds basic NAND booting support for the AMCC Canyonlands aval
21645 board and also adds support to the "bootstrap" command, to enable NAND
21646 booting I2C setting.
21648 Tested with 512 byte page NAND device (32MByte) on Canyonlands.
21650 Signed-off-by: Stefan Roese <sr@denx.de>
21652 commit c813f1f835a7edfdb929f2843b09db72cd5cd2f2
21653 Author: Stefan Roese <sr@denx.de>
21654 Date: Tue Mar 11 16:53:00 2008 +0100
21656 ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
21658 This patch adds support for the AMCC Canyonlands 460EX evaluation
21661 Signed-off-by: Stefan Roese <sr@denx.de>
21663 commit 6983fe21f774a924d3adb263a270bc2f301f2aa2
21664 Author: Stefan Roese <sr@denx.de>
21665 Date: Tue Mar 11 16:52:24 2008 +0100
21667 ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
21669 This patch adds support for the AMCC Canyonlands 460EX evaluation
21672 Signed-off-by: Stefan Roese <sr@denx.de>
21674 commit 8e1a3fe545bbcfceafe183344ebc9f1ad03819c1
21675 Author: Stefan Roese <sr@denx.de>
21676 Date: Tue Mar 11 16:51:17 2008 +0100
21678 ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
21680 This patch adds support for the AMCC Canyonlands 460EX evaluation
21683 Signed-off-by: Stefan Roese <sr@denx.de>
21685 commit 43c60992cdf72496e7eaaa3fbd37ebbe75835f69
21686 Author: Stefan Roese <sr@denx.de>
21687 Date: Tue Mar 11 15:11:43 2008 +0100
21689 ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
21691 This patch adds basic support for the AMCC 460EX/460GT PPC's.
21693 Signed-off-by: Stefan Roese <sr@denx.de>
21695 commit 6f2eb3f3d8ea2dbb224d0da5a12038693bab9945
21696 Author: Stefan Roese <sr@denx.de>
21697 Date: Tue Mar 11 15:11:18 2008 +0100
21699 ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
21701 This patch adds basic support for the AMCC 460EX/460GT PPC's.
21703 Signed-off-by: Stefan Roese <sr@denx.de>
21705 commit 999ecd5aca381984d8ebbeb207ece82a1c275577
21706 Author: Stefan Roese <sr@denx.de>
21707 Date: Tue Mar 11 15:07:10 2008 +0100
21709 ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
21711 This patch adds basic support for the AMCC 460EX/460GT PPC's.
21713 Signed-off-by: Stefan Roese <sr@denx.de>
21715 commit 2801b2d2a9906f206ab9ee8d0b6e746d2b7fe05a
21716 Author: Stefan Roese <sr@denx.de>
21717 Date: Tue Mar 11 15:05:50 2008 +0100
21719 ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
21721 This patch adds basic support for the AMCC 460EX/460GT PPC's.
21723 Signed-off-by: Stefan Roese <sr@denx.de>
21725 commit 8ac41e3e37c3080c6b1d9461d654161cfe2aa492
21726 Author: Stefan Roese <sr@denx.de>
21727 Date: Tue Mar 11 15:05:26 2008 +0100
21729 ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
21731 This patch adds basic support for the AMCC 460EX/460GT PPC's.
21733 Signed-off-by: Stefan Roese <sr@denx.de>
21735 commit 56e410178375d9f20be25fb24e180974f0ae120b
21736 Author: Stefan Roese <sr@denx.de>
21737 Date: Tue Feb 19 22:07:57 2008 +0100
21739 ppc4xx: interrupt.c reworked
21741 This patch is a rework of the 4xx interrupt handling done while
21742 adding the 460EX/GT support. Interrupts are needed on 4xx for the
21745 Signed-off-by: Stefan Roese <sr@denx.de>
21747 commit 84a999b6cdd0b02dc7de2cacc306eaa84afe2b46
21748 Author: Stefan Roese <sr@denx.de>
21749 Date: Tue Feb 19 22:01:57 2008 +0100
21751 ppc4xx: program_tlb now uses 64bit physical addess
21753 This patch changes the physical addess parameter from 32bit to 64bit.
21754 This is needed for 36bit 4xx platforms to access areas located
21755 beyond the 4GB border, like SoC peripherals (EBC etc.).
21757 Signed-off-by: Stefan Roese <sr@denx.de>
21759 commit c3307fa186af85771924c434997089b8104c0a46
21760 Author: Stefan Roese <sr@denx.de>
21761 Date: Tue Feb 19 21:58:25 2008 +0100
21763 ppc4xx: miiphy.c reworked
21765 While adding the 460EX/GT support I reworked the 4xx miiphy code. It
21766 badly neede some cleanup.
21768 Signed-off-by: Stefan Roese <sr@denx.de>
21770 commit 88aff62df39c0756241ea9f9b5a7b3ade26cb82b
21771 Author: Stefan Roese <sr@denx.de>
21772 Date: Tue Feb 19 16:21:49 2008 +0100
21774 rtc: Add M41T62 support
21776 This patch add support for the STM M41T62 RTC. It is used and tested
21777 on the AMCC Canyonlands 406EX platform.
21779 Signed-off-by: Stefan Roese <sr@denx.de>
21781 commit 217d383e201adc7f2271145ae345ea5eae2b7170
21782 Author: Niklaus Giger <niklaus.giger@netstal.com>
21783 Date: Mon Feb 25 18:46:43 2008 +0100
21785 ppc4xx: Add 405GPr based MCU25 board specific files
21787 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21789 commit 75a66dcdb383863ad33f0534cfc27b7a86947dad
21790 Author: Niklaus Giger <niklaus.giger@netstal.com>
21791 Date: Mon Feb 25 18:46:42 2008 +0100
21793 ppc4xx: Add 405GPr based MCU25 board config file
21795 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21797 commit b05f35436b733a240559e77e46bed8439665ecc5
21798 Author: Niklaus Giger <niklaus.giger@netstal.com>
21799 Date: Mon Feb 25 18:46:41 2008 +0100
21801 ppc4xx: Add 405GPr based MCU25 board. Global files
21803 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21805 commit 14c27b35ac812a71abce6e3e2f4129d5e9313660
21806 Author: Niklaus Giger <niklaus.giger@netstal.com>
21807 Date: Mon Feb 25 18:37:02 2008 +0100
21809 ppc4xx: HCU4/5. remove obsolete hcu_flash.c
21811 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21813 commit a079494853cc2bfeddb26673219db0b4b2b31566
21814 Author: Niklaus Giger <niklaus.giger@netstal.com>
21815 Date: Mon Feb 25 18:37:01 2008 +0100
21817 ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
21819 Cleanup: Remove custom flash driver for 8 bit boot-eprom and replace it with
21820 the FLASH_CFI_LEGACY et al. config options.
21822 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
21824 commit e4170e5a50c8110f792bc37472833ae669d69951
21825 Author: Stefan Roese <sr@denx.de>
21826 Date: Tue Mar 11 13:52:25 2008 +0100
21828 ppc4xx: Fix comment in 405EX DDR2 init code
21830 Signed-off-by: Stefan Roese <sr@denx.de>
21832 commit 766529fccc860ecb9e955b4239dff69cd9e4ea09
21833 Author: Bartlomiej Sieka <tur@semihalf.com>
21834 Date: Fri Mar 14 16:22:34 2008 +0100
21836 Add MD5 support to the new uImage format
21838 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21840 commit 0ede0c383530a418cf98be9122371a86573cd0db
21841 Author: Bartlomiej Sieka <tur@semihalf.com>
21842 Date: Fri Mar 14 16:22:34 2008 +0100
21844 Add the MD5 algorithm
21846 MD5 supoprt is turned on by defining CONFIG_MD5, the digest can be then
21847 calculated using the md5() function -- see include/md5.h for details.
21849 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21851 commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0
21852 Author: Wolfgang Denk <wd@denx.de>
21853 Date: Fri Mar 14 16:04:54 2008 +0100
21855 tools/setlocalversion: use a git-describe-ish format
21857 Change the automatic local version to have the form -nnnnn-gSHA1SUMID,
21858 where 'nnnnn' is the number of commits since the last tag (i.e.,
21859 1.3.2-rc3). This makes it much easier to recognize "newer" versions
21860 and to see how much has been changed since the referenced tag.
21862 Stolen from Linux kernel's scripts/setlocalversio, see commit d882421f.
21864 Signed-off-by: Wolfgang Denk <wd@denx.de>
21866 commit c6dc21c84de0f159a1752c5ebd33cff843f63609
21867 Author: Wolfgang Denk <wd@denx.de>
21868 Date: Thu Mar 13 14:32:03 2008 +0100
21870 HMI1001: add support for MPC5200 Rev. B processors.
21872 Signed-off-by: Wolfgang Denk <wd@denx.de>
21874 commit 90f13dce7a7a9a84d5730576c9a24d0dbb07cb3a
21875 Author: Wolfgang Denk <wd@denx.de>
21876 Date: Thu Mar 13 14:29:49 2008 +0100
21878 TQM5200: remove dead code
21880 This board never used a MGT5100 processor.
21882 Signed-off-by: Wolfgang Denk <wd@denx.de>
21884 commit afe45c87e3c5d77bad76b1a57dccd20764d45b5d
21885 Author: Marian Balakowicz <m8@semihalf.com>
21886 Date: Wed Mar 12 12:14:15 2008 +0100
21888 [new uImage] Fix build issue on ARM
21890 ARM platforms don't have a bd->bi_memsize so use bd->bi_dram[0].size instead.
21892 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
21894 commit 3310c549a73a949430bfda90876df7552a1dab0c
21895 Author: Marian Balakowicz <m8@semihalf.com>
21896 Date: Wed Mar 12 12:13:13 2008 +0100
21898 [new uImage] Add new uImage format documentation and examples
21900 Create doc/uImage.FIT documentation directory with the following files:
21901 - command_syntax_extensions.txt : extended command syntax description
21902 - howto.txt : short usage howto
21903 - source_file_format.txt : internal new uImage format description
21905 Add example image source files:
21910 Update README appropriately.
21912 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21913 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
21915 commit 1ec73761d2e247078f4520a265d463e8b73391a2
21916 Author: Marian Balakowicz <m8@semihalf.com>
21917 Date: Wed Mar 12 10:35:52 2008 +0100
21919 [new uImage] Fix definition of common bootm_headers_t fields
21921 verify, autostart and lmb fields are used regardless of CONFIG_FIT
21922 setting, move their definitions to common section.
21924 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21926 commit 1d1cb4270edc6a99276834064069717f9782c491
21927 Author: Marian Balakowicz <m8@semihalf.com>
21928 Date: Wed Mar 12 10:35:51 2008 +0100
21930 [new uImage] Fix build problems on trab board
21932 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21934 commit f773bea8e11f4a11c388dcee956b2444203e6b65
21935 Author: Marian Balakowicz <m8@semihalf.com>
21936 Date: Wed Mar 12 10:35:46 2008 +0100
21938 [new uImage] Add proper ramdisk/FDT handling when FIT configuration is used
21940 Save FIT configuration provied in the first bootm argument and use it
21941 when to get ramdisk/FDT subimages when second and third (ramdisk/FDT)
21942 arguments are not specified.
21944 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21946 commit 2682ce8a4225f23d72bb7fed069e928dd39d34ae
21947 Author: Marian Balakowicz <m8@semihalf.com>
21948 Date: Wed Mar 12 10:33:01 2008 +0100
21950 [new uImage] More verbose kernel image uncompress error message
21952 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21954 commit 1372cce2b9040fb640e5032b84e3a033a22d6ff0
21955 Author: Marian Balakowicz <m8@semihalf.com>
21956 Date: Wed Mar 12 10:33:01 2008 +0100
21958 [new uImage] Use show_boot_progress() for new uImage format
21960 This patch allocates a set of show_boot_progress() IDs for new uImage format
21961 and adds show_boot_progress() calls in new uImage format handling code.
21963 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21965 commit c28c4d193dbfb20b2dd3a5447640fd6de7fd0720
21966 Author: Marian Balakowicz <m8@semihalf.com>
21967 Date: Wed Mar 12 10:33:01 2008 +0100
21969 [new uImage] Add new uImage fromat support to fpga command
21971 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21973 commit 09475f7527460e426c0e0628fc5b8f3754fbaa23
21974 Author: Marian Balakowicz <m8@semihalf.com>
21975 Date: Wed Mar 12 10:33:01 2008 +0100
21977 [new uImage] Add new uImage format handling to other bootm related commands
21981 docboot - cmd_doc.c
21982 fdcboot - cmd_fdc.c
21983 diskboot - cmd_ide.c
21985 scsiboot - cmd_scsi.c
21986 usbboot - cmd_usb.c
21988 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21990 commit 1b7897f28d49a80d78d760ec6f6f11dc0f914338
21991 Author: Marian Balakowicz <m8@semihalf.com>
21992 Date: Wed Mar 12 10:33:00 2008 +0100
21994 [new uImage] Add new uImage format support to imgextract command
21996 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
21998 commit 424c4abdd175d2c470510df8ce0e32d3f463ec16
21999 Author: Marian Balakowicz <m8@semihalf.com>
22000 Date: Wed Mar 12 10:33:00 2008 +0100
22002 [new uImage] Add new uImage format support to autoscript routine
22004 autoscript() routine is updated to accept second argument, which
22005 is only used for FIT images and provides a FIT subimage unit name.
22007 autoscript() routine callers must now pass two arguments. For
22008 non-interactive use (like in cmd_load.c, cmd_net.c), new environment
22009 variable 'autoscript_uname' is introduced and used as a FIT
22010 subimage unit name source.
22012 autoscript command accepts extended syntax of the addr argument:
22013 addr:<subimg_uname>
22015 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22017 commit cd7c596e9f561dbbc17b717277438aee78cde14f
22018 Author: Marian Balakowicz <m8@semihalf.com>
22019 Date: Wed Mar 12 10:33:00 2008 +0100
22021 [new uImage] Add new uImage format support to arch specific do_bootm_linux() routines
22023 This patch updates architecture specific implementations of
22024 do_bootm_linux() adding new uImage format handling for
22025 operations like get kernel entry point address, get kernel
22026 image data start address.
22028 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22030 commit 3dfe110149311425919e6d6a14b561b4207498f1
22031 Author: Marian Balakowicz <m8@semihalf.com>
22032 Date: Wed Mar 12 10:32:59 2008 +0100
22034 [new uImage] Add node offsets for FIT images listed in struct bootm_headers
22036 This patch adds new node offset fields to struct bootm_headers
22037 and updates bootm_headers processing code to make use of them.
22038 Saved node offsets allow to avoid repeating fit_image_get_node() calls.
22040 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22042 commit bc8ed486b125452ba3bd8344f052f437329150c5
22043 Author: Marian Balakowicz <m8@semihalf.com>
22044 Date: Wed Mar 12 10:32:53 2008 +0100
22046 [new uImage] ppc: Add new uImage format support to FDT handling routines
22048 Support for new (FIT) format uImages is added to powerpc specific
22049 boot_get_fdt() routine which now recognizes, sanity checks FIT image
22050 and is able to access data sections of the requested component image.
22052 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22054 commit a44a269a905f924b420020506a4d7d7eedcc0eaf
22055 Author: Marian Balakowicz <m8@semihalf.com>
22056 Date: Wed Mar 12 10:14:57 2008 +0100
22058 [new uImage] Re-enable interrupts for non automatic booting
22060 Re-enable interrupts if we return from do_bootm_<os> and 'autostart'
22061 environment variable is not set to 'yes'.
22063 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22065 commit d985c8498c4e47095820da97aa722381d39172c5
22066 Author: Marian Balakowicz <m8@semihalf.com>
22067 Date: Wed Mar 12 10:14:38 2008 +0100
22069 [new uImage] Remove unnecessary arguments passed to ramdisk routines
22071 boot_get_ramdisk() and image_get_ramdisk() do not need all
22072 cmdtp, flag, argc and argv arguments. Simplify routines definition.
22074 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22076 commit c87796483bc7c2900470dc747c367f602577608d
22077 Author: Marian Balakowicz <m8@semihalf.com>
22078 Date: Wed Mar 12 10:12:37 2008 +0100
22080 [new uImage] Add new uImage format support for ramdisk handling
22082 This patch updates boot_get_ramdisk() routine adding format
22083 verification and handling for new (FIT) uImages.
22085 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22087 commit 6986a385671749ecb3f60cf99e9cbae8e47bb50e
22088 Author: Marian Balakowicz <m8@semihalf.com>
22089 Date: Wed Mar 12 10:01:05 2008 +0100
22091 [new uImage] Add new uImage format support for kernel booting
22093 New format uImages are recognized by the bootm command,
22094 validity of specified kernel component image is checked and
22095 its data section located and used for further processing
22096 (uncompress, load, etc.)
22098 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22100 commit e32fea6adb620ecf2bd70acf2dd37e53df9d1547
22101 Author: Marian Balakowicz <m8@semihalf.com>
22102 Date: Tue Mar 11 12:35:20 2008 +0100
22104 [new uImage] Add new uImage format support for imls and iminfo commands
22106 imls and iminfo can now recognize nad print out contents of the new (FIT)
22109 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22111 commit 9d25438fe7d70cf35a8a293ea5e392fefc672613
22112 Author: Bartlomiej Sieka <tur@semihalf.com>
22113 Date: Tue Mar 11 12:34:47 2008 +0100
22115 [new uImage] Add support for new uImage format to mkimage tool
22117 Support for the new uImage format (FIT) is added to mkimage tool.
22118 Commandline syntax is appropriately extended:
22120 mkimage [-D dtc_options] -f fit-image.its fit-image
22122 mkimage (together with dtc) takes fit-image.its and referenced therein
22123 binaries (like vmlinux.bin.gz) as inputs, and produces fit-image file -- the
22124 final image that can be transferred to the target (e.g., via tftp) and then
22125 booted using the bootm command in U-Boot.
22127 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
22129 commit eb6175edd6c120d8b89678243e5a2be362ee8e40
22130 Author: Marian Balakowicz <m8@semihalf.com>
22131 Date: Mon Mar 10 17:53:49 2008 +0100
22133 [new uImage] Make node unit names const in struct bootm_headers
22135 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22137 commit 5dfb52138688ccbf0146f62683fe6217b3ce1b05
22138 Author: Marian Balakowicz <m8@semihalf.com>
22139 Date: Fri Feb 29 21:24:06 2008 +0100
22141 [new uImage] New uImage low-level API
22143 Add FDT-based functions for handling new format component images,
22144 configurations, node operations, property get/set, etc.
22146 fit_ - routines handling global new format uImage operations
22147 like get/set top level property, process all nodes, etc.
22148 fit_image_ - routines handling component images subnodes
22149 fit_conf_ - routines handling configurations node
22151 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
22152 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22154 commit 30f1806f60978d707b0cff2d7bf89d141fc24290
22155 Author: Wolfgang Denk <wd@denx.de>
22156 Date: Sun Mar 9 16:20:02 2008 +0100
22160 Update CHANGELOG for release.
22162 Signed-off-by: Wolfgang Denk <wd@denx.de>
22164 commit 5b464c289ba715d0979b6e1f94947bb8f1068d16
22165 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22166 Date: Sun Mar 9 14:52:11 2008 +0100
22168 SCM: fix 'packed' attribute ignored for field of type 'can_msg_t' warnings
22170 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22171 Signed-off-by: Wolfgang Denk <wd@denx.de>
22173 commit db695b78515ddb88a2d4f3357c120345efbf59ec
22174 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22175 Date: Sun Mar 9 10:44:01 2008 +0100
22177 scb9328: Fix flash warning: type qualifiers ignored on function return type
22179 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22181 commit 2b3e7e61d6a72f16aee93f870bc6af67f30758c4
22182 Author: Wolfgang Denk <wd@denx.de>
22183 Date: Sun Mar 9 10:50:41 2008 +0100
22185 esd/common/fpga.c: fix indentation.
22187 Signed-off-by: Wolfgang Denk <wd@denx.de>
22189 commit cc3843e36453e2b8db65d7e56de938ba045016a0
22190 Author: Wolfgang Denk <wd@denx.de>
22191 Date: Sun Mar 9 10:33:31 2008 +0100
22193 common/kgdb.c: fix 'dereferencing type-punned pointer' warning
22195 and get rid of a couple of unneeded casts.
22197 Signed-off-by: Wolfgang Denk <wd@denx.de>
22199 commit 8d4f4a838d7dc7cf4de17e3e9a67e2f222b6a1c8
22200 Author: Wolfgang Denk <wd@denx.de>
22201 Date: Sun Mar 9 10:09:53 2008 +0100
22203 esd/common/fpga.c: fix 'assignment of read-only location' error
22205 Signed-off-by: Wolfgang Denk <wd@denx.de>
22207 commit c6fe4dabac066e8758345d249032768496983a3e
22208 Author: Wolfgang Denk <wd@denx.de>
22209 Date: Sun Mar 9 02:13:19 2008 +0100
22211 Makefile: make build silently again.
22213 Signed-off-by: Wolfgang Denk <wd@denx.de>
22215 commit 76babc86576f092573599334c85ec543fdbc6015
22216 Author: Wolfgang Denk <wd@denx.de>
22217 Date: Sun Mar 9 02:07:49 2008 +0100
22219 m501sk: Fix out of tree building
22221 Signed-off-by: Wolfgang Denk <wd@denx.de>
22223 commit 210ed2004e062fdd03f25ab4925998aa1bd08a07
22224 Author: Wolfgang Denk <wd@denx.de>
22225 Date: Sun Mar 9 00:06:09 2008 +0100
22227 ADS5121: fix out of tree build
22229 and simplify Makefile a bit.
22231 Signed-off-by: Wolfgang Denk <wd@denx.de>
22233 commit 46cb5074a3f74de64ebd97dd0c4ec7eb3d768b93
22234 Author: Wolfgang Denk <wd@denx.de>
22235 Date: Sat Mar 8 22:35:31 2008 +0100
22239 Signed-off-by: Wolfgang Denk <wd@denx.de>
22241 commit 78a90f827df74520e939c794fc7413dace21c4db
22242 Author: Wolfgang Denk <wd@denx.de>
22243 Date: Sat Mar 8 22:35:04 2008 +0100
22247 Signed-off-by: Wolfgang Denk <wd@denx.de>
22249 commit 58f3c57c6008b42e01f551d3be6efd88c14ac87f
22250 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22251 Date: Sat Mar 8 21:30:04 2008 +0100
22253 esd: Fix warning: passing argument 1 of 'fpga_boot' discards qualifiers from pointer target type
22255 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22257 commit d75469d48c05795144f4b8ba76addbb4920a7bba
22258 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22259 Date: Sat Mar 8 09:25:49 2008 +0900
22261 net: rtl8169: Add processing when OWNbit did't enable in rtl_recv()
22263 When rtl_recv() of rtl8169 is called, OWNbit of status register
22264 is not enable occasionally.
22265 rtl_recv() doesn't work normally when the driver doesn't do
22266 appropriate processing.
22267 This patch fix this problem.
22269 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
22271 commit 82afabfeb8ae6a27c7b396011ea99f4712aa73fa
22272 Author: Heiko Schocher <hs@denx.de>
22273 Date: Fri Mar 7 08:15:28 2008 +0100
22275 mgsuvd: update board configuration
22277 initialize the UPIOx controller.
22279 Signed-off-by: Heiko Schocher <hs@denx.de>
22281 commit e492c90c26215e459aec0fdf0f8ef1fd204988f5
22282 Author: Heiko Schocher <hs@denx.de>
22283 Date: Fri Mar 7 08:13:41 2008 +0100
22285 mgcoge: update board configuration
22287 add support for the config Flash.
22288 initialize the UPIOx controller.
22290 Signed-off-by: Heiko Schocher <hs@denx.de>
22292 commit 270fe261b7f9292800b2b3d1bf19ae7cbc880258
22293 Author: Kim Phillips <kim.phillips@freescale.com>
22294 Date: Fri Mar 7 12:27:31 2008 -0600
22296 mpc83xx: make dtb basename file references equal those of linux
22298 the dts file basenames were updated in linux - this helps avoid
22299 inadvertently loading any old dtbs laying around.
22301 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22303 commit f30b6154f16f5ffa4a9f5bfca5e114d72b6ef675
22304 Author: Kim Phillips <kim.phillips@freescale.com>
22305 Date: Wed Feb 27 16:08:22 2008 -0600
22307 net: uec_phy: actually increment the timeout counter
22309 allow u-boot to recover (and, e.g., switch to another interface) in the
22310 case where a PHY does not report autonegotiation is complete within its
22311 two second timeout value.
22313 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22315 commit 772003e43957ee0c895abed7cd82cbe72820cbb8
22316 Author: Markus Brunner <super.firetwister@googlemail.com>
22317 Date: Wed Mar 5 21:38:12 2008 +0100
22319 fix taihu soft spi_read
22321 The taihu board used gpio_read_out_bit which reads the output register and not
22324 Signed-off-by: Markus Brunner <super.firetwister@gmail.com>
22326 commit fc84a8495ac750f6b4adae81f8c4f100f65b6340
22327 Author: Stefan Roese <sr@denx.de>
22328 Date: Fri Mar 7 08:01:43 2008 +0100
22330 ppc4xx: Sequoia: Add device tree (fdt) Linux booting default env variables
22332 Signed-off-by: Stefan Roese <sr@denx.de>
22334 commit bd4458cb47abecabd406b1210457be96c69fc49d
22335 Author: Dave Liu <r63238@freescale.com>
22336 Date: Tue Mar 4 16:59:22 2008 +0800
22338 837xEMDS: Improve the system performance
22340 1. Make the CSB bus pipeline depth as 4, and enable
22342 2. Raise the eTSEC emergency priority;
22343 3. Use the highest IP blocks clock.
22345 Signed-off-by: Dave Liu <daveliu@freescale.com>
22347 commit d8ab58b212481b1c57947ea21aa96c4ce800d0b4
22348 Author: Detlev Zundel <dzu@denx.de>
22349 Date: Thu Mar 6 16:45:53 2008 +0100
22351 Replace "run load; run update" with conditionalized "run load update".
22353 The latter version stops when "run load" fails for whatever reasons
22354 rendering the combination *a lot* more secure.
22356 Signed-off-by: Detlev Zundel <dzu@denx.de>
22358 commit 6bc113886d7d316df1a4e459bec8baf027518551
22359 Author: Stefan Roese <sr@denx.de>
22360 Date: Tue Mar 4 17:40:41 2008 +0100
22362 net: Print error message upon net usage when no ethernet-interface is found
22364 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
22365 defined. Then no ethernet interface is available but a simple "tftp"
22366 command will return without any error message which is quite confusing.
22368 Signed-off-by: Stefan Roese <sr@denx.de>
22370 commit a30a549a3553032d809e0356306b62de0b125901
22371 Author: Jon Loeliger <jdl@freescale.com>
22372 Date: Tue Mar 4 10:03:03 2008 -0600
22374 Remove erroneous or extra spd.h #includers.
22376 Many of the spd.h #includers don't need it,
22377 and wanted to have spd_sdram() declared instead.
22378 Since they didn't get that, some also had open
22379 coded extern declarations of it instead or as well.
22380 Fix it all up by using spd_sdram.h where needed.
22382 Signed-off-by: Jon Loeliger <jdl@freescale.com>
22384 commit a4475386cef14af3fd88f0518b688e755669486d
22385 Author: Wolfgang Denk <wd@denx.de>
22386 Date: Tue Mar 4 17:41:28 2008 +0100
22388 PCS440EP: fix build problems (redundant #define)
22390 Signed-off-by: Wolfgang Denk <wd@denx.de>
22392 commit e85e2fa85ec09a6fac2846d1d881d8737e2bbda9
22393 Author: Stefan Roese <sr@denx.de>
22394 Date: Tue Mar 4 17:39:25 2008 +0100
22396 net: Print error message upon net usage when no ethernet-interface is found
22398 This patch fixes a problem seen on PPC4xx boards, when no MAC address is
22399 defined. Then no ethernet interface is available but a simple "tftp"
22400 command will return without any error message which is quite confusing.
22402 Signed-off-by: Stefan Roese <sr@denx.de>
22404 commit 384faaafb999cae3ce447c93e28a0b7e2e5fef53
22405 Author: Wolfgang Denk <wd@denx.de>
22406 Date: Tue Mar 4 17:38:50 2008 +0100
22408 W7OLMC/W7OLMG: fix build problems (redundant #define)
22410 Signed-off-by: Wolfgang Denk <wd@denx.de>
22412 commit f9301e1cda296245ba052d7b08321199c3d0af9d
22413 Author: Wolfgang Denk <wd@denx.de>
22414 Date: Tue Mar 4 14:58:31 2008 +0100
22416 Makefile: fix problem with out-of-tree builds introduced by 5013c09f
22418 Commit 5013c09f (Makefile: cleanup "clean" target) introduced a
22419 problem for out-of-tree builds which caused "make clean" to fail.
22421 Signed-off-by: Wolfgang Denk <wd@denx.de>
22423 commit dfece9500556bed5d8244b1c15d973cec7c25bfe
22424 Author: Wolfgang Denk <wd@denx.de>
22425 Date: Tue Mar 4 11:58:26 2008 +0100
22427 examples/Makefile: build "hello_world" on 8xx, too.
22429 Signed-off-by: Wolfgang Denk <wd@denx.de>
22431 commit 74eb0222594fd23aafdf168e60e872814eea8b62
22432 Author: Mike Nuss <mike@terascala.com>
22433 Date: Mon Mar 3 15:27:05 2008 -0500
22435 PPC4xx (Sequoia): Fix Ethernet "remote fault" problems
22437 Every now and then a Sequoia board (or equivalent hardware) had
22438 problems connecting to a Gigabit capable network interface.
22440 There were differences in the PHY setup between Linux and U-Boot.
22442 This patch fixes the problem. Apparently "remote fault" is being set,
22443 which signals to some devices (on the other end of the cable) that a
22444 fault has occurred, while other devices ignore it. I believe the RF bit
22445 was causing the issue, but I removed T4 also, to match up with Linux.
22447 Signed-off-by: Mike Nuss <mike@terascala.com>
22449 commit 491fb6dea9f52fdb9cb5996e8e978b9e9685179f
22450 Author: Timur Tabi <timur@freescale.com>
22451 Date: Mon Mar 3 09:58:52 2008 -0600
22453 fix QE firmware uploading limit
22455 Fix a typo in qe_upload_firmware() that prevented uploading firmware on
22456 systems with more than one RISC core.
22458 Signed-off-by: Timur Tabi <timur@freescale.com>
22460 commit 42ba58e0c302b339a3c2faa6006a013c6f186b7a
22461 Author: Bernhard Nemec <bnemec@ganssloser.com>
22462 Date: Mon Mar 3 11:57:23 2008 +0000
22464 Fix endianess problem in cramfs code (cramfs is always host-endian in Linux)
22466 Originally pointed out by Laurent Pinchart <laurent.pinchart@tbox.biz>,
22467 see http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/22846
22469 Signed-off-by: Bernhard Nemec <bnemec <at> ganssloser.com>
22471 commit 84d0c2f1e39caff58bf765a7ab7c72da23c25ec8
22472 Author: Kim B. Heino <Kim.Heino@bluegiga.com>
22473 Date: Mon Mar 3 10:39:13 2008 +0200
22475 fix copy from ram to dataflash
22477 If I try to "cp.b <ram> <dataflash>", u-boot selects normal flash
22478 routines instead of dataflash. This is because it checks "if source
22479 address is not dataflash" instead of target address.
22481 Signed-off-by: Kim B. Heino <Kim.Heino@bluegiga.com>
22483 commit 32bf3d143a888f8deacfdcc97e898f6c06d0aea4
22484 Author: Wolfgang Denk <wd@denx.de>
22485 Date: Mon Mar 3 12:16:44 2008 +0100
22487 Fix quoting problem (preboot setting) in many board config files.
22489 Signed-off-by: Wolfgang Denk <wd@denx.de>
22491 commit 5b0b2b6fc9fe22e3864c2a57316d91a2507ec215
22492 Author: Wolfgang Denk <wd@denx.de>
22493 Date: Mon Mar 3 12:36:49 2008 +0100
22495 ADS5121: Fix default environment.
22497 Signed-off-by: Wolfgang Denk <wd@denx.de>
22499 commit 91c82076ae492bb1f9d9c47a481314631d32dc8e
22500 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22501 Date: Sun Mar 2 16:12:31 2008 +0100
22503 Makefile: Fix missing unconfig and mkconfig use
22505 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22507 commit 8ce4e5c2c02cb7e8adddf7b651d3050d81ce4c1d
22508 Author: michael <trimarchi@gandalf.sssup.it>
22509 Date: Sun Mar 2 23:33:46 2008 +0100
22511 Fix checking fat32 cluster size.
22513 This fixes the cluster size tests in the FAT32 file system.
22514 The current implementation of VFAT support doesn't work if the
22515 referred cluster has an offset > 16bit representation, causing
22516 "fatload" and "fatls" commands etc. to fail.
22518 Signed-off-by: michael trimarchi <trimarchi@gandalf.sssup.it>
22520 commit 661bad63a076a96c39c64f136915f146725af92b
22521 Author: Wolfgang Denk <wd@denx.de>
22522 Date: Sun Mar 2 22:57:23 2008 +0100
22524 Prepare v1.3.2-rc2 release candidate
22526 Signed-off-by: Wolfgang Denk <wd@denx.de>
22528 commit 76957cb3d621bf664311908e5962e151c633c285
22529 Author: Stefan Roese <sr@denx.de>
22530 Date: Sat Mar 1 12:11:40 2008 +0100
22532 ppc4xx: EMAC: Fix 405EZ fifo size setup in EMAC_MR1
22534 The 405EZ only supports 512 bytes of rx-/tx-fifo EMAC sizes. But
22535 currently 4k/2k is configured. This patch fixes this issue.
22537 Thanks to Thomas Kindler <tkindler@lenord.de> for pointing this out.
22539 Signed-off-by: Stefan Roese <sr@denx.de>
22541 commit 118978c8eb43803e2794233922df4249fa278b83
22542 Author: Woodruff, Richard <r-woodruff2@ti.com>
22543 Date: Fri Feb 29 17:34:35 2008 -0600
22545 Fix alignment error on ARM for modules
22547 Fix alignment fault on ARM when running modules. With out an explicit
22548 linker file gcc4.2.1 will half word align __bss_start's value. The word
22549 dereference will crash hello_world.
22551 signed-off-by Richard Woodruff <r-woodruff2@ti.com>
22553 commit ce1120dd703e6f12c59e4eba9962356a0300b832
22554 Author: Dave Liu <r63238@freescale.com>
22555 Date: Fri Feb 29 17:45:31 2008 +0800
22557 fs: Fix ext2 read issue
22559 The ext2 aligned process will corrupt the key
22560 data struct, the patch fix this.
22562 Signed-off-by: Dave Liu <daveliu@freescale.com>
22564 commit 5013c09f7a5675952a3ca88b6bc6c924e63af33e
22565 Author: Wolfgang Denk <wd@denx.de>
22566 Date: Sun Mar 2 22:45:33 2008 +0100
22568 Makefile: cleanup "clean" target
22570 Make sure CDPATH settings cannot interfere.
22573 Signed-off-by: Wolfgang Denk <wd@denx.de>
22575 commit ffda586fc1373243c9794babde69500f6293a8d8
22576 Author: Li Yang <leoli@freescale.com>
22577 Date: Fri Feb 29 11:46:05 2008 +0800
22579 add cscope build target
22581 Add cscope build target to generate cscope database for code browsing.
22583 Signed-off-by: Li Yang <leoli@freescale.com>
22585 commit f655adef65e4cf6b929054b049ee19ae9b5ccbe2
22586 Author: Kim Phillips <kim.phillips@freescale.com>
22587 Date: Wed Feb 27 15:06:39 2008 -0600
22589 net: uec_phy: handle 88e1111 rev.B2 erratum 5.6
22591 erratum 5.6 states the autoneg completion bit is functional only if the
22592 autoneg bit is asserted.
22594 This fixes any secondarily-issued networking commands on non-gigabit
22595 links on the mpc8360 mds board.
22597 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
22599 commit 5f91db7f582ca17b1f19f10189c025696f333d2e
22600 Author: John Rigby <jrigby@freescale.com>
22601 Date: Tue Feb 26 09:38:14 2008 -0700
22603 MPC5121e ADS PCI support take 3
22605 Adds PCI support for MPC5121
22607 Tested with drivers/net/rtl8139.c
22609 Support is conditional since PCI on old silicon does not work.
22611 ads5121_PCI_config turns on PCI
22613 In this version, condition compilation of PCI code has been moved
22614 from ifdef in board/ads5121/pci.c to board/ads5121/Makefile as
22615 suggested by Jean-Christophe PLAGNIOL-VILLARD
22617 Signed-off-by: John Rigby <jrigby@freescale.com>
22619 commit 44b4dbed4133f657705b7c5193209da9978243a7
22620 Author: Anatolij Gustschin <agust@denx.de>
22621 Date: Mon Feb 25 23:53:07 2008 +0100
22623 Fix warnings while compilation of post/drivers/memory.c
22625 Fix warnings while compilation with new gcc in eldk-4.2
22627 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22629 commit 4fae35a53b3e958254d6574a1cc7e10811fc6726
22630 Author: Anatolij Gustschin <agust@denx.de>
22631 Date: Mon Feb 25 20:54:04 2008 +0100
22633 ppc4xx: Fix problem in 4xx_enet.c driver
22635 U-Boot crashes in the net loop if CONFIG_4xx_DCACHE is
22636 enabled. To reproduce the problem ensure that 'ethrotate'
22637 environment variable isn't set to "no" and then run
22638 "tftp 200000 not_existent_file".
22639 This patch tries to fix the issue.
22641 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22643 commit 60ec654c5eb80d0fe0c38a3bd42140215bc06484
22644 Author: Anatolij Gustschin <agust@denx.de>
22645 Date: Mon Feb 25 20:04:20 2008 +0100
22647 POST: Disable cache while SPR POST
22649 Currently (since commit b2e2142c) u-boot crashes on
22650 sequoia board while SPR test if CONFIG_4xx_DCACHE is
22651 enabled. This patch disables the cache while SPR test.
22653 Signed-off-by: Anatolij Gustschin <agust@denx.de>
22655 commit c313b2c6c555e7d89ec59bd51c59ab164ad0105d
22656 Author: Martin Krause <martin.krause@tqs.de>
22657 Date: Mon Feb 25 17:52:40 2008 +0100
22659 TQM5200: use automatic fdt memory fixup (part 2)
22661 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
22662 TB5200 and TB5200_B to fixup the /memory node with the memory values
22663 detected by U-Boot.
22665 Signed-off-by: Martin Krause <martin.krause@tqs.de>
22667 commit 44ceec253ea941b301abf4b079d52324def69d92
22668 Author: Martin Krause <martin.krause@tqs.de>
22669 Date: Mon Feb 25 15:17:05 2008 +0100
22671 TQM5200: use automatic fdt memory fixup
22673 Call fdt_fixup_memory() on the boards TQM5200, TQM5200_B, TQM5200S,
22674 TB5200 and TB5200_B to fixup the /memory node with the memory values
22675 detected by U-Boot.
22677 Signed-off-by: Martin Krause <martin.krause@tqs.de>
22679 commit f3a329acb26017d8e10e9c93e1e726c2a5ac634a
22680 Author: Martin Krause <martin.krause@tqs.de>
22681 Date: Mon Feb 25 13:27:52 2008 +0100
22683 TQM5200: fix bug in SDRAM initialization code
22685 This patch fixes a bug in the SDRAM initialization code for the
22686 TQM5200. The hi_addr bit is now set correctly. Without this patch
22687 the hi_addr bit is always set to 1, if the second SDRAM bank is
22690 For other MPC5200 boards a correspondig patch has already been applied
22691 some time ago, see commit a63109281ad41b0fb489fdcb901171f76bcdbc2c.
22693 Signed-off-by: Martin Krause <martin.krause@tqs.de>
22695 Forget the first patch please. I confused flash with SDRAM in
22698 commit 217bf6b6a313d9ccb619a4dbc09f73f77cd48df1
22699 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22700 Date: Mon Feb 25 00:03:12 2008 +0100
22702 mx1fs2/flash: Fix multiple compiler warnings
22704 "pointer targets in assignment differ in signedness"
22706 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22708 commit 5599c28cef55be42a8ca6fa8086b1a44e56a85d2
22709 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22710 Date: Mon Feb 25 00:03:11 2008 +0100
22712 arm-imx: Fix register definitions
22714 Sync register definitions with linux
22716 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22718 commit c9bcf75fecc58886af77d2a571cff2eab39eab6f
22719 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22720 Date: Mon Feb 25 00:03:10 2008 +0100
22722 actua1/actua2/actua3: Fix multiple unused variable warnings
22725 actux1.c: In function 'checkboard':
22726 actux1.c:92: warning: unused variable 'revision'
22729 actux2.c: In function 'checkboard':
22730 actux2.c:100: warning: unused variable 's'
22731 actux2.c:99: warning: unused variable 'revision'
22732 actux2.c: In function 'reset_phy':
22733 actux2.c:130: warning: unused variable 'i'
22736 actux3.c: In function 'checkboard':
22737 actux3.c:114: warning: unused variable 'revision'
22739 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
22741 commit f8fa6368a6a0c02164da8e2f52f18d457c6977bd
22742 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22743 Date: Sun Feb 24 11:44:29 2008 +0900
22745 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
22747 The previous patch was lacking of i386, microblaze, nios and nios2. This
22748 patch tries to fix them.
22750 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
22752 commit 05e07b1ea22844e946cfcf7d5e8a0199d18d2a95
22753 Author: Marian Balakowicz <m8@semihalf.com>
22754 Date: Fri Feb 29 22:22:46 2008 +0100
22756 [new uImage] Fix FDT blob totalsize calculation in boot_relocate_fdt()
22758 Do not use global fdt blob pointer, calculate blob size from routine
22759 argument blob pointer.
22761 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22763 commit d1cc52879c8966507dad9fb575481e6d3985e64e
22764 Author: David Gibson <david@gibson.dropbear.id.au>
22765 Date: Tue Feb 12 00:58:31 2008 +1100
22767 libfdt: Add and use a node iteration helper function.
22769 This patch adds an fdt_next_node() function which can be used to
22770 iterate through nodes of the tree while keeping track of depth. This
22771 function is used to simplify the iteration code in a lot of other
22772 functions, and is also exported for use by library users.
22774 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
22776 commit 8cf30809a82902a471866d2f07725ce3b8a22291
22777 Author: Bartlomiej Sieka <tur@semihalf.com>
22778 Date: Fri Feb 29 16:00:24 2008 +0100
22780 [new uImage] Add libfdt support to mkimage
22782 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
22784 commit a6e530f00d31a8494a0422799b2b9a692a9c0eb9
22785 Author: Bartlomiej Sieka <tur@semihalf.com>
22786 Date: Fri Feb 29 16:00:23 2008 +0100
22788 [new uImage] Add sha1.o object to mkimage binary build
22790 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
22792 commit df6f1b895c997978f03afe04502ee76b7ba34ab9
22793 Author: Marian Balakowicz <m8@semihalf.com>
22794 Date: Fri Feb 29 16:00:06 2008 +0100
22796 [new uImage] Fix component handling for legacy multi component images
22798 Use uint32_t when accessing size table in image_multi_count() and
22799 image_multi_getimg() for multi component images.
22801 Add missing uimage_to_cpu() endianness conversion.
22803 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22805 commit 570abb0ad120f6002bcaa3cf6f32bd4ca2e1b248
22806 Author: Marian Balakowicz <m8@semihalf.com>
22807 Date: Fri Feb 29 15:59:59 2008 +0100
22809 [new uImage] Share common uImage code between mkimage and U-boot
22811 This patch adds the following common routines:
22813 1) Dedicated mkimage print_header() is replaced with common
22814 image_print_contents()
22815 image_print_contents_noindent()
22817 2) Common os/arch/type/comp fields name <--> id translation routines
22818 genimg_get_os_name()
22819 genimg_get_arch_name()
22820 genimg_get_type_name()
22821 genimg_get_comp_name()
22823 genimg_get_arch_id()
22824 genimg_get_type_id()
22825 genimg_get_comp_id()
22827 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22829 commit 9a4daad0a35eb5143037eea9f786a3e9d672bdd6
22830 Author: Marian Balakowicz <m8@semihalf.com>
22831 Date: Fri Feb 29 14:58:34 2008 +0100
22833 [new uImage] Update naming convention for bootm/uImage related code
22835 This patch introduces the following prefix convention for the
22836 image format handling and bootm related code:
22838 genimg_ - dual format shared code
22839 image_ - legacy uImage format specific code
22840 fit_ - new uImage format specific code
22841 boot_ - booting process related code
22843 Related routines are renamed and a few pieces of code are moved around and
22846 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
22848 commit 75fa002c47171b73fb4c1f2c2fe4d6391c136276
22849 Author: Kumar Gala <galak@kernel.crashing.org>
22850 Date: Wed Feb 27 21:51:51 2008 -0600
22852 [new uImage] Respect autostart setting in linux bootm
22854 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22855 Acked-by: Marian Balakowicz <m8@semihalf.com>
22857 commit d3f2fa0d278467b2232e4eb2372f905c3febfbeb
22858 Author: Kumar Gala <galak@kernel.crashing.org>
22859 Date: Wed Feb 27 21:51:50 2008 -0600
22861 [new uImage] Provide ability to restrict region used for boot images
22863 Allow the user to set 'bootm_low' and 'bootm_size' env vars as a way
22864 to restrict what memory range is used for bootm.
22866 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22867 Acked-by: Marian Balakowicz <m8@semihalf.com>
22869 commit e822d7fc4dd4755d4d0a22f05e33f33d1a0481da
22870 Author: Kumar Gala <galak@kernel.crashing.org>
22871 Date: Wed Feb 27 21:51:49 2008 -0600
22873 [new uImage] Use lmb for bootm allocations
22875 Convert generic ramdisk_high(), get_boot_cmdline(), get_boot_kbd()
22876 functions over to using lmb for allocation of the ramdisk, command line
22877 and kernel bd info.
22879 Convert PPC specific fdt_relocate() to use lmb for allocation of the device
22882 Provided a weak function that board code can call to do additional
22883 lmb reserves if needed.
22885 Also introduce the concept of bootmap_base to specify the offset in
22886 physical memory that the bootmap is located at. This is used for
22887 allocations of the cmdline, kernel bd, and device tree as they should
22888 be contained within bootmap_base and bootmap_base + CFG_BOOTMAPSZ.
22890 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22892 commit f5614e7926863bf0225ec860d9b319741a9c4004
22893 Author: Kumar Gala <galak@kernel.crashing.org>
22894 Date: Wed Feb 27 21:51:48 2008 -0600
22896 [new uImage] Add autostart flag to bootm_headers structure
22898 The autostart env variable was dropped as part of the initial new uImage
22899 cleanup. Add it back here so the arch specific code can decide if it
22900 wants to really boot or not.
22902 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22903 Acked-by: Marian Balakowicz <m8@semihalf.com>
22905 commit 4ed6552f715983bfc7d212c1199a1f796f1144ad
22906 Author: Kumar Gala <galak@kernel.crashing.org>
22907 Date: Wed Feb 27 21:51:47 2008 -0600
22909 [new uImage] Introduce lmb from linux kernel for memory mgmt of boot images
22911 Introduce the LMB lib used on PPC in the kernel as a clean way to manage
22912 the memory spaces used by various boot images and structures. This code
22913 will allow us to simplify the code in bootm and its support functions.
22915 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22917 commit 4648c2e7a173b0d7f17bef4adaa0623090c9e904
22918 Author: Kumar Gala <galak@kernel.crashing.org>
22919 Date: Tue Feb 19 22:03:47 2008 -0600
22921 [new uImage] ppc: Allow boards to specify effective amount of memory
22923 For historical reasons we limited the stack to 256M because some boards
22924 could only map that much via BATS. However newer boards are capable of
22925 mapping more memory (for example 85xx is capable of doing up to 2G).
22927 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22928 Acked-by: Marian Balakowicz <m8@semihalf.com>
22930 commit 274cea2bddbca10cdad7daa518951b75c44ef6bc
22931 Author: Kumar Gala <galak@kernel.crashing.org>
22932 Date: Wed Feb 27 21:51:46 2008 -0600
22934 [new uImage] rework error handling so common functions don't reset
22936 Changed image_get_ramdisk() to just return NULL on error and have
22937 get_ramdisk() propogate that error to the caller. It's left to the
22938 caller to call do_reset() if it wants to.
22940 Also moved calling do_reset() in get_fdt() and fdt_relocate() on ppc
22941 to a common location. In the future we will change get_fdt() and
22942 fdt_relocate() to return success/failure and not call do_reset() at all.
22944 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22945 Acked-by: Marian Balakowicz <m8@semihalf.com>
22947 commit d2bc095a639672def11d5d043b5688d0dbd692ec
22948 Author: Kumar Gala <galak@kernel.crashing.org>
22949 Date: Wed Feb 27 21:51:45 2008 -0600
22951 [new uImage] ppc: Re-order ramdisk/fdt handling sequence
22953 Doing the fdt before the ramdisk allows us to grow the fdt w/o concern
22954 however it does mean we have to go in and fixup the initrd info since
22955 we don't know where it will be.
22957 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22959 commit 27953493ef025fb698d68c5dee39b36f01f4d530
22960 Author: Kumar Gala <galak@kernel.crashing.org>
22961 Date: Wed Feb 27 21:51:44 2008 -0600
22963 [new uImage] ppc: Determine if we are booting an OF style
22965 If we are bootin OF style than we can skip setting up some things
22966 that are used for the old boot method.
22968 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22969 Acked-by: Marian Balakowicz <m8@semihalf.com>
22971 commit a6612bdfe7ef37b9787b66800cf02aaded05fbeb
22972 Author: Kumar Gala <galak@kernel.crashing.org>
22973 Date: Wed Feb 27 21:51:43 2008 -0600
22975 [new uImage] Don't pass kdb to ramdisk_high since we may not have one
22977 We don't actually need the kdb param as we are just using it to get
22978 bd->bi_memsize which we can get from gd->bd->bi_memsize. Also, if we
22979 boot via OF we might not actually fill out a kdb.
22981 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22982 Acked-by: Marian Balakowicz <m8@semihalf.com>
22984 commit 2b22fa4baee51e6b467c44ea1be0d1ecd86e8775
22985 Author: Kumar Gala <galak@kernel.crashing.org>
22986 Date: Wed Feb 27 16:30:47 2008 -0600
22988 85xx: Don't icbi when unlocking the cache
22990 There is no reason to icbi when invalidating the temporary stack in
22991 the d-cache. Its impossible on e500 to have the i-cache contain
22992 any addresses in the temp stack and it can be problematic in generating
22993 transactions on the bus to non-valid addresses.
22995 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
22997 commit 534ea6b6f86f8b75ef2ac061ef110a98f103d7d6
22998 Author: Andy Fleming <afleming@freescale.com>
22999 Date: Wed Feb 27 15:50:50 2008 -0600
23001 Fix source for ECM error IVPR
23003 The source vector for the ECM was being set to 2,
23004 but that's what the source vector for DDR was being
23005 set to. Change it to 1.
23007 Signed-off-by: Andy Fleming <afleming@freescale.com>
23009 commit 21fae8b2b4e4e6e648796e07e20ab13e9cb18923
23010 Author: Andy Fleming <afleming@freescale.com>
23011 Date: Wed Feb 27 14:29:58 2008 -0600
23013 Invalidate INIT_RAM TLB mappings
23015 Commit 0db37dc... (and some others) changed the INIT_RAM TLB
23016 mappings to be unguarded. This collided with an existing "bug"
23017 where the mappings for the INIT_RAM were being kept around.
23018 This meant that speculative loads to those addresses were
23019 succeeding in the TLB, and going out to the bus, where they
23020 were causing an exception (there's nothing at that address). The
23021 Flash code was coincidentally causing such a speculative load.
23022 Rather than go back to mapping the INIT RAM as guarded, we fix
23023 it so that the entries for the INIT_RAM are invalidated. Thus
23024 the speculative loads will fail in the TLB, and have no effect.
23026 Signed-off-by: Andy Fleming <afleming@freescale.com>
23028 commit 347b7938d3e561eb215aa386c37fb5acb5a383c6
23029 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23030 Date: Sun Feb 17 22:56:17 2008 +0100
23032 sbc8548: Fix Revision reading and unused variable 'path'
23034 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23036 commit 495d162374c472f46454453553382ad0735dc725
23037 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23038 Date: Sun Feb 17 22:56:16 2008 +0100
23040 sbc8548: Fix cfi flash bank declaration
23042 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23044 commit 4efbe9dbb129f857f27856936112c8c02f016be6
23045 Author: Marian Balakowicz <m8@semihalf.com>
23046 Date: Wed Feb 27 11:02:26 2008 +0100
23048 [new uImage] Correct raw FDT blob handlig when CONFIG_FIT is disabled
23050 Dual format image code must properly handle all three FDT passing methods:
23051 - raw FDT blob passed
23052 - FDT blob embedded in the legacy uImage
23053 - FDT blob embedded in the new uImage
23055 This patch enables proper raw FDT handling when no FIT imaeg support
23056 is compiled in. This is a bit tricky as we must dected FIT format even
23057 when FIT uImage handling is not enabled as both FIT uImages and raw FDT
23058 blobs use tha same low level format (libfdt).
23060 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23062 commit ff0734cff0fb5397ce2f4602f4f3e5ec9c8a36e8
23063 Author: Marian Balakowicz <m8@semihalf.com>
23064 Date: Wed Feb 27 11:02:26 2008 +0100
23066 [new uImage] POWERPC: Add image_get_fdt() routine
23068 FDT blob may be passed either: (1) raw (2) or embedded in the legacy uImage
23069 (3) or embedded in the new uImage. For the (2) case embedding image must be
23070 verified before we get FDT from it. This patch factors out legacy image
23071 specific verification routine to the separate helper routine.
23073 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23074 Acked-by: Kumar Gala <galak@kernel.crashing.org>
23076 commit 1efd43601f90de21ec6c0ebb9880823e822927b1
23077 Author: Marian Balakowicz <m8@semihalf.com>
23078 Date: Wed Feb 27 11:02:07 2008 +0100
23080 [new uImage] Add image_get_kernel() routine
23082 Legacy image specific verification is factored out to a separate helper
23083 routine to keep get_kernel() generic and simple.
23085 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23086 Acked-by: Kumar Gala <galak@kernel.crashing.org>
23088 commit 8a5ea3e6168fe6a2780eeaf257a3b19f30dec658
23089 Author: Marian Balakowicz <m8@semihalf.com>
23090 Date: Wed Feb 27 11:01:04 2008 +0100
23092 [new uImage] Move image verify flag to bootm_headers structure
23094 Do not pass image verification flag directly to related routines.
23095 Simplify argument passing and move it to the bootm_header structure which
23096 contains curently processed image specific data and is already being passed
23097 on the argument list.
23099 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23100 Acked-by: Kumar Gala <galak@kernel.crashing.org>
23102 commit 823afe7cefe00dafefc6696c1cc7aa828c394234
23103 Author: Marian Balakowicz <m8@semihalf.com>
23104 Date: Wed Feb 27 11:00:47 2008 +0100
23106 [Makefile] Sort COBJS in lib_<arch> Makefiles
23108 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23110 commit 6f0f9dfc4ee880fbf400a2ebe14238181a6c3f91
23111 Author: Marian Balakowicz <m8@semihalf.com>
23112 Date: Wed Feb 27 11:00:47 2008 +0100
23114 [new uImage] Optimize gen_get_image() flow control
23116 When CONFIG_HAS_DATAFLASH is not defined gen_get_image() routine has nothing
23117 to do, update its control flow to better reflect that simple case.
23119 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23120 Acked-by: Kumar Gala <galak@kernel.crashing.org>
23122 commit d2ced9eb19ec74f4a359949dbe353427fa6d55ca
23123 Author: Marian Balakowicz <m8@semihalf.com>
23124 Date: Mon Feb 4 08:28:17 2008 +0100
23126 [new uImage] POWERPC: Split get_fdt() into get and relocate routines
23128 PPC specific FDT blob handling code is divided into two separate routines:
23130 get_fdt() - find and verify a FDT blob (either raw or image embedded)
23131 fdt_relocate() - move FDT blob to within BOOTMAP if needed
23133 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23134 Acked-by: Kumar Gala <galak@kernel.crashing.org>
23136 commit 33fa5c0bfaf465de8ceb23fcd6b397f68b35a817
23137 Author: Jon Loeliger <jdl@freescale.com>
23138 Date: Mon Feb 25 13:13:37 2008 -0600
23140 86xx: Fix renamed GUR symbols in sbc8641d board.
23142 Back in commit a551cee99ad1d1da20fd23ad265de47448852f56
23143 (86xx: Fix GUR PCI config registers properly), we should have
23144 changed the MPC86xx_PORBMSR_HA and MPC86xx_PORDEVSR_IO_SEL
23145 symbols in the sbc8641d board as well. Fix this oversight.
23147 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23149 commit 64cd594e623c39f73964d18787763e4533f791f7
23150 Author: Stefan Roese <sr@denx.de>
23151 Date: Mon Feb 25 16:50:48 2008 +0100
23153 ppc4xx: Fix acadia_nand build problem
23155 Don't include testdram() on NAND-booting target acadia_nand. This saves
23156 a few bytes and makes the target build clean again.
23158 Signed-off-by: Stefan Roese <sr@denx.de>
23160 commit 14e099e698d41e8179d05c2b2dbcf704a236f748
23161 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23162 Date: Sun Feb 24 23:03:12 2008 +0000
23164 mx1fs2/flash: Fix multiple pointertargets in assignment differ in signedness
23166 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23168 commit 724902c8464e610642b3a170278b99710325888e
23169 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23170 Date: Sun Feb 24 23:03:11 2008 +0000
23172 arm-imx: Fix registers definition
23174 Sync registers definition with linux
23176 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23178 commit 4cd288b589ea1178947c6e364453c32b3dede6b7
23179 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23180 Date: Sun Feb 24 23:03:10 2008 +0000
23182 actua1/actua2/actua3: Fix multipleunused variable
23185 actux1.c: In function 'checkboard':
23186 actux1.c:92: warning: unused variable 'revision'
23189 actux2.c: In function 'checkboard':
23190 actux2.c:100: warning: unused variable 's'
23191 actux2.c:99: warning: unused variable 'revision'
23192 actux2.c: In function 'reset_phy':
23193 actux2.c:130: warning: unused variable 'i'
23196 actux3.c: In function 'checkboard':
23197 actux3.c:114: warning: unused variable 'revision'
23199 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23201 commit d5934ad7756f038a393a9cfab76a4fe306d9d930
23202 Author: Marian Balakowicz <m8@semihalf.com>
23203 Date: Mon Feb 4 08:28:09 2008 +0100
23205 [new uImage] Add dual format uImage support framework
23207 This patch adds framework for dual format images. Format detection is added
23208 and the bootm controll flow is updated to include cases for new FIT format
23211 When the legacy (image_header based) format is detected appropriate
23212 legacy specific handling is invoked. For the new (FIT based) format uImages
23213 dual boot framework has a minial support, that will only print out a
23214 corresponding debug messages. Implementation of the FIT specific handling will
23215 be added in following patches.
23217 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23219 commit b29661fc1151077776454288051bc9a488351ce8
23220 Author: Wolfgang Denk <wd@denx.de>
23221 Date: Sun Feb 24 15:21:36 2008 +0100
23223 Coding style cleanup. Prepare v1.3.2-rc2 release candidate
23225 Signed-off-by: Wolfgang Denk <wd@denx.de>
23227 commit 00b48a48424894daa589d166d73277830b1c6ac4
23228 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23229 Date: Sat Feb 23 12:15:56 2008 +0100
23231 ENV: remove saveenv when CFG_ENV_IS_NOWHERE is selected
23233 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23235 commit b075d74efb70ff68c49a2532f26b56d6703b69c1
23236 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23237 Date: Sat Feb 23 17:24:16 2008 +0900
23239 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on 32bit targets.
23241 ----------------------------------------------------------------
23242 Olaf Hering [Wed, 17 Oct 2007 06:27:13 +0000 (23:27 -0700)]
23244 Remove the __STRICT_ANSI__ check from the __u64/__s64 declaration on
23247 GCC can be made to warn about usage of long long types with ISO C90
23248 (-ansi), but only with -pedantic. You can write this in a way that even
23249 then it doesn't cause warnings, namely by:
23252 __extension__ typedef __signed__ long long __s64;
23253 __extension__ typedef unsigned long long __u64;
23256 The __extension__ keyword in front of this switches off any pedantic
23257 warnings for this expression.
23259 Signed-off-by: Olaf Hering <olh@suse.de>
23260 Cc: <linux-arch@vger.kernel.org>
23261 Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
23262 Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
23263 ----------------------------------------------------------------
23265 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23267 commit 208acd112e6517b21fc30c420396902b103563ac
23268 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23269 Date: Sat Feb 23 17:07:57 2008 +0900
23271 cpu/mcf52x2/config.mk: Make needlessly deffered expansions immediate.
23273 This will reduce the build time.
23275 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23277 commit 495a0dde7fa1b14cdc15607d86503ec2bdcd02c4
23278 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23279 Date: Sat Feb 23 17:05:00 2008 +0900
23281 cpu/ppc4xx/config.mk: Make a needlessly deffered expansion immediate.
23283 This will reduce the build time.
23285 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23287 commit e682ba399a1d76f09d8cc7af1e57066f1d360d91
23288 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23289 Date: Sat Feb 23 16:58:41 2008 +0900
23291 cpu/mips/cofigl.mk: Make a needlessly deffered expansion immediate.
23293 This reduces the build time by ~10%. Here's the gth2_config example.
23296 real 0m31.441s 0m27.833s
23297 user 0m24.766s 0m23.045s
23298 sys 0m10.425s 0m7.468s
23300 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
23302 commit 02409f8cf54c7cd91981f0dfec135dbf3858090c
23303 Author: Marcel Moolenaar <marcelm@juniper.net>
23304 Date: Fri Feb 22 10:48:07 2008 -0800
23306 make define2mk.sed work on FreeBSD
23308 In the thread "[1.3.2-rc1] MPC8548CDS/MPC8555CDS configs fails to link",
23309 the define2mk.sed script was identified as the source of the link
23310 failure on FreeBSD. The problem is that sed(1) does not always support
23311 the '+' operator. It isn't on FreeBSD. The attach patch implements the
23312 equivalent, using the '*' operator instead and should work everywhere.
23314 Signed-off-by: Marcel Moolenaar <marcelm@juniper.net>
23316 commit e5084af8ded58453cd07ec1af8b0f29f34122bbc
23317 Author: Detlev Zundel <dzu@denx.de>
23318 Date: Fri Feb 22 17:21:32 2008 +0100
23320 Replace deprecated "ramdisk" with "ramdisk_size" kernel parameter.
23322 The Linux commit fac8b209b1084bc85748bd54e13d00c1262b220f ("Remove
23323 final traces of long-deprecated "ramdisk" kernel parm") makes these
23324 changes neccessary.
23326 Signed-off-by: Detlev Zundel <dzu@denx.de>
23328 commit d01b847c5cd070895c4ba178c85cd068a95cf7cd
23329 Author: Larry Johnson <lrj@acm.org>
23330 Date: Thu Feb 21 13:58:16 2008 -0500
23332 LM75 bug fix for negative temperatures
23334 When the LM75 temperature sensor measures a temperature below 0 C, the
23335 current driver does not perform sign extension, so the result returned is
23336 256 C too high. This patch fixes the problem.
23338 Signed-off-by: Larry Johnson <lrj@acm.org>
23340 commit 5a910c224b13e413bda41922379add6d75c32da3
23341 Author: Heiko Schocher <hs@denx.de>
23342 Date: Thu Feb 21 18:33:45 2008 +0100
23344 IDS8247: update MAINTAINER entry.
23346 Signed-off-by: Heiko Schocher <hs@denx.de>
23348 commit 79eac2bfb591f2b028ec1735049dc91e4320de4a
23349 Author: Heiko Schocher <hs@denx.de>
23350 Date: Thu Feb 21 18:31:15 2008 +0100
23352 Fix device tree for mgsuvd board.
23354 Rename the "scc" node in "ethernet" for the mgsuvd board.
23356 Signed-off-by: Heiko Schocher <hs@denx.de>
23358 commit 2e721094a70a52206af2e1bf1208d9a7131f6dad
23359 Author: Yuri Tikhonov <yur@emcraft.com>
23360 Date: Thu Feb 21 14:23:42 2008 +0100
23362 lwmon5: enable hardware watchdog
23364 Some boards (e.g. lwmon5) may use rather small watchdog intervals, so
23365 causing it to reboot the board if U-Boot does a long busy-wait with
23366 udelay(). Thus, for these boards we have to restart WD more
23369 This patch splits the busy-wait udelay() into smaller, predefined,
23370 intervals, so that the watchdog timer may be resetted with the
23371 configurable (CONFIG_WD_PERIOD) interval.
23373 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
23375 commit bc77881247ee6f95d7a9ebc499d26b96bae38c9d
23376 Author: Anatolij Gustschin <agust@denx.de>
23377 Date: Thu Feb 21 12:52:29 2008 +0100
23379 ppc4xx: Support for ATI Radeon 9200 card on sequoia
23381 Adds configuration option for ATI Radeon 9200 card
23382 support to sequoia config file. If CONFIG_VIDEO
23383 is enabled, TEXT_BASE should be changed to 0xFFF80000.
23385 Signed-off-by: Anatolij Gustschin <agust@denx.de>
23387 commit 5a9abcc317cf3c8a69559ff83081f4e5d719edb7
23388 Author: Kumar Gala <galak@kernel.crashing.org>
23389 Date: Mon Feb 18 08:18:07 2008 -0600
23391 Remove duplicate defines for ARRAY_SIZE
23393 A few duplicate of the ARRAY_SIZE macro sneaked in since we put
23394 the define in common.h.
23396 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23398 commit 81d93e5c4b83d8b6dcee69de6f4a14ccf6f7114a
23399 Author: Kumar Gala <galak@kernel.crashing.org>
23400 Date: Mon Feb 18 08:09:37 2008 -0600
23402 ppc: Allow boards to specify effective amount of memory
23404 For historical reasons we limited the stack to 256M because some boards
23405 could only map that much via BATS. However newer boards are capable of
23406 mapping more memory (for example 85xx is capable of doing up to 2G).
23408 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
23410 commit 755c35f54ba7eb7687aa7935e04a02a01ef1b27b
23411 Author: Mike Frysinger <vapier@gentoo.org>
23412 Date: Mon Feb 18 05:24:13 2008 -0500
23414 include autoconf.mk before any other .mk files
23416 This bumps the autoconf.mk include step above board/cpu/arch/etc... so that
23417 those .mk files can have make if statements based on the current config.
23419 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23421 commit 16fe77752eee099b9fb61ed73460e51cc94b37ba
23422 Author: Mike Frysinger <vapier@gentoo.org>
23423 Date: Mon Feb 18 05:10:07 2008 -0500
23425 error check autoconf.mk generation
23427 If any of the steps for generating autoconf.mk fail currently, they go
23428 unnoticed. To fix, we can simply add 'set -e' to the long list of commands.
23429 This is simpler and more robust than placing '|| exit $$?' after every line.
23431 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23433 commit 019895a8dee71a9f00da05c03e379f45d581b0fe
23434 Author: Stefano Babic <sbabic@denx.de>
23435 Date: Mon Feb 18 08:03:51 2008 +0100
23437 Fix bug in dependency checking
23439 By adding VERSION_FILE to the PHONY targets the script
23440 /tools/setlocalversion is always called and version_autogenerated.h
23441 is replaced only if the script find a modified source file.
23443 Signed-off-by: Stefano Babic <sbabic@denx.de>
23445 commit 98ba144ccc912eee90dd42699f023c497ce774c6
23446 Author: Kyungmin Park <kmpark@infradead.org>
23447 Date: Mon Feb 18 14:35:43 2008 +0900
23449 Fix GPMC CS2 memory setup at apollon
23451 It disables the current map first
23453 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
23455 commit e845e07e1e6e64f40e35688439d3cdcf01cfff4f
23456 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23457 Date: Sun Feb 17 23:52:46 2008 +0100
23459 uli526x: Fix multiple differ in signedness and parentheses around comparison
23461 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23463 commit beeccf7a5dc5415c202e0132a33c58fc316c2a62
23464 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23465 Date: Sun Feb 17 16:58:04 2008 +0100
23467 MIPS: Fix CFG_NO_FLASH support
23469 - Fix flash_init call when CFG_NO_FLASH is used
23470 - Remove no more needed flash.c for qemu-mips
23472 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23474 commit edfed1d91df2b2670a812ca9d1a1f9faae7dba47
23475 Author: Mike Frysinger <vapier@gentoo.org>
23476 Date: Sat Feb 16 02:40:18 2008 -0500
23478 easylogo: clean up some more and add -r (rgb) support
23480 Michael Hennerich added support for outputting an image in RGB format rather
23481 than forcing YUYV all the time. This makes obvious sense if the display you
23482 have takes RGB input rather than YUYV.
23484 Rather than hack in support for options, I've converted it to use getopt and
23485 cleaned up the argument parsing in the process.
23487 Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
23488 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23490 commit f65c98129ccada3f7caf97d80395a95b84e911de
23491 Author: Mike Frysinger <vapier@gentoo.org>
23492 Date: Sat Feb 16 02:12:37 2008 -0500
23494 Makefile: add target for $(LDSCRIPT)
23496 If the $(LDSCRIPT) does not exist (normally it's board/$(BOARD)/u-boot.lds),
23497 then change into the board directory and try and create it. This allows you
23498 to generate the linker script on the fly based upon board defines (like the
23499 Blackfin boards do).
23501 There should be no regressions due to this change as the normal case is to
23502 already have a u-boot.lds file. If that's the case, then there's nothing to
23503 generate, and so make will always exit. The fix here is that if the linker
23504 script does not exist, the implicit rules take over and attempt to guess how
23505 to generate the file.
23507 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23509 commit 5583cbf736474ef754e128a54fb78632f57b48fd
23510 Author: Marian Balakowicz <m8@semihalf.com>
23511 Date: Thu Feb 21 17:27:49 2008 +0100
23513 [new uImage] Fix erroneous use of image_get_magic() in fdc/usb cmds
23515 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23517 commit 2242f5369822bc7780db95c47985bb408ea9157b
23518 Author: Marian Balakowicz <m8@semihalf.com>
23519 Date: Thu Feb 21 17:27:41 2008 +0100
23521 [new uImage] Rename and move print_image_hdr() routine
23523 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23525 commit f50433d670ec2ee9e96abac67cdc6e5e061a810d
23526 Author: Marian Balakowicz <m8@semihalf.com>
23527 Date: Thu Feb 21 17:20:20 2008 +0100
23529 [new uImage] Add fit_parse_conf() and fit_parse_subimage() routines
23531 Introducing routines for parsing new uImage format bootm arguments:
23532 [<addr>]#<conf> - configuration specification
23533 [<addr>]:<subimg> - subimage specification
23535 New format images can contain multiple subimages of the same type. For example
23536 a single new format image file can contain three kernels, two ramdisks and a
23537 couple of FDT blobs. Subimage and configuration specifications are extensions
23538 to bootm (and other image-related commands) arguments' syntax that allow to
23539 specify which particular subimage should be operated on.
23541 Subimage specification is used to denote a particular subimage. Configurations
23542 are a bit more complex -- they are used to define a particualr booting setup,
23543 for example a (kernel, fdt blob) pair, or a (kernel, ramdisk, fdt blob) tuple,
23546 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23548 commit fff888a1997ff7de9b29e24050fc4a0fd403ba16
23549 Author: Marian Balakowicz <m8@semihalf.com>
23550 Date: Thu Feb 21 17:20:19 2008 +0100
23552 [new uImage] Add gen_get_image() routine
23554 This routine assures that image (whether legacy or FIT) is not
23555 in a special dataflash storage.
23557 If image address is a dataflash address image is moved to system RAM.
23559 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23561 commit 75d3e8fbd93c14d9929d024c75af2d742c76db70
23562 Author: Marian Balakowicz <m8@semihalf.com>
23563 Date: Thu Feb 21 17:20:18 2008 +0100
23565 [new uImage] Pull in libfdt if CONFIG_FIT is enabled
23567 New uImage format (Flattened Image Tree) requires libfdt
23568 functionality, print out error message if CONFIG_OF_LIBFDT
23571 New uImage support is enabled by defining CONFIG_FIT (and CONFIG_OF_LIBFDT).
23572 This commit turns it on by default.
23574 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
23576 commit 1ba639da5604a64b3ed884a2cbb1c5414a9fa728
23577 Author: Michael Schwingen <michael@schwingen.org>
23578 Date: Mon Feb 18 23:16:35 2008 +0100
23580 CFI: Do not use uninitialized cmd_reset
23582 Do not use uninitialized cmd_reset; issue both AMD and Intel reset
23585 From a short test, it looks like AMD-style flash roms treat *any* unknown
23586 command write as a reset, at least when in CFI Query mode, so issuing the
23587 Intel reset command to AMD-style flashs seems safe (from the small sample I
23588 have), plus the 3-cycle magic sequence should kick the state machine into
23589 the right state even without a reset command. Since the AMD-style flashs
23590 require the unlock sequence for real operation, I chose to try the AMD reset
23591 command first, so that Intel flashs do no see an invalid command prior to
23594 I have tested the patch on AM29LV320-style flashs from Fujitsu and Macronix,
23595 plus Intel StrataFlash.
23597 Signed-off-by: Michael Schwingen <michael@schwingen.org>
23598 Signed-off-by: Stefan Roese <sr@denx.de>
23600 commit e7a85f26830c9f2e78506421c2d519a2965bc7a1
23601 Author: Rafal Jaworowski <raj@semihalf.com>
23602 Date: Thu Feb 21 11:56:44 2008 +0100
23604 API: Add (c) and licensing notice to the public API header.
23606 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
23608 commit 928d1d77f8623c120d8763e20e1ca58df9c5c4c6
23609 Author: Yuri Tikhonov <yur@emcraft.com>
23610 Date: Thu Feb 21 11:06:07 2008 +0100
23612 Fix CPU POST test failure
23614 The CPU POST test code (run from cpu_post_exec_31()) doesn't follow the
23615 ABI carefully, at least the CR3, CR4, and CR5 fields of CR are clobbered
23616 by it. The gcc-4.2 with its more aggressive optimization exposes this fact.
23617 This patch just saves the CR value before running the test code, so allowing
23618 it to do anything it wants with CR.
23620 Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
23621 Acked-by: Yuri Tikhonov <yur@emcraft.com>
23624 commit d5908b093955415f3d340706378b991f911af671
23625 Author: Jon Loeliger <jdl@freescale.com>
23626 Date: Wed Feb 20 15:26:51 2008 -0600
23628 8610HPCD: Document the flashbank selection switches.
23630 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23632 commit a551cee99ad1d1da20fd23ad265de47448852f56
23633 Author: Jon Loeliger <jdl@freescale.com>
23634 Date: Wed Feb 20 14:22:26 2008 -0600
23636 86xx: Fix GUR PCI config registers properly.
23638 Back in commit 975a083a5ef785c414b35f9c5b8ae25b26b41524 where
23639 I tried to "8610HPCD: Fix typos in two PCI setup registers", I
23640 botched it due to not realizing that 8610 and 8641 had different
23641 Global Utility Register defintions, one of which was like 85xx,
23642 and the other wasn't. Correct this problem by introducing two
23643 symbols, one for each 86xx SoC, but neither of which is named
23644 anything like 85xx.
23646 My bad. Lovely Wednesday with git bisect. You know.
23648 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23650 commit cb06eb961bdffc8728b38c242473d802e83ab2b4
23651 Author: Jon Loeliger <jdl@freescale.com>
23652 Date: Wed Feb 20 12:24:11 2008 -0600
23654 8610HPCD: Don't use VIDEO/CFB_CONSOLE by default.
23656 Without an actual supported video card hooked up, enabling
23657 the CONFIG_VIDEO by default just makes it look broken by
23658 routing all console output to the video card. Don't.
23660 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23662 commit 4d264eff4312f230776b913edade7ceb75f1b1e0
23663 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23664 Date: Wed Jan 30 15:08:15 2008 -0600
23666 ColdFire: Fix missing code flash size for M5485EVB
23668 Signed-off-by: James Mahan <kmahan@freescale.com>
23669 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23671 commit c54f9263e4e11e34b1e70c160bc467ef1d8ec59d
23672 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
23673 Date: Wed Jan 30 15:04:42 2008 -0600
23675 ColdFire: Fix 5282 and 5271 interrupt mask bit
23677 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
23679 commit 975a083a5ef785c414b35f9c5b8ae25b26b41524
23680 Author: Jon Loeliger <jdl@freescale.com>
23681 Date: Tue Feb 19 12:31:08 2008 -0600
23683 8610HPCD: Fix typos in two PCI setup registers.
23685 The two symbols MPC86xx_PORDEVSR_IO_SEL and MPC86xx_PORBMSR_HA
23686 were erroneously present as 85xx names and values, leftover from
23687 the clone wars. Fix this by removing the 85xx cruft from the
23690 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23692 commit 13f5433f700d4da9f6fdf2a4bb80310133a7c170
23693 Author: Jon Loeliger <jdl@freescale.com>
23694 Date: Mon Feb 18 14:01:56 2008 -0600
23696 86xx: Convert sbc8641d to use libfdt.
23698 This is the proper fix for a missing closing brace in the function
23699 ft_cpu_setup() noticed by joe.hamman <at> embeddedspecialties.com.
23700 The ft_cpu_setup() function in mpc8641hpcn.c should have been
23701 removed earlier as it was under the obsolete CONFIG_OF_FLAT_TREE,
23702 but was missed. Only, the sbc8641d was nominally still using it.
23703 It all got ripped out, and the funcality that was in ft_board_setup()
23704 was refactored to remove the CPU portions into the new file
23705 cpu/mpc86xx/fdt.c instead. Make sbc8641d use this now.
23707 Based loosely on an original patch from joe.hamman@embeddedspecialties.com
23709 Signed-off-by: Jon Loeliger <jdl@freescale.com>
23711 commit 04efddc87c50c84f85dad5c331c634a6ce830a83
23712 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23713 Date: Sun Feb 17 23:35:31 2008 +0100
23715 mpc86xx: Fix unused variable 'config' and 'immap'
23717 and remove useless CONFIG_DDR_INTERLEAVE
23719 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23721 commit 83d1b3876695c4f21faff2b731d9ef83f38ed208
23722 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23723 Date: Sun Feb 17 23:03:36 2008 +0100
23725 mpc86xx: Fix implicit declaration of functions 'init_laws' and 'disable_law'
23727 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23729 commit b6f29c84c208a091f95a10cbc9852d729659ba20
23730 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23731 Date: Sun Feb 17 14:15:31 2008 +0100
23733 s3c24x0: Fix unused variable 'i' in function 'serial_init_dev'
23735 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23737 commit 0937b8d869fdb42d6ad4fe312958639bd62c973f
23738 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23739 Date: Sun Feb 17 14:15:32 2008 +0100
23741 pxa: fix assignment from incompatible pointer type
23743 fix mmc_bread function prototype
23745 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23747 commit 64d792063fff90b8118179b092feee09fe5cae13
23748 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23749 Date: Sun Feb 17 14:15:30 2008 +0100
23751 at91cap9adk: fix implicit declaration of function 'eth_init'
23753 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23755 commit 375c4353db8f900f7ec772e26fab116ec00f7d3a
23756 Author: Wolfgang Denk <wd@denx.de>
23757 Date: Sun Feb 17 15:43:44 2008 +0100
23759 Remove files added by mistake, update CHANGELOG.
23761 Signed-off-by: Wolfgang Denk <wd@denx.de>
23763 commit b738654d3c84a30f2bfd9a8d7652ff20807c890c
23764 Author: Mike Nuss <mike@terascala.com>
23765 Date: Wed Feb 6 11:10:11 2008 -0500
23767 PPC440EPx: Optionally enable second I2C bus
23769 The option CONFIG_I2C_MULTI_BUS does not have any effect on Sequoia, the
23770 PPC440EPx reference platform, because IIC1 is never enabled. Add Sequoia board
23771 code to turn on IIC1 if CONFIG_I2C_MULTI_BUS is selected.
23773 Signed-off-by: Mike Nuss <mike@terascala.com>
23774 Cc: Stefan Roese <sr@denx.de>
23776 commit ef5b4f221c22d05770878513951745f236b5b43f
23777 Author: Niklaus Giger <niklaus.giger@netstal.com>
23778 Date: Tue Feb 5 10:26:44 2008 +0100
23780 ppc4xx: HCU4/5. Cleanup configs
23782 - hcu4.h: Removed define of CONFIG_PPC405GPr
23783 - Corrected phy addresses
23784 - Fix boot variables
23785 - Respect line length of 80 chars
23787 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23789 commit 74973126d1be63ac75bdc192f46234dca3a7c421
23790 Author: Niklaus Giger <niklaus.giger@netstal.com>
23791 Date: Tue Feb 5 11:31:28 2008 +0100
23793 ppc4xx: HCU4/5. Cleanups
23795 - Fix some coding style violations.
23796 - Use in/out_u16/32 where appropriate.
23797 - Use register names from ppc405.h.
23798 - Fix trace useage for Lauterbach.
23799 - Remove obsolete generation HCU2.
23800 - Renamed fixed_hcu4_sdram to init_ppc405_sdram.
23802 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23804 commit 8cc10d06b833ed917a19ad358c8ebbed8bc19555
23805 Author: Niklaus Giger <niklaus.giger@netstal.com>
23806 Date: Tue Feb 5 10:26:41 2008 +0100
23808 ppc4xx: PPC405GPr fix missing register definitions
23810 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
23812 commit 214398d9cb22268d9d4f7563359edca0f78297a2
23813 Author: Larry Johnson <lrj@acm.org>
23814 Date: Fri Jan 18 21:49:05 2008 -0500
23816 ppc4xx: Beautify configuration files for Sequoia and Korat boards
23818 Signed-off-by: Larry Johnson <lrj@acm.org>
23820 commit 30c6a241e88499f536e86d325759e29ba00ff67f
23821 Author: Anatolij Gustschin <agust@denx.de>
23822 Date: Fri Feb 15 20:09:01 2008 +0100
23824 Wipe out assembler warnings while compiling x86 biosemu
23826 This patch tries to get rid of some assembler warnings about
23827 changed .got2 section type while compiling x86 bios emulator
23830 Signed-off-by: Anatolij Gustschin <agust@denx.de>
23832 commit 67a4389e39ad853d65b72e2b7cad15c7e8291147
23833 Author: Wolfgang Denk <wd@denx.de>
23834 Date: Fri Feb 15 00:57:09 2008 +0100
23836 Prepare v1.3.2-rc1 release candidate
23838 commit f33e9653c9c09868995d788511d573771c209fe5
23839 Author: Anatolij Gustschin <agust@denx.de>
23840 Date: Fri Feb 15 00:13:20 2008 +0100
23842 Fix compile warning on lib_ppc/board.c
23844 Signed-off-by: Anatolij Gustschin <agust@denx.de>
23846 commit e5c6f9f8bec4dff9603419161e3a15cc8ad5d5f4
23847 Author: Anatolij Gustschin <agust@denx.de>
23848 Date: Thu Feb 14 18:22:04 2008 +0100
23850 Add Radeon Mobility 9200 pci device id to the radeon driver
23852 This patch extends PCI device id table of the
23853 radeon driver so that the driver will also support
23854 Radeon Mobility 9200 (M9+) based boards.
23856 Signed-off-by: Anatolij Gustschin <agust@denx.de>
23858 commit 1b8607e1f7143548c6062c28371449ec69588c00
23859 Author: Anatolij Gustschin <agust@denx.de>
23860 Date: Thu Feb 14 18:19:50 2008 +0100
23862 Extend ATI Radeon driver to support more video modes
23864 Adds ATI Radeon 9200 support for 1280x1024, 1024x768,
23865 800x600, 640x480 at 24, 16 and 8 bpp.
23867 Signed-off-by: Anatolij Gustschin <agust@denx.de>
23869 commit 4124382de029d361162a4b8cecc773eb8f26e2a8
23870 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23871 Date: Sun Feb 10 17:05:20 2008 +0100
23873 xsengine: fix typo and few coding style
23875 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23877 commit 6f4abee789b6d9be3ec4b97ad48f509355559e9e
23878 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
23879 Date: Fri Feb 8 21:25:58 2008 +0100
23881 Fix wrong memory limit calculation in memory-test
23883 If the length of the memory address range passed to the "mtest" command is
23884 not of the form 2^x - 1, not all address lines are tested. This bug is
23885 inherited from the original software at
23886 http://www.netrino.com/Embedded-Systems/How-To/Memory-Test-Suite-C. Fix
23889 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
23891 commit 7e30f5eac7f07082a7ca77b7d91b944a8d0af6db
23892 Author: Wolfgang Denk <wd@denx.de>
23893 Date: Fri Feb 15 00:11:39 2008 +0100
23895 Coding STyle cleanup.
23897 Signed-off-by: Wolfgang Denk <wd@denx.de>
23899 commit f6921e3dc331293c873ec4d109fd5517a42a90b3
23900 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23901 Date: Tue Feb 5 13:30:43 2008 +0900
23903 sh: Fix register address of SH7722
23905 The address of SH7722 is wrong by old document.
23906 This patch fixes this problem.
23908 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
23910 commit 0ec7a061fb1c277f6afd73d61dd71bd21e7ef7b2
23911 Author: Mike Frysinger <vapier@gentoo.org>
23912 Date: Mon Feb 4 17:44:23 2008 -0500
23914 only update version header as needed
23916 Constantly rebuilding the version header will force useless relinking, so we
23917 simply need to compare the new header with the existing one before updating
23920 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23922 commit 208447f8e953f347425eb92c8e28d59e6d911363
23923 Author: Mike Frysinger <vapier@gentoo.org>
23924 Date: Mon Jan 28 05:56:19 2008 -0500
23926 Do not specify a CROSS_COMPILE default when executing size
23928 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
23930 commit 1f780aa6f17a5d79791d69ec1d2f66d76ac45d8e
23931 Author: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
23932 Date: Wed Feb 13 11:19:19 2008 +0100
23934 Fix return value of mtest when CFG_ALT_MEMTEST set
23936 Fix a missing return statement from a non-void function.
23938 Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
23940 commit 943afa229cf5bf70ef917c7eb6bd0db59a1ba602
23941 Author: Timur Tabi <timur@freescale.com>
23942 Date: Wed Jan 9 14:35:26 2008 -0600
23944 85xx, 86xx: Determine I2C clock frequencies and store in global_data
23946 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
23948 Update the get_clocks() function in 85xx and 86xx to determine the I2C
23949 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
23951 Signed-off-by: Timur Tabi <timur@freescale.com>
23953 commit b931b3a9c3bdfaaeaa71e57a6026eec726005b08
23954 Author: Wolfgang Denk <wd@denx.de>
23955 Date: Thu Feb 14 23:18:01 2008 +0100
23957 TQM834x: clean up configuration
23959 Get board name consistent with Linux and elsewhere;
23960 get rid of local network definitions etc.
23962 Signed-off-by: Wolfgang Denk <wd@denx.de>
23964 commit 38cc09c55b1d7f233789052c6fc462e5377669a9
23965 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23966 Date: Thu Feb 14 08:02:12 2008 +0100
23968 TFTP: fix search of ':' in BootFile
23970 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
23972 commit 0bc9efada170096c6b273f19165e32936d330d80
23973 Author: Wolfgang Denk <wd@denx.de>
23974 Date: Thu Feb 14 22:46:55 2008 +0100
23976 Coding style cleanup; update CHANGELOG.
23978 Signed-off-by: Wolfgang Denk <wd@denx.de>
23980 commit e7670f6c1e52ae6d2a43ff75a8bcfa7a5c86e47b
23981 Author: Wolfgang Denk <wd@denx.de>
23982 Date: Thu Feb 14 22:43:22 2008 +0100
23984 PPC: Use r2 instead of r29 as global data pointer
23986 R29 was an unlucky choice as with recent toolchains (gcc-4.2.x) gcc
23987 will refuse to use load/store multiple insns; instead, it issues a
23988 list of simple load/store instructions upon function entry and exit,
23989 resulting in bigger code size, which in turn makes the build for a
23994 Signed-off-by: Wolfgang Denk <wd@denx.de>
23996 commit 3c234efa693bc59906c2be55c7918ecbb55392ea
23997 Author: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
23998 Date: Wed Jan 30 09:08:49 2008 +0100
24000 ARM: make the machid configurable via the environment
24002 If the variable "machid" exists, let do_bootm_linux use that instead
24003 of bd->bi_arch_number.
24005 Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@digi.com>
24007 commit dd24058407c5add45cc60aec6c757ddc1a17e1b0
24008 Author: Vlad Lungu <vlad@comsys.ro>
24009 Date: Wed Jan 23 16:34:46 2008 +0200
24011 Use #ifdef CONFIG_FSLDMAFEC
24013 MCD_tasks.c lacks [subject] so compilation of mips targets (and more, probably)
24016 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
24018 commit 26c7bab81e08dc7bd696c48f753428a829629bd8
24019 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24020 Date: Sat Jan 19 10:25:59 2008 +0900
24022 common/miiphyutil.c: Cleanup MII_DEBUG and debug()
24024 Current MII_DEBUG is confusing in two ways. One is useless define-then-
24025 undef at the top of the file. The other is there is only one debug() in
24026 this file, and that doesn't seem worthwhile to bother having MII_DEBUG.
24027 While there are many useful printf()/puts() debug codes, but they are for
24028 DEBUG, not for MII_DEBUG.
24030 This patch tries to put them all together into MII_DEBUG and debug().
24032 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
24034 commit 751b9b5189f3274b03c809172631316d6b002c82
24035 Author: Kyungmin Park <kmpark@infradead.org>
24036 Date: Thu Jan 17 16:43:25 2008 +0900
24038 OneNAND Initial Program Loader (IPL) support
24040 This patch enables the OneNAND boot within U-Boot.
24041 Before this work, we used another OneNAND IPL called X-Loader based
24042 on open source. With this work, we can build the oneboot.bin image
24043 without other program.
24045 The build sequence is simple.
24046 First, it compiles the u-boot.bin
24047 Second, it compiles OneNAND IPL
24048 Finally, it becomes the oneboot.bin from OneNAND IPL and u-boot.bin
24049 The mechanism is similar with NAND boot except it boots from itself.
24051 Another thing is that you can only use the OneNAND IPL only to work
24052 other bootloader such as RedBoot and so on.
24054 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
24056 commit 21f6f9636f0e978397548751347425fbf8d42bb3
24057 Author: Andy Fleming <afleming@freescale.com>
24058 Date: Wed Jan 16 13:06:59 2008 -0600
24060 Fix CONFIG_MMC usage in fat code
24062 A #if statement in fat.c depended on CONFIG_MMC, instead of
24063 defined(CONFIG_MMC). This meant CONFIG_MMC needed to be defined
24064 as "1" rather than just defined. Now it's better.
24066 Signed-off-by: Andy Fleming <afleming@freescale.com>
24068 commit f57d7d364ce189e39b0a64338d2f8012c074a2bd
24069 Author: Rafal Jaworowski <raj@semihalf.com>
24070 Date: Tue Jan 15 12:52:31 2008 +0100
24072 ppc: Refactor cache routines, so there is only one common set.
24074 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
24076 commit 3f2ac8f928c76cbd2374437b2d079f8b4324aaba
24077 Author: Jon Loeliger <jdl@jdl.com>
24078 Date: Wed Jan 23 15:55:02 2008 -0600
24080 86xx: Fix compilation warning in sys_eprom.c
24082 sys_eeprom.c:82:9: warning: unknown escape sequence '\/'
24084 Signed-off-by: Jon Loeliger <jdl@freescale.com>
24086 commit 65230107025733e89e28fd5e5cfd916d4953c28a
24087 Author: Haavard Skinnemoen <hskinnemoen at>
24088 Date: Fri Feb 22 11:40:50 2008 +0000
24090 Move AT91RM9200DK board support under board/atmel
24092 We already have a vendor subdir for Atmel, so we should use it.
24094 Signed-off-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
24096 commit 6d0943a6be99977d6d853d51749e9963d68eb192
24097 Author: Andreas Engel <andreas.engel@ericsson.com>
24098 Date: Mon Jan 14 09:06:52 2008 +0000
24100 ARM: cleanup duplicated exception handlingcode
24102 Move duplicated exception handling code into lib_arm.
24104 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
24106 commit ea8d989f4ef8203e1c0291e62435a8c62e3cfb29
24107 Author: Timo Tuunainen <timo.tuunainen@sysart.fi>
24108 Date: Fri Feb 1 10:09:03 2008 +0000
24110 Support for Artila M-501 starter kit
24112 Kimmo Leppala / Sysart and
24113 Timo Tuunainen / Sysart
24115 commit 9604b6e53ddae4fe00a488cbcd6b0e6cb344bccc
24116 Author: Stelian Pop <stelian@popies.net>
24117 Date: Mon Feb 11 10:50:19 2008 +0000
24121 ---------------------------------
24123 read_dataflash() takes a signed char pointer as a parameter. Silence a
24124 few warnings dues to incorrect parameter types in env_dataflash.c.
24126 Signed-off-by: Stelian Pop <stelian@popies.net>
24128 commit 64e8a06af68cda174a8a06d0a61fce5e5bb189d7
24129 Author: Stelian Pop <stelian@popies.net>
24130 Date: Thu Feb 7 09:42:57 2008 +0000
24132 AT91CAP9 support : move board files to Atmel vendor directory.
24134 AT91CAP9 support : move at91cap9adk board files to Atmel vendor directory.
24136 Signed-off-by: Stelian Pop <stelian@popies.net>
24138 commit 7263ef191b87da94768f762c7093bedeb70db98f
24139 Author: Stelian Pop <stelian at>
24140 Date: Thu Jan 3 21:15:56 2008 +0000
24142 AT91CAP9 support : MACB changes
24144 Signed-off-by: Stelian Pop <stelian <at> popies.net>
24145 Acked-by: Haavard Skinnemoen <hskinnemoen <at> atmel.com>
24147 commit 6afcabf11d7321850f4feaadfee841488ace54c5
24148 Author: Stelian Pop <stelian@popies.net>
24149 Date: Thu Feb 7 16:37:54 2008 +0000
24151 AT91CAP9 support : board/ files
24153 Signed-off-by: Stelian Pop <stelian@popies.net>
24155 commit fefb6c10928caa9e71335cad64dcb65c83fce8ab
24156 Author: Stelian Pop <stelian at>
24157 Date: Wed Jan 30 21:15:54 2008 +0000
24159 AT91CAP9 support : cpu/ files
24161 Signed-off-by: Stelian Pop <stelian <at> popies.net>
24163 commit fa506a926cec348805143576c941f8e61b333cc0
24164 Author: Stelian Pop <stelian@popies.net>
24165 Date: Thu Jan 31 21:15:53 2008 +0000
24167 AT91CAP9 support : include/ files
24169 Signed-off-by: Stelian Pop <stelian@popies.net>
24171 commit 20b197c6f2799af399a68f96a1aff543a75621b8
24172 Author: Stelian Pop <stelian@popies.net>
24173 Date: Sun Jan 20 19:49:21 2008 +0000
24175 AT91CAP9 support : build integration
24177 Signed-off-by: Stelian Pop <stelian@popies.net>
24179 commit d49fe4bed5b69ec910909d1bd62da23ecd8801fd
24180 Author: Stelian Pop <stelian@popies.net>
24181 Date: Sun Jan 20 21:07:00 2008 +0000
24183 Improve DataFlash CS definition.
24185 Use a structure instead of the error prone unnamed array to
24186 define the possible dataflash banks.
24188 Signed-off-by: Stelian Pop <stelian@popies.net>
24190 commit a6cdd21b56014208706238712a853a9e9a0a2290
24191 Author: Stelian Pop <stelian@popies.net>
24192 Date: Sat Jan 19 21:09:35 2008 +0000
24194 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on
24196 Fix arm926ejs compile when SKIP_LOWLEVEL_INIT is on.
24198 cpu/arm926ejs/start.o: In function `cpu_init_crit':
24199 .../cpu/arm926ejs/start.S:227: undefined reference to `lowlevel_init'
24201 Signed-off-by: Stelian Pop <stelian@popies.net>
24203 commit ea686f52e45b3df2938866d3f5a98bb2556dfe2b
24204 Author: Peter Pearse <peter.pearse@arm.com>
24205 Date: Fri Feb 1 16:50:24 2008 +0000
24207 Fix timer overflow in DaVinci
24208 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
24210 commit f4e7cbfcb0fcbc325a2bcfea7e00e3dd37f93846
24211 Author: Peter Pearse <peter.pearse@arm.com>
24212 Date: Fri Feb 1 16:49:08 2008 +0000
24214 Update board NetStar
24215 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
24217 commit b7f6193e76651e1fd606e46eb11915b53cb6618b
24218 Author: Niklaus Giger <niklaus.giger@netstal.com>
24219 Date: Tue Feb 5 10:26:42 2008 +0100
24221 ppc4xx: HCU4/5. Fix make O=../xx
24223 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24225 commit 29e3500cbc43c89eff6e720ca83e375deeecd9b3
24226 Author: Larry Johnson <lrj@acm.org>
24227 Date: Tue Jan 22 08:51:59 2008 -0500
24229 ppc4xx: Add CONFIG_4xx_DCACHE compile switch to Denali-core SPD code
24231 Signed-off-by: Larry Johnson <lrj@acm.org>
24233 commit fe891ecf4d187e9d11dde869ed4623af52b54451
24234 Author: Hiroshi Ito <ito@mlb.co.jp>
24235 Date: Thu Jan 31 18:35:04 2008 +0900
24237 NFS Timeout with large files.
24239 Retry to send NFS packet before reaching timeout.
24241 Signed-off-by: Hiroshi Ito <ito@mlb.co.jp>
24243 commit 88f72527f5b89c0905ad5c36cc2ef8d29dd6bbf0
24244 Author: Johannes Stezenbach <js@sig21.net>
24245 Date: Tue Jan 29 00:11:25 2008 +0100
24247 Add dependencies to avoid race conditions with parallel make.
24249 Signed-off-by: Johannes Stezenbach <js@sig21.net>
24251 commit 6d1b6f9f89c815eaca44acff8e73ece7181f61b6
24252 Author: Mike Frysinger <vapier@gentoo.org>
24253 Date: Mon Jan 28 05:46:01 2008 -0500
24255 Mark board_init_[fr] as noreturn
24257 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24259 commit 161b2af4d7b48fd602ce333c355a4df0337892bb
24260 Author: Mike Frysinger <vapier@gentoo.org>
24261 Date: Mon Jan 28 05:28:50 2008 -0500
24263 Only use TEXT_BASE if defined by the board
24265 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24267 commit 1b769881750030f10743808b9d6013e11f559350
24268 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24269 Date: Fri Jan 25 07:54:47 2008 +0100
24271 Fix remaining CONFIG_COMMANDS
24276 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24278 commit 0c9d42e6b0b83d507335a291e3ea99240038f4b9
24279 Author: Niklaus Giger <niklaus.giger@netstal.com>
24280 Date: Mon Jan 21 16:46:00 2008 +0100
24282 Add *~ to .gitignore
24284 One should never add a backup file ending in with ~ to the git repository.
24286 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
24288 commit 3cfb0c51b2bb5ede54eca85ace5b1ba12be314b0
24289 Author: Kumar Gala <galak@kernel.crashing.org>
24290 Date: Thu Jan 17 00:02:10 2008 -0600
24292 Remove duplicate defines for ARRAY_SIZE
24294 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24296 commit c77ce474b1c57b13e9d36d9830f147966c143694
24297 Author: Stelian Pop <stelian@popies.net>
24298 Date: Mon Jan 14 22:08:14 2008 +0100
24300 Fix incorrect address test in AT91F_DataflashSelect().
24302 Signed-off-by: Stelian Pop <stelian@popies.net>
24304 commit d9ad115bbf7bb0842de7dbd2502b7e430f83cc3d
24305 Author: Kumar Gala <galak@kernel.crashing.org>
24306 Date: Wed Feb 13 15:09:58 2008 -0600
24308 Fix building of fdt_support.c if DEBUG set
24310 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24312 commit ccd6e1464e5396bc1a9aebf7077ddf4342eafe03
24313 Author: Jon Loeliger <jdl@freescale.com>
24314 Date: Tue Feb 12 14:53:28 2008 -0600
24316 Add CFG_MPC86xx_DDR_ADDR and CFG_MPC86xx_DDR2_ADDR symbols
24318 These replace direct structure references for IMMR sections.
24320 Signed-off-by: Jon Loeliger <jdl@freescale.com>
24322 commit c62776be8dca4097ca03d4f9415f08d4887b45d0
24323 Author: Wolfgang Denk <wd@denx.de>
24324 Date: Tue Feb 12 00:45:06 2008 +0100
24326 Get rid of "#undef DEBUG" from board config files.
24328 Signed-off-by: Wolfgang Denk <wd@denx.de>
24330 commit 73bf1e2de7862bcdbd5a9f993b3e84b67c8ea9c8
24331 Author: Timur Tabi <timur@freescale.com>
24332 Date: Tue Jan 15 17:09:41 2008 -0600
24334 Remove #undef DEBUG from MPC83xx board header files
24336 Remove the "#undef DEBUG" line from all Freescale 83xx board header files.
24337 The inclusion of this line makes it impossible to enable debug code in
24338 other source files, because "#define DEBUG" typically needs to be defined
24339 before any header files are included.
24341 Signed-off-by: Timur Tabi <timur@freescale.com>
24343 commit 69018ce2e086e9caf35b914d675b82bc4888f077
24344 Author: Kumar Gala <galak@kernel.crashing.org>
24345 Date: Thu Jan 17 08:25:45 2008 -0600
24347 QE: Move FDT support into a common file
24349 Move the flat device tree setup for QE related devices into
24350 a common file shared between 83xx & 85xx platforms that have QE's.
24352 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24354 commit 5cf746c303710329f8040d9c62ee354313e3e91f
24355 Author: Marian Balakowicz <m8@semihalf.com>
24356 Date: Thu Jan 31 13:59:09 2008 +0100
24358 [new uImage] Move kernel data find code to get_kernel() routine
24360 Verification of the kernel image (in old format) and finding kernel
24361 data is moved to a dedicated routine. The routine will also hold
24362 support for, to be added, new image format.
24364 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24366 commit 7b325454fd231d4273de3fe373850f777fb086bf
24367 Author: Marian Balakowicz <m8@semihalf.com>
24368 Date: Thu Jan 31 13:58:20 2008 +0100
24370 [new uImage] Cleanup FDT handling in PPC do_boot_linux()
24372 Move FDT blob finding and relocation to a dedicated
24373 get_fdt() routine. It increases code readability and
24374 will make adding support for new uImage format easier.
24376 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24378 commit b6b0fe6460b7063ac60b9a3531ef210aedb31451
24379 Author: Marian Balakowicz <m8@semihalf.com>
24380 Date: Thu Jan 31 13:58:13 2008 +0100
24382 [new uImage] Cleanup do_botm_linux() boot allocations
24384 This patch moves common pre-boot allocation steps shared between PPC
24385 and M68K to a helper routines:
24388 - get_boot_sp_limit()
24389 - get_boot_cmline()
24393 - set_clocks_in_mhz()
24395 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24397 commit ceaed2b1e54ebf14d600e02fef016c8df5cc4d40
24398 Author: Marian Balakowicz <m8@semihalf.com>
24399 Date: Thu Jan 31 13:57:17 2008 +0100
24401 [new uImage] Move ramdisk loading to a common routine
24403 Ramdisk loading code, including initrd_high variable handling,
24404 was duplicated for PPC and M68K platforms. This patch creates
24405 common helper routine that is being called from both platform
24406 do_bootm_linux() routines.
24408 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24410 commit 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68
24411 Author: Marian Balakowicz <m8@semihalf.com>
24412 Date: Thu Jan 31 13:55:53 2008 +0100
24414 [new uImage] Removed dead ramdisk code on microblaze architectures
24416 Microblaze do_bootm_linux() includes ramdisk processing code but
24417 the ramdisk does not get used anywhere later on.
24419 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24421 commit 5ad03eb3854c162684222a718b44c0716ea0db03
24422 Author: Marian Balakowicz <m8@semihalf.com>
24423 Date: Thu Jan 31 13:55:39 2008 +0100
24425 [new uImage] Factor out common image_get_ramdisk() routine
24427 Architecture specific do_bootm_linux() routines share common
24428 ramdisk image processing code. Move this code to a common
24431 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24433 commit d3c5eb6dd1f4ed3c3388386cf1d1bf82aa51d56b
24434 Author: Marian Balakowicz <m8@semihalf.com>
24435 Date: Thu Jan 31 13:20:08 2008 +0100
24437 [new uImage] Move FDT error printing to common fdt_error() routine
24439 FDT error handling in PPC do_bootm_linux() shares the same message format.
24440 This patch moves error message printing to a helper fdt_error() routine.
24442 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24443 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
24445 commit 42b73e8ee00d48004791dea64b8093fb974c57e1
24446 Author: Marian Balakowicz <m8@semihalf.com>
24447 Date: Thu Jan 31 13:20:07 2008 +0100
24449 [new uImage] Factor out common routines for getting os/arch/type/comp names
24451 Move numeric-id to name translation for image os/arch/type/comp header
24452 fields to a helper routines: image_get_os_name(), image_get_arch_name(),
24453 image_get_type_name(), image_get_comp_name().
24455 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24457 commit e99c26694a384221d336f6448c06a57479c0baa4
24458 Author: Marian Balakowicz <m8@semihalf.com>
24459 Date: Thu Jan 31 13:20:07 2008 +0100
24461 [new uImage] Remove standalone applications handling from boootm
24463 Standalone applications are supposed to be run using the "go" command.
24464 This patch removes standalone images handling from the do_bootm().
24466 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24468 commit 4a2ad5ff6400698433dd7203d34939c3c9cc9bff
24469 Author: Marian Balakowicz <m8@semihalf.com>
24470 Date: Thu Jan 31 13:20:07 2008 +0100
24472 [new uImage] Remove OF_FLAT_TREE support from PPC bootm code
24474 Support for OF_FLAT_TREE is to be obsoleted in the near future,
24475 remove related code from the bootm routines.
24477 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24479 commit 82850f3d32a2661868ec6876bed7a22c55cef718
24480 Author: Marian Balakowicz <m8@semihalf.com>
24481 Date: Thu Jan 31 13:20:06 2008 +0100
24483 [new uImage] Use image API in SH do_bootm_linux() routine
24485 Introduce image handling API for lately added Hitachi SH architecture.
24487 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24489 commit 4a995edec1ac163d9326d143ffe2b47e7543407f
24490 Author: Marian Balakowicz <m8@semihalf.com>
24491 Date: Thu Jan 31 13:20:06 2008 +0100
24493 [new uImage] Rename architecture specific bootm code files
24495 Implementation of the do_bootm_linux() and other bootm helper routines is
24496 architecture specific code. As such it resides in lib_<arch> directories
24497 in files named <arch>_linux.c
24499 This patch renames those files to a more clear and accurate
24500 lib_<arch>/bootm.c form.
24502 List of the renamed files:
24503 lib_arm/armlinux.c -> lib_arm/bootm.c
24504 lib_avr32/avr32_linux.c -> lib_avr32/bootm.c
24505 lib_blackfin/bf533_linux.c -> lib_blackfin/bootm.c
24506 lib_i386/i386_linux.c -> lib_i386/bootm.c
24507 lib_m68k/m68k_linux.c -> lib_m68k/bootm.c
24508 lib_microblaze/microblaze_linux.c -> lib_microblaze/bootm.c
24509 lib_mips/mips_linux.c -> lib_mips/bootm.c
24510 lib_nios/nios_linux.c -> lib_nios/bootm.c
24511 lib_nios2/nios_linux.c -> lib_nios2/bootm.c
24512 lib_ppc/ppc_linux.c -> lib_ppc/bootm.c
24513 lib_sh/sh_linux.c -> lib_sh/bootm.c
24515 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24517 commit 7582438c285bf0cef82909d0f232de64ec567a8a
24518 Author: Marian Balakowicz <m8@semihalf.com>
24519 Date: Thu Jan 31 13:20:06 2008 +0100
24521 [new uImage] Return error on image move/uncompress overwrites
24523 Check for overwrites during image move/uncompress, return with error
24524 when the original image gets corrupted. Report clear message to the user
24525 and prevent further troubles when pointer to the corrupted images is passed
24526 to do_bootm_linux routine.
24528 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24530 commit f13e7b2e993c61fed1f607962501e051940d6e80
24531 Author: Marian Balakowicz <m8@semihalf.com>
24532 Date: Tue Jan 8 18:12:17 2008 +0100
24534 [new uImage] Cleanup image header pointer use in bootm code
24536 - use single image header pointer instead of a set of auxilliary variables.
24537 - add multi component image helper routines: get component size/data address
24539 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24541 commit 1ee1180b6e93e56d0282ac8d943e448e9d0eab20
24542 Author: Marian Balakowicz <m8@semihalf.com>
24543 Date: Tue Jan 8 18:17:10 2008 +0100
24545 [new uImage] Cleanup cmd_bootm.c
24547 - sort and cleanup headers, declarations, etc.
24548 - group related routines
24549 - cleanup indentation, white spaces
24551 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24553 commit af13cdbc01eaf88880978bfb4f603e012818ba24
24554 Author: Marian Balakowicz <m8@semihalf.com>
24555 Date: Tue Jan 8 18:11:45 2008 +0100
24557 [new uImage] Add memmove_wd() common routine
24559 Move common, watchdog sensible memmove code to a helper memmmove_wd() routine.
24561 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24563 commit 958fc48abddeab513ea4847e34f22a2e9fe67fe1
24564 Author: Marian Balakowicz <m8@semihalf.com>
24565 Date: Tue Jan 8 18:11:44 2008 +0100
24567 [new uImage] Fix FDT header verification in PPC do_boot_linux() routine
24569 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24571 commit 15158971f49255ccef54f0979a942cfd3de2ae52
24572 Author: Marian Balakowicz <m8@semihalf.com>
24573 Date: Tue Jan 8 18:11:44 2008 +0100
24575 [new uImage] Fix uImage header pointer use in i386 do_bootm_linux()
24577 Use image header copy instead of a (possibly corrupted) pointer to
24578 a initial image location.
24580 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24582 commit 261dcf4624b25f3c551efcf8634e9194fabba9c3
24583 Author: Marian Balakowicz <m8@semihalf.com>
24584 Date: Tue Jan 8 18:11:44 2008 +0100
24586 [new uImage] Remove I386 uImage fake_header() routine
24588 I386 targets are not using a uImage format, instead fake header
24589 is added to ram image before it is further processed by bootm.
24591 Remove this fixup and force proper uImage use for I386.
24593 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24595 commit 559316faf7eae0614c91d77f509b57d6c4c091ba
24596 Author: Marian Balakowicz <m8@semihalf.com>
24597 Date: Tue Jan 8 18:11:44 2008 +0100
24599 [new uImage] Move CHUNKSZ definition to image.h
24601 CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
24602 move this definition to a common header.
24604 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24606 commit 321359f20823e0b8c5ad38b64d007a6c48cda16e
24607 Author: Marian Balakowicz <m8@semihalf.com>
24608 Date: Tue Jan 8 18:11:43 2008 +0100
24610 [new uImage] Move gunzip() common code to common/gunzip.c
24612 Move gunzip(), zalloc() and zfree() to a separate file.
24613 Share zalloc() and zfree() with cramfs uncompress routine.
24615 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24617 commit d45d5a18b6b36688f2365623f9d550566c664b5b
24618 Author: Marian Balakowicz <m8@semihalf.com>
24619 Date: Tue Jan 8 18:11:43 2008 +0100
24621 [new uImage] Cleanup OF/FDT #if/#elif/#endif use in do_bootm_linux()
24623 Make CONFIG_OF_LIBFDT and CONFIG_OF_FLAT_TREE use more
24624 readable in PPC variant of do_bootm_linux() routine.
24626 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24628 commit 5d3cc55ecbae277e08f5ff771da20b1d6a36ec36
24629 Author: Marian Balakowicz <m8@semihalf.com>
24630 Date: Tue Jan 8 18:11:43 2008 +0100
24632 [new uImage] Move PPC do_bootm_linux() to lib_ppc/ppc_linux.c
24634 PPC implementation of do_bootm_linux() routine is moved to
24635 a dedicated file lib_ppc/ppc_linux.c
24637 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24639 commit b97a2a0a21f279d66de8a9bdbfe21920968bcb1c
24640 Author: Marian Balakowicz <m8@semihalf.com>
24641 Date: Tue Jan 8 18:14:09 2008 +0100
24643 [new uImage] Define a API for image handling operations
24645 - Add inline helper macros for basic header processing
24646 - Move common non inline code common/image.c
24647 - Replace direct header access with the API routines
24648 - Rename IH_CPU_* to IH_ARCH_*
24650 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24652 commit ed29bc4e8142b46b626f67524207b36e43d9aad6
24653 Author: Marian Balakowicz <m8@semihalf.com>
24654 Date: Thu Jan 31 13:19:58 2008 +0100
24656 Add missing cmd_ximg.o to common/Makefile
24658 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
24660 commit 37e3c62fa07a823e7569c872e3a9395d227ed8e3
24661 Author: Grzegorz Bernacki <gjb@semihalf.com>
24662 Date: Mon Jan 28 10:15:02 2008 +0100
24664 ADS5121e: DDR2 init/timing update.
24666 Signed-off-by: John Rigby <jrigby@freescale.com>
24667 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
24669 commit ac9152830d7fdebace8a260b7737ef2870c21ca0
24670 Author: John Rigby <jrigby@freescale.com>
24671 Date: Wed Jan 30 13:36:57 2008 -0700
24673 Device tree updates
24675 Changes to match 5121 device tree going mainline in 2.6.25.
24677 Change OF_SOC from "soc5121" to plain "soc".
24678 Remove unneeded "ref-frequency" fixups.
24679 Remove "address" enetaddr fixup.
24681 Add bus-frequency fixup for old OF_SOC so old
24682 kernels with old device trees will work with new
24683 u-boot with 66MHz IPS clock
24685 Signed-off-by: John Rigby <jrigby@freescale.com>
24687 commit de55d18df3ff2ea614624e74793de7c43520e0e7
24688 Author: John Rigby <jrigby@freescale.com>
24689 Date: Wed Jan 30 13:36:56 2008 -0700
24691 Change IPS freq to 66MHz
24693 Recommended frequency is 66MHz
24694 Change divider from 4 to 3.
24696 Signed-off-by: John Rigby <jrigby@freescale.com>
24698 commit cd9cb62f9d8b78d6c3af5d1e9b5a3d68a3d73974
24699 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24700 Date: Mon Jan 14 22:38:55 2008 +0100
24702 xsengine: rename board_post_init to board_late_init
24704 missing migration from "Cleanup of some init functions"
24705 in c837dcb1a316745092567bfe4fb266d0941884ff
24707 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24709 commit 8dafa87476b0d7170e219c2f5e3842c833a91807
24710 Author: Larry Johnson <lrj@acm.org>
24711 Date: Sat Jan 12 23:35:33 2008 -0500
24713 Add attribute POST_PREREL to ECC memory POST
24715 Signed-off-by: Larry Johnson <lrj@acm.org>
24717 commit ed2cf548cac80cd3cf8154dcfe7b2685bef45938
24718 Author: Kumar Gala <galak@kernel.crashing.org>
24719 Date: Thu Jan 17 08:25:45 2008 -0600
24721 QE: Move FDT support into a common file
24723 Move the flat device tree setup for QE related devices into
24724 a common file shared between 83xx & 85xx platforms that have QE's.
24726 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
24728 commit d38da537943cd36356b9d3d9d9b60533554b81d8
24729 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
24730 Date: Wed Jan 23 17:20:14 2008 +0100
24732 AVR32: Make SDRAM refresh rate configurable
24734 The existing code assumes the SDRAM row refresh period should always
24735 be 15.6 us. This is not always true, and indeed on the ATNGW100, the
24736 refresh rate should really be 7.81 us.
24738 Add a refresh_period member to struct sdram_info and initialize it
24739 properly for both ATSTK1000 and ATNGW100. Out-of-tree boards will
24740 panic() until the refresh_period member is updated properly.
24742 Big thanks to Gerhard Berghofer for pointing out this issue.
24744 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
24746 commit 61151cccb660cdb06a07fb283de6089913d7bde0
24747 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
24748 Date: Thu Apr 19 10:10:11 2007 +0200
24750 ATSTK1000: Fix potential flash programming bug
24752 The (now obsolete) atngw100 flash programming code was having problems
24753 programming the onboard at49bv642 chip. The atstk1000 flash
24754 programming code may have the same bug, so import fix for this problem
24755 from the AVR32 Linux BSP.
24757 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
24759 commit b2e1d5b64469f10dfcce27f7b0afd935684a8e11
24760 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
24761 Date: Thu Nov 22 17:04:13 2007 +0100
24763 ATSTK1004: Fix comment about default load address
24765 The default load address is SDRAM + 2MB, not SDRAM + 4MB. The latter
24766 wouldn't have worked anyway since the board can only access 4MB of
24769 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
24771 commit 8269ab53608d8db2aa06969c337ab0b0518211e5
24772 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
24773 Date: Thu Nov 22 17:01:24 2007 +0100
24775 ATSTK1002: Use SDRAM + 4MB as default load address
24777 Many people run into problems when they compile a big kernel and load
24778 the uImage at the default SDRAM + 2MB address as the kernel will
24779 overwrite the uImage as it is being unpacked. Increase the default
24780 load address so that we can load a 4MB kernel image without any
24783 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
24785 commit 2bcacc2d841b77f3d2d3910db722003742727e9f
24786 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
24787 Date: Thu Nov 22 16:51:39 2007 +0100
24789 ATNGW100: Fix default mtest range
24791 Let mtest cover the whole SDRAM except the last megabyte, which is
24792 where u-boot lives.
24794 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
24796 commit 9856a6b3104e0bc210b0868dfe691c52bf03c227
24797 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24798 Date: Tue Jan 22 15:31:56 2008 +0900
24800 sh: Fix register address of SH7722.
24802 The address of SH7722 is wrong by old document.
24803 This patch fixes this problem.
24805 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
24807 commit 30942b18b66f35f2ceedab39af10e9eccaa943cc
24808 Author: Mike Frysinger <vapier@gentoo.org>
24809 Date: Mon Feb 4 19:26:57 2008 -0500
24811 new command for displaying strings at specified memory locations
24813 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24815 commit b58d8b48e25b0c866d167cc577f118f528cd9e0a
24816 Author: Mike Frysinger <vapier@gentoo.org>
24817 Date: Mon Feb 4 19:26:57 2008 -0500
24819 rewrite/cleanup Blackfin RTC driver
24821 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24823 commit 94a91e248b71c3ff951fc27cff6909e82ca37d15
24824 Author: Mike Frysinger <vapier@gentoo.org>
24825 Date: Mon Feb 4 19:26:57 2008 -0500
24827 generate u-boot.ldr for Blackfin targets
24829 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24831 commit b779f7a59530436040f157f7841db7ab796542df
24832 Author: Mike Frysinger <vapier@gentoo.org>
24833 Date: Mon Feb 4 19:26:57 2008 -0500
24835 scrub unused symbols
24837 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24839 commit cc2977acc3bbbb7850f16645dd1081f95335868d
24840 Author: Mike Frysinger <vapier@gentoo.org>
24841 Date: Mon Feb 4 19:26:57 2008 -0500
24843 move Blackfin cpu object list to respective cpu directories
24845 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24847 commit d0b01a246d0a351bc7dce1d0c9cf6aebdf6d7505
24848 Author: Mike Frysinger <vapier@gentoo.org>
24849 Date: Mon Feb 4 19:26:57 2008 -0500
24851 interface to Blackfin on-chip One-Time-Programmable memory
24853 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24855 commit 4c727c77e43872d3a1d1f76a949fcb3f26a38788
24856 Author: Mike Frysinger <vapier@gentoo.org>
24857 Date: Mon Feb 4 19:26:56 2008 -0500
24859 add support for memory commands with Blackfin L1 instruction memory
24861 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24863 commit 6b9097e5e7490aa7b828c6f1a1c7a0e875df8464
24864 Author: Mike Frysinger <vapier@gentoo.org>
24865 Date: Mon Feb 4 19:26:56 2008 -0500
24867 use C code rather than inline assembly
24869 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24871 commit 97c26e006d2fa6d4e1560933ee6f385d8b8908b9
24872 Author: Mike Frysinger <vapier@gentoo.org>
24873 Date: Mon Feb 4 19:26:56 2008 -0500
24875 add Blackfin-specific reginfo command
24877 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24879 commit 0858b835e7ea501ea084d34cef75932f098342bb
24880 Author: Mike Frysinger <vapier@gentoo.org>
24881 Date: Mon Feb 4 19:26:55 2008 -0500
24883 add support for Blackfin symbol prefixes to examples
24885 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24887 commit 8dc48d71a4be753ea9f84956cd33600de35fad04
24888 Author: Mike Frysinger <vapier@gentoo.org>
24889 Date: Mon Feb 4 19:26:55 2008 -0500
24891 add Blackfin-specific bdinfo command
24893 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24895 commit 0003613e3c7df3b84b2cb92e797d77f46f15a43a
24896 Author: Mike Frysinger <vapier@gentoo.org>
24897 Date: Mon Feb 4 19:26:55 2008 -0500
24899 move -ffixed-P5 to blackfin_config.mk and drop unused -D__BLACKFIN__
24901 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24903 commit 60fa72d65610c7ef33e1d6db858979d05ff0df58
24904 Author: Mike Frysinger <vapier@gentoo.org>
24905 Date: Mon Feb 4 19:26:55 2008 -0500
24907 unify the Blackfin board targets
24909 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24911 commit d4d7730853e5d675f76ec666807da3028c91d592
24912 Author: Mike Frysinger <vapier@gentoo.org>
24913 Date: Mon Feb 4 19:26:55 2008 -0500
24915 punt Blackfin VDSP headers and import sanitized/auto-generated ones
24917 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24919 commit 6cfcce67671a3425229d66203386fa3cbd0cc3bd
24920 Author: Mike Frysinger <vapier@gentoo.org>
24921 Date: Mon Feb 4 19:26:54 2008 -0500
24923 always pull in asm/blackfin.h for Blackfin ports
24925 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24927 commit bf53974c2ddae678d7660f2b5ccfeb0732b6f5dc
24928 Author: Mike Frysinger <vapier@gentoo.org>
24929 Date: Mon Feb 4 19:26:54 2008 -0500
24931 add missing __raw versions of Blackfin read/write io functions
24933 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24935 commit 24e02d0fd3acc50e73e1a3cdd567f0a77946f15d
24936 Author: Mike Frysinger <vapier@gentoo.org>
24937 Date: Mon Feb 4 19:26:54 2008 -0500
24939 add the default Blackfin logo used by Blackfin boards with splash screens
24941 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24943 commit 4c58eb5552220e425c8af6ac8d2839244a2f57b1
24944 Author: Mike Frysinger <vapier@gentoo.org>
24945 Date: Mon Feb 4 19:26:54 2008 -0500
24947 add some more Blackfin docs
24949 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24951 commit 32a9f5f2160a034ea87ea651b233ef7c635e55cf
24952 Author: Mike Frysinger <vapier@gentoo.org>
24953 Date: Mon Feb 4 19:26:54 2008 -0500
24955 make smc91111_eeprom managment simpler by depending on the board configuration file rather than a hardcoded list of boards
24957 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24959 commit 4087bc88cebec75c432a7fe9f6afb545b0919831
24960 Author: Mike Frysinger <vapier@gentoo.org>
24961 Date: Mon Feb 4 19:26:54 2008 -0500
24963 fix building on Blackfin as the assembler supports the .set syntax, not the = syntax, for assigning symbols
24965 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24967 commit b45264ee85cbd92020640a32e02fb434fd557108
24968 Author: Mike Frysinger <vapier@gentoo.org>
24969 Date: Mon Feb 4 19:26:53 2008 -0500
24971 add gitignores for Blackfin pieces
24973 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
24975 commit a93907c43f847f076dd0e34ee3b69b5e8e6d0d29
24976 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24977 Date: Fri Jan 18 01:14:03 2008 +0100
24979 TFTP: add host ip addr support
24981 allow to use a different server as set in serverip
24982 add CONFIG_TFTP_FILE_NAME_MAX_LEN to configure the file name length
24983 if not defined the max length will be at 128
24985 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
24987 commit e56b4b494cd92def577969f9678395aa22d34c9f
24988 Author: Timur Tabi <timur@freescale.com>
24989 Date: Wed Jan 9 14:35:26 2008 -0600
24991 85xx,86xx: Determine I2C clock frequencies and store in global_data
24993 Update global_data to define i2c1_clk and i2c2_clk to 85xx and 86xx.
24995 Update the get_clocks() function in 85xx and 86xx to determine the I2C
24996 clock frequency and store it in gd->i2c1_clk and gd->i2c2_clk.
24998 Signed-off-by: Timur Tabi <timur@freescale.com>
25000 commit 7ec8bb15ee368ea54d48d64867767a704d9ab4c2
25001 Author: Wolfgang Denk <wd@denx.de>
25002 Date: Thu Dec 27 10:56:54 2007 +0100
25004 OMAP5912: fix FIFO handling in UART driver
25006 According to the OMAP5912 Serial Interfaces Reference Guide (see
25007 http://focus.ti.com/lit/ug/spru760c/spru760c.pdf, page 150), the
25008 FIFO_EN enable bit in the FIFO Control Register (FCR) can only be
25009 changed when the baud clock is not running, i. e. when both DLL and
25012 Thus make sure that DLL and DLH are 0 when writing the FCR.
25014 Signed-off-by: Wolfgang Denk <wd@denx.de>
25016 commit 16158778b5f52f201e95ded2d2d9084b0ed5670d
25017 Author: Harald Welte <laforge@openmoko.org>
25018 Date: Wed Dec 19 15:10:52 2007 +0100
25020 ARM: S3C24x0 SoC NAND controller support
25022 This patch adds NAND support to the S3C24x0 SoC code in u-boot
25024 Signed-off-by: Harald Welte <laforge@openmoko.org>
25026 commit a7c185ed3d9f8ebd85cfc286e1ffee72e4803163
25027 Author: Harald Welte <laforge@openmoko.org>
25028 Date: Wed Dec 19 14:24:40 2007 +0100
25030 ARM: s3c24xx: Multiple serial port support
25032 This patch adds support for CONFIG_SERIAL_MULTI on s3c24x0 CPU's
25034 Signed-off-by: Harald Welte <laforge@openmoko.org>
25036 commit a25f72f1f73a11de68251fb88c89991e202e68fa
25037 Author: Harald Welte <laforge@openmoko.org>
25038 Date: Wed Dec 19 14:16:57 2007 +0100
25040 ARM: arm920t: Allow use of 'gd' pointer from IRQ
25042 This patch allows us to use the 'gd' pointer (and thus environment
25043 and everything else associated with it) from interrupt context on
25046 Signed-off-by: Harald Welte <laforge@openmoko.org>
25048 commit be19bd5cd0f454b63298844a0b5377e029b2caad
25049 Author: Harald Welte <laforge@openmoko.org>
25050 Date: Wed Dec 19 14:19:38 2007 +0100
25052 ARM: arm920/s3c24xx: IRQ demulitplexer callback
25054 This patch adds a IRQ demultiplexer callback to the arm920 cpu core code,
25055 plus a stub implementation of it for the S3C2410.
25057 The purpose is to allow arm920t implementations such as the s3c24x0 to
25058 implement interrupt handlers in u-boot without having to touch core
25061 Signed-off-by: Harald Welte <laforge@openmoko.org>
25063 commit a41dbbd98d201d8aea31b5d21df4742c20cd7eda
25064 Author: Hebbar <gururajakr@sanyo.co.in>
25065 Date: Tue Dec 18 16:03:07 2007 -0800
25067 ARM: Display Ethernet info in do_bdinfo only if CONFIG_CMD_NET is defined
25069 Add ifdef to bdinfo command to display ethernet information
25070 only if CONFIG_CMD_NET is defined for arm modules.
25072 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
25074 commit f7ad79b6f9f0f45437b62e19b45356cc2aaf4884
25075 Author: Hebbar <gururajakr@sanyo.co.in>
25076 Date: Tue Dec 18 16:00:54 2007 -0800
25078 ARM: add I2C init function call in lib_arm/board.c
25080 Adds I2C init func call to init sequence for ARM boards. This is
25081 present in ppc,blackfin and other processor init sequence.
25083 Signed-off-by: K R Gururaja Hebbar <gururajakr@sanyo.co.in>
25085 commit ff02f139804f3cb61414f7bbcbfdaa0279e3efae
25086 Author: Stefan Roese <sr@denx.de>
25087 Date: Fri Feb 1 09:38:29 2008 +0100
25089 ppc4xx: Fix ndfc HW ECC byte order
25091 The current ndfc HW ECC implementation swaps the first two ECC bytes.
25092 But the 4xx NDFC already uses the SMC (Smart Media Card) ECC ordering,
25093 so this swapping in the HW ECC driver is bogus. This patch fixes this
25094 problem and now really uses the SMC ECC byte order.
25096 Thanks to Sean MacLennan for pointing this out.
25098 Signed-off-by: Stefan Roese <sr@denx.de>
25100 commit e1d1429b49b0ee58c80f8c7b29c1ebaf8be7f5f1
25101 Author: Stefan Roese <sr@denx.de>
25102 Date: Wed Jan 30 15:35:50 2008 +0100
25104 ppc4xx: Fix GPIO configuration for pcs440ep
25106 The SRD0_PFC0 register was not configured correctly to enable the GPIO's
25107 49-63 for GPIO. They have been configured as trace signals. This patch
25108 fixes this by clearing the corresponding bit.
25110 Signed-off-by: Stefan Roese <sr@denx.de>
25112 commit 28d77d968bfe0316deb5bf15c17f57d5ff2c8821
25113 Author: Stefan Roese <sr@denx.de>
25114 Date: Wed Jan 30 14:48:28 2008 +0100
25116 ppc4xx: Fix problem with init-ram bigger than 4k on 440 platforms
25118 Signed-off-by: Stefan Roese <sr@denx.de>
25120 commit 4fedfddf97461b88668b9aec774dfb7a0c6dc368
25121 Author: Ladislav Michl <ladis@linux-mips.org>
25122 Date: Fri Dec 7 00:42:32 2007 +0100
25124 ARM: Board voiceblue update
25126 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
25128 commit 2c5260f711168d5ee91c70ddbb7d897013eefc46
25129 Author: Ladislav Michl <ladis@linux-mips.org>
25130 Date: Thu Dec 6 23:24:57 2007 +0100
25132 ARM: AT91RM9200 based boards config cleanup
25134 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
25136 Remove nowhere used struct bd_info_ext, remove trailing whitespaces, fix
25139 commit 481f28b1db5cd21deb55f69399ba240e107af4c7
25140 Author: Ladislav Michl <ladis@linux-mips.org>
25141 Date: Thu Dec 6 22:59:16 2007 +0100
25143 ARM: Fix at91rm9200dk base address
25145 Somewhere during development of U-Boot-1.1.3 CONFIG_BOOTBINFUNC was
25146 renamed into CONFIG_INIT_CRITICAL which was 04 Apr 2005 replaced
25147 with CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT.
25148 However CONFIG_SKIP_LOWLEVEL_INIT has oposite meaning to
25149 CONFIG_BOOTBINFUNC, so fix configuration to reflect this fact.
25150 I'm sending this patch 4th (!) time in hope it produces at least some
25153 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
25155 Fix at91rm9200dk base and environment address.
25157 commit c95219fae2a7add7daa2f91aedca65b1698465c7
25158 Author: stefano babic <sbabic@denx.de>
25159 Date: Tue Nov 20 10:40:24 2007 +0100
25161 MMC for PXA 27X (resubmit)
25163 MMC support for X_Scale PXA is broken and does not work.
25164 Mainly, the mmc_init() function cannot recognize current SD/MMC cards.
25165 There were already some patches around the world but none of them was
25166 merged into the official u-boot tree.
25168 This patch makes order fixing this issue. Resubmit after code cleanup.
25170 Applied and tested on PXA 270 (TrizepsIV module).
25172 Signed-off-by: Stefano Babic <sbabic@denx.de>
25174 commit 96bbfa1e6625ce23a150936863b3ecf4c853eb33
25175 Author: stefano babic <sbabic@denx.de>
25176 Date: Tue Nov 20 10:37:04 2007 +0100
25178 Fix gcc issues in pxa-regs.h
25180 Fix gcc4 issue. With some toolchain, a previous patch that fixes gcc4
25181 issues generates wrong code.
25182 (Problem was reported with gcc-4.0.2-glibc-2.3.6/arm-softfloat-linux-gnu).
25183 This patch fixes the problem and solves the gcc-4 issues as the linux
25186 Signed-off-by: Stefano Babic <sbabic@denx.de>
25187 Signed-off-by: Dmitry Ivanov <ivadmitry@gmail.com>
25189 commit 7047b388876e7b905b2ec4edb8010543e3641b85
25190 Author: Jens Gehrlein <sew_s@tqs.de>
25191 Date: Tue Jan 29 08:45:03 2008 +0100
25193 TQM834x: enable DHCP
25195 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
25196 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25198 commit a877004d44ca7dbc1e618add3eeb1da7c84e4bec
25199 Author: Jens Gehrlein <sew_s@tqs.de>
25200 Date: Tue Jan 29 08:45:02 2008 +0100
25202 TQM834x: support for Spansion N-type Flashes (sector size = 256 KiB at 2x16 Bit).
25204 Signed-off-by: Jens Gehrlein <sew_s@tqs.de>
25205 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25207 commit 8931ab176025b03cfc320b3fd1eca432a88ed560
25208 Author: Ben Warren <biggerbadderben@gmail.com>
25209 Date: Sat Jan 26 23:41:19 2008 -0500
25211 Fix conditional compilation of mpx8xxx_spi driver
25213 This driver should only compile if CONFIG_MPC8XXX_SPI is set
25215 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25216 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25218 commit 63f732d3d3880feb531f48af247c025bf01462b0
25219 Author: Rafal Jaworowski <raj@semihalf.com>
25220 Date: Tue Jan 29 17:00:34 2008 +0100
25222 API: Provide dummy halt() in the glue layer.
25224 This fixes a demo app link failure on platforms configured with CONFIG_PANIC_HANG.
25226 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
25228 commit 0dc1fc22af86d16993388d9ed9630dbaa2d51826
25229 Author: Rafal Jaworowski <raj@semihalf.com>
25230 Date: Tue Jan 29 16:57:38 2008 +0100
25232 API: Convert conditional building to the new scheme.
25234 This fixes a build breakage with CONFIG_API enabled, which appeared after
25235 the recent changes in the U-Boot build system.
25237 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
25239 commit 98b742489c09780be6a832eeaa4e5eff824792bb
25240 Author: Wolfgang Denk <wd@denx.de>
25241 Date: Fri Jan 25 09:56:17 2008 +0100
25243 inka4x0: remove dead code
25245 Signed-off-by: Wolfgang Denk <wd@denx.de>
25247 commit 4f93f8b1a4d35b6d302842132edba920ef8f62aa
25248 Author: Becky Bruce <becky.bruce@freescale.com>
25249 Date: Wed Jan 23 16:31:06 2008 -0600
25251 86xx: Add reginfo command
25253 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25255 commit ddcebcb638715a6278da93b553d5016f99823816
25256 Author: Becky Bruce <becky.bruce@freescale.com>
25257 Date: Wed Jan 23 16:31:05 2008 -0600
25259 86xx: Add print_laws function to fsl_law.c
25261 This can be used for debug, and will be used by board code
25262 to help implement reginfo.
25264 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25266 commit 9cd32426f26a0567bb61f339edd83c6a2ce9bfc3
25267 Author: Becky Bruce <becky.bruce@freescale.com>
25268 Date: Wed Jan 23 16:31:04 2008 -0600
25270 86xx: Remove old-style law setup code
25272 This includes mpc8610hpcd, mpc8641hpcn, and sbc8641d.
25274 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25276 commit 713d8186649dae874613d495b0cecaa039a98b30
25277 Author: Becky Bruce <becky.bruce@freescale.com>
25278 Date: Wed Jan 23 16:31:03 2008 -0600
25280 86xx: Convert sbc8641d to use new law setup code.
25282 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25284 commit 031976f6364b93833e989f57e9f1e023e0be8c4c
25285 Author: Becky Bruce <becky.bruce@freescale.com>
25286 Date: Wed Jan 23 16:31:02 2008 -0600
25288 86xx: Convert mpc8610hpcd to new law setup method.
25290 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25292 commit 4933b91f8a49e436681f163df3173beb91cac44a
25293 Author: Becky Bruce <becky.bruce@freescale.com>
25294 Date: Wed Jan 23 16:31:01 2008 -0600
25296 86xx: Support new law setup method and convert mpc8641
25298 Adds the support code in cpu/mpc86xx for the new law setup code
25299 recently created fsl_law.c, and changes the MPC8641HPCN config
25302 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25304 commit 1a41f7ce9c086e208c0eabf52565a237af2a2bd1
25305 Author: Becky Bruce <becky.bruce@freescale.com>
25306 Date: Wed Jan 23 16:31:00 2008 -0600
25308 86xx: Rearrange the sequence in start.S
25310 * split the BAT initialization so that only 2 BATs (for the boot page
25311 and stack) are programmed very early on. The rest are initialized later.
25312 * Move other BAT setup, ccsrbar setup, and law setup later in the code
25313 after translation has been enabled.
25315 These changes will facilitate the moving of law and BAT initialization
25316 to C code, and will aid with 36-bit physical addressing support.
25318 Signed-off-by: Becky Bruce <becky.bruce@freescale.com>
25320 commit 33dac03b1b5d61e4fed7bad445ba40b4c97feba0
25321 Author: Wolfgang Denk <wd@denx.de>
25322 Date: Wed Jan 23 14:41:37 2008 +0100
25324 Coding Style Cleanup; update CHANGELOG
25326 Signed-off-by: Wolfgang Denk <wd@denx.de>
25328 commit 865f0f9754b95183cad395de7e8cb85df0c6ea1f
25329 Author: Wolfgang Denk <wd@denx.de>
25330 Date: Wed Jan 23 14:31:17 2008 +0100
25332 Coding Style Cleanup; update CHANGELOG
25334 Signed-off-by: Wolfgang Denk <wd@denx.de>
25336 commit cfe5ca77976afdbe7ecb86e39fd7505bde636ace
25337 Author: Dave Liu <r63238@freescale.com>
25338 Date: Fri Jan 18 10:07:04 2008 +0800
25340 mpc83xx: Correct the struct spi8xxx in mpc8xxx_spi.h
25342 The commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
25343 cause the 83xx immap broken, so the DMA and PCI will
25346 The patch fix the struct spi8xxx and rm struct spi83xx.
25348 Signed-off-by: Dave Liu <daveliu@freescale.com>
25349 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25351 commit 6b4439444286e0fcd01596df504e6ca897ad3e5a
25352 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
25353 Date: Sat Apr 14 17:11:49 2007 +0200
25355 AVR32: ATNGW100 board support
25357 Add support for the ATNGW100 Network Gateway reference design,
25358 including flash, ethernet and MMC support.
25360 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
25362 commit e006927a0b9a54e8ee7685d8ac748aaad6801862
25363 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
25364 Date: Sat Nov 24 18:15:31 2007 +0100
25366 AVR32: Initialize ipaddr, loadaddr and bootfile at startup
25368 I don't know why the relevant layers can't do this by itself, but this
25371 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
25373 commit 799891ef7b1b3432032ec23466df6b665a797fa4
25374 Author: Michael Schwingen <michael@schwingen.org>
25375 Date: Fri Jan 18 00:04:28 2008 +0100
25377 Add AcTux board support
25381 The patch adds 4 boards, called AcTux-1 .. AcTux-4. This patch contains the
25383 contain changes for multiple boards, the board-specific files follow as
25386 Signed-off-by: Michael Schwingen <michael@schwingen.org>
25388 commit 66a4344a4d910a11125df7768899ad529719855e
25389 Author: Michael Schwingen <michael@schwingen.org>
25390 Date: Wed Jan 16 19:53:23 2008 +0100
25392 add AcTux-4 board support
25394 Signed-off-by: Michael Schwingen <michael@schwingen.org>
25396 commit bc24345e4101a5c996d6b48ce497b09c53025dc6
25397 Author: Michael Schwingen <michael@schwingen.org>
25398 Date: Wed Jan 16 19:51:55 2008 +0100
25400 add AcTux-3 board support
25402 Signed-off-by: Michael Schwingen <michael@schwingen.org>
25404 commit aebf00fc4d1343b24715373893f7b20bf462d1e9
25405 Author: Michael Schwingen <michael@schwingen.org>
25406 Date: Wed Jan 16 19:51:14 2008 +0100
25408 add AcTux-2 board support
25410 Signed-off-by: Michael Schwingen <michael@schwingen.org>
25412 commit ea99e8f05b7240fd657739e286664664ae160abe
25413 Author: Michael Schwingen <michael@schwingen.org>
25414 Date: Wed Jan 16 19:50:37 2008 +0100
25416 add AcTux-1 board support
25418 Signed-off-by: Michael Schwingen <michael@schwingen.org>
25420 commit 3d9f3bfb7a33efe8e41e01b025563cd712c57d64
25421 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25422 Date: Mon Jan 14 19:20:08 2008 +0100
25424 ARM: remove useless function board_post_init
25426 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25428 commit 96bd462942022e4569b582c072a0ed26de1cd19b
25429 Author: Michael Schwingen <michael@schwingen.org>
25430 Date: Thu Jan 10 14:59:46 2008 +0100
25434 enables the RTS signal with CONFIG_SERIAL_RTS_ACTIVE.
25435 No handshaking is done, but the active RTS signal allows to
25436 connect to the target using a PC which is using RTS/CTS
25437 handshake, and does no harm if the PC is set to ignore RTS.
25439 Signed-off-by: Michael Schwingen <michael@schwingen.org>
25441 commit a1cf027a08f9dc1c0e769499e6f4fbddcf9cab93
25442 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25443 Date: Mon Jan 7 08:41:34 2008 +0100
25445 IXP: add dynamic microcode addr
25447 allow to load the microde from flash or ram by download it through
25448 the serial or other.
25450 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25451 Acked-by: Stefan Roese <sr@denx.de>
25453 commit 63ebcc4615dd39926ccf61f1d5f3510262ef6564
25454 Author: Michael Schwingen <michael@schwingen.org>
25455 Date: Sat Nov 10 15:44:12 2007 +0100
25457 load ixp42x NPE firmware from separate flash block, remove dead code
25461 the following patch adds support to move the IXP42X NPE firmware to a
25462 separate flash block, whose start address is defined in
25463 CONFIG_IXP4XX_NPE_EXT_UCODE_BASE. Using that, it is possible to build
25464 NPE-enabled u-boot without copyright problems due to the NPE firmware.
25466 I hope the patch applies, I get whitespace-related differences in the NPE
25467 files due to trailing whitespace in the original versions.
25469 Signed-off-by: Michael Schwingen <michael@schwingen.org>
25470 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
25472 commit 57a127201eb3d8cc19170a008e0bd7af608bd72f
25473 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25474 Date: Tue Jan 15 14:15:46 2008 -0600
25476 ColdFire: MCF547x_8x - Add M5475EVB and M5485EVB support
25478 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25479 Signed-off by: John Rigby <jrigby@freescale.com>
25481 commit 1aee111135d8660a164d4f6bf7d66b032ea535cf
25482 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25483 Date: Tue Jan 15 14:02:49 2008 -0600
25485 ColdFire: MCF547x_8x - Add M547xEVB and M548xEVB board
25487 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25488 Signed-off by: John Rigby <jrigby@freescale.com>
25490 commit 777d1abd9796f1c2e148417cc10657e847d318ce
25491 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25492 Date: Tue Jan 15 14:00:25 2008 -0600
25494 ColdFire: Add MCF547x_8x FEC driver
25496 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25497 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25498 Signed-off by: John Rigby <jrigby@freescale.com>
25500 commit 72f56adc0b25d43875ad067bae6be1bcea86b79f
25501 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25502 Date: Tue Jan 15 13:54:09 2008 -0600
25504 ColdFire: Add MCF547x_8x dma code and header files
25506 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25507 Signed-off by: John Rigby <jrigby@freescale.com>
25509 commit ce09fc49b56ea3c442794b6be9b7db4b99dfdc87
25510 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25511 Date: Tue Jan 15 13:52:03 2008 -0600
25513 ColdFire: Add MCF547x_8x dma code - 2
25515 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25516 Signed-off by: John Rigby <jrigby@freescale.com>
25518 commit 11865ea844e7154fd30c7e2860da4eed4a12ad1f
25519 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25520 Date: Tue Jan 15 13:48:52 2008 -0600
25522 ColdFire: Add MCF547x_8x dma code - 1
25524 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25525 Signed-off by: John Rigby <jrigby@freescale.com>
25527 commit 4621fc3fe7cd65b78b3cbd31f65c9f7f72b22bd3
25528 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25529 Date: Tue Jan 15 13:39:44 2008 -0600
25531 ColdFire: Add MCF547x_8x related header files
25533 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25534 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25535 Signed-off by: John Rigby <jrigby@freescale.com>
25537 commit 570c0186aecab1b747b2d44d0e1d3c1ac4cb27f5
25538 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25539 Date: Tue Jan 15 13:37:34 2008 -0600
25541 ColdFire: Add MCF547x_8x cpu arch
25543 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25544 Signed-off by: John Rigby <jrigby@freescale.com>
25546 commit e2756f4b54aba0e0523b81dd145666829cf7fd59
25547 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25548 Date: Mon Jan 14 17:47:23 2008 -0600
25550 ColdFire: Add MCF5227x cpu and M52277EVB support-3
25552 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25553 Signed-off by: John Rigby <jrigby@freescale.com>
25555 commit c87581027994c148131b2f11aa75501f782ec19a
25556 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25557 Date: Mon Jan 14 17:46:19 2008 -0600
25559 ColdFire: Add MCF5227x cpu and MCF52277EVB support-2
25561 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25562 Signed-off by: John Rigby <jrigby@freescale.com>
25564 commit 1552af70ecab11b9f3dceff7528ed15faf678b9d
25565 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25566 Date: Mon Jan 14 17:43:33 2008 -0600
25568 ColdFire: Add MCF5227x cpu and M52277EVB support-1
25570 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25571 Signed-off by: John Rigby <jrigby@freescale.com>
25573 commit 397b7b81a1f1008798ae1206913508cc89cb3a7d
25574 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25575 Date: Mon Jan 14 17:35:44 2008 -0600
25577 ColdFire: Fix CFI Flash low level Read/Write macro
25579 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25580 Signed-off by: John Rigby <jrigby@freescale.com>
25582 commit aa5f1f9dc815a76f6dffb580798599c028fe7feb
25583 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25584 Date: Mon Jan 14 17:23:08 2008 -0600
25586 ColdFire: Add M5373EVB platform support - 2
25588 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25589 Signed-off by: John Rigby <jrigby@freescale.com>
25591 commit 1ac559d4aa358f63b48c62b564224c06feeb4e36
25592 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25593 Date: Mon Jan 14 17:19:54 2008 -0600
25595 ColdFire: Add M5373EVB platform support - 1
25597 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25598 Signed-off by: John Rigby <jrigby@freescale.com>
25600 commit 320d61991fa3190ee41765601ed017b6b5ff7b2b
25601 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25602 Date: Mon Jan 14 17:17:03 2008 -0600
25604 ColdFire: Update FlexBus CS for MCF532x
25606 Definition update and change from 16bit to 32bit
25608 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25609 Signed-off by: John Rigby <jrigby@freescale.com>
25611 commit 2e72ad0644b940817a89a3590ce0d7b99c05c396
25612 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25613 Date: Mon Jan 14 17:11:47 2008 -0600
25615 ColdFire: PCI and misc updates for MCF5445x
25617 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25618 Signed-off by: John Rigby <jrigby@freescale.com>
25620 commit d2b16493480ac3d4a60ad7d835b0dc27d2e99cee
25621 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25622 Date: Mon Jan 14 17:06:55 2008 -0600
25624 ColdFire: MCF5445x header files cleanup
25626 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25627 Signed-off by: John Rigby <jrigby@freescale.com>
25629 commit d9aae6260993a93f7fcf13abff85a601f4f50ea7
25630 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25631 Date: Mon Jan 14 16:59:42 2008 -0600
25633 ColdFire: MCF532x header files cleanup
25635 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25636 Signed-off by: John Rigby <jrigby@freescale.com>
25638 commit 7af7751d047e74b2ec58400f97b879c56446b3e8
25639 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
25640 Date: Mon Jan 14 15:30:15 2008 -0600
25642 ColdFire: Add modules header files
25644 Add CF specific modules header files
25646 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
25647 Signed-off-by: John Rigby <jrigby@freescale.com>
25649 commit 2956acd5ef93a498337f8ac2ec6ae6a77d491dc5
25650 Author: Kim Phillips <kim.phillips@freescale.com>
25651 Date: Thu Jan 17 12:48:00 2008 -0600
25653 codingstyle cleanup for spi driver
25655 ..and rm unused CONFIG_FSL_SPI define
25657 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25659 commit d59feffb42c9f174116db7a82a311df98983dfce
25660 Author: Haiying Wang <Haiying.Wang@freescale.com>
25661 Date: Wed Jan 16 17:12:12 2008 -0500
25663 FSL: Fix common EEPROM_data structure definition
25665 - Fix EEPROM_data structure definition according to System EEPROM Data Format.
25666 - Read MAC addresses from EEPROM to ethXaddr before saving ethXaddr to
25669 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
25671 commit 6bee764bd6da510a4aad614880300c968bc7318d
25672 Author: Timur Tabi <timur@freescale.com>
25673 Date: Wed Jan 16 15:48:12 2008 -0600
25675 86xx: enable command-line editing
25677 Enable command-line editing for all MPC86xx boards.
25679 Signed-off-by: Timur Tabi <timur@freescale.com>
25681 commit 80ddd22626d321a772ebfba304eb7830cb4f6bac
25682 Author: Ben Warren <biggerbadderben@gmail.com>
25683 Date: Wed Jan 16 22:37:42 2008 -0500
25685 Implement hard SPI driver on MPC8349EMDS
25687 This patch implements the fsl_spi driver on the MPC8349EMDS evaluation board.
25688 This board has an ST M25P40 4Mbit EEPROM on its SPI bus
25690 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25691 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25693 commit 04a9e1180ac76a7bacc15a6fcd95ad839d65bddb
25694 Author: Ben Warren <biggerbadderben@gmail.com>
25695 Date: Wed Jan 16 22:37:35 2008 -0500
25697 Add support for a Freescale non-CPM SPI controller
25699 This patch adds support for the SPI controller found on Freescale PowerPC
25700 processors such as the MCP834x family. Additionally, a new config option,
25701 CONFIG_HARD_SPI, is added for general purpose SPI controller use.
25703 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25704 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25706 commit a8cb43a89be6cfd283257a603dd9841503ccce0f
25707 Author: Dave Liu <r63238@freescale.com>
25708 Date: Thu Jan 17 18:23:19 2008 +0800
25710 mpc83xx: Fix the fatal conflict of merge
25712 The commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
25713 will cause the mpc8315erdb board can't boot up.
25715 The patch fix that bug, and remove the duplicated #ifdef
25716 CFG_SPCR_TSECEP code and clean the SCCR_TSEC2 for
25717 MPC8313E processor.
25719 Signed-off-by: Dave Liu <daveliu@freescale.com>
25720 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
25722 commit 3259eeaa4148125a81417477f62c05bd67f60587
25723 Author: Larry Johnson <lrj@acm.org>
25724 Date: Thu Jan 17 08:50:09 2008 -0500
25726 Merge Sequoia beautification into Korat code
25728 Signed-off-by: Larry Johnson <lrj@acm.org>
25730 commit e16925773211291b562e77187061e9dd1d757217
25731 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25732 Date: Thu Jan 17 07:45:05 2008 +0100
25734 net: add 'ethrotate' environment variable
25736 [PATCH] net: add 'ethrotate' environment variable
25738 This patch replaces the buildtime configuration option
25739 CONFIG_NET_DO_NOT_TRY_ANOTHER through the 'ethrotate' runtime
25740 configuration veriable. See README.
25742 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25743 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
25745 commit ba52be3d0e618c26070e93aaf3c1f2d2adf5571f
25746 Author: Stefan Roese <sr@denx.de>
25747 Date: Thu Jan 17 14:29:04 2008 +0100
25749 ppc4xx: Fix compilation warnings and coding style issues in HCU4/HCU5
25751 Signed-off-by: Stefan Roese <sr@denx.de>
25753 commit 55ed1516cbc1dad3ae277c67ee06fc4a46eaac7d
25754 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25755 Date: Thu Jan 17 18:07:32 2008 +0900
25757 sh: Remove CONFIG_COMMANDS from MS7720SE config file
25759 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25761 commit 055606bd25e88c0cd04ad348a679a04b1b616bee
25762 Author: Niklaus Giger <niklaus.giger@netstal.com>
25763 Date: Wed Jan 16 18:39:20 2008 +0100
25765 ppc4xx: Netstal HCU4 board: added various fixes and POST
25767 - Moved some common code to netstal/common/nm_bsp.c.
25768 - sdram initialisation goes go netstal/common/fixed_sdram.c.
25769 - Added support for POST.
25770 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
25772 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
25774 commit 69b0634a4ee98c9791815600d43b99f626a952f3
25775 Author: Niklaus Giger <niklaus.giger@netstal.com>
25776 Date: Thu Jan 17 12:53:56 2008 +0100
25778 ppc4xx: netstal/common define routines used by all boards
25780 Added some routines used by all Netstal boards:
25781 - nm_bsp.c: - nm_show_print and
25782 - common_misc_init_r
25783 - set_params_for_sw_install. Very specific code to handle our SW
25784 installation procedure
25785 - fixed_sdram.c: Common routines for HCU4 (and upcoming) MCU25 boards
25786 to handle sdram initialization.
25787 - nm.h: Common header
25789 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
25791 commit efeff5382b7a91b48a1aa68b2b75f92ad1d33ff8
25792 Author: Niklaus Giger <niklaus.giger@netstal.com>
25793 Date: Wed Jan 16 18:39:18 2008 +0100
25795 ppc4xx: Netstal HCU5 board: added various fixes and POST
25797 - Moved some common code to nestal/common/nm_bsp.c.
25798 - Added support for the vxWorks EDR.
25799 - Enable trace for Lauterbach, if present.
25800 - Added support for POST.
25801 - Stylistic cleanups (multi-line comments/ enforce 80 colomn width)
25803 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
25805 commit 4371090e5da77edc7bf9f296364db4801639d9c4
25806 Author: Niklaus Giger <niklaus.giger@netstal.com>
25807 Date: Wed Jan 16 18:39:08 2008 +0100
25809 ppc4xx: Netstal HCU5 board. Added POST. Various fixes
25812 - Reduced rom_size from 384 to 320 kB
25813 - Environment is now in flash
25817 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
25819 commit 4bd5036e60afac37e484c2d35cbbe7f6cc1623e7
25820 Author: Niklaus Giger <niklaus.giger@netstal.com>
25821 Date: Wed Jan 16 18:37:50 2008 +0100
25823 ppc4xx: Netstal HCU4 board. Added POST. Various fixes
25826 - Reduced rom_size from 384 to 320 kB
25827 - Environment is now in flash
25831 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
25833 commit 1a3ac86b79fcb690275c85861c8efa6a3899060a
25834 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25835 Date: Thu Jan 17 10:53:08 2008 +0100
25837 ppc4xx: Complete DU440 board support
25839 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25841 commit 15a08bc2bef91e5f1ea4b9cf60e46832d86bcc1f
25842 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25843 Date: Thu Jan 17 10:52:30 2008 +0100
25845 ppc4xx: Add DU440 board support
25847 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
25849 commit ac331da07db3860f11fa1d0fd3db7c810bce1198
25850 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25851 Date: Thu Jan 17 15:53:52 2008 +0900
25853 sh: Update SuperH SCIF driver
25855 This patch fixed wrong SH7720 CPU macro and changed macro that
25856 calculated value of SCBRR register.
25858 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
25860 commit 334e442e6fac59be91244063e9b3f6ca25e8daf8
25861 Author: Grzegorz Bernacki <gjb@semihalf.com>
25862 Date: Wed Jan 16 15:12:47 2008 +0100
25864 Set ips dividor to 1/4 of csb clock.
25866 Previous setting cause ips clock to be out of spec. This bug was found by John
25867 Rigby from Freescale.
25869 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
25871 commit 7dc358bb0de9e2fa341f3b4c914466b1f34b2d89
25872 Author: Kumar Gala <galak@kernel.crashing.org>
25873 Date: Thu Jan 17 02:19:18 2008 -0600
25875 85xx: Get ride of old TLB setup code
25877 Now that all boards have been converted, remove old config code and the
25878 config option for the new style.
25880 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25882 commit 3b558e26a5ef31635787d6d6e97d70939d4f892d
25883 Author: Kumar Gala <galak@kernel.crashing.org>
25884 Date: Thu Jan 17 02:02:10 2008 -0600
25886 85xx: Convert TQM85xx to new TLB setup
25888 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25890 commit 74121b470c14f7eaf284ee838bffca6f9521069e
25891 Author: Kumar Gala <galak@kernel.crashing.org>
25892 Date: Thu Jan 17 01:56:32 2008 -0600
25894 85xx: Convert STXGP3 & STXSSA to new TLB setup
25896 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25898 commit 143b518d9125b54f96f1d7f1afc640b8aae81ff0
25899 Author: Kumar Gala <galak@kernel.crashing.org>
25900 Date: Thu Jan 17 01:44:34 2008 -0600
25902 85xx: Convert SBC8540/SBC8560/SBC8548 to new TLB setup
25904 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25906 commit 818218bac6a11591e2542c344d2330e0f4e1968b
25907 Author: Kumar Gala <galak@kernel.crashing.org>
25908 Date: Thu Jan 17 01:31:34 2008 -0600
25910 85xx: Convert PM854/PM856 to new TLB setup
25912 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25914 commit ff4681c9285b2b4d24552a19cacc1769fe2fc7e0
25915 Author: Kumar Gala <galak@kernel.crashing.org>
25916 Date: Thu Jan 17 01:25:33 2008 -0600
25918 85xx: Convert MPC8540EVAL to new TLB setup
25920 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25922 commit 73aa9ac2b46f1cfd039106ebd6b9865016005234
25923 Author: Kumar Gala <galak@kernel.crashing.org>
25924 Date: Thu Jan 17 01:12:22 2008 -0600
25926 85xx: Convert MPC8568 MDS to new TLB setup
25928 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25930 commit 0db37dc2eed30884db2daa24dbd9a113b5d00610
25931 Author: Kumar Gala <galak@kernel.crashing.org>
25932 Date: Thu Jan 17 01:01:09 2008 -0600
25934 85xx: Convert MPC8541/MPC8555/MPC8548 CDS to new TLB setup
25936 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25938 commit 219a81b98d834f9071b6f7c3bdc6b7ec39cc46cc
25939 Author: Kumar Gala <galak@kernel.crashing.org>
25940 Date: Thu Jan 17 00:52:29 2008 -0600
25942 85xx: Convert MPC8540/MPC8560 ADS to new TLB setup
25944 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25946 commit 80d0b6a1498761c4355b2db9c8001b04c295e7b8
25947 Author: Kumar Gala <galak@kernel.crashing.org>
25948 Date: Thu Jan 17 00:32:17 2008 -0600
25950 85xx: Convert ATUM8548 to new TLB setup
25952 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25954 commit 0f7a3dc95cbff3c21bd6dbc639313796412bbbab
25955 Author: Kumar Gala <galak@kernel.crashing.org>
25956 Date: Wed Jan 16 23:11:57 2008 -0600
25958 85xx: Convert MPC8544 DS to new TLB setup
25960 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25962 commit 8716318057a5f60ab1ba081ece2dbe82ae00e1ee
25963 Author: Kumar Gala <galak@kernel.crashing.org>
25964 Date: Wed Jan 16 22:38:34 2008 -0600
25966 85xx: Reworked initial processor init
25968 Reworked the initial processor initialzation sequence:
25969 * introduced cpu_early_init_f that is run in address space 1 (AS=1)
25970 * Moved TLB/LAW and CCSR init into cpu_early_init_f()
25971 * Reworked initial asm code to do most of the core init before TLBs
25973 The main reasons for these changes are to allow handling of 36-bit phys
25974 addresses in the future and some of the issues that will exist when we
25977 There are a few caveats on what can be initialized via the LAW and TLB
25979 * TLB entry 14/15 can't be initialized via the TLB table
25980 * any LAW that covers the implicit boot window (4G-8M to 4G) must map to
25981 the code that is currently executing.
25983 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25985 commit 44a23cfd6360a68eaa41f945190618a55519eac3
25986 Author: Kumar Gala <galak@kernel.crashing.org>
25987 Date: Wed Jan 16 22:33:22 2008 -0600
25989 85xx: Introduce new tlb API
25991 Add a set of functions to manipulate TLB entries:
25992 * set_tlb() - write a tlb entry
25993 * invalidate_tlb() - invalidate a tlb array
25994 * disable_tlb() - disable a variable size tlb entry
25995 * init_tlbs() - setup initial tlbs based on static table
25997 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
25999 commit be88b1699863c262818f3af7f60173b4d48df8fc
26000 Author: Stefan Roese <sr@denx.de>
26001 Date: Thu Jan 17 07:50:17 2008 +0100
26003 ppc4xx: Fix remaining CONFIG_COMMANDS in 4xx files
26005 Signed-off-by: Stefan Roese <sr@denx.de>
26007 commit c8c41d4a80b1a8ad5984a287d81ea780496259f8
26008 Author: Kumar Gala <galak@kernel.crashing.org>
26009 Date: Wed Jan 16 10:04:42 2008 -0600
26011 85xx: Use proper defines for PCI addresses
26013 We should be using the _MEM_PHYS for LAW and TLB setup and not _MEM_BASE.
26014 While _MEM_BASE & _MEM_PHYS are normally the same, _MEM_BASE should only
26015 be used for configuring the PCI ATMU.
26017 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26019 commit 54a5070115eff38e9b324b78abdfa0b4520580b9
26020 Author: Kumar Gala <galak@kernel.crashing.org>
26021 Date: Wed Jan 16 09:22:29 2008 -0600
26023 85xx: Remove old style of LAW init
26025 All boards are now using the new fsl_law code so we can drop the old version.
26027 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26029 commit 4d3521cc79cabc61edf12c48c0ce318d4efb712f
26030 Author: Kumar Gala <galak@kernel.crashing.org>
26031 Date: Wed Jan 16 09:15:29 2008 -0600
26033 85xx: convert remaining 85xx boards over to use new LAW init code
26035 Converted ATUM8548, MPC8568 MDS, MPC8540 EVAL, and TQM85xx boards over
26036 to use new LAW init code.
26038 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26040 commit 572b13afc42710f2957c382a710360429c0e099b
26041 Author: Kumar Gala <galak@kernel.crashing.org>
26042 Date: Wed Jan 16 09:11:53 2008 -0600
26044 85xx: convert STXGP3/STXSSA over to use new LAW init code
26046 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26048 commit 45f2166ac0233a9263058378f39612bd11f61196
26049 Author: Kumar Gala <galak@kernel.crashing.org>
26050 Date: Wed Jan 16 09:06:48 2008 -0600
26052 85xx: convert PM854/PM856 over to use new LAW init code
26054 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26056 commit e2b159d0070ee06e4ac7e2f9381d3e8e542e614a
26057 Author: Kumar Gala <galak@kernel.crashing.org>
26058 Date: Wed Jan 16 09:05:27 2008 -0600
26060 85xx: convert SBC8540/SBC8560/SBC8548 over to use new LAW init code
26062 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26064 commit 2cfaa1aa1aac39a81006b7b27e0e431bf21f6dfa
26065 Author: Kumar Gala <galak@kernel.crashing.org>
26066 Date: Wed Jan 16 01:45:10 2008 -0600
26068 85xx: convert MPC8541/MPC8555/MPC8548 CDS over to use new LAW init code
26070 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26072 commit 7232a2724ccc9dcbc3ec4ef84ada02f13ccd1238
26073 Author: Kumar Gala <galak@kernel.crashing.org>
26074 Date: Wed Jan 16 01:32:06 2008 -0600
26076 85xx: convert MPC8540/MPC8560 ADS over to use new LAW init code
26078 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26080 commit 4bcae9c92aee0d72a2f19b81cab27ef38107ce75
26081 Author: Kumar Gala <galak@kernel.crashing.org>
26082 Date: Wed Jan 16 01:16:16 2008 -0600
26084 85xx: convert MPC8544 DS over to use new LAW init code
26086 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26088 commit 83d40dfd79fe868796275802f60116d84b9e4395
26089 Author: Kumar Gala <galak@kernel.crashing.org>
26090 Date: Wed Jan 16 01:13:58 2008 -0600
26092 85xx: Move LAW init code into C
26094 Move the initialization of the LAWs into C code and provide an API
26095 to allow modification of LAWs after init.
26097 Board code is responsible to provide a law_table and num_law_entries.
26099 We should be able to use the same code on 86xx as well.
26101 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26103 commit bed8ce838a609aaab136d43b25e6df2a520bc854
26104 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26105 Date: Sat Dec 22 15:03:12 2007 +0100
26107 qemu-mips: active HUSH PARSER, AUTO_COMPLETE and CMDLINE_EDITING
26109 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26111 commit 0764c164fed6277d359cf132d55187ea34290114
26112 Author: Vlad Lungu <vlad@comsys.ro>
26113 Date: Wed Jan 16 19:27:51 2008 +0200
26115 MIPS:Target support for qemu -M mips
26117 With serial, NE2000, IDE support. Tested in big-endian mode.
26118 Memory size hard-coded to 128M for now, so don't play with
26121 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
26123 commit 7f52fa3c2df59e49dc2badd7c084cf2d007c438f
26124 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26125 Date: Fri Jan 11 00:01:37 2008 +0100
26127 Fix nfs command help to reflect that the serverip is optional
26129 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26130 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26132 commit b8f4162a4f7a9bee5e9d0305c17f2d34de466a9b
26133 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26134 Date: Mon Dec 10 22:32:14 2007 +0100
26136 bf537-stamp: remove already defined is_zero_ether_addr and is_multicast_ether_addr
26138 and move is_valid_ether_addr board file
26140 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26141 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26143 commit c2f896b8fc4722e36915903e1942e138e68ce804
26144 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26145 Date: Wed Jan 16 16:13:31 2008 +0900
26147 drivers/net/rtl8139.c: rx_status should be le32_to_cpu(rx_status).
26149 rx_status on the memory is basically in LE, but needs to be handled in CPU
26150 endian. le32_to_cpu() takes up this mission. Even if on the sane hardware,
26153 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26154 Cc: Masami Komiya <mkomiya@sonare.it>
26155 Cc: Lucas Jin <lucasjin@gmail.com>
26156 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26158 commit 96a236746fe6a7b84802afb4ed31536696d34812
26159 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26160 Date: Wed Jan 16 16:12:26 2008 +0900
26162 drivers/net/rtl8139.c: Fix cache coherency issues
26164 Current driver is meant for cache coherent systems. This patch adds
26165 flush_cache() routines to support cache non-coherent systems.
26167 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26168 Cc: Masami Komiya <mkomiya@sonare.it>
26169 Cc: Lucas Jin <lucasjin@gmail.com>
26170 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26172 commit d1276c76c1e2b5035296689280ba1acb2c425104
26173 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26174 Date: Wed Jan 16 16:11:14 2008 +0900
26176 drivers/net/rtl8139.c: Fix tx timeout
26178 "to = (currticks() + RTL_TIMEOUT)" has possibilities to wrap around. If it
26179 does, the condition "(currticks() < to)" becomes invalid and immediately
26180 leads to tx timeout error. This patch introduces the fine-graded udely(10)
26181 loops to ease the impact of wrapping around.
26183 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
26184 Cc: Masami Komiya <mkomiya@sonare.it>
26185 Cc: Lucas Jin <lucasjin@gmail.com>
26186 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26188 commit 18ee320ff63edbf7b27bbeb05f0e12a52302c68a
26189 Author: Dave Liu <r63238@freescale.com>
26190 Date: Fri Jan 11 18:45:28 2008 +0800
26192 TSEC: Add the support for RealTek RTL8211B PHY
26194 Add the support of RealTek RTL8211B PHY, the RTL8211B
26195 PHY only supports RGMII and MII mode.
26197 Signed-off-by: Dave Liu <daveliu@freescale.com>
26198 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26200 commit 84a3047b72b70e862b0b7a8e2058077457f89a32
26201 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
26202 Date: Wed Jan 16 09:40:41 2008 +0100
26204 Remove annoying debug printout for PHY less boards.
26206 PHY less board prints out lots of "read wrong ...":
26207 read wrong value : mii_id 3,mii_reg 2, base e0102320
26208 read wrong value : mii_id 3,mii_reg 3, base e0102320
26209 UEC: PHY is Generic MII (ffffffff)
26210 read wrong value : mii_id 3,mii_reg 4, base e0102320
26211 read wrong value : mii_id 3,mii_reg 0, base e0102320
26212 read wrong value : mii_id 3,mii_reg 1, base e0102320
26213 read wrong value : mii_id 3,mii_reg 1, base e0102320
26214 read wrong value : mii_id 3,mii_reg 5, base e0102320
26215 read wrong value : mii_id 3,mii_reg 1, base e0102320
26216 read wrong value : mii_id 3,mii_reg 1, base e0102320
26217 read wrong value : mii_id 3,mii_reg 5, base e0102320
26218 FSL UEC0: Full Duplex
26219 FSL UEC0: Speed 100BT
26220 FSL UEC0: Link is up
26221 Using FSL UEC0 device
26223 Make this printout depend on UEC_VERBOSE_DEBUG and
26224 remove its definition in uec_phy.c
26226 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
26227 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26229 commit ee62ed3286f83b98b7785e0318dc6379e78f7ff6
26230 Author: Kim Phillips <kim.phillips@freescale.com>
26231 Date: Tue Jan 15 14:11:00 2008 -0600
26233 net: reduce boot latency on QE UEC based boards
26235 actually polling for PHY autonegotiation to finish enables us to remove the
26236 5 second boot prompt latency present on QE based boards.
26238 call to qe_set_mii_clk_src in init_phy, and mv call to init_phy from
26239 uec_initialize to uec_init by Joakim Tjernlund; autonegotiation wait
26240 code shamelessly stolen from tsec driver.
26242 also rm unused CONFIG_RMII_MODE code.
26244 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26245 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
26246 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26248 commit 55fe7c57a8b99a130925052dcdbb77f053dc50e3
26249 Author: michael.firth@bt.com <michael.firth@bt.com>
26250 Date: Wed Jan 16 11:40:51 2008 +0000
26252 TSEC driver: Change MDIO support to allow access to any PHYs on the MDIO bus
26254 The current TSEC driver limits MDIO access to the devices that have been configured as attached
26255 to a TSEC MAC. This patch allows access to any PHY device on the MDIO bus through the 'mii' commands.
26257 Signed-off-by: Michael Firth <michael.firth@bt.com>
26258 Acked-by: Andy Fleming <afleming@freescale.com>
26259 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26261 commit 5e918a98c26e8ab9b5d2d48d998a2ced2b5b85b3
26262 Author: Kim Phillips <kim.phillips@freescale.com>
26263 Date: Wed Jan 16 00:38:05 2008 -0600
26265 Add support for the MPC837xERDB
26267 MPC837xERDB board support includes:
26268 * DDR2 330MHz hardcoded (soldered on the board)
26269 * Local Bus NOR Flash
26270 * I2C, UART and RTC
26271 * eTSEC RGMII (TSEC0 - RTL8211B with MII;
26272 * TSEC1 - VSC7385 local bus, hardcoded, requires seperate firmware
26275 Signed-off-by: Kevin Lam <kevin.lam@freescale.com>
26276 Signed-off-by: Joe D'Abbraccio <joe.d'abbraccio@freescale.com>
26277 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26279 commit 9e89647889cd4b5ada5b5e7cad6cbe55737a08d7
26280 Author: Kim Phillips <kim.phillips@freescale.com>
26281 Date: Wed Jan 16 12:06:16 2008 -0600
26283 mpc83xx: add support for more system clock performance controls
26285 System registers that are modified are the Arbiter Configuration
26286 Register (ACR), the System Priority Control Register (SPCR), and the
26287 System Clock Configuration Register (SCCR).
26289 Signed-off by: Michael F. Reiss <Michael.F.Reiss@freescale.com>
26290 Signed-off by: Joe D'Abbraccio <ljd015@freescale.com>
26291 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26293 commit 16c3cde050e2d243e62b37486f1558570787beb8
26294 Author: James Yang <james.yang@freescale.com>
26295 Date: Wed Jan 16 11:58:08 2008 -0600
26297 FSL: Generalize PIXIS reset command parsing.
26299 Before, the order of arguments to the pixis_reset
26300 command needed to be supplied in a hard-coded order.
26301 Generalize the command parsing to allow any order.
26303 Signed-off-by: James Yang <james.yang@freescale.com>
26304 Acked-by: Jon Loeliger <jdl@freescale.com>
26306 commit ad8f8687b78c3e917b173f038926695383c55555
26307 Author: Jon Loeliger <jdl@freescale.com>
26308 Date: Tue Jan 15 13:42:41 2008 -0600
26310 FSL: Convert board/freescale/common/Makefile to use CONFIG_
26312 Convert the board/freescale/common/Makefile to use
26313 CONFIG_* options to select which files to conditionally
26314 compile into the board/freescale/common library rather
26315 than conditionally compiling entire files.
26322 CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
26324 Signed-off-by: Jon Loeliger <jdl@freescale.com>
26326 commit 7c2221eb230372a9e537c4f6636b147b0909325f
26327 Author: Roy Zang <tie-fei.zang@freescale.com>
26328 Date: Tue Jan 15 16:38:38 2008 +0800
26330 Use CONFIG_ULI526X as MPC8610HPCD default Ethernet driver
26332 Use driver/net/uli526x.c as MPC8610HPCD default Ethernet driver.
26333 Remove unused ethernet CONFIG_ options.
26335 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
26336 Acked-by: Jon Loeliger <jdl@freescale.com>
26338 commit 711a7946277d2e29af481011e8635e9975c54e45
26339 Author: Kim Phillips <kim.phillips@freescale.com>
26340 Date: Tue Jan 15 14:05:14 2008 -0600
26342 mpc83xx: fix QE ETHPRIMEs to correct 'FSL UEC0' value
26344 continuation of commit b96c83d4ae475a70ef2635cd0e748174c44c8601
26346 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26348 commit 363eea9ff7f19a2cba17f262bd17559f166e134e
26349 Author: Kim Phillips <kim.phillips@freescale.com>
26350 Date: Tue Jan 15 09:51:12 2008 -0600
26352 mpc83xx: clean up mpc8360emds.c warnings
26354 mpc8360emds.c: In function 'ft_board_setup':
26355 mpc8360emds.c:327: warning: assignment makes pointer from integer without a cast
26356 mpc8360emds.c:329: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
26357 mpc8360emds.c:334: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
26358 mpc8360emds.c:341: warning: assignment makes pointer from integer without a cast
26359 mpc8360emds.c:343: warning: passing argument 2 of 'fdt_getprop' makes integer from pointer without a cast
26360 mpc8360emds.c:348: warning: passing argument 2 of 'fdt_setprop' makes integer from pointer without a cast
26362 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26364 commit f09880ea72a1c806db223ce594c5fb1b6542ff6a
26365 Author: Kim Phillips <kim.phillips@freescale.com>
26366 Date: Mon Jan 14 16:14:46 2008 -0600
26368 mpc83xx: fix phy-connection-type fixup code
26370 use tree passed to us in local blob, not global fdt.
26372 Also use fdt_path_offset to convert to relative offset, since absolute
26373 reference is needed to check for rgmii-id mode string value.
26375 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26377 commit 2b4c952be7c4357a13e839d48df80853820c33eb
26378 Author: Kumar Gala <galak@kernel.crashing.org>
26379 Date: Mon Jan 14 09:01:40 2008 -0600
26381 mpc83xx: fix mpc8313/mpc8315/mpc8349itx Makefiles for silent build (with -s)
26383 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
26384 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26386 commit e1d8ed2c08da14b168658cc5fa78529d461aea70
26387 Author: Poonam Aggrwal <b10812@freescale.com>
26388 Date: Mon Jan 14 09:41:14 2008 +0530
26390 Changes in uboot DDR configuration for MPC8313eRDB
26392 These changes were identified by HighSmith Bill ,Mazzyar and Joseph for
26393 DDR configuration in u-boot code. Some are related to performance, some
26394 affect stability and some correct few basic errors in the current
26397 The changes have been tested and found to give better memory latency
26398 figures on MPC8313eRDB.LMBench figures prove it.
26402 - CS0_CONFIG[ AP_n_EN] is changed from 1 to 0
26403 (this may improve performance for application with many read
26404 or write to open pages).
26405 - CS0_CONFIG[ODT_WR_CFG] is currently changed from 100 to
26406 001 (activating all the CS when only one is used may cause
26407 unwanted noise on the system)
26409 - TIMING_CFG_1[ACTTOPRE] is changed from 9clks to 8clks (based on
26411 - TIMING_CFG_1[REFREC] changed from 21 clks to 18clks.
26413 - TIMING_CFG_2[AL] value changed from 0 setting to 1 clk to
26414 comply with the 3 ODT clk requirements)
26415 - TIMING_CFG_2[CPO] was set to a reserved value, changed to RL+3/4.
26416 - TIMING_CFG_2[FOUR_ACT] is changed from 10 clks to 6clks.
26418 - DDR_SDRAM_MODE[AL]changed from 0 to 1.
26419 - DDR_SDRAM_MODE[WRREC] changed from 1 clk to 3 clks.
26421 - DDR_SDRAM_INTERVAL[REFINT] is changed from 0x0320 to 0x0510.
26422 - DDR_SDRAM_INTERVAL[BSTOPRE] is changed from 0x64 to 0x0500.
26424 The patch is based of git://www.denx.de/git/u-boot-mpc83xx.git
26425 The last commit on this tree was 6775c68683a53c7abc778774641aac6f833a2cbf
26427 Signed-off-by: Poonam Aggrwal-b10812 <b10812@freescale.com>
26428 Cc: Bill HighSmith <Bill.Highsmith@freescale.com>
26429 Cc: Razzaz Mazyar <MRazzaz@freescale.com>
26430 Cc: Josep P J <PJ.Joseph@freescale.com>
26431 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26433 commit b5cdd7df4a06edb91539c9a2ea7c178a870c3a95
26434 Author: Jerry Van Baren <gvb.uboot@gmail.com>
26435 Date: Sat Jan 12 13:24:14 2008 -0500
26437 Enable the isdram command on the MPC8360EMDS board
26439 The isdram command prints out decoded information the "serial presence
26440 detect" (SPD) chip on the SDRAM SIMMs. This can be very helpful when
26441 debugging memory configuration problems.
26443 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
26444 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26446 commit 8bd522ce4afda3d4868ee8c913f5394094326be1
26447 Author: Dave Liu <r63238@freescale.com>
26448 Date: Fri Jan 11 18:48:24 2008 +0800
26450 mpc83xx: Add the support for MPC8315ERDB board
26453 - Boot from NOR Flash
26454 - DDR2 266MHz hardcoded configuration
26455 - Local bus NOR Flash R/W operation
26456 - I2C, UART, MII and RTC
26460 Signed-off-by: Dave Liu <daveliu@freescale.com>
26461 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26463 commit b05884efa614e4d8a9413158fc228e0dc02ab704
26464 Author: Dave Liu <r63238@freescale.com>
26465 Date: Fri Jan 11 18:46:50 2008 +0800
26467 mpc83xx: Add config of eTSEC emergency priority in SPCR
26469 The TSEC emergency priority definition of 831x/837x
26470 is different than the definition of 834x in SPCR register.
26472 Add the other config of TSEC emergency priority into
26475 Signed-off-by: Dave Liu <daveliu@freescale.com>
26476 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26478 commit 9b958234b0783f13d92f007f753fd2c3ae2c8680
26479 Author: Dave Liu <r63238@freescale.com>
26480 Date: Fri Jan 11 18:42:19 2008 +0800
26482 mpc83xx: Remove cache config from MPC8360ERDK.h
26484 The MPC8360ERDK board support patch is added before
26485 the commit 2c5b48fc205c3e2752910da8f39209ed075929e5
26486 so, miss clean up it.
26488 The patch clean up the miss cache config.
26490 Signed-off-by: Dave Liu <daveliu@freescale.com>
26491 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
26493 commit cd9d23053d435c08fc8695017b5cb9003fcda786
26494 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
26495 Date: Mon Jan 14 23:09:32 2008 +0300
26497 nand: FSL UPM NAND driver
26499 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
26501 commit 6cb2239ae76faee64434286c4f8fc71374702dd2
26502 Author: Kyungmin Park <kmpark@infradead.org>
26503 Date: Tue Jan 15 08:59:44 2008 +0900
26505 OneNAND: Separate U-Boot dependent code from OneNAND
26507 OneNAND: Separate U-Boot dependent code from OneNAND
26509 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
26511 commit 83a49c8dd7998be2d1f0d420597a36bbf0bf4164
26512 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26513 Date: Wed Jan 16 10:33:46 2008 +0100
26515 ppc4xx: Sequoia coding style cleanup and beautification
26517 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
26519 commit 4b3cc6ece9c455504cf12909fae38d085d848ac0
26520 Author: Larry Johnson <lrj@acm.org>
26521 Date: Tue Jan 15 14:35:58 2008 -0500
26523 ppc4xx: Refactor ECC POST for AMCC Denali core
26525 The ECC POST reported intermittent failures running after power-up on
26526 the Korat PPC440EPx board. Even when the test passed, the debugging
26527 output occasionally reported additional unexpected ECC errors.
26529 This refactoring has three main objectives: (1) minimize the code
26530 executed with ECC enabled during the tests, (2) add more checking of the
26531 results so any unexpected ECC errors would cause the test to fail, and
26532 (3) use synchronization (only) where required by the processor.
26534 Signed-off-by: Larry Johnson <lrj@acm.org>
26536 commit 2465665b73ac2f688af945b1ed510752afa816a4
26537 Author: David Saada <David.Saada@ecitele.com>
26538 Date: Tue Jan 15 10:40:24 2008 +0200
26540 QE UEC: Extend number of supported UECs to 4
26542 This patch extends the number of supported UECs to 4. Note that the
26543 problem of QE thread resources exhaustion is resolved by setting the
26544 correct number of QE threads according to Ethernet type (GBE or FE).
26546 Signed-off-by: David Saada <david.saada@ecitele.com>
26547 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
26549 commit 58d204256cb1ce1bd323847d9f644acf70a72e6a
26550 Author: Wolfgang Denk <wd@denx.de>
26551 Date: Wed Jan 16 00:01:01 2008 +0100
26553 LWMON5: enable hush shell as command line parser
26555 Signed-off-by: Wolfgang Denk <wd@denx.de>
26557 commit 66ffb1883feedddc813d8a507d060f2a940eb2b2
26558 Author: Wolfgang Denk <wd@denx.de>
26559 Date: Tue Jan 15 17:22:28 2008 +0100
26561 ADS5121: disable watchdog; enable image timestamps
26563 Signed-off-by: Wolfgang Denk <wd@denx.de>
26565 commit 2b4f778fe9d1de61d7445bae7b325340aba6968d
26566 Author: Wolfgang Denk <wd@denx.de>
26567 Date: Tue Jan 15 17:21:28 2008 +0100
26569 TK885D: fixes for bigger flash sector sizes on new modules;
26570 adjust default environment;
26571 disable SCC ethernet (not used on this board).
26573 Signed-off-by: Wolfgang Denk <wd@denx.de>
26575 commit f91d7ae5ca89acf9fa1ed1015dc078cf29581607
26576 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26577 Date: Tue Jan 15 17:48:13 2008 +0900
26579 pcmcia: Remove CONFIG_COMMANDS from marubun pcmcia driver
26581 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26583 commit 76e49aa7fb8e76cc49092c1acd53fff921e26360
26584 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26585 Date: Tue Jan 15 23:25:25 2008 +0900
26587 sh: Add support SH7710/SH7712
26589 SH7710/SH7712 of SH3 CPU are supported.
26590 SH771X is called SH-Ether, and has the Ether controller in CPU.
26591 The driver of Ether is not included in this patch.
26593 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26595 commit 63a11be68306870e04d3851ed9fa41955cdf4894
26596 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26597 Date: Tue Jan 15 23:06:17 2008 +0900
26599 sh: Add support of map_physmem() and unmap_physmem() to SuperH
26601 This patch add the support of map_physmem() and unmap_physmem()
26602 used with Common Flash Interface(CFI) driver.
26604 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26606 commit db3995fe5164ac5d630b7ecb96286a9828dfbb54
26607 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26608 Date: Wed Jan 9 14:42:27 2008 +0900
26610 sh: Add maintainer of MS7720SE to the MAINTAINER file
26612 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26614 commit dcd99e88e03d56a0aeecd42b507d2d29d20ab0e3
26615 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26616 Date: Wed Jan 9 14:39:58 2008 +0900
26618 sh: Fix board name in MS7720SE's config.mk
26620 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26622 commit c0a04d93734d768b39dbb72fb501b65614c8615d
26623 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26624 Date: Wed Jan 9 14:37:36 2008 +0900
26626 sh: Add MS7720SE to MAKEALL
26628 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26630 commit b2b5e2bb78a1ef4ae8504f5a26bfdc3293ea74ae
26631 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26632 Date: Mon Dec 3 22:58:50 2007 +0900
26634 sh: Add support for MS7720RP02 board
26636 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26637 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26638 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26640 commit 7c10c57275901939a8ece4a9ef3e7ccb7c12a0ed
26641 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26642 Date: Wed Jan 9 14:30:02 2008 +0900
26644 sh: Add support for SH7720 in serial_sh driver.
26646 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26647 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26648 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26650 commit f9913a8ee71ff14fcfc1c7fd0e6912f897e69403
26651 Author: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26652 Date: Mon Dec 3 22:58:45 2007 +0900
26654 sh: Add support SH3 and SH7720
26656 Signed-off-by: Yoshihiro Shimoda <shimoda.yoshihiro@renesas.com>
26657 CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26658 Acked-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
26660 commit 9adfc9fb9ade64cdf1ed9ff842e4f900cbda78bd
26661 Author: Stefan Roese <sr@denx.de>
26662 Date: Tue Jan 15 10:11:02 2008 +0100
26664 ppc4xx: Remove compiler warning in cpu/ppc4xx/44x_spd_ddr2.c
26666 Signed-off-by: Stefan Roese <sr@denx.de>
26668 commit 17bef68097ab3692500a36fb31115bff7910aa99
26669 Author: Niklaus Giger <niklausgiger@gmx.ch>
26670 Date: Mon Jan 14 14:04:42 2008 +0100
26672 ppc_4xx: Fix post spr.c for PPC405
26674 post/cpu/ppc4xx/spr.c contained a few checks for registers only present
26675 for PPC440 and derivates processor.
26677 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
26679 commit 06c428bcd4413014b43236e77765022071424fa6
26680 Author: Dave Liu <r63238@freescale.com>
26681 Date: Mon Jan 14 11:12:01 2008 +0800
26683 QE: fix compile warning
26685 qe.c: In function 'qe_upload_firmware':
26686 qe.c:390: warning: pointer targets in passing argument 2
26687 uec.c: In function 'uec_initialize':
26688 uec.c:1236: warning: 'uec_info' may be used uninitialized
26690 Signed-off-by: Dave Liu <daveliu@freescale.com>
26692 commit a0dd99d51efa55fe023e19c97ead92683725eb11
26693 Author: Stefan Roese <sr@denx.de>
26694 Date: Mon Jan 14 10:05:05 2008 +0100
26696 ppc4xx: Update Kilauea CPLD configuration with USB PHY reset bit
26698 Now that bit 29 is the USB PHY reset bit, update the Kilauea port
26699 to remove the USB PHY reset after powerup. The CPLD will keep the
26700 USB PHY in reset (active low) until the bit is set to 1 in
26701 board_early_init_f().
26703 Signed-off-by: Stefan Roese <sr@denx.de>
26705 commit f43ad53908f1ea83a7c26c3505bbe84382e47aad
26706 Author: Wolfgang Denk <wd@denx.de>
26707 Date: Sun Jan 13 23:26:45 2008 +0100
26709 ARM: update mach-types.h from 2.6.24-rc7 Linux kernel tree
26711 Signed-off-by: Wolfgang Denk <wd@denx.de>
26713 commit 8d103071b7b0e3ec888859bfcb9d422565e6d750
26714 Author: Wolfgang Denk <wd@denx.de>
26715 Date: Sun Jan 13 23:37:50 2008 +0100
26717 ADS5121: Fix typo in ads5121.c, adjust default environment
26719 Signed-off-by: Wolfgang Denk <wd@denx.de>
26721 commit 51b67d06faa670c65de6f29ec5b5aace74b2a047
26722 Author: John Rigby <jrigby@freescale.com>
26723 Date: Fri Aug 24 18:18:43 2007 -0600
26725 ADS5121: MAX slew rate for PATA pins
26727 Signed-off-by: John Rigby <jrigby@freescale.com>
26729 commit dd531aac34aaad138f16cacdb51d61908d59c0e2
26730 Author: Wolfgang Denk <wd@denx.de>
26731 Date: Sun Jan 13 21:05:52 2008 +0100
26733 Fix Makefile dependency problem with parallel builds.
26735 Signed-off-by: Wolfgang Denk <wd@denx.de>
26737 commit 89967841e3ea02e3d0e5e1295ab687576e5b1089
26738 Author: Wolfgang Denk <wd@denx.de>
26739 Date: Sun Jan 13 19:51:39 2008 +0100
26741 MPC8544DS: fix board Makefile for silent build (with -s)
26743 Signed-off-by: Wolfgang Denk <wd@denx.de>
26745 commit 6d714f82fb4b8bb7e267e9c71b8009bc670bfe88
26746 Author: Wolfgang Denk <wd@denx.de>
26747 Date: Sun Jan 13 16:44:08 2008 +0100
26749 PMC440 board: fix board Makefile for out-of-tree building
26751 Signed-off-by: Wolfgang Denk <wd@denx.de>
26753 commit 6eb3fb15588d319bd3099d5f9b910051dfeab6b2
26754 Author: Wolfgang Denk <wd@denx.de>
26755 Date: Sun Jan 13 16:07:44 2008 +0100
26757 Makalu: fix compile warning
26759 Signed-off-by: Wolfgang Denk <wd@denx.de>
26761 commit 0a1e03bcadc7734688a21e8dd2e46a4f608193c0
26762 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26763 Date: Sun Jan 13 12:36:12 2008 +0100
26765 cmd_nand : fix compiler warning.
26767 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
26769 commit 8225d1e3ac0ab147cdde4b0042812583380afb8a
26770 Author: Michael Schwingen <rincewind@discworld.dascon.de>
26771 Date: Sat Jan 12 20:29:47 2008 +0100
26773 CFI: Fix CONFIG_FLASH_CFI_LEGACY compilation
26775 Signed-off-by: Michael Schwingen <michael@schwingen.org>
26776 Acked-by: Stefan Roese <sr@denx.de>
26778 commit 2b2f43ed6a30ece77f76191c845ac95267daa31a
26779 Author: Wolfgang Denk <wd@denx.de>
26780 Date: Sun Jan 13 02:19:44 2008 +0100
26782 MPC8360ERDK: fix incorrect initialization of CFG_I2C_NOPROBES
26784 Signed-off-by: Wolfgang Denk <wd@denx.de>
26786 commit 08e99e1dd01a3e0e3dc3a7138eb827c997e2b74d
26787 Author: Wolfgang Denk <wd@denx.de>
26788 Date: Sun Jan 13 02:19:13 2008 +0100
26790 MPC8xx FEC driver: fix compiler warning.
26792 Signed-off-by: Wolfgang Denk <wd@denx.de>
26794 commit ae6d1056d2c2e4d1266413c0ae8a6d5529ecde4b
26795 Author: Wolfgang Denk <wd@denx.de>
26796 Date: Sun Jan 13 00:59:21 2008 +0100
26798 Fix Makefile dependencies issues; allow silent build
26800 - get rid of "version" target whichdidn't really work
26801 - make autoconf.mk depend on version_autogenerated.h to make sure
26802 to rebuild files as needed
26803 - add XECHO macro to allow for silent build using "make -s"
26805 Signed-off-by: Wolfgang Denk <wd@denx.de>
26807 commit e343ab83d5135b558aa58db9be8fc7faa68d77ed
26808 Author: Wolfgang Denk <wd@denx.de>
26809 Date: Sun Jan 13 00:55:47 2008 +0100
26811 ADS5121e: fix compile warning
26813 Signed-off-by: Wolfgang Denk <wd@denx.de>
26815 commit f2b6f4610627fe3d607620e25082916a01538875
26816 Author: Wolfgang Denk <wd@denx.de>
26817 Date: Sun Jan 13 00:55:18 2008 +0100
26819 MUNICes: fix board Makefile for remote build directory
26821 Signed-off-by: Wolfgang Denk <wd@denx.de>
26823 commit 2ad4d3999fe801aa716221d7d9a4c5bdad74783a
26824 Author: Oliver Weber <almoeli@gmx.de>
26825 Date: Wed Jan 9 17:04:38 2008 +0100
26827 MPC5200: don't use hardcoded MBAR address in Bestcomm firmware
26829 Signed-off-by: Oliver Weber <almoeli@gmx.de>
26831 commit 00ac50e348d1bace27a174b7f528d113bc7cdf7f
26832 Author: Andreas Engel <andreas.engel@ericsson.com>
26833 Date: Wed Jan 9 17:10:56 2008 +0100
26835 Make bootretry work when command line editing is enabled
26837 Currently, when CONFIG_CMDLINE_EDITING is set, bootretry doesn't work.
26838 This patch fixes the problem.
26840 Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
26842 commit 632de0672d3c3ab53ad798c47f5f1eb26008a0e4
26843 Author: Larry Johnson <lrj@acm.org>
26844 Date: Fri Jan 11 23:26:18 2008 -0500
26846 Refactor code for "i2c sdram" command
26848 Signed-off-by: Larry Johnson <lrj@acm.org>
26850 commit 0df6b8446c4721b91ce311548114891130371083
26851 Author: Larry Johnson <lrj@acm.org>
26852 Date: Thu Jan 10 22:23:39 2008 -0500
26854 Fix "i2c sdram" command for DDR2 DIMMs
26856 Many of the SPD bytes for DDR2 SDRAM are not interpreted correctly by the
26857 "i2c sdram" command. This patch provides correct alternative
26858 interpretations when DDR2 memory is detected.
26860 Signed-off-by: Larry Johnson <lrj@acm.org>
26862 commit 64134f011254123618798ff77c42ba196b2ec485
26863 Author: Wolfgang Denk <wd@denx.de>
26864 Date: Sat Jan 12 20:31:39 2008 +0100
26866 Fix linker scripts: add NOLOAD atribute to .bss/.sbss sections
26868 With recent toolchain versions, some boards would not build because
26869 or errors like this one (here for ocotea board when building with
26871 ppc_4xx-ld: section .bootpg [fffff000 -> fffff23b] overlaps section .bss [fffee900 -> fffff8ab]
26873 For many boards, the .bss section is big enough that it wraps around
26874 at the end of the address space (0xFFFFFFFF), so the problem will not
26875 be visible unless you use a 64 bit tool chain for development. On
26876 some boards however, changes to the code size (due to different
26877 optimizations) we bail out with section overlaps like above.
26879 The fix is to add the NOLOAD attribute to the .bss and .sbss
26880 sections, telling the linker that .bss does not consume any space in
26883 Signed-off-by: Wolfgang Denk <wd@denx.de>
26885 commit 3afac79ec27b91df185f090b31dad9620779f440
26886 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
26887 Date: Fri Jan 11 20:42:58 2008 -0600
26889 USB: Add Philips 1561 PCI-OHCI ids
26890 (needed for M5475EVB)
26892 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
26894 commit 5e8def6731cd7bec74bff42a16b139de04010353
26895 Author: Wolfgang Denk <wd@denx.de>
26896 Date: Sat Jan 12 15:51:34 2008 +0100
26898 Add MAINTAINERS entries for ids8247, jupiter, municse, sc3 and uc101
26901 Signed-off-by: Heiko Schocher <hs@denx.de>
26902 Signed-off-by: Wolfgang Denk <wd@denx.de>
26904 commit 5d49e0e152a8b81cc0602271e8fd259371f559b7
26905 Author: Grzegorz Bernacki <gjb@semihalf.com>
26906 Date: Fri Jan 11 12:03:43 2008 +0100
26908 MPC512X: Cleanup bus clock names.
26910 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
26912 commit 66a9455b6bf46d69cec5c88d1a600d1d9a10670d
26913 Author: Grzegorz Bernacki <gjb@semihalf.com>
26914 Date: Tue Jan 8 17:16:59 2008 +0100
26916 MPC512X: Fixed typo in macro name.
26918 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
26920 commit 281ff9a45cf9eb17b8a9afc436cb783cf1f62363
26921 Author: Grzegorz Bernacki <gjb@semihalf.com>
26922 Date: Tue Jan 8 17:16:15 2008 +0100
26924 ads5121: Added support for FDT.
26926 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
26928 commit a10ff9196183e7e5f2ae3c4f5f3cbe92ae9cb719
26929 Author: Wolfgang Denk <wd@denx.de>
26930 Date: Sat Jan 12 01:05:50 2008 +0100
26932 Coding Style cleanup; update CHANGELOG.
26934 Signed-off-by: Wolfgang Denk <wd@denx.de>
26936 commit f6db945649e5e9d0c7efe33b507d243cdc86cf03
26937 Author: Heiko Schocher <hs@denx.de>
26938 Date: Fri Jan 11 15:15:17 2008 +0100
26940 Fixed syntax error in function init_e300_core() of mpc83xx/start.S if
26942 Signed-off-by: Timur Tabi <timur@freescale.com>
26943 Signed-off-by: Heiko Schocher <hs@denx.de>
26945 commit fa05664cd8c7ab1ecf062aa73b992b7b58bba49c
26946 Author: Heiko Schocher <hs@denx.de>
26947 Date: Fri Jan 11 15:15:16 2008 +0100
26949 MUNICes: Set the right CFG_DEFAULT_MBAR value.
26951 Signed-off-by: Heiko Schocher <hs@denx.de>
26953 commit 5fb2b2342ece8d786c6f7fdba1bc273febd3b3d2
26954 Author: Heiko Schocher <hs@denx.de>
26955 Date: Fri Jan 11 15:15:15 2008 +0100
26957 added the config File for the MUNICes board.
26959 Signed-off-by: Heiko Schocher <hs@denx.de>
26961 commit 6341d9d723b71b4c0bf86f979e4cb228c02fd09d
26962 Author: Heiko Schocher <hs@denx.de>
26963 Date: Fri Jan 11 15:15:14 2008 +0100
26965 added basic support for the MUNICes board.
26967 Signed-off-by: Heiko Schocher <hs@denx.de>
26969 commit 3bb77fb09a1caabf5a292cc5b486a78b977fbe19
26970 Author: Wolfgang Denk <wd@denx.de>
26971 Date: Sat Jan 12 00:39:37 2008 +0100
26973 Update CHANGELOG and MAINTAINERS files.
26975 Signed-off-by: Wolfgang Denk <wd@denx.de>
26977 commit 5ba7390c3cb579172be66888a371707b47b5be4e
26978 Author: Anatolij Gustschin <agust@denx.de>
26979 Date: Fri Jan 11 02:15:02 2008 +0100
26981 Fix compilation problem in common/cmd_bmp.c
26983 common/cmd_bmp.c fails to compile if CONFIG_VIDEO_BMP_GZIP
26984 isn't defined. This patch fix this.
26986 Signed-off-by: Anatolij Gustschin <agust@denx.de>
26988 commit 5aa437baae5fe629abeab99bef793a2a1fc71b58
26989 Author: Heiko Schocher <hs@denx.de>
26990 Date: Fri Jan 11 01:12:09 2008 +0100
26992 Fix defaultconfig for the mgcoge board.
26994 Signed-off-by: Heiko Schocher <hs@denx.de>
26996 commit ac9db066b26935f31bff15c98168b19faeb603f3
26997 Author: Heiko Schocher <hs@denx.de>
26998 Date: Fri Jan 11 01:12:08 2008 +0100
27000 Added support for the mgcoge board from keymile.
27002 Signed-off-by: Heiko Schocher <hs@denx.de>
27004 commit b423d055cc2e13c4ef1f0389c3fa2988d0eed818
27005 Author: Heiko Schocher <hs@denx.de>
27006 Date: Fri Jan 11 01:12:07 2008 +0100
27008 Enable SMC microcode relocation patch for SMC1.
27010 Signed-off-by: Heiko Schocher <hs@denx.de>
27012 commit 381e4e639720d8d2efb8066c7c48ec9588cb28c7
27013 Author: Heiko Schocher <hs@denx.de>
27014 Date: Fri Jan 11 01:12:06 2008 +0100
27016 Added support for the mgsuvd board from keymile.
27018 Signed-off-by: Heiko Schocher <hs@denx.de>
27020 commit bf05293973b348f6946c9df92cd3c65ece42d0be
27021 Author: James Yang <james.yang@freescale.com>
27022 Date: Thu Jan 10 16:02:07 2008 -0600
27024 Fix 64-bit vsprintf.
27026 There were some size and unsigned problems.
27027 Also add support for "ll" size modifier in format string like glibc
27029 Signed-off-by: James Yang <James.Yang@freescale.com>
27030 Acked-by: Jon Loeliger <jdl@freescale.com>
27032 commit 92fa37eac530860643afa26ae347af3d23d67309
27033 Author: Larry Johnson <lrj@acm.org>
27034 Date: Wed Jan 9 12:42:35 2008 -0500
27036 Remove superfluous preprocessor conditionals from LM73 driver
27038 (1) Remove unused symbol "CFG_EEPROM_PAGE_WRITE_ENABLE".
27040 (2) Use conditional Makefile.o.
27042 Signed-off-by: Larry Johnson <lrj@acm.org>
27044 commit efc6f447c1b940d1650c4b854c5598a595ddc3da
27045 Author: Guennadi Liakhovetski <lg@denx.de>
27046 Date: Thu Jan 10 17:59:07 2008 +0100
27048 Add support for the TK885D baseboard from TELE-DATA
27050 The TK885D board uses a TQM885D module from TQ, this port adds an
27051 own configuration file and adds a last_stage_init() method to
27052 configure the two PHYs, depending on the phy_auto_nego environment
27055 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27057 commit 0ec595243dc99edcd248bbcfbfd5a1dc860bde89
27058 Author: Kumar Gala <galak@kernel.crashing.org>
27059 Date: Thu Jan 10 02:22:05 2008 -0600
27061 Fix compiler warning
27063 main.c: In function 'readline_into_buffer':
27064 main.c:927: warning: unused variable 'p_buf'
27066 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27068 commit bed53753dd1d7e6bcbea4339be0fb7760214cc35
27069 Author: Anatolij Gustschin <agust@denx.de>
27070 Date: Fri Jan 11 14:30:01 2008 +0100
27072 Add Fujitsu CoralP/Lime video driver
27074 Signed-off-by: Anatolij Gustschin <agust@denx.de>
27075 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
27077 commit 20c450ef61ef2eb1c96f9b59ba0eb8d849bba058
27078 Author: Anatolij Gustschin <agust@denx.de>
27079 Date: Fri Jan 11 02:39:47 2008 +0100
27081 Fix video console newline and carriage return handling
27083 Lines of the lenght CONSOLE_COLS or greater than CONSOLE_COLS
27084 are not displayed correctly. This is an attempt to fix
27085 this issue. Also add carriage return handling.
27087 Signed-off-by: Anatolij Gustschin <agust@denx.de>
27088 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
27090 commit d5a163d6baa04f5a8edcc10ebc6fad08657d3093
27091 Author: Stefan Roese <sr@denx.de>
27092 Date: Fri Jan 11 15:53:58 2008 +0100
27094 ppc4xx: Fix sdram init on Sequoia boards
27096 Clear possible errors in MCSR resulting from data-eye-search.
27097 If not done, then we could get an interrupt later on when
27098 exceptions are enabled.
27100 Signed-off-by: Stefan Roese <sr@denx.de>
27102 commit d610a60730b7464f6f659db49d264d89a7c71061
27103 Author: Anatolij Gustschin <agust@denx.de>
27104 Date: Fri Jan 11 15:31:09 2008 +0100
27106 ppc4xx: Rework Lime support for lwmon5
27108 Rework Lime support for lwmon5 using new video driver
27110 Signed-off-by: Anatolij Gustschin <agust@denx.de>
27112 commit ff41ffc93c1592e77a44bdbebd5d781739f3aae0
27113 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27114 Date: Fri Jan 11 14:55:16 2008 +0100
27116 ppc4xx: Update PMC440 config file
27118 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27120 commit e3edcb36f14f0aabb6f50e96014d6877f73d64ea
27121 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27122 Date: Fri Jan 11 14:55:08 2008 +0100
27124 ppx4xx: Fix sdram init on PMC440 boards
27126 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27128 commit 061aad4d320dddce26247699dcf2875ee2ea1366
27129 Author: Dave Liu <r63238@freescale.com>
27130 Date: Thu Jan 10 23:09:33 2008 +0800
27132 mpc83xx: Fix the bug of 266MHz data rate DDR
27134 The DDR doesn't work on the 266MHz data rate,
27135 the patch fix the bug.
27137 Signed-off-by: Dave Liu <daveliu@freescale.com>
27138 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27140 commit ded08317ad9e340b887bf2eb46e9565a0f610a93
27141 Author: Dave Liu <r63238@freescale.com>
27142 Date: Thu Jan 10 23:08:26 2008 +0800
27144 mpc83xx: Make the code more readable
27146 Format the code, make it more readable
27148 Signed-off-by: Dave Liu <daveliu@freescale.com>
27149 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27151 commit 7e74d63d1a211fbc34ec424e2dc6726601f323d0
27152 Author: Dave Liu <r63238@freescale.com>
27153 Date: Thu Jan 10 23:07:23 2008 +0800
27155 mpc83xx: Reduce the latency of DDR
27157 Reduce the AL from 2 to 1 clock to improve the performance.
27159 Signed-off-by: Dave Liu <daveliu@freescale.com>
27160 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27162 commit 6f3931a2bed5412c20d5e5536c865fbd657f7d28
27163 Author: Dave Liu <r63238@freescale.com>
27164 Date: Thu Jan 10 23:06:05 2008 +0800
27166 mpc83xx: Fix the wrong definition of MPC8315E
27168 According to the latest user manual of MPC8315E,
27169 1) The SVCOD of HRCWL is different than 837x
27170 2) The SCCR has changes
27172 Signed-off-by: Dave Liu <daveliu@freescale.com>
27173 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27175 commit ec2638ea08a537a1bd409db873aaaa33a053ebae
27176 Author: Dave Liu <r63238@freescale.com>
27177 Date: Thu Jan 10 23:05:00 2008 +0800
27179 mpc83xx: Fix the typo in mpc83xx.h
27181 The SPCR about TSEC priority is wrong.
27183 Signed-off-by: Michael Barkowski <Michael.Barkowski@freescale.com>
27184 Signed-off-by: Joe D'Abbraccio <Joe.D'abbraccio@freescale.com>
27185 Signed-off-by: Dave Liu <daveliu@freescale.com>
27186 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27188 commit c86ef2cd9ef81935049231fa89f36c7b793f2d4b
27189 Author: Dave Liu <r63238@freescale.com>
27190 Date: Thu Jan 10 23:04:13 2008 +0800
27192 mpc83xx: Fix the typo in global data struct
27194 Fix the typo in global_data.h
27196 Signed-off-by: Dave Liu <daveliu@freescale.com>
27197 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27199 commit 2c5b48fc205c3e2752910da8f39209ed075929e5
27200 Author: Dave Liu <r63238@freescale.com>
27201 Date: Thu Jan 10 23:03:03 2008 +0800
27203 mpc83xx: Remove cache config from config.h
27205 clean up the cache config from configs.h of board
27207 Signed-off-by: Dave Liu <daveliu@freescale.com>
27208 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27210 commit fab6f556bbbbd1bb35a5433161f7f173c18df559
27211 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27212 Date: Wed Jan 9 20:57:47 2008 +0300
27214 mpc83xx: add support for the MPC8360E-RDK
27216 This is MPC8360E based board with:
27217 - 256MB fixed SDRAM;
27218 - 8MB Intel Strata NOR flash;
27219 - StMICRO 64MiB NAND flash;
27220 - two 10/100/1000 ethernet ports connected via Broadcom
27222 - two 10/100 ethernet ports connected via National
27224 - one PCI and one miniPCI slots;
27225 - four serial ports (two NS16550-compatible, two UCCs);
27226 - four USB ports working through MPC8360E "FHCI" USB controller;
27227 - Fujitsu MB86277 graphics controller;
27228 - Analog to Digital Converter/Touchscreen controller, AD7843
27231 Features not supported in this patch are:
27232 - StMICRO 64MiB NAND flash (patch sent);
27233 - MINT framebuffer initialization (patch is pending);
27234 - Fetching production information from the EEPROM via I2C;
27236 - Two slow UCCs used as RS-485 UARTs.
27238 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27239 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27241 commit b3d2cde7a3aa1e83b7968cdff929e52c8cc617bb
27242 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27243 Date: Wed Jan 9 20:57:40 2008 +0300
27245 mpc83xx: add "fsl, qe" compatible fixups
27247 New device trees will use "fsl,qe" compatible properties.
27249 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27250 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27252 commit 977b57583a7c34010e566a09a679ec3c1836f996
27253 Author: Kim Phillips <kim.phillips@freescale.com>
27254 Date: Wed Jan 9 15:24:06 2008 -0600
27256 mpc83xx: add missing CONFIG_HAS_ETH0 defines
27258 the new libfdt code only updates eth0 if CONFIG_HAS_ETH0
27259 is defined; add the define to the missing board configs.
27261 Thanks to Emilian Medve for finding this.
27263 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27265 commit b830b7f1635984ba607219fcbd78597c28eeb529
27266 Author: Becky Bruce <bgill@freescale.com>
27267 Date: Thu Jan 10 14:00:28 2008 -0600
27269 86xx: Support 2GB DIMMs
27271 Configure the number of bits used to address the banks inside the SDRAM
27272 device. The default register value of 0 means 2 bits to address 4 banks.
27273 Higher capacity devices like a 2GB DIMM require 3 bits to address 8 banks.
27275 Signed-off-by: Becky Bruce <bgill@freescale.com>
27277 commit 4d332dbeb08f5863d1ea69d91a00c5499d3a87ed
27278 Author: Niklaus Giger <niklausgiger@gmx.ch>
27279 Date: Thu Jan 10 18:50:33 2008 +0100
27281 ppc4xx: Make Sequoia boot vxWorks
27284 TLB 0 a entry for the Machine Check interrupt
27285 TLB 1 a entry for the RAM
27286 TLB 2 a entry for the EBC
27287 TLB 3 a entry for the boot flash
27289 After changing the baudrate to 9600 I had no problems to boot the
27290 vxWorks image as distributed by WindRiver (Revision 2.0/1 from
27293 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
27295 commit 6d8184b00c0d1d7090e4a2f514e310d98a394f8d
27296 Author: Larry Johnson <lrj@arlinx.com>
27297 Date: Wed Jan 9 23:10:27 2008 -0500
27299 ppc4xx: Fix dflush() to restore DVLIM register
27301 Signed-off-by: Larry Johnson <lrj@acm.org>
27303 commit 252f60b068d1f94190b5bcfda169db582387e15e
27304 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27305 Date: Thu Jan 10 03:52:44 2008 -0500
27307 Nios2: remove common/cmd_bdinfo.c unused variable.
27309 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27310 Signed-off-by: Scott McNutt <smcnutt@psyent.com>
27312 commit 422b1a01602b6e2fbf8444a1192c7ba31461fd4c
27313 Author: Ben Warren <biggerbadderben@gmail.com>
27314 Date: Wed Jan 9 18:15:53 2008 -0500
27316 Fix Ethernet init() return codes
27318 Change return values of init() functions in all Ethernet drivers to conform
27324 All drivers going forward should return 0 on success. Current drivers that
27325 return 1 on success were left as-is to minimize changes.
27327 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
27328 Acked-by: Stefan Roese <sr@denx.de>
27329 Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27330 Acked-by: Kim Phillips <kim.phillips@freescale.com>
27331 Acked-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27332 Acked-By: Timur Tabi <timur@freescale.com>
27334 commit d3a6532cbe263d992f49e86ac95bede28e96f9c8
27335 Author: Wolfgang Denk <wd@denx.de>
27336 Date: Thu Jan 10 00:55:14 2008 +0100
27338 Coding Style cleanup; update CHANGELOG
27340 Signed-off-by: Wolfgang Denk <wd@denx.de>
27342 commit 17a41e4492121ccf9fa2c10c2cb1a6d1c18d74f7
27343 Author: Kim Phillips <kim.phillips@freescale.com>
27344 Date: Wed Jan 9 16:56:54 2008 -0600
27346 Add QE brg freq and correct qe bus freq fdt update code
27348 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
27349 Signed-off-by: Andy Fleming <afleming@freescale.com>
27351 commit 890dfef06c2d169a3356359596890754dfb8ee1c
27352 Author: Andy Fleming <afleming@freescale.com>
27353 Date: Wed Jan 9 16:34:51 2008 -0600
27355 Remove cache config from ATUM8548 and sbc8548 configs
27357 These boards weren't updated by Kumar's config patch because they
27358 weren't in the tree, yet.
27360 Signed-off-by: Andy Fleming <afleming@freescale.com>
27362 commit b8ec2385038c094b07ec5b49336289a46b6e9cc6
27363 Author: Timur Tabi <timur@freescale.com>
27364 Date: Mon Jan 7 13:31:19 2008 -0600
27366 85xx: add ability to upload QE firmware
27368 Define the layout of a binary blob that contains a QE firmware and instructions
27369 on how to upload it. Add function qe_upload_firmware() to parse the blob and
27370 perform the actual upload. Add command-line command "qe fw" to take a firmware
27371 blob in memory and upload it. Update ft_cpu_setup() on 85xx to create the
27372 'firmware' device tree node if U-Boot has uploaded a firmware. Fully define
27373 'struct rsp' in immap_qe.h to include the actual RISC Special Registers.
27375 Signed-off-by: Timur Tabi <timur@freescale.com>
27377 commit b009f3eca99bb7b9e6ba6639a8909a138dd5e9fe
27378 Author: Kumar Gala <galak@kernel.crashing.org>
27379 Date: Tue Jan 8 01:22:21 2008 -0600
27381 85xx: Remove cache config from configs.h
27383 Either use the standard defines in asm/cache.h or grab the information
27384 at runtime from the L1CFG SPR.
27386 Also, minor cleanup in cache.h to make the code a bit more readable.
27388 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27390 commit b964e9368f45372aaf1da0c13fe56f6d81ae8e96
27391 Author: robert lazarski <robertlazarski@gmail.com>
27392 Date: Fri Dec 21 10:39:27 2007 -0500
27394 mpc85xx: Add support for ATUM8548 (updated)
27396 Add support for Instituto Atlantico's ATUM8548 board
27398 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
27399 Signed-off-by: Andy Fleming <afleming@freescale.com>
27401 commit 7bd6104b71de9bca80ac8e0936003443bb42f2fc
27402 Author: robert lazarski <robertlazarski@gmail.com>
27403 Date: Fri Dec 21 10:36:37 2007 -0500
27405 mpc85xx: Add support for ATUM8548 (updated)
27407 Add support for Instituto Atlantico's ATUM8548 board
27409 Signed-off-by: robert lazarski <robertlazarski@gmail.com>
27411 commit 9e3ed392d2c8965e24c942b58796c31c644c2f70
27412 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
27413 Date: Thu Dec 13 06:45:14 2007 -0600
27415 mpc85xx: Add support for SBC8548 (updated)
27417 Add support for Wind River's SBC8548 reference board.
27419 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
27421 commit 11c45ebd46d6517b51b7a92dd52a618b2f4e5586
27422 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
27423 Date: Thu Dec 13 06:45:08 2007 -0600
27425 mpc85xx: Add support for SBC8548 (updated)
27427 Add support for Wind River's SBC8548 reference board.
27429 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
27430 Signed-off by: Andy Fleming <afleming@freescale.com>
27432 commit 64d4bcb087c2ece1c4d0de8efe85e0075e5b1594
27433 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27434 Date: Mon Oct 22 19:58:19 2007 +0400
27436 MPC8568E-MDS: set up QE pario for UART1
27438 To use UART1 on the MPC8568E-MDS, QE pario pins PC[0:3] should
27439 be set up appropriately.
27441 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27443 commit ad162249cb371e9e38971676f09be791e5f3cf4a
27444 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
27445 Date: Mon Oct 22 18:12:46 2007 +0400
27447 MPC8568E-MDS: reset UCCs to use them reliably
27449 In order to use GETH1 and GETH2 on the MPC8568E-MDS, we should reset
27452 p.s Similar code exists in the Linux kernel board file (for capability
27453 reasons with older U-Boots), but should be removed some day.
27455 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
27457 commit 2146cf56821c3364786ca94a7306008c5824b238
27458 Author: Kumar Gala <galak@kernel.crashing.org>
27459 Date: Wed Dec 19 01:18:15 2007 -0600
27461 Reworked FSL Book-E TLB macros to be more readable
27463 The old macros made it difficult to know what WIMGE and perm bits
27464 were set for a TLB entry. Actually use the bit masks for these items
27465 since they are only a single bit.
27467 Also moved the macros into mmu.h out of e500.h since they aren't specific
27470 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27472 commit 1d47273d46925929f8f2c1913cd96d7257aade88
27473 Author: Kumar Gala <galak@kernel.crashing.org>
27474 Date: Tue Dec 18 23:21:51 2007 -0600
27476 Use FSL Book-E MMU macros from Linux Kernel
27478 Grab the FSL Book-E MAS register macros from Linux. Also added
27479 defines for page sizes up to 4TB and removed SHAREN since it doesnt
27482 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
27484 commit 02df4a270f817ef6ec39047a01b55fecdc5f3b37
27485 Author: Andy Fleming <afleming@freescale.com>
27486 Date: Wed Jan 9 13:51:32 2008 -0600
27488 Fix my own merge stupidity
27490 Way back in August I merged Heiko's patch:
27491 566a494f592: [PCS440EP] upgrade the PCS440EP board
27493 with Jon's CONFIG_COMMANDS patches.
27495 This was done in commit: 6bf6f114dcdd97ec3f80c2761ed40e31229d6b78
27497 However, in the process, I left out some of Heiko's good changes.
27499 Now Heiko's and Jon's patches are properly merged in fat_register_device()
27501 Signed-off-by: Andy Fleming <afleming@freescale.com>
27503 commit 6636b62a6efc7f14e6e788788631ae7a7fca4537
27504 Author: James Yang <James.Yang@freescale.com>
27505 Date: Wed Jan 9 11:17:49 2008 -0600
27507 Expose parse_line() globally.
27509 Add new function readline_into_buffer() that allows the
27510 output of readline to be put into a pointer to char buffer.
27512 This refactoring allows other functions besides the
27513 main command loop to also use the same input mechanism.
27515 Signed-off-by: James Yang <James.Yang@freescale.com>
27516 Acked-by: Jon Loeliger <jdl@freescale.com>
27518 commit 7ca90513486abd4ae50bd1b7403f47cc58c5ad25
27519 Author: Guennadi Liakhovetski <lg@denx.de>
27520 Date: Wed Jan 9 01:15:25 2008 +0100
27522 trivial: fix consequences of a bad merge
27524 Fix what looks like a merge artifact.
27526 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27528 commit 4785a694c0045996ccf0ac5b8edf531efc1b730e
27529 Author: Zhang Wei <wei.zhang@freescale.com>
27530 Date: Thu Jan 3 10:51:15 2008 +0800
27532 Add Ctrl combo key support to usb keyboard driver.
27534 Ctrl combo key support is added, which is very useful to input Ctrl-C
27535 for interrupt current job.
27536 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
27537 key input when tstc() is called.
27539 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
27541 commit 10c7382bc5d5e64c47f94ac2ca78cc574442e82d
27542 Author: Marcel Ziswiler <marcel@ziswiler.com>
27543 Date: Sun Dec 30 03:30:56 2007 +0100
27545 fix various comments
27547 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
27549 commit 7817cb2083d982923752fe0f12b67c0e7c09a027
27550 Author: Marcel Ziswiler <marcel@ziswiler.com>
27551 Date: Sun Dec 30 03:30:46 2007 +0100
27553 fix comments with new drivers organization
27555 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
27557 commit a9b410dc7d2a4721c408b13abfc037988150f145
27558 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
27559 Date: Fri Dec 28 12:50:59 2007 +0900
27561 Remove the obsolete terse version of do_mii()
27563 We now have more useful version of do_mii() and everybody use it.
27564 Gerald Van Baren says:
27566 > When I originally wrote the mii command 6(!) years ago, I wrote a
27567 > verbose version that printed human readable decomposition of the flags,
27568 > etc., and a terse one that didn't print as much stuff and thus had a
27569 > smaller memory footprint.
27571 > It sounds like the terse version has withered and died, apparently
27572 > people are only using the verbose version (which is very understandable,
27575 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
27576 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
27578 commit 01c687aa6e065bd4faf80f723361e798941dd6b0
27579 Author: Mike Frysinger <vapier@gentoo.org>
27580 Date: Thu Dec 27 13:42:56 2007 -0500
27582 Do not reference sha1.c when building mkimage.
27584 remove sha1.o from mkimage linking since it isn't actually used.
27586 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
27588 commit b9173af73e524d37c812f210173cf83385c5171a
27589 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
27590 Date: Thu Dec 27 15:39:54 2007 +0900
27592 common/cmd_mii.c: Add sanity argc check
27594 If type mii command without arguments, we suffer from uninitialized argv[]
27595 entries; for example we MIPS get stuck by TLB error.
27597 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
27599 commit 500856eb1707ed17d9204baa61dd59948d3b2899
27600 Author: Rafal Jaworowski <raj@semihalf.com>
27601 Date: Wed Jan 9 19:39:36 2008 +0100
27603 API for external applications.
27605 This is an API for external (standalone) applications running on top of
27606 U-Boot, and is meant to be more extensible and robust than the existing
27607 jumptable mechanism. It is similar to UNIX syscall approach. See api/README
27610 Included is the demo application using this new framework (api_examples).
27612 Please note this is still an experimental feature, and is turned off by
27615 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
27617 commit fe8dd0b2220b7c02b0d4c9c4f9967879970477b1
27618 Author: Jon Loeliger <jdl@freescale.com>
27619 Date: Wed Jan 9 12:14:55 2008 -0600
27621 86xx: Remove cache config from configs.h
27623 Just use the standard defines in asm/cache.h.
27625 Signed-off-by: Jon Loeliger <jdl@freescale.com>
27627 commit 26a41790f8eba19ad450e18ae91351daf485b3e2
27628 Author: Rafal Jaworowski <raj@semihalf.com>
27629 Date: Wed Jan 9 18:05:27 2008 +0100
27631 Globalize envmatch()
27633 The newly introduced API (routines related to env vars) will need to call
27636 Signed-off-by: Rafal Zabdyr <armo@semihalf.com>
27638 commit 1df170f8b2a99e1e2f940f9f0b56511e1e4c9e1f
27639 Author: Jon Loeliger <jdl@freescale.com>
27640 Date: Fri Jan 4 12:07:27 2008 -0600
27642 Convert MPC8610HPCD to use libfdt.
27644 Assumes the presence of the aliases node in the DTS to
27645 locate the pci and serial nodes for fixups.
27647 Use consistent fdtaddr and fdtfile in environment variables.
27649 Signed-off-by: Jon Loeliger <jdl@freescale.com>
27651 commit c9974ab0a4d3731cdb76a7599d9fe9445d764d60
27652 Author: Jon Loeliger <jdl@freescale.com>
27653 Date: Fri Jan 4 11:58:23 2008 -0600
27655 8610: Fix lingering compile warnings.
27659 Signed-off-by: Jon Loeliger <jdl@freescale.com>
27661 commit 6007f3251c0967adc13f2ed8be1b924ddc30124d
27662 Author: Wolfgang Denk <wd@denx.de>
27663 Date: Wed Jan 9 15:14:46 2008 +0100
27665 Coding Style cleanup, update CHANGELOG
27667 Signed-off-by: Wolfgang Denk <wd@denx.de>
27669 commit fc6414eca55f1fc108fb12fc8cdc43bd8b4463f9
27670 Author: Mike Frysinger <vapier@gentoo.org>
27671 Date: Tue Dec 18 04:29:55 2007 -0500
27673 fix easylogo on big endian dev systems
27675 didnt realize how out of shape easylogo actually was until i tried using it.
27676 this patch does byte swapping as need be on the input tga header since the tga
27677 is in little endian but the host could just as well be big endian. i didnt
27678 bother using bswap macros or such stuff from system headers as nothing in
27679 POSIX dictates byte swapping functionality.
27681 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
27683 commit 38d299c2db81bd889c601b5dfc12c4e83ef83333
27684 Author: Mike Frysinger <vapier@gentoo.org>
27685 Date: Tue Dec 18 03:23:25 2007 -0500
27689 - make the Makefile not suck
27690 - include proper headers for prototypes
27691 - fix obvious broken handling of strchr() when handling '.' in filenames
27693 Signed-Off-By: Mike Frysinger <vapier@gentoo.org>
27695 commit 883e3925d99a8dd69c5b0201cba5b1887f88f95c
27696 Author: raptorbrino@aim.com <raptorbrino@aim.com>
27697 Date: Thu Dec 13 21:23:28 2007 -0500
27699 Fix build problems under Cygwin
27701 This patch allows u-boot to build without error in a cygwin
27702 environment. Cygwin does not define __u64 in it's
27703 include/asm/types.h file. The -idirafter flag in the u-boot
27704 build causes the inclusion of the cygwin types.h file as opposed
27705 to u-bot/include/asm/types.h file which does define __u64.
27706 Subsequently, sha1.c compile fails due to unknown symbol.
27708 Signed-off-by: Brian Miller <raptorbrino@netscape.net>
27710 commit 43ef1c381f9195504a2488f5cb909227eb97d475
27711 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
27712 Date: Fri Nov 30 17:29:59 2007 +0100
27714 cmd_bmp: Add support for displaying gzip compressed bmps
27716 The existing code can show information about a gzip compressed BMP
27717 image, but can't actually display it.
27719 Therefore, move the decompression code out of bmp_info() and use it in
27720 bmp_display() as well in order to display a compressed BMP image.
27722 Also, clean things up a bit and fix a memory leak while we're at it.
27724 [hskinnemoen@atmel.com: a bit of refactoring]
27725 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
27727 commit d197ffd8172c6fdef38733424640a9a47295d6e9
27728 Author: Guennadi Liakhovetski <lg@denx.de>
27729 Date: Thu Nov 29 21:15:56 2007 +0100
27731 Fix and optimize MII operations on FEC (MPC8xx) controllers
27733 This patch fixes several issues at least on a MPC885 based system with two
27734 FEC interfaces used in MII mode.
27736 1. PHY discovery should first read PHY_PHYIDR2 register and only then
27737 PHY_PHYIDR1 like cpu/mpc8xx/fec.c::mii_discover_phy() does it,
27738 otherwise the values read are wrong. Also notice, that PHY discovery
27739 cannot work on MPC88x / MPC87x in setups with both FECs active at all
27740 in its present form, because for both interfaces the registers from FEC
27741 1 are used to communicate over MII.
27743 2. Remove code duplication for resetting the FEC by isolating it into a
27746 3. Initialize MII on FEC 1 when communicating over FEC 2 in fec_init().
27748 4. Optimize mii_init() to only reset the FEC 1 controller once.
27750 5. Fix a typo in mii_init() using index i instead of j thus potentially
27751 leading to unpredictable results.
27753 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27755 commit 6a5e1d75bf106fa157e9ce68bcaf4b13e8a1d214
27756 Author: Guennadi Liakhovetski <lg@denx.de>
27757 Date: Tue Nov 20 13:14:20 2007 +0100
27759 Fix endianness conversions in rtl8169 driver
27761 It is unclear on what platforms this driver has been tested, since
27762 noone up to now defines CONFIG_RTL8169 in the board configuration
27763 header. Now it has been fixed for a big-endian mpc8241 based
27764 linkstation platform. This patch presents the necessary endianness
27767 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
27769 commit 58694f9709c0c3e3178e349ae748d98cfb0c639a
27770 Author: Zhang Wei <wei.zhang@freescale.com>
27771 Date: Thu Jan 3 10:51:15 2008 +0800
27773 Add Ctrl combo key support to usb keyboard driver.
27775 Ctrl combo key support is added, which is very useful to input Ctrl-C
27776 for interrupt current job.
27777 Also add usb_event_poll() calling to usb_kbd_testc(), which can get
27778 key input when tstc() is called.
27780 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
27781 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
27783 commit 07eb02687f008721974a2fb54cd7fdc28033ab3c
27784 Author: Wolfgang Denk <wd@denx.de>
27785 Date: Wed Jan 9 13:43:38 2008 +0100
27787 Coding Style clenaup; update CHANGELOG
27789 Signed-off-by: Wolfgang Denk <wd@denx.de>
27791 commit c26acc1a43b31ddca5add42fd0360ff0eee90c80
27792 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27793 Date: Thu Dec 27 17:13:11 2007 +0100
27795 Remove bit swapping in Xilinx Spartan bitfile loading
27797 This patch removes the unnecessary bit swapping when
27798 booting .bit files with the 'fpga loadb' command.
27800 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27802 commit 437fc7327f0611f82937858f2d80e4cd61b40984
27803 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27804 Date: Thu Dec 27 17:13:05 2007 +0100
27806 Fix MSB check in Xilinx Spartan slave serial mode
27808 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27810 commit 3bff4ffa33729a42645e328a21e8d16488872958
27811 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27812 Date: Thu Dec 27 17:12:56 2007 +0100
27814 Add new Xilinx Spartan FPGA types
27816 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27818 commit 21d39d598c4e74d4e7761608c79dba2715d40a4c
27819 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27820 Date: Thu Dec 27 17:12:43 2007 +0100
27822 Add pre and post configuration callbacks for Spartan FPGAs
27824 This patch adds a post configuration callback for Spartan2/3 FPGAs.
27825 pre and post configuration callback are now optional and
27826 not called when the function pointer is set to NULL.
27828 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27830 commit 0133502e39ff89b67c26cb4015e0e7e8d9571184
27831 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27832 Date: Thu Dec 27 17:12:34 2007 +0100
27834 Improve configuration of FPGA subsystem
27836 This patch removes the FPGA subsystem configuration through
27837 the CONFIG_FPGA bitmask configuration option.
27839 See README for the new options:
27842 CONFIG_FPGA_<vendor>,
27843 CONFIG_FPGA_<family>
27845 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27847 commit 95c6bc7d4a3588b452baca610f8c795a83630477
27848 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27849 Date: Thu Dec 27 16:55:17 2007 +0100
27851 Add Epson RX8025 RTC support
27853 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27855 commit 1208a2dfde02bedd3c5bda29a606632b8e0be058
27856 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27857 Date: Thu Dec 27 16:57:23 2007 +0100
27859 serial: Make default_serial_console() a weak function
27861 With this patch it is possible to reimplement default_serial_console()
27862 in board specific code. This will be done in the upcomming PMC440
27863 U-Boot port. This also allows the lwmon board maintainer to
27864 remove the '#if !defined(CONFIG_LWMON) ...' from common/serial.c.
27866 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
27868 commit d16471ee05ce7ac5392bc0e9fe3ff4b58a768f33
27869 Author: Harald Welte <laforge@openmoko.org>
27870 Date: Wed Dec 19 14:14:47 2007 +0100
27872 add 'terminal program' functionality
27874 This patch adds a 'cu' like serial terminal command to u-boot
27875 using which you can access other serial ports from the system console.
27877 OpenMoko uses this in their Neo1973 phones to get access to the GSM
27878 Modem and GPS chip from the bootloader.
27880 Signed-off-by: Harald Welte <laforge@openmoko.org>
27882 commit 62d4f4365341576f5a5307b2b205a5aa2e3c6be6
27883 Author: Harald Welte <laforge@openmoko.org>
27884 Date: Wed Dec 19 14:12:53 2007 +0100
27886 Re-introduce the 'nand read.oob' and 'nand write.oob' commands
27887 that used to exist with the legacy NAND code
27889 Signed-off-by: Harald Welte <laforge@openmoko.org>
27891 commit f540c42d9564854b19ce9bbb70affe172529fe70
27892 Author: Harald Welte <laforge@openmoko.org>
27893 Date: Wed Dec 19 14:09:58 2007 +0100
27895 Fix building with CRAMFS but not JFFS2 support
27897 Signed-off-by: Harald Welte <laforge@openmoko.org>
27899 commit 23d0baf967fecdaf1804f045f6339337c5607eec
27900 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27901 Date: Sat Dec 22 15:52:58 2007 +0100
27903 Allow CONFIG_AUTO_COMPLETE and command history CONFIG_CMDLINE_EDITING at the sametime
27905 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
27906 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27908 commit 23776ff292966a85d811126933830bed48211826
27909 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27910 Date: Tue Dec 11 10:53:12 2007 +0100
27912 ARM: support board-specific ethernet PHY init
27914 Add until the new phylib will be arrived
27916 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27918 commit 7b74ebe723e576baedf5a8b6240589b19b845a1b
27919 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27920 Date: Sat Dec 8 16:34:08 2007 +0100
27922 IXP: Add full baud-rate support for ixp42x, ixp45x and ixp46x
27924 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27926 commit a2df4da31b1a1e41e3e9e1358cfc52b806046ce1
27927 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27928 Date: Sun Dec 9 11:01:10 2007 +0100
27930 Add missing file in gitignore and comments
27932 based on Linux source tree's .gitignore files
27934 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
27936 commit 435dc8fcdb3bc61d3d490773a8f369f98a20c868
27937 Author: Wolfgang Denk <wd@denx.de>
27938 Date: Wed Jan 9 11:36:21 2008 +0100
27940 Coding Style cleanup, update CHANGELOG
27942 Signed-off-by: Wolfgang Denk <wd@denx.de>
27944 commit b2e2142c500c48a57f18f9dd30e66c13caea0971
27945 Author: Stefan Roese <sr@denx.de>
27946 Date: Wed Jan 9 10:38:58 2008 +0100
27948 POST: Execute SPR test after relocation
27950 On LWMON5 we now use d-cache as init-ram and stack. The SPR POST test uses
27951 self modifying code and this doesn't work with stack in d-cache, since
27952 I can't move the code from d-cache to i-cache. We move the SPR test to
27953 be executed a little later, after relocation. Then stack is located in
27954 SDRAM and this self-modifying code is no problem anymore.
27956 Signed-off-by: Stefan Roese <sr@denx.de>
27958 commit 8f24e0637ae113500d8bd60d80d57afcc0aa8bde
27959 Author: Stefan Roese <sr@denx.de>
27960 Date: Wed Jan 9 10:28:20 2008 +0100
27962 ppc4xx: Change LWMON5 to not use OCM for init-ram and POST anymore
27964 This patch configures the LWMON5 port to use d-cache as init-ram and
27965 the unused GPT0_COMP6 as POST WORD storage.
27967 Signed-off-by: Stefan Roese <sr@denx.de>
27969 commit 1754f50b710194f886b6f2831803d8960171a14d
27970 Author: Stefan Roese <sr@denx.de>
27971 Date: Wed Jan 9 10:25:46 2008 +0100
27973 ppc4xx: Add CFG_POST_ALT_WORD_ADDR to support non OCM POST WORD storage
27975 The privious 4xx POST implementation only supported storing the POST
27976 WORD in OCM. Since we need to reserve the OCM on LWMON5 for the logbuffer
27977 we need to store the POST WORD in some other non volatile location.
27978 This patch adds CFG_POST_ALT_WORD_ADDR to specify an address for such
27981 Signed-off-by: Stefan Roese <sr@denx.de>
27983 commit e02c521d94b45d7b05aa522e4ccde6b74bf5fe57
27984 Author: Stefan Roese <sr@denx.de>
27985 Date: Wed Jan 9 10:23:16 2008 +0100
27987 ppc4xx: Add 44x cache locking to better support init-ram in d-cache
27989 This patch adds support for locking the init-ram/stack in d-cache,
27990 so that other regions may use d-cache as well
27992 Note, that this current implementation locks exactly 4k of d-cache,
27993 so please make sure that you don't define a bigger init-ram area. Take
27994 a look at the lwmon5 440EPx implementation as a reference.
27996 Signed-off-by: Stefan Roese <sr@denx.de>
27998 commit 0ddb89601a8d29e808db450366752ffdc6267c53
27999 Author: Wolfgang Denk <wd@denx.de>
28000 Date: Wed Jan 9 10:16:33 2008 +0100
28002 Fix memset bug in ext2fs_read_file()
28004 ext2fs_read_file() had the function arguments swapped.
28006 Pointed out by Mike Montour, 19 Dec 2007 22:34:25 -0800
28008 Signed-off-by: Wolfgang Denk <wd@denx.de>
28010 commit 32d6f1bc09175f3b77469771e839bc7255a9f22e
28011 Author: Markus Klotzbücher <mk@denx.de>
28012 Date: Tue Jan 5 08:17:15 1988 +0100
28014 Fix problems with usb storage devices on MPC5200 /TQM5200
28016 The MPC5200 OHCI controller operates in big endian, so
28017 CFG_OHCI_BE_CONTROLLER must be defined for it to work properly.
28019 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28021 commit 46f6e5019048b103d7693d5310de0f1cfbaf4c19
28022 Author: Wolfgang Denk <wd@denx.de>
28023 Date: Tue Jan 8 22:58:27 2008 +0100
28025 Fix compile problem with new env code.
28027 Signed-off-by: Wolfgang Denk <wd@denx.de>
28029 commit 64b3727b9779d86127cd576e392a987de5ebb9fd
28030 Author: Markus Klotzbücher <mk@denx.de>
28031 Date: Tue Nov 27 10:23:20 2007 +0100
28033 tools: fix fw_printenv tool to compile again
28035 This patch updates the fw_printenv/fw_setenv userspace tool to include
28036 the correct MTD header in order to compile against current kernel
28037 headers. Backward compatibility is preserved by introducing an option
28038 MTD_VERSION which can be set to "old" for compilation using the old MTD
28039 headers. Along with this a number of warnings are fixed.
28041 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28043 commit 1f84021a85abeb837d2ce0dc84297b4f1d45d516
28044 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28045 Date: Tue Jan 8 15:40:09 2008 +0100
28047 ppc4xx: assign PCI interrupts on seuqoia boards
28049 Some operating systems rely on assigned PCI interrupts.
28051 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28053 commit 6e9233d30afe57cb6e148fbfa4895e7810196fac
28054 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28055 Date: Tue Jan 8 15:50:49 2008 +0100
28057 ppc4xx: Move cpu/ppc4xx/vecnum.h into include path
28059 This patch allows the use of 4xx interrupt vector number defines
28060 in board specific code outside cpu/ppc4xx.
28062 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28064 commit 580d1d3186a2bc6dbdb626941b716dae1788e51e
28065 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28066 Date: Tue Jan 8 15:39:01 2008 +0100
28068 ppc4xx: Fix UIC2 vector number base
28070 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28072 commit ff5fb8a6ccba56e3482d0e297d8cfb7faa040811
28073 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28074 Date: Tue Jan 8 12:49:58 2008 +0100
28076 ppc4xx: Update PLB/PCI divider for PMC440 board
28078 This patch updates the PLB/PCI divider when running at
28079 400MHz CPU frequency from 4 to 3 which results in 44MHz PCI sync clock.
28081 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28083 commit 7d5d75633174867316a0c0f2fca5ceb2cf312cde
28084 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28085 Date: Tue Jan 8 11:13:09 2008 +0100
28087 ppc4xx: Disable error message when no NAND chip is installed on PMC440
28089 Add CFG_NAND_QUIET_TEST option to disable error message when
28090 no NAND chip is installed on PMC440 boards.
28092 Disable a couple of config defines that are only used for NAND_U_BOOT.
28094 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28096 commit c83d7ca4dadd44ae430235077f63b64a11f36f6e
28097 Author: Wolfgang Denk <wd@denx.de>
28098 Date: Tue Jan 8 22:58:27 2008 +0100
28100 Fix compile problem with new env code.
28102 Signed-off-by: Wolfgang Denk <wd@denx.de>
28104 commit 6de66b35426312a21174a9bf0576a094e2904bea
28105 Author: Markus Klotzbücher <mk@denx.de>
28106 Date: Tue Nov 27 10:23:20 2007 +0100
28108 tools: fix fw_printenv tool to compile again
28110 This patch updates the fw_printenv/fw_setenv userspace tool to include
28111 the correct MTD header in order to compile against current kernel
28112 headers. Backward compatibility is preserved by introducing an option
28113 MTD_VERSION which can be set to "old" for compilation using the old MTD
28114 headers. Along with this a number of warnings are fixed.
28116 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
28118 commit ad3006fe7e84667021753b74247b0bafd97ba35f
28119 Author: Gerald Van Baren <vanbaren@cideas.com>
28120 Date: Mon Jan 7 23:47:32 2008 -0500
28122 LIBFDT: use memmove() instead of memcpy()
28124 This is partial patch from the DTC/libfdt
28125 commit 67b6b33b9b413a450a72135b5dc59c0a1e33e647
28126 Author: David Gibson <david@gibson.dropbear.id.au>
28127 Date: Wed Nov 21 11:56:14 2007 +1100
28129 The patch also fixes one genuine bug caught by valgrind -
28130 _packblocks() in fdt_rw.c was using memcpy() where it should have been
28133 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
28135 commit aec7135bc300e3340d18f203347ee00c5b5f68c0
28136 Author: David Gibson <david@gibson.dropbear.id.au>
28137 Date: Mon Dec 17 14:42:07 2007 +1100
28139 libfdt: Add more documentation (patch the seventh)
28141 This patch adds more documenting comments to libfdt.h. Specifically,
28142 these document the read/write functions (not including fdt_open_into()
28143 and fdt_pack(), for now).
28145 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
28147 commit 9d4450b5adc36623e9c1de1f92539db77ad0c57e
28148 Author: David Gibson <david@gibson.dropbear.id.au>
28149 Date: Mon Dec 17 14:41:52 2007 +1100
28151 libfdt: Add more documentation (patch the sixth)
28153 This patch adds some more documenting comments to libfdt.h.
28154 Specifically this documents all the write-in-place functions.
28156 Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
28158 commit b60af3d4c1680487ee37e11aa1b3db6dec04d8f0
28159 Author: Gerald Van Baren <vanbaren@cideas.com>
28160 Date: Sat Dec 29 22:45:27 2007 -0500
28162 Fine grained per property /chosen updating.
28164 Implement a suggestion by Scott Wood to make the /chosen handling fine
28165 grained. Don't overwrite pre-existing properties on a per-property basis,
28166 so if /chosen exists but a necessary /chosen/property doesn't, it gets
28167 created. If a /chosen property exists, it is NOT overwritten unless the
28168 "force" flag is true.
28170 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
28172 commit 238cb7a423c6eaa36496efb788cfb9798cea7f95
28173 Author: Gerald Van Baren <vanbaren@cideas.com>
28174 Date: Sat Jan 5 15:33:29 2008 -0500
28176 Improve the FDT help message.
28178 Add a note that "fdt copy" makes the new address active.
28179 Remove most of the extra hints at the end of the fdt help.
28181 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
28183 commit ea6d8be153ceaf16958f8009cea6d75f3ff58d92
28184 Author: Gerald Van Baren <vanbaren@cideas.com>
28185 Date: Sat Jan 5 14:52:04 2008 -0500
28187 Support setting FDT properties with optional values.
28189 Fix a bug found and documented by Bartlomiej Sieka where the optional
28190 value on "fdt set <path> <prop> [<val>]" wasn't optional.
28192 => fdt mknode / testnode
28193 => fdt print /testnode
28196 => fdt set /testnode testprop
28197 => fdt print /testnode
28202 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
28204 commit 22fb2246df91bfc840d87f0c5910818bad55577a
28205 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28206 Date: Fri Dec 28 11:56:30 2007 +0100
28208 Add fdt_find_and_setprop() to fdt_support.h
28210 fdt_find_and_setprop() is used by several 4xx boards and it's
28211 missing in the appropriate header. This patch eliminates a
28212 warning when building U-Boot for such boards.
28214 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28215 Acked-by: Stefan Roese <sr@denx.de>
28217 commit 802b769bac17b0560d3535a42c502469ee190cd1
28218 Author: Stefan Roese <sr@denx.de>
28219 Date: Tue Jan 8 18:39:30 2008 +0100
28221 ppc4xx: Return 0 on success in 4xx ethernet driver
28223 Signed-off-by: Stefan Roese <sr@denx.de>
28225 commit 6775c68683a53c7abc778774641aac6f833a2cbf
28226 Author: Kim Phillips <kim.phillips@freescale.com>
28227 Date: Tue Jan 8 09:59:49 2008 -0600
28229 mpc83xx: fix missed pci_hose -> hose conversion for new libfdt code
28231 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28233 commit 94fab25f5f1a7d1c0cc63c17e813ea8943fe49c7
28234 Author: Kim Phillips <kim.phillips@freescale.com>
28235 Date: Thu Dec 20 16:28:34 2007 -0600
28237 mpc83xx: rm remaining FLAT_TREE code
28239 ..in board pci.c files
28241 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28243 commit b3458d2cd55d01732e30a76d898afd99e871cd67
28244 Author: Kim Phillips <kim.phillips@freescale.com>
28245 Date: Thu Dec 20 15:57:28 2007 -0600
28247 mpc83xx: remove FLAT_TREE code
28249 need to rm it from pci code, too!
28251 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28253 commit 5b8bc606c61456566af6912f818a153b6b06f242
28254 Author: Kim Phillips <kim.phillips@freescale.com>
28255 Date: Thu Dec 20 14:09:22 2007 -0600
28257 mpc83xx: convert to using do_fixup_*()
28259 convert to using simpler mpc85xx style fdt update code; streamline by
28260 eliminating macros OF_SOC, OF_CPU, etc. which allows us to rm
28261 the old school FLAT_TREE code from 83xx (since the sbc8349 was just
28262 converted over to using libfdt).
28264 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28266 commit e496865ecc31a2fe2f9abfe798334bb02aaf05ab
28267 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28268 Date: Thu Dec 20 12:58:51 2007 -0500
28270 sbc8349: enable libfdt by default on WRS SBC8349 board.
28272 Make libfdt the default for the WRS SBC8349 board.
28273 Parallel of commit 35cc4e4823668e8745854899cfaedd4489beb0ef
28274 done for the other 83xx based boards. Also fix a typo in CONFIG_PCI.
28276 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28278 commit 2408b3f20bcbdd9c6c397cd03ab0d71d54680a40
28279 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28280 Date: Thu Dec 20 12:58:16 2007 -0500
28282 sbc8349: migrate board to libfdt
28284 This adds libfdt support code for the Wind River sbc8349 board.
28286 Parallel of commit 3fde9e8b22cfbd7af489214758f9839a206576cb for
28287 the other Freescale 83xx boards.
28289 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28291 commit 27a256a90cc86392ac9bf0039a3afe638ec2c18d
28292 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
28293 Date: Thu Dec 20 12:56:19 2007 -0500
28295 sbc8349: Remove board specific ECC code
28297 ECC code is now shared for all 83xx boards, so remove board specific one.
28298 See commit daab8c67d2defef73dc26ab07f0c3afd1b05d019 for reference.
28300 Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
28302 commit a1e1ac849249310e5e2e5c7148e9fb353a8317a7
28303 Author: Kim Phillips <kim.phillips@freescale.com>
28304 Date: Thu Dec 20 01:30:48 2007 -0600
28306 mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
28308 continuation of commit 37395fa2b0d9d617f28d44ca11592260ef16105a to 837x
28310 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28312 commit ccf21c311e68d48399eff1e72936052885f6e3f7
28313 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28314 Date: Thu Dec 6 16:43:40 2007 +0100
28316 Add support CONFIG_UEC_ETH3 in MPC83xx
28318 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
28320 commit e6af9932d31171e35db880e7b2f29f903b1b7660
28321 Author: Kumar Gala <galak@kernel.crashing.org>
28322 Date: Mon Nov 26 11:00:54 2007 -0600
28324 Remove CONFIG options related to OF that we dont use
28326 The MPC8360E MDS config defined:
28328 CONFIG_OF_HAS_UBOOT_ENV
28330 Which we don't use or ever needed. This seems like copy-paste feature creep.
28332 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
28334 commit f602082b4b7ed4ee16432067cc67a0a24fedc715
28335 Author: Kim Phillips <kim.phillips@freescale.com>
28336 Date: Mon Dec 10 14:16:22 2007 -0600
28338 mpc83xx: supress compiler warning
28340 mpc8360emds.c: In function ‘ft_board_setup’:
28341 mpc8360emds.c:335: warning: assignment discards qualifiers from pointer target type
28342 mpc8360emds.c:345: warning: assignment discards qualifiers from pointer target type
28344 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28346 commit c16e44fa835fb9eec982d919863a04e2f78e5ce7
28347 Author: Kim Phillips <kim.phillips@freescale.com>
28348 Date: Tue Nov 27 14:17:29 2007 -0600
28350 mpc83xx: fix remaining fdt_find_node_by_path references
28352 rename to fdt_path_offset
28354 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28356 commit 921d4b19ad1be704df58725485d9292dc0414adf
28357 Author: Kim Phillips <kim.phillips@freescale.com>
28358 Date: Mon Nov 19 12:30:09 2007 -0600
28360 mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
28362 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for 837x.
28363 This change guarantees that the environment will be located on the
28364 first flash sector after the U-Boot image.
28366 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28368 commit 24f868433b50ecbaa88e118aadc7bd254013c6ae
28369 Author: Kim Phillips <kim.phillips@freescale.com>
28370 Date: Fri Nov 9 14:28:08 2007 -0600
28372 mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
28374 u-boot itself uses GMII mode on the 8360. Fix up UCC phy-connection-type
28375 properties in the device tree so the PHY gets configured for internal delay on
28376 RX only by the OS, as prescribed by mpc8360 rev. 2.1 pb mds erratum #2.
28378 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28380 commit 22b448dbfbe2a98f01ff4adc3c3979f8c541ad7b
28381 Author: Dave Liu <r63238@freescale.com>
28382 Date: Tue Sep 18 12:41:15 2007 +0800
28384 mpc83xx: update the CREDITS and MAINTAINERS
28386 update the CREDITS and MAINTAINERS.
28388 Signed-off-by: Dave Liu <daveliu@freescale.com>
28390 commit b21add4b42af7b767448251b599b91066a160e0d
28391 Author: Dave Liu <r63238@freescale.com>
28392 Date: Tue Sep 18 12:40:21 2007 +0800
28394 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
28396 Add the MAINTAINER and MAKEALL entries for mpc837xemds
28398 Signed-off-by: Dave Liu <daveliu@freescale.com>
28400 commit f8900ce9094c462355eb792eea264ff16ac8fd16
28401 Author: Dave Liu <r63238@freescale.com>
28402 Date: Tue Sep 18 12:38:53 2007 +0800
28404 mpc83xx: Add the MPC837xEMDS board readme
28406 Add the README.mpc837xemds to /doc
28408 Signed-off-by: Dave Liu <daveliu@freescale.com>
28410 commit 19580e660cc8da49f16536a8bd78c047c7bc12e5
28411 Author: Dave Liu <r63238@freescale.com>
28412 Date: Tue Sep 18 12:37:57 2007 +0800
28414 mpc83xx: Add the support of MPC837xEMDS board
28416 The MPC837xEMDS board support:
28417 * DDR2 400MHz hardcoded and SPD init
28418 * Local bus NOR Flash
28419 * I2C, UART, MII and RTC
28423 Signed-off-by: Dave Liu <daveliu@freescale.com>
28425 commit 555da61702771fe0f76f3de23b4e7590f3704161
28426 Author: Dave Liu <r63238@freescale.com>
28427 Date: Tue Sep 18 12:36:58 2007 +0800
28429 mpc83xx: Add the support of MPC8315E SoC
28431 The MPC8315E SoC including e300c3 core and new IP blocks,
28432 such as TDM, PCI Express and SATA controller.
28434 Signed-off-by: Dave Liu <daveliu@freescale.com>
28436 commit 03051c3d35c9981ceaa059005660e699f3eacf1c
28437 Author: Dave Liu <r63238@freescale.com>
28438 Date: Tue Sep 18 12:36:11 2007 +0800
28440 mpc83xx: Add the support of MPC837x SoC
28442 The MPC837x SoC including e300c4 core and new IP blocks,
28443 such as SDHC, PCI Express and SATA controller.
28445 Signed-off-by: Dave Liu <daveliu@freescale.com>
28447 commit 651d96f7e4c84adcdb98ef07ec878c20326e3359
28448 Author: Anton Vorontsov <avorontsov@ru.mvista.com>
28449 Date: Wed Nov 14 18:54:53 2007 +0300
28451 MPC8360E-MDS: configure and enable second UART
28453 Despite user manual, BCSR9.7 is negated (high) on HRST, so
28454 UART2 is disabled. Fix that and configure QE pins properly.
28456 Signed-off-by: Anton Vorontsov <avorontsov@ru.mvista.com>
28458 commit b2893e1fcb28fad8c8b317104df8cee0142c7631
28459 Author: Timur Tabi <timur@freescale.com>
28460 Date: Mon Nov 5 09:34:06 2007 -0600
28462 83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions
28464 Fix the definitions of CFG_ENV_ADDR and CFG_ENV_SECT_SIZE for all of the
28465 currently-defined 83xx boards. This change guarantees that the environment
28466 will be located on the first flash sector after the U-Boot image.
28468 Signed-off-by: Timur Tabi <timur@freescale.com>
28469 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
28471 commit e05329516a13616b53240cd85b739217c2bf87f1
28472 Author: Larry Johnson <lrj@acm.org>
28473 Date: Fri Jan 4 13:27:02 2008 -0500
28475 ppc4xx: Remove weak binding from common Denali data-eye search code
28477 Now that there are no board-specific versions of
28478 "denali_core_search_data_eye()", the weak binding on the common version
28481 Signed-off-by: Larry Johnson <lrj@acm.org>
28483 commit 5ba576c01602fd328800a427964c36a0a05c5dce
28484 Author: Stefan Roese <sr@denx.de>
28485 Date: Sat Jan 5 09:13:46 2008 +0100
28487 ppc4xx: Remove unused CONFIG_ECC_ERROR_RESET from 44x_spd_ddr2.c
28489 Signed-off-by: Stefan Roese <sr@denx.de>
28491 commit 845c6c95dbfe6c915ce68a0a115852fa17932fb4
28492 Author: Stefan Roese <sr@denx.de>
28493 Date: Sat Jan 5 09:12:41 2008 +0100
28495 ppc4xx: Update Katmai/44x_spd_ddr2.c code for optimal DDR2 setup
28497 On Katmai the complete auto-calibration somehow doesn't seem to
28498 produce the best results, meaning optimal values for RQFD/RFFD.
28499 This was discovered by GDA using a high bandwidth scope,
28500 analyzing the DDR2 signals. GDA provided a fixed value for RQFD,
28501 so now on Katmai "only" RFFD is auto-calibrated.
28503 This patch also adds RDCC calibration as mentioned on page 7 of
28504 the AMCC PowerPC440SP/SPe DDR2 application note:
28505 "DDR1/DDR2 Initialization Sequence and Dynamic Tuning"
28507 Signed-off-by: Stefan Roese <sr@denx.de>
28509 commit 49db47b8ae6afff2b898be312948ff501357dc80
28510 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28511 Date: Wed Jan 2 16:48:42 2008 +0100
28513 ppc4xx: Remove sdram.h from PMC440 board
28515 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28517 commit 34065a2ce0d8972f2ec6652076014ab243d2ce8a
28518 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28519 Date: Wed Jan 2 16:48:34 2008 +0100
28521 ppc4xx: use common denali core defines and data eye search code for PMC440
28523 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28525 commit 9ac6b6f3d3f1b072d89268b2efe47e95e6659489
28526 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28527 Date: Wed Jan 2 12:05:14 2008 +0100
28529 ppc4xx: More cleanup for esd's LCD code
28531 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28533 commit fe9c26b330a21ce73e52b5bd347d725cb81e3cfb
28534 Author: Stefan Roese <sr@denx.de>
28535 Date: Fri Jan 4 12:00:01 2008 +0100
28537 ppc4xx: Fix Sequoia NAND booting target
28539 The Sequoia NAND booting target now uses the recently extracted
28540 cpu/ppc4xx/denali_data_eye.c file too.
28542 Signed-off-by: Stefan Roese <sr@denx.de>
28544 commit 0ddd969aec532bd7eae30fc09590488a3aaa629a
28545 Author: Lawrence R. Johnson <lrj@acm.org>
28546 Date: Thu Jan 3 15:02:02 2008 -0500
28548 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Korat board
28550 Signed-off-by: Larry Johnson <lrj@acm.org>
28552 commit b05e8bf58be9d8956fdfde3d8c8e87c140414663
28553 Author: Lawrence R. Johnson <lrj@acm.org>
28554 Date: Fri Jan 4 02:11:56 2008 -0500
28556 ppc4xx: Use CFG_4xx_GPIO_TABLE to configure Sequoia board
28558 Note: this patch changes the configuration of some GPIO registers:
28560 Register Old Value New Value
28561 --------------- ---------- ----------
28562 DCR GPIO0_TCR 0x0000000F 0x0000F0CF
28563 DCR GPIO0_TSRH 0x55005000 0x00000000
28564 DCR GPIO1_TCR 0xC2000000 0xE2000000
28565 DCR GPIO1_TSRL 0x0C000000 0x00200000
28566 DCR GPIO1_ISR2L 0x00050000 0x00110000
28568 Signed-off-by: Larry Johnson <lrj@acm.org>
28570 commit 5ab884b254ca2e707ab50545cd705f30108cf491
28571 Author: Lawrence R. Johnson <lrj@acm.org>
28572 Date: Thu Jan 3 18:54:00 2008 -0500
28574 ppc4xx: Add functionality to GPIO support
28576 This patch makes two additions to GPIO support:
28578 First, it adds function gpio_read_in_bit() to read the a bit from the
28579 GPIO Input Register (GPIOx_IR) in the same way that function
28580 gpio_read_out_bit() reads a bit from the GPIO Output Register
28583 Second, it modifies function gpio_set_chip_configuration() to provide
28584 an additional option for configuring the GPIO from the
28585 "CFG_4xx_GPIO_TABLE".
28587 According to the 440EPx User's Manual, when an alternate output is used,
28588 the three-state control is configured in one of two ways, depending on
28589 the particular output. The first option is to select the corresponding
28590 alternate three-state control in the GPIOx_TRSH/L registers. The second
28591 option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
28592 the GPIOx_TRSH/L registers, and set the corresponding bit in the
28593 GPIOx_TCR register to enable the output. For example, the Manual
28594 specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
28595 the alternate three-state control (first option), and specifies
28596 configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
28597 enabled in the GPIOx_TCR register (second option).
28599 Currently, gpio_set_chip_configuration() configures all alternate signal
28600 outputs to use the first option. This patch allow the second option to
28601 be selected by setting the "out_val" element in the table entry to
28602 "GPIO_OUT_1". The first option is used when the "out_val" element is
28603 set to "GPIO_OUT_0". Because "out_val" is not currently used when an
28604 alternate signal is selected, and because all current GPIO tables set
28605 "out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
28606 not change any existing configurations.
28608 Signed-off-by: Larry Johnson <lrj@acm.org>
28610 commit 196404cdc1de495d6182e84731c200fc5748df15
28611 Author: Larry Johnson <lrj@arlinx.com>
28612 Date: Sun Dec 30 01:01:54 2007 -0500
28614 PPC4xx: Remove sdram.h from board/lwmon5
28616 These definitions are now in "include/ppc440.h".
28618 Signed-off-by: Larry Johnson <lrj@acm.org>
28620 commit ef16fccf96e55eab93fe25d03ebe2e9b56e5332b
28621 Author: Larry Johnson <lrj@arlinx.com>
28622 Date: Sun Dec 30 01:01:32 2007 -0500
28624 PPC4xx: Use common code for LWMON5 board SDRAM support
28626 This patch also modifies the functionality of the code so that the data-eye
28627 search is now done with with the cache disabled.
28629 Signed-off-by: Larry Johnson <lrj@acm.org>
28631 commit 62cc3951ab72135d9c101f1845b794e63a0fa189
28632 Author: Larry Johnson <lrj@arlinx.com>
28633 Date: Sun Dec 30 01:01:14 2007 -0500
28635 PPC4xx: Remove sdram.h from board/amcc/sequoia
28637 These definitions are now in "include/ppc440.h".
28639 Signed-off-by: Larry Johnson <lrj@acm.org>
28641 commit ce3902e1765bbfb07cf5bbe98be9a68e3009996a
28642 Author: Larry Johnson <lrj@arlinx.com>
28643 Date: Sun Dec 30 01:00:50 2007 -0500
28645 PPC4xx: Use common code for Sequoia board SDRAM support
28647 Signed-off-by: Larry Johnson <lrj@acm.org>
28649 commit 8b0c5c127690335758100c25eaec2b84db97c101
28650 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28651 Date: Thu Dec 27 16:58:41 2007 +0100
28653 net: Add CONFIG_NET_DO_NOT_TRY_ANOTHER option
28655 When CONFIG_NET_DO_NOT_TRY_ANOTHER is defined U-Boot's
28656 networking stack does not automatically switch to
28657 another interface. This patch does not touch the default
28660 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28661 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28663 commit 505be87a65e4f87ad7d8da1d57ea4dcd487d7e32
28664 Author: Upakul Barkakaty <upakul@gmail.com>
28665 Date: Thu Nov 29 12:16:13 2007 +0530
28667 NET: Proper return code handling in eth_init() function in file eth.c
28669 This patch modifies the return code handling in the eth_init()
28670 function, to be compatible with the handling of the return codes in
28671 the other network stack files. It now returns a 0 on Success and -1 on
28674 Signed-off-by: Upakul Barkakaty <upakul.barkakaty@conexant.com>
28675 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28677 commit 5ca2d0953e4579a80810966cca2077e20d912c97
28678 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28679 Date: Mon Nov 19 20:27:04 2007 +0900
28681 net/eth.c: Fix env_enetaddr signed overflow
28683 Assigning the output of simple_strtoul(CB:A9:87:65:43:21) to `char', we are
28686 U-Boot 1.2.0 (Aug 30 2007 - 08:27:37)
28694 Warning: NEC-Candy MAC addresses don't match:
28695 Address in SROM is 00:00:4C:80:92:A2
28696 Address in environment is FFFFFFCB:FFFFFFA9:FFFFFF87:65:43:21
28698 This patch changes env_enetaddr type from `char' to `unsigned char'.
28700 Cc: Masaki Ishikawa <ishikawa-masaki@cnt.mxe.nes.nec.co.jp>
28701 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
28702 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28704 commit f85b60710571b37293d2233933b76e2aa3db5635
28705 Author: Rafal Jaworowski <raj@semihalf.com>
28706 Date: Thu Dec 27 18:19:02 2007 +0100
28708 Introduce new eth_receive routine
28710 The purpose of this routine is receiving a single network frame, outside of
28711 U-Boot's NetLoop(). Exporting it to standalone programs that run on top of
28712 U-Boot will let them utilise networking facilities. For sending a raw frame
28713 the already existing eth_send() can be used.
28715 The direct consumer of this routine is the newly introduced API layer for
28716 external applications (enabled with CONFIG_API).
28718 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
28719 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
28720 Signed-off-by: Ben Warren <biggerbadderben@gmail.com>
28722 commit 5c740711f0ea5b51414b341b71597c4a0751be74
28723 Author: Jon Loeliger <jdl@freescale.com>
28724 Date: Thu Jan 3 10:41:04 2008 -0600
28726 8610: Move include of config.h earlier.
28728 Include config.h earlier in the set of #includes
28729 so as to avoid a incidental and duplicate definition
28730 of CFG_CACHELINE_SIZE.
28732 Signed-off-by: Jon Loeliger
28734 commit 61d3421bdea090bd0399b14c3e10a3bebcc8d5ff
28735 Author: Jon Loeliger <jdl@freescale.com>
28736 Date: Tue Dec 4 10:53:34 2007 -0600
28738 Don't slam #undef DEBUG in the 8641HPCN config file.
28740 Doing so prevents it from being individually set
28741 and useful in other files.
28743 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28745 commit ea9f7395ec362584e5e4f266bd0b0c4422cf6a4c
28746 Author: Jon Loeliger <jdl@freescale.com>
28747 Date: Wed Nov 28 14:47:18 2007 -0600
28749 Convert MPC8641HPCN to use libfdt.
28751 Assumes the presence of the aliases node in the DTS to
28752 locate the ethernet, pci and serial nodes for fixups.
28754 Use consistent fdtaddr and fdtfile in environment variables.
28756 Signed-off-by: Jon Loeliger <jdl@freescale.com>
28758 commit ce37422d0002e10490e268392e0c4e3028e52cec
28759 Author: Stefan Roese <sr@denx.de>
28760 Date: Wed Jan 2 14:06:26 2008 +0100
28762 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
28764 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
28765 flash chips connected to a 32bit wide port.
28767 Signed-off-by: Stefan Roese <sr@denx.de>
28769 commit 1182e9f8e3b92fc372d64943293de53daa2e26cf
28770 Author: Wolfgang Denk <wd@denx.de>
28771 Date: Wed Jan 2 15:58:44 2008 +0100
28773 Fix compile problem introduced by "cleanup" commit 3dfd708c
28775 Signed-off-by: Wolfgang Denk <wd@denx.de>
28777 commit 1aaab9bfae0b3b2ee2b418c22c651280ee7b65c7
28778 Author: Wolfgang Denk <wd@denx.de>
28779 Date: Wed Jan 2 15:54:45 2008 +0100
28781 Make scripts and Makefiles POSIX compliant
28783 The bash builtin versions of the "test" (resp. "[") command allow
28784 using "==" for string comparisons, but POSIX compatible implemen-
28785 tations (like /usr/bin/test) insist on using "=" only. On such systems
28788 $ /usr/bin/test a == a && echo OK
28789 /usr/bin/test: ==: binary operator expected
28791 This patch fixes Makefiles and scripts to use POSIX style.
28793 Signed-off-by: Wolfgang Denk <wd@denx.de>
28795 commit 47cc23cbe9a669c510183f4f049bf703ef445f3b
28796 Author: Stefan Roese <sr@denx.de>
28797 Date: Wed Jan 2 14:05:37 2008 +0100
28799 cfi_flash: Fix bug in flash_isset() to use correct 32bit function
28801 This bug was detected on the LWMON5 target which has 2 Intel 16bit wide
28802 flash chips connected to a 32bit wide port.
28804 Signed-off-by: Stefan Roese <sr@denx.de>
28806 commit 3dfd708cc1b2a966ad454ca9ed125dd17dbadbcc
28807 Author: Wolfgang Denk <wd@denx.de>
28808 Date: Wed Jan 2 12:38:43 2008 +0100
28810 Minor coding style cleanup.
28812 Signed-off-by: Wolfgang Denk <wd@denx.de>
28814 commit e174ac34adf5d5653df12bc3cf19c52063a71269
28815 Author: Stefan Roese <sr@denx.de>
28816 Date: Fri Dec 28 17:29:56 2007 +0100
28818 ppc4xx: Coding style cleanup
28820 Signed-off-by: Stefan Roese <sr@denx.de>
28822 commit 8ba132cab18ae438b6dd5b0214c28a8fc0d976e5
28823 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28824 Date: Fri Dec 28 17:07:24 2007 +0100
28826 ppc4xx: Complete PMC440 board support
28828 This patch brings the PMC440 board configuration file.
28829 Finally it enables the PMC440 board support.
28831 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28833 commit 407843a582560fc5231299561ab3c2b6b6cd3397
28834 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28835 Date: Fri Dec 28 17:07:18 2007 +0100
28837 ppc4xx: Add FPGA support and BSP commands for PMC440 boards
28839 This patch adds some BSP commands and FPGA booting support
28840 for esd's PMC440 boards.
28842 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28844 commit 72c5d52aedcce35e4b4fa5895605554825b6a76f
28845 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28846 Date: Fri Dec 28 17:07:14 2007 +0100
28848 ppc4xx: Add initial esd PMC440 board files
28850 This patch adds the first files for the new esd PMC440 boards.
28851 The next two patches will complete the PMC440 board support.
28853 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28855 commit f6e0f1f61896ce7729ba1bcea2ffbd138d3947f5
28856 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28857 Date: Fri Dec 28 17:10:36 2007 +0100
28859 ppc4xx: Add EEPROM write protection for PLU405 boards + misc. updates
28861 - add EEPROM write protection for esd PLU405 boards.
28862 - initialize NAND GPIOs
28863 - use correct io accessors
28866 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28868 commit 77660c4b59055d621d2a8595bd4c18bb277268fc
28869 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28870 Date: Fri Dec 28 17:10:44 2007 +0100
28872 ppc4xx: use correct io accessors for esd's LCD code
28874 This patch fixes esd's LCD dectection code to work correctly with
28875 newer gcc versions.
28877 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28879 commit b56bd0fcfc1c73db722e3462c8a9bf607ba7775e
28880 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28881 Date: Fri Dec 28 17:10:42 2007 +0100
28883 ppc4xx: Maintenance patch for VOH405 boards
28885 - add EEPROM write protection
28886 - initialize NAND GPIOs
28887 - use correct io accessors
28888 - slow down I2C clock to 100kHz
28889 - enable ext. I2C bus
28892 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28894 commit c05569066dbcba3fdf36d4d1943df265dc316a86
28895 Author: Stefan Roese <sr@denx.de>
28896 Date: Fri Dec 28 16:08:08 2007 +0100
28898 ppc4xx: Enable 405EP PCI arbiter per default on all boards
28900 In an attmemt to clean up the 4xx start.S file, I removed the enabling
28901 of the internal 405EP PCI arbiter. This is needed for multiple other
28902 405EP platforms, like most of the esd 405EP. Now the internal PCI
28903 arbiter is enabled again per default as it has been before.
28905 Signed-off-by: Stefan Roese <sr@denx.de>
28906 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28908 commit bec9264616fb78273a1d93e87ff4b0b67c7bec1b
28909 Author: Stefan Roese <sr@denx.de>
28910 Date: Fri Dec 28 15:53:46 2007 +0100
28912 ppc4xx: Fix bug in cpu_init.c (405EP instead of 450EP)
28914 Signed-off-by: Stefan Roese <sr@denx.de>
28915 Acked-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28917 commit fb83a65c60ab5ca12358b75f1257e5eee6cdbf79
28918 Author: Stefan Roese <sr@denx.de>
28919 Date: Fri Dec 28 06:06:04 2007 +0100
28921 ppc4xx: Fix compilation problem of kilauea/haleakala nand booting target
28923 Use correct link to nand_ecc now located in drivers/mtd/nand/ for the
28924 platforms mentioned above.
28926 Signed-off-by: Stefan Roese <sr@denx.de>
28928 commit b568fd25574181a3b12ae3d66b2913903442cb83
28929 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28930 Date: Thu Dec 27 17:03:46 2007 +0100
28932 Remove CPCI440 board
28934 This board never left prototyping state and it
28935 became a millstone round my neck. So remove it.
28937 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
28939 commit c591dffe0cbacd896ccbad06011fe6d6afa080da
28940 Author: Larry Johnson <lrj@arlinx.com>
28941 Date: Thu Dec 27 11:28:51 2007 -0500
28943 Add support for Korat PPC440EPx board
28945 These patches add support for the PPC440EPx-based "Korat" board to
28946 U-Boot. They are based primarily on support for the Sequoia board.
28948 Signed-off-by: Larry Johnson <lrj@acm.org>
28950 commit 87dc096829e6a6363f4fdd73653b0093a85adbe0
28951 Author: Larry Johnson <lrj@arlinx.com>
28952 Date: Sat Dec 22 15:16:25 2007 -0500
28954 Add configuration file for Korat board
28956 This patch supplies the configuration file for the Korat PPC440EPx-
28959 Signed-off-by: Larry Johnson <lrj@acm.org>
28961 commit 8eb52d5d982b764b39c88d9d1064d56c5397bfa5
28962 Author: Larry Johnson <lrj@arlinx.com>
28963 Date: Sat Dec 22 15:16:11 2007 -0500
28965 Add denali_data_eye.o and denali_spd_ddr2.o to PPC4xx Makefile
28967 Signed-off-by: Larry Johnson <lrj@acm.org>
28969 commit aba19604d848b2838cfb9ebe818909e6a216058e
28970 Author: Larry Johnson <lrj@arlinx.com>
28971 Date: Thu Dec 27 10:54:48 2007 -0500
28973 Add 440EPx DDR2 SPD DIMM support
28975 This patch adds SPD DDR2 support for the 440EPx ("Denali") SDRAM
28976 controller. It should also work on the 440GRx. It is based on the DDR2
28977 SPD code for the 440EP/440EPx, but makes no provision for DDR1 support.
28979 This code has been tested on prototype Korat boards with three Kingston
28980 DIMMS: 512 MiB ECC (one rank), 512 MiB non-ECC (one rank) and 1 GiB ECC
28981 (two ranks). The Korat board has a single DIMM socket, but support has
28982 been provided (though not tested) for boards with two DIMM sockets.
28984 Signed-off-by: Larry Johnson <lrj@acm.org>
28986 commit 8a24a6963002cb867d5a6b70e3560f0b1467f55f
28987 Author: Larry Johnson <lrj@arlinx.com>
28988 Date: Sat Dec 22 15:15:30 2007 -0500
28990 Copy 440EPx/GRx SDRAM data-eye search to common directory
28992 This patch creates a non-board-specific file for performing the SDRAM
28993 data-eye search. It also adds ECC error checking to the test of valid
28994 data on readback when ECC is enabled.
28996 Signed-off-by: Larry Johnson <lrj@acm.org>
28998 commit c46f53333b22b1f9098676bea8884fc7db820cf3
28999 Author: Larry Johnson <lrj@arlinx.com>
29000 Date: Sat Dec 22 15:15:13 2007 -0500
29002 Add definitions for 440EPx/GRx SDRAM controller to ppc440.h
29004 This patch adds the Denali SDRAM controller definitions to "ppc440.h".
29005 It also fixes two typos in the definitions, so the board-specific
29006 "sdram.h" files containing these definitions are also fixed to avoid
29009 Signed-off-by: Larry Johnson <lrj@acm.org>
29011 commit c348578bf612d0c56d8d376d23cae16defbd86af
29012 Author: Larry Johnson <lrj@arlinx.com>
29013 Date: Thu Dec 27 10:50:55 2007 -0500
29015 Add Ethernet 1000BASE-X support for PPC4xx
29017 This patch adds a new switch: "CONFIG_PHY_DYNAMIC_ANEG". When this symbol
29018 is defined, the PHY will advertise it's capabilities for autonegotiation
29019 based on the capabilities shown in the PHY's status registers, including
29020 1000BASE-X. When "CONFIG_PHY_DYNAMIC_ANEG" is not defined, the PHY will
29021 advertise hard-coded capabilities, as before.
29023 Signed-off-by: Larry Johnson <lrj@acm.org>
29025 commit 9e2c347151db5ae8acf5f18b99493cd53e6637e3
29026 Author: Larry Johnson <lrj@arlinx.com>
29027 Date: Thu Dec 27 09:52:17 2007 -0500
29029 Add driver for National Semiconductor LM73 temperature sensor
29031 This driver is based on the driver for the LM75.
29033 Signed-off-by: Larry Johnson <lrj@acm.org>
29035 commit 12618278688ea9b3d76536960a5ad2e3790fac40
29036 Author: Larry Johnson <lrj@arlinx.com>
29037 Date: Sat Dec 22 15:14:00 2007 -0500
29039 Add driver for STMicroelectronics M41T60 RTC
29041 This driver is based on the driver for the M41T11. In the intended
29042 application, the RTC will be powered by a large capacitor, rather than a
29043 battery. The driver therefore checks to see whether the RTC has lost
29044 power. The chip's OUT bit is normally reset from its power-up state. If
29045 the OUT bit is read as set, or if the date and time are not valid, then the
29046 RTC is assumed to have lost power, and its date and time are reset to
29047 1900-01-01 00:00:00.
29049 Support for adjusting the speed of the clock to improve accuracy is
29050 provided through an environment variable.
29052 Signed-off-by: Larry Johnson <lrj@acm.org>
29054 commit d3471173e14b7544bb60339eda8d3d3906694b0a
29055 Author: Larry Johnson <lrj@arlinx.com>
29056 Date: Sat Dec 22 15:34:39 2007 -0500
29058 Use out_be32() and friends to access memory-mapped registers in sequoia.c
29060 Signed-off-by: Larry Johnson <lrj@acm.org>
29062 commit c68f59fe3ec16769f82b5fca7421983c336d3aac
29063 Author: Larry Johnson <lrj@arlinx.com>
29064 Date: Sat Dec 22 15:34:20 2007 -0500
29066 Use definitions from "asm-ppc/mmu.h" in init.S for Sequoia
29068 Signed-off-by: Larry Johnson <lrj@acm.org>
29070 commit 0d9cdeac1d3fa8d62ed7d883acc950c364f5bda8
29071 Author: Larry Johnson <lrj@arlinx.com>
29072 Date: Sat Dec 22 15:23:50 2007 -0500
29074 Cosmetic changes to ECC POST for AMCC Denali core
29076 Signed-off-by: Larry Johnson <lrj@acm.org>
29078 commit 2e583d6c81034f80a267b89fa55498ae063ccef1
29079 Author: Stefan Roese <sr@denx.de>
29080 Date: Wed Dec 26 20:20:19 2007 +0100
29082 ppc4xx: Fix compilation problem in 405 cache POST test
29084 Signed-off-by: Stefan Roese <sr@denx.de>
29086 commit 42d55ea0bde06e47d5a3b49b0d91002acd8e5708
29087 Author: Stefan Roese <sr@denx.de>
29088 Date: Sat Dec 22 12:20:09 2007 +0100
29090 ppc4xx: Move virtual address of POST cache test to bigger address
29092 On Sequoia & LWMON5 the virtual address of the POST cache test is now
29093 moved to a bigger address. This enables usage of more memory on those
29096 Signed-off-by: Stefan Roese <sr@denx.de>
29098 commit d91722102cf63f77a0148ed3f3d54a26d87575e9
29099 Author: Stefan Roese <sr@denx.de>
29100 Date: Sat Dec 22 12:18:26 2007 +0100
29102 ppc4xx: Fix problem in 44x cache POST routine
29104 As repoted by Larry Johnson, running "diag run cache" caused a crash
29105 in U-Boot. This problem was introduced by a patch that removed the
29106 TLB entry for the cache test after the test has completed. Since this
29107 TLB was only setup once, a 2nd attempt to run this cache test
29108 failed with a crash. Now this TLB entry is created every time the
29111 Signed-off-by: Stefan Roese <sr@denx.de>
29113 commit b0265b576bb8fa9465f99e99c323768b562fadc2
29114 Author: Stefan Roese <sr@denx.de>
29115 Date: Fri Dec 21 07:51:29 2007 +0100
29117 ppc4xx: Update Makalu fdt support
29119 Signed-off-by: Stefan Roese <sr@denx.de>
29121 commit bf8324e4a50758daff8cddd04c6a2ff8ed775bea
29122 Author: Stefan Roese <sr@denx.de>
29123 Date: Wed Dec 19 09:05:40 2007 +0100
29125 ppc4xx: Add fdt support to AMCC Katmai eval board
29127 Signed-off-by: Stefan Roese <sr@denx.de>
29129 commit 328a340392a5df9aaf00792be989df73e750859e
29130 Author: Stefan Roese <sr@denx.de>
29131 Date: Tue Dec 18 08:44:51 2007 +0100
29133 ppc4xx: fdt: Cleanup setup of cpu node setup
29135 Now the cpu node setup ("timebase-frequency" and "clock-frequency") is
29136 without using the absolute path to the cpu node. This makes it possible
29137 to use this U-Boot version with both versions of cpu-node naming
29138 "cpu@0" and the former "PowerPC,440EPx@0".
29140 Signed-off-by: Stefan Roese <sr@denx.de>
29142 commit 7812bc4a2e2436ebbc0ce5b4e99c1dfc2e77eb5b
29143 Author: Stefan Roese <sr@denx.de>
29144 Date: Mon Dec 17 17:26:21 2007 +0100
29146 ppc4xx: Fix lwmon5 compilation problem
29148 Now that the 440EPx ECC test is not board specific anymore
29149 remove this Makefile.
29151 Signed-off-by: Stefan Roese <sr@denx.de>
29153 commit 42ed33ffe135f618680f9d6e9712eb35a85bcb62
29154 Author: Anatolij Gustschin <agustschin@t-online.de>
29155 Date: Wed Dec 5 17:43:20 2007 +0100
29157 Fix ppc4xx clear_bss() code
29159 ppc4xx clear_bss() fails if BSS segment size is not
29160 divisible by 4 without remainder. This patch provides
29161 fix for this problem.
29163 Signed-off-by: Anatolij Gustschin <agust@denx.de>
29165 commit 85dc2a7f82d11e17f0ca2a448118aed7f7a4b85d
29166 Author: Niklaus Giger <niklausgiger@gmx.ch>
29167 Date: Fri Nov 30 18:35:11 2007 +0100
29169 PPC4xx: Minimal changes to add vxWorks support
29171 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
29173 commit 052440b022ca8981d39b6f8c10d1aa6326f47480
29174 Author: Markus Klotzbücher <mk@denx.de>
29175 Date: Fri Nov 23 13:09:18 2007 +0100
29177 ppc4xx: Add CONFIG_BOOTP_SUBNETMASK to Sequoia board config
29179 When using dhcp/bootp the "netmask" environment variable is not
29180 set because CONFIG_BOOTP_SUBNETMASK is not defined. But usually this is
29181 desireable, so the following patch adds this this option to the board
29184 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
29185 Signed-off-by: Stefan Roese <sr@denx.de>
29187 commit a724a9b40c7fbeb6ade193ca52321b441eaecb4e
29188 Author: Larry Johnson <lrj@arlinx.com>
29189 Date: Sat Oct 27 12:48:15 2007 -0400
29191 Fix/enhance ECC POST for 440EPx/GRx
29193 This patch allows the ECC POST to be used for different boards with the
29194 PPC440 Denali SDRAM controller. Modifications include skipping the test
29195 if ECC is not enabled (as for non-ECC DIMMs) and adding synchronization
29196 to prevent timing errors.
29198 Signed-off-by: Larry Johnson <lrj@acm.org>
29200 commit 454a6cf8d498f70d2b3e18f07837603eb24b12d4
29201 Author: Larry Johnson <lrj@arlinx.com>
29202 Date: Sat Oct 27 12:48:05 2007 -0400
29204 PPC4xx: Move/rename ECC POST for 440EPx/GRx
29206 Signed-off-by: Larry Johnson <lrj@acm.org>
29208 commit c29d2d3680046d430022c55e50fcb27f5866517e
29209 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29210 Date: Fri Dec 14 11:20:33 2007 +0100
29212 ppc4xx: use correct io accessors for 4xx ethernet POST
29214 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29216 commit ba79fde58a48c0a6ff8e2a96caba951594142203
29217 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29218 Date: Fri Dec 14 11:19:56 2007 +0100
29220 ppc4xx: fix flush + invalidate_dcache_range arguments
29222 flush + invalidate_dcache_range() expect the start and stop+1 address.
29223 So the stop address is the first address behind (!) the range.
29225 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
29227 commit 871e6ce188a7c6bc7321bcf8372857035d20f1cd
29228 Author: Stefan Roese <sr@denx.de>
29229 Date: Fri Dec 14 08:41:29 2007 +0100
29231 ppc4xx: fdt: use fdt_fixup_ethernet()
29233 By using aliases in the dts file, the ethernet node fixup is
29234 much easier with the recently added functions.
29236 Please note that the dts file needs the aliases for this to work.
29238 Signed-off-by: Stefan Roese <sr@denx.de>
29240 commit 136288847e3b04f2ff357a067ad45e10afa0a24c
29241 Author: Stefan Roese <sr@denx.de>
29242 Date: Thu Dec 13 14:52:53 2007 +0100
29244 ppc4xx: Bring 4xx fdt support up-to-date
29246 This patch update the 4xx fdt support. It enabled fdt booting
29247 on the AMCC Kilauea and Sequoia for now. More can follow later
29250 Signed-off-by: Stefan Roese <sr@denx.de>
29252 commit 0dc80e2759fba859ccc4cdadc633577ca2971f3e
29253 Author: Stefan Roese <sr@denx.de>
29254 Date: Thu Dec 27 07:50:54 2007 +0100
29256 cfi_flash: Add missing check for erased dest to flash_write_cfibuffer()
29258 The check for an sufficiently erased destination was missing in the
29259 buffered write function of the cfi flash driver (when
29260 CFG_FLASH_USE_BUFFER_WRITE is defined). This patch adds this check to that
29261 writing to such a region will fail with the currect error message.
29263 Signed-off-by: Stefan Roese <sr@denx.de>
29265 commit 33ed73bc0e38d0f2b5c183d4629d8f207e5b9994
29266 Author: Martin Krause <martin.krause@tqs.de>
29267 Date: Mon Nov 12 10:56:17 2007 +0100
29269 Some configuration updates for the TQM5200 based TB5200 board:
29271 - enable command line history
29272 - increase malloc space (because of bigger flash sectors)
29274 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29276 commit e318d9e9021a0af7508171f84ed09d0e79f0284e
29277 Author: Martin Krause <martin.krause@tqs.de>
29278 Date: Thu Sep 27 11:10:08 2007 +0200
29280 TQM8xx: use the CFI flash driver on all TQM8xx boards
29282 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29284 commit 11d9eec479b470eab9242ab937fca70a876d9376
29285 Author: Martin Krause <martin.krause@tqs.de>
29286 Date: Wed Sep 26 17:55:56 2007 +0200
29288 TQM885D: adjust for doubled flash sector size + some minor fixes
29290 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29292 commit 22d1a56cbfb0bff34f477b4db6a55d076d829b83
29293 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
29294 Date: Wed Sep 26 17:55:54 2007 +0200
29296 TQM885D: Exchanged SDRAM timing by a more relaxed timing.
29298 CAS-Latency=2, Write Recovery Time tWR=2
29299 The max. supported bus frequency is 66 MHz. Therefore, changed
29300 threshold to switch from 1:1 mode to 2:1 from 80 MHz to 66 MHz.
29302 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29304 commit b988b8cd443989be65161888eea0127ad03f846f
29305 Author: Martin Krause <martin.krause@tqs.de>
29306 Date: Wed Sep 26 17:55:56 2007 +0200
29308 TQM885D: use calculated cpuclk instead of measuring it
29310 On the TQM885D the measurement of cpuclk with the PIT reference
29311 timer ist not necessary. Since all module variants use the same
29312 external 10 MHz oscillator, the cpuclk only depends on the PLL
29313 configuration - which is readable by software.
29315 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29317 commit 492c7049869348d31168de8dad89651315e468e0
29318 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
29319 Date: Thu Sep 27 14:54:46 2007 +0200
29321 TQM885D: fix SDRAM refresh
29323 At 133 MHz the current SDRAM refresh rate is too fast
29324 (measured 4 * 1.17 us).
29325 CFG_MAMR_PTA changes from 39 to 128. This result
29326 in a refresh rate of 4 * 7.8 us at the default clock
29327 66 MHz. At 133 MHz the value will be then 4 * 3.8 us.
29328 This is a compromise until a new method is found to
29329 adjust the refresh rate.
29331 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29333 commit dabad4b9bc46908e301f73ce76b38b23626a96e9
29334 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
29335 Date: Thu Sep 27 14:54:46 2007 +0200
29337 TQM860M: Support for 10col SDRAMs, max. 128 MiB
29339 Signed-off-by: Martin Krause <martin.krause@tqs.de>
29341 commit 61fb15c516fef5631e305f1976d7b3a679725856
29342 Author: Wolfgang Denk <wd@denx.de>
29343 Date: Thu Dec 27 01:52:50 2007 +0100
29345 Fix coding style issues; update CHANGELOG.
29347 Signed-off-by: Wolfgang Denk <wd@denx.de>
29349 commit 467bcee11fe26ad422f2de971aa70866079870f2
29350 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29351 Date: Fri Dec 14 15:36:18 2007 +0100
29353 cfi_flash: Add manufacturer-specific fixups
29355 Run fixups based on the JEDEC manufacturer ID independent of the
29358 This changes current behaviour: Previously, geometry reversal for AMD
29359 chips were done based on the command set ID, while they are now done
29360 based on the JEDEC manufacturer and device ID.
29362 Also add fixup for top-boot Atmel chips. A fixup is needed for
29363 AT49BV6416(T) too, but since u-boot currently only reads the low byte
29364 of the device ID, there's no way to tell it apart from AT49BV642D,
29365 which should not have this fixup. Since AT49BV642D support is
29366 necessary to get ATNGW100 board support into mainline, I've commented
29367 out the fixup for now.
29369 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29371 commit 0ddf06ddf6b4bd057ad4c5f0dffea7870ba06a2a
29372 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29373 Date: Fri Dec 14 15:36:17 2007 +0100
29375 cfi_flash: Add cmdset-specific init functions
29377 Move things like reading JEDEC IDs and fixing up geometry reversal
29378 into separate functions. The geometry reversal fixup is now performed
29379 by altering the qry structure directly, which makes the sector init
29380 code slightly cleaner.
29382 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29384 commit e23741f4a6d8047520ef0d4971762749b3587d32
29385 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29386 Date: Fri Dec 14 15:36:16 2007 +0100
29388 cfi_flash: Read whole QRY structure in one go
29390 Read out the whole CFI Standard Query structure after successful cfi
29391 identification. This allows subsequent code to access this information
29392 directly without having to go through flash_read_uchar() and friends.
29394 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29396 commit df9c25ea04b38a0e05d4f8c73c5cc144cdafa7db
29397 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29398 Date: Mon Dec 17 11:02:44 2007 +0100
29400 AVR32: Fix logic inversion in disable_interrupts()
29402 disable_interrupts() should return nonzero if interrupts were
29403 _enabled_ before, not disabled.
29405 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29407 commit acac475212cbedb17b321a363a1c878e2b47b37f
29408 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29409 Date: Fri Dec 14 16:51:22 2007 +0100
29411 AVR32: Enable interrupts at bootup
29413 The timer code depends on the timer interrupt to keep track of the
29414 upper 32 bits of the cycle counter. This obviously doesn't work when
29415 interrupts are disabled the whole time.
29417 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29419 commit 9570bcd87f4db255514f43b6701746c412f8fef0
29420 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29421 Date: Thu Nov 15 10:03:45 2007 +0100
29423 AVR32: Fix wrong pin setup for USART3
29425 As reported by Gerhard Berghofer:
29427 in "gpio_enable_usart3" the correct pins for USART 3 are PB17 and PB18
29428 instead of PB18 and PB19.
29430 which is obviously correct. There's currently no code that uses
29431 USART3, but custom boards may run into problems.
29433 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29435 commit 09ea0de03dcc3ee7af045b0b572227bda2c1c918
29436 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29437 Date: Thu Nov 1 12:44:20 2007 +0100
29439 README: Remove ATSTK1000 daughterboard list
29441 As noted by Kim Phillips, these lists tend to become out of date.
29443 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29445 commit c81cbbad21cb0ae983e2e796211202234cdc8be2
29446 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29447 Date: Tue Oct 30 14:56:36 2007 +0100
29449 Add ATSTK100[234] to MAINTAINERS
29451 Add all the ATSTK1000 daughterboards to MAINTAINERS along with their
29452 "mother". Also update the entry for ATSTK1000 to be not only about the
29453 AP7000 CPU; it's intended to handle all CPUs in the AT32AP family.
29455 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29457 commit 64ff2357b1727213803591813dbc779c924bf772
29458 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29459 Date: Mon Oct 29 13:02:54 2007 +0100
29461 AVR32: Add support for the ATSTK1004 board
29463 ATSTK1004 is a daughterboard for ATSTK1000 with the AT32AP7002 CPU,
29464 which is a derivative of AT32AP7000.
29466 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29468 commit 667568db157f374b85abd7e03596ddd1f0b25681
29469 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29470 Date: Mon Oct 29 13:02:54 2007 +0100
29472 AVR32: Add support for the ATSTK1003 board
29474 ATSTK1003 is a daughterboard for ATSTK1000 with the AT32AP7001 CPU,
29475 which is a derivative of AT32AP7000.
29477 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29479 commit 5fee84a794a51ec830548cda485a770efb018b92
29480 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29481 Date: Mon Oct 29 13:23:33 2007 +0100
29483 AVR32: Make some AT32AP700x peripherals optional
29485 Add a chip-features file providing definitions of the form
29487 AT32AP700x_CHIP_HAS_<peripheral>
29489 to indicate the availability of the given peripheral on the currently
29492 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29494 commit 36f28f8a9605ee5dcfa330482cfc62171261af97
29495 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29496 Date: Mon Oct 29 13:09:56 2007 +0100
29498 AVR32: Rename at32ap7000 -> at32ap700x
29500 The SoC-specific code for all the AT32AP700x CPUs is practically
29501 identical; the only difference is that some chips have less features
29502 than others. By doing this rename, we can add support for the AP7000
29503 derivatives simply by making some features conditional.
29505 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29507 commit 4d5fa99c73f354e7cf985efcf417ea55ca2f6a5e
29508 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29509 Date: Fri Jun 29 18:22:34 2007 +0200
29511 atmel_mci: Show SR when block read fails
29513 Show controller status as well as card status when an error occurs
29516 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29518 commit 8697e6a19b10f514511b6a9c86de88bd108c4f8d
29519 Author: Stefan Roese <sr@denx.de>
29520 Date: Thu Dec 13 14:52:53 2007 +0100
29522 ppc4xx: Bring 4xx fdt support up-to-date
29524 This patch update the 4xx fdt support. It enabled fdt booting
29525 on the AMCC Kilauea and Sequoia for now. More can follow later
29528 Signed-off-by: Stefan Roese <sr@denx.de>
29530 commit 12d30aa79779c2aa7a998bbae4c075f822a53004
29531 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29532 Date: Thu Dec 13 12:56:34 2007 +0100
29534 cfi_flash: Use map_physmem() and unmap_physmem()
29536 Use map_physmem() and unmap_physmem() to convert from physical to
29537 virtual addresses. This gives the arch a chance to provide an uncached
29538 mapping for flash accesses.
29540 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29542 commit 4d7d6936eb29af7cca330937808312aa5f61454d
29543 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29544 Date: Thu Dec 13 12:56:33 2007 +0100
29546 Introduce map_physmem() and unmap_physmem()
29548 map_physmem() returns a virtual address which can be used to access a
29549 given physical address without involving the cache. unmap_physmem()
29550 should be called when the virtual address returned by map_physmem() is
29553 This patch adds a stub implementation which simply returns the
29554 physical address cast to a uchar * for all architectures except AVR32,
29555 which converts the physical address to an uncached virtual mapping.
29556 unmap_physmem() is a no-op on all architectures, but if any
29557 architecture needs to do such mappings through the TLB, this is the
29558 hook where those TLB entries can be invalidated.
29560 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29562 commit cdbaefb5f5f03e54455d0439dcf6dbd97ead1f9d
29563 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29564 Date: Thu Dec 13 12:56:32 2007 +0100
29566 cfi_flash: Introduce read and write accessors
29568 Introduce flash_read{8,16,32,64) and flash_write{8,16,32,64} and use
29569 them to access the flash memory. This makes it clearer when the flash
29570 is actually being accessed; merely dereferencing a volatile pointer
29571 looks just like any other kind of access.
29573 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29575 commit 812711ce6b3a386125dcf0d6a59588e461abbb87
29576 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29577 Date: Thu Dec 13 12:56:31 2007 +0100
29579 Implement __raw_{read,write}[bwl] on all architectures
29581 This adds implementations of __raw_read[bwl] and __raw_write[bwl] to
29582 m68k, ppc, nios and nios2. The m68k and ppc implementations were taken
29585 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29587 commit be60a9021c82fc5aecd5b2b1fc96f70a9c81bbcd
29588 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29589 Date: Sat Oct 6 18:55:36 2007 +0200
29591 cfi_flash: Reorder functions and eliminate extra prototypes
29593 Reorder the functions in cfi_flash.c so that each function only uses
29594 functions that have been defined before it. This allows the static
29595 prototype declarations near the top to be eliminated and might allow
29596 gcc to do a better job inlining functions.
29598 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29600 commit 3055793bcbdf24b1f8117f606ffb766d32eb766f
29601 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29602 Date: Thu Dec 13 12:56:29 2007 +0100
29604 cfi_flash: Make some needlessly global functions static
29606 Make functions not declared in any header file static.
29608 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29610 commit 7e5b9b471518c5652febc68ba62b432193d6abf4
29611 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
29612 Date: Thu Dec 13 12:56:28 2007 +0100
29614 cfi_flash: Break long lines
29616 This patch tries to keep all lines in the cfi_flash driver below 80
29617 columns. There are a few lines left which don't fit this requirement
29618 because I couldn't find any trivial way to break them (i.e. it would
29619 take some restructuring, which I intend to do in a later patch.)
29621 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
29623 commit 42026c9cb3a76849b41e6e24abfb7b56807a5c1a
29624 Author: Bartlomiej Sieka <tur@semihalf.com>
29625 Date: Tue Dec 11 13:59:57 2007 +0100
29627 CFI: synchronize command offsets with Linux CFI driver
29629 Fixes non-working CFI Flash on the Inka4x0 board.
29631 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
29633 commit 8ff3de61fc5f9b3b21647bce081a3b7f710f0d4d
29634 Author: Kumar Gala <galak@kernel.crashing.org>
29635 Date: Fri Dec 7 12:17:34 2007 -0600
29637 Handle MPC85xx PCIe reset errata (PCI-Ex 38)
29639 On the MPC85xx boards that have PCIe enable the PCIe errata fix.
29640 (MPC8544DS, MPC8548CDS, MPC8568MDS).
29642 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29644 commit 82ac8c97145a4c3bf8b3dbfad00fa96e920f9b9c
29645 Author: Kumar Gala <galak@kernel.crashing.org>
29646 Date: Fri Dec 7 12:04:30 2007 -0600
29648 Update Freescale MPC85xx ADS/CDS/MDS board config
29650 * Enabled CONFIG_CMD_ELF
29652 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29654 commit d435793229ce29a42797c1edc39f5b34f987f91a
29655 Author: Kumar Gala <galak@kernel.crashing.org>
29656 Date: Fri Dec 7 04:59:26 2007 -0600
29658 Handle Asynchronous DDR clock on 85xx
29660 The MPC8572 introduces the concept of an asynchronous DDR clock with
29661 regards to the platform clock.
29663 Introduce get_ddr_freq() to report the DDR freq regardless of sync/async
29666 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29668 commit 22abb2d2eaf7b795a6923c6273ec9cb53fda9a10
29669 Author: Kumar Gala <galak@kernel.crashing.org>
29670 Date: Thu Nov 29 10:34:28 2007 -0600
29672 Update Freescale MPC85xx ADS/CDS/MDS board config
29674 * Removed some misc environment setup
29675 * Enabled CONFIG_CMDLINE_EDITING
29677 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29679 commit 415a613babb84d5e5d5b42e8e553868c71fc3a64
29680 Author: Kumar Gala <galak@kernel.crashing.org>
29681 Date: Thu Nov 29 10:47:44 2007 -0600
29683 Move the MPC8541/MPC8555/MPC8548 CDS board under board/freescale.
29685 Minor path corrections needed to ensure buildability.
29687 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29689 commit c2d943ffbfd3359b3b45d177b437379d2cb86fbf
29690 Author: Kumar Gala <galak@kernel.crashing.org>
29691 Date: Thu Nov 29 10:16:18 2007 -0600
29693 Move the MPC8540 ADS board under board/freescale.
29695 Minor path corrections needed to ensure buildability.
29697 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29699 commit 870ceac5b3a3486c109396e005af81ae762b5710
29700 Author: Kumar Gala <galak@kernel.crashing.org>
29701 Date: Thu Nov 29 10:14:50 2007 -0600
29703 Move the MPC8560 ADS board under board/freescale.
29705 Minor path corrections needed to ensure buildability.
29707 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29709 commit acbca876fb3fec25cd9c55b0efc81ff618ff5262
29710 Author: Kumar Gala <galak@kernel.crashing.org>
29711 Date: Thu Nov 29 10:13:47 2007 -0600
29713 Move the MPC8568 MDS board under board/freescale.
29715 Minor path corrections needed to ensure buildability.
29717 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29719 commit a853d56c59b33415304531443633808736acfc6e
29720 Author: Kumar Gala <galak@kernel.crashing.org>
29721 Date: Thu Nov 29 02:18:59 2007 -0600
29723 Use standard LAWAR_TRGT_IF_* defines for LAW setup on 85xx
29725 We already had defines for LAWAR_TRGT_IF_* that we should use
29726 rather than creating new ones. Also, added some missing defines for
29729 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29731 commit 04db400892da37b76a585e332a0c137954ad2015
29732 Author: Kumar Gala <galak@kernel.crashing.org>
29733 Date: Thu Nov 29 02:10:09 2007 -0600
29735 Stop using immap_t on 85xx
29737 In the future the offsets to various blocks may not be in same location.
29738 Move to using CFG_MPC85xx_*_ADDR as the base of the registers
29739 instead of getting it via &immap.
29741 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29743 commit 2714223f8e04ab3e4133ff65872eef366d90bfea
29744 Author: Kumar Gala <galak@kernel.crashing.org>
29745 Date: Thu Nov 29 01:23:09 2007 -0600
29747 Remove CONFIG_OF_FLAT_TREE related code from mpc85xx since we now use libfdt
29749 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29751 commit c480861bf000156e6a3e932c258db59ff2212dd3
29752 Author: Kumar Gala <galak@kernel.crashing.org>
29753 Date: Thu Nov 29 01:06:19 2007 -0600
29755 Update MPC8568 MDS to use libfdt
29757 Updated the MPC8568 MDS config to use libfdt and assume use of aliases for
29758 ethernet, pci, and serial for the various fixups that are done.
29760 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29762 commit 1563f56e0c68f6920f956382d6d13bee3f01c0f7
29763 Author: Haiying Wang <Haiying.Wang@freescale.com>
29764 Date: Wed Nov 14 15:52:06 2007 -0500
29766 Add PCI Express support on MPC8568MDS
29768 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
29769 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29771 commit b90d25497625b90ffa3f2911a0895ca237556ff5
29772 Author: Kumar Gala <galak@kernel.crashing.org>
29773 Date: Thu Nov 29 00:11:44 2007 -0600
29775 Update MPC85xx CDS to use libfdt
29777 Updated the MPC85xx CDS config to use libfdt and assume use of aliases for
29778 ethernet, pci, and serial for the various fixups that are done.
29780 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29782 commit 0fd5ec66b10521a057ad73e69ab5f0f9eafba255
29783 Author: Kumar Gala <galak@kernel.crashing.org>
29784 Date: Wed Nov 28 22:54:27 2007 -0600
29786 Update MPC8540 ADS to use libfdt
29788 Updated the MPC8540 ADS config to use libfdt and assume use of aliases for
29789 ethernet, pci, and serial for the various fixups that are done.
29791 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29793 commit 5ce715802f6c50dc78b3405b92f184b1e3710519
29794 Author: Kumar Gala <galak@kernel.crashing.org>
29795 Date: Wed Nov 28 22:40:31 2007 -0600
29797 Update MPC8560 ADS to use libfdt
29799 Updated the MPC8560 ADS config to use libfdt and assume use of aliases for
29800 ethernet, pci, and serial for the various fixups that are done.
29802 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29804 commit aafeefbdb8b029f5ca2a195598d0a501a606eea9
29805 Author: Kumar Gala <galak@kernel.crashing.org>
29806 Date: Wed Nov 28 00:36:33 2007 -0600
29808 Stop using immap_t for cpm offset on 85xx
29810 In the future the offsets to various blocks may not be in same location.
29811 Move to using CFG_MPC85xx_CPM_ADDR as the base of the CPM registers
29812 instead of getting it via &immap->im_cpm.
29814 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29816 commit f59b55a5b8fcadaa99781ba48e7a38e956afa527
29817 Author: Kumar Gala <galak@kernel.crashing.org>
29818 Date: Tue Nov 27 23:25:02 2007 -0600
29820 Stop using immap_t for guts offset on 85xx
29822 In the future the offsets to various blocks may not be in same location.
29823 Move to using CFG_MPC85xx_GUTS_ADDR as the base of the guts registers
29824 instead of getting it via &immap->im_gur.
29826 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29828 commit 50c03c8cf494d91cdec39670d95337c743e16ec9
29829 Author: Kumar Gala <galak@kernel.crashing.org>
29830 Date: Tue Nov 27 22:42:34 2007 -0600
29832 Update MPC8544 DS config
29834 * Removed HAS_ETH2/HAS_ETH3 - MPC8544 only has TSEC1/2
29835 * Removed some misc environment setup
29836 * Moved to using fdtfile & fdtaddr as fdt env var names
29837 * Enabled CONFIG_CMDLINE_EDITING
29839 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29841 commit addce57e2e4c49e77ffb2020a84690713bb18b47
29842 Author: Kumar Gala <galak@kernel.crashing.org>
29843 Date: Mon Nov 26 17:12:24 2007 -0600
29845 Update MPC8544DS to use libfdt
29847 Updated the MPC8544DS config to use libfdt and assume use of aliases for
29848 ethernet, pci, and serial for the various fixups that are done.
29850 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29852 commit f852ce72f100cabd1f11c21c085a0ad8eca9fb65
29853 Author: Kumar Gala <galak@kernel.crashing.org>
29854 Date: Thu Nov 29 00:15:30 2007 -0600
29856 Add libfdt based ft_cpu_setup for mpc85xx
29858 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29860 commit 3b9abdc448a1c2c6a4c2aa292724b4d1a05166a9
29861 Author: Stefan Roese <sr@denx.de>
29862 Date: Tue Dec 11 13:38:19 2007 +0100
29864 ppc4xx: Correct GPIO offset in gpio_config()
29866 Thanks to Gary Jennejohn for pointing this out.
29868 Signed-off-by: Stefan Roese <sr@denx.de>
29870 commit 8809a2713b1ceaf3da55d9d785470294f15de06a
29871 Author: Stefan Roese <sr@denx.de>
29872 Date: Tue Dec 11 11:46:01 2007 +0100
29874 rtc: Fix merging problem
29876 Signed-off-by: Stefan Roese <sr@denx.de>
29878 commit 7cfc12a7dcfdb350e2ab76db4dafcc30f7e77c2b
29879 Author: Stefan Roese <sr@denx.de>
29880 Date: Sat Dec 8 14:47:34 2007 +0100
29882 ppc4xx: 405EX: Correctly enable USB pins
29884 This patch selects the USB data pins in the 405EX GPIO and MFC (multi
29885 function control) registers. This is done for the AMCC Kilauea and
29886 Makalu eval boards.
29888 Signed-off-by: Stefan Roese <sr@denx.de>
29890 commit 9692c2734a47f23b44a0f68042a3e2ca8d1bfb39
29891 Author: Stefan Roese <sr@denx.de>
29892 Date: Sat Dec 8 08:25:09 2007 +0100
29894 CFI: Coding style cleanup
29896 Signed-off-by: Stefan Roese <sr@denx.de>
29898 commit 81b20ccc2d795ae9a1199db5a50ad9c28d1e4d22
29899 Author: Michael Schwingen <michael@schwingen.org>
29900 Date: Fri Dec 7 23:35:02 2007 +0100
29902 CFI: support JEDEC flash roms in CFI-flash framework
29904 The following patch adds support for non-CFI flash ROMS, by hooking into the
29905 CFI flash code and using most of its code, as recently discussed here in the
29906 thread "Mixing CFI and non-CFI flashs".
29908 Signed-off-by: Michael Schwingen <michael@schwingen.org>
29909 Signed-off-by: Stefan Roese <sr@denx.de>
29911 commit c01b17dd856fa120b2970f50d9598546a4927ec3
29912 Author: Gerald Van Baren <vanbaren@cideas.com>
29913 Date: Wed Nov 28 21:24:50 2007 -0500
29915 Conditionally compile fdt_fixup_ethernet()
29917 Fix compiler warnings: On boards that don't have ethernets defined,
29918 don't compile fdt_fixup_ethernet().
29920 commit 246d4ae6bc282bc1841224e1c5fc49dc925e0bf7
29921 Author: Kumar Gala <galak@kernel.crashing.org>
29922 Date: Tue Nov 27 21:59:46 2007 -0600
29924 Convert boards that set memory node to use fdt_fixup_memory()
29926 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29928 commit 151c8b09b35eebe8fd9139cb6c1d91c27b22f058
29929 Author: Kumar Gala <galak@kernel.crashing.org>
29930 Date: Mon Nov 26 17:06:15 2007 -0600
29932 Added fdt_fixup_stdout that uses aliases to set linux,stdout-path
29934 We use a combination of the serialN alias and CONFIG_CONS_INDEX to
29935 determine which serial alias we should set linux,stdout-path to.
29937 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29939 commit 3c9272813fad84c691d0e4989bb18a3ffebdebfc
29940 Author: Kumar Gala <galak@kernel.crashing.org>
29941 Date: Mon Nov 26 14:57:45 2007 -0600
29943 Add common memory fixup function
29945 Add the function fdt_fixup_memory() to fixup the /memory node of the fdt
29947 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29949 commit 9c9109e7fcf7ac2ca19c95b8ac54b8d1c773b157
29950 Author: Kumar Gala <galak@kernel.crashing.org>
29951 Date: Mon Nov 26 11:19:12 2007 -0600
29953 Conditionally compile fdt_support.c
29955 Modify common/Makefile to conditionally compile fdt_support.c based
29956 on CONFIG_OF_LIBFDT.
29958 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29960 commit d88e7ba0980773479e1a64badb293116071b7ef0
29961 Author: Kumar Gala <galak@kernel.crashing.org>
29962 Date: Mon Nov 26 10:41:40 2007 -0600
29964 Fix build breakage due to libfdt import
29966 The IDS8247 got lost in the update and need an API update
29967 do to rename of functions in libfdt.
29969 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
29971 commit 28f384b171bbf1fb2dafb1046e6d259a6b2f8714
29972 Author: Gerald Van Baren <vanbaren@cideas.com>
29973 Date: Fri Nov 23 19:43:20 2007 -0500
29975 Add spaces around the = in the fdt print format.
29977 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
29979 commit 29592ecba3b932b9b152bcec6c0c0806412db4a3
29980 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29981 Date: Fri Dec 7 01:25:38 2007 +0900
29983 sh: Moved driver of the SuperH dependence
29985 The composition of the directory in the drivers/ changed.
29986 I moved SuperH serial driver and marubun PCMCIA driver.
29988 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
29990 commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2
29991 Author: Wolfgang Denk <wd@denx.de>
29992 Date: Thu Dec 6 10:21:19 2007 +0100
29996 Signed-off-by: Wolfgang Denk <wd@denx.de>
29998 commit cf5933ba1e97a1cd8f5f24070e820f21d976eaeb
29999 Author: Wolfgang Denk <wd@denx.de>
30000 Date: Thu Dec 6 10:21:03 2007 +0100
30002 ADS5121 Board: fix compile problem.
30004 Signed-off-by: Wolfgang Denk <wd@denx.de>
30006 commit a27044b14a9e93678a82d7b35f202b93e7687abc
30007 Author: Stefan Roese <sr@denx.de>
30008 Date: Thu Dec 6 05:58:43 2007 +0100
30010 ppc4xx: Enable hardware-fix for PCI/DMA errata on AMCC 440SP/SPe boards
30012 This patch enables the hardware-fix for the PCI/DMA errata's 19+22 by
30013 setting the FIXD bit in the SDR0_MFR register. Here a description of the
30016 Problem Description
30017 ------------------------------
30018 If a DMA is performed between memory and PCI with the DMA 1 Controller
30019 using prefetch, and as a result uses a special purpose buffer selected by
30020 the PCIXn Bridge Options 1 Register (PCIXn_BRDGOPT1[RBP7] - bits 31-29),
30021 the first part of the transfer sequence is performed twice. The
30022 PPC440SPe PCI Controller requests more data than was needed such that in
30023 the case of enforce memory protection, a host CPU exception can occur.
30024 No data is corrupted, because data transfer is stopped in the PCI
30025 Controller. Prefetch enable is specified by setting DMA Configuration
30026 Register (I2O0_DMAx_CFG[DXEPD] - bit 31) to 0.
30028 Behavior that may be observed in a running system
30029 ---------------------------------------------------------------------------
30031 1. DMA performance is decreased because of the double access on the PCI bus
30033 2. If an illegal access to some address on the PCI bus is detected at the
30034 system level, a machine check or similar system error may occur.
30036 Workarounds Available
30037 ----------------------------------
30039 1. Do not program prefetch. Note that a prefetch command cannot be programmed
30040 without selecting a special purpose buffer.
30041 2. To avoid crossing a physical boundary of the PCI slave device, add 512
30042 bytes of address to the PCI address range.
30044 This patch was originally provided by Pravin M. Bathija <pbathija@amcc.com>
30045 from AMCC and slighly changed.
30047 Signed-off-by: Pravin M. Bathija <pbathija@amcc.com>
30048 Signed-off-by: Stefan Roese <sr@denx.de>
30050 commit a90921f71d225bf9e0f0fc7b8beadeb8001bf78a
30051 Author: Stefan Roese <sr@denx.de>
30052 Date: Tue Dec 4 16:29:48 2007 +0100
30054 ppc4xx: Yosemite/Yellowstone: Add DTT AD7414 support
30056 Signed-off-by: Stefan Roese <sr@denx.de>
30058 commit 8d4f040a3c15036a6ea25a9c39e7d89fefa8440d
30059 Author: Wolfgang Denk <wd@denx.de>
30060 Date: Mon Dec 3 00:15:28 2007 +0100
30062 Prepare for 1.3.1-rc1
30064 Signed-off-by: Wolfgang Denk <wd@denx.de>
30066 commit e15e33433e7c05111968dc9b434a52fd42cbd221
30067 Author: Stefan Roese <sr@denx.de>
30068 Date: Fri Nov 30 07:15:41 2007 +0100
30070 ppc4xx: Kilauea: Add PCIe reset assertion upon power-up
30072 This manual PCIe reset triggering solves the problem seen with the
30073 Intel EPRO/1000 card, which was not detected (link not established)
30074 upon power-up reset.
30076 Signed-off-by: Stefan Roese <sr@denx.de>
30078 commit 260eea5676ca46903a335686cc020b29c4ca46fe
30079 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30080 Date: Thu Nov 29 01:21:54 2007 +0900
30082 sh: Add SuperH boards maintainer to MAINTAINERS file
30084 Add MS7750SE and MS7722SE's board maintainer to MAINTAINERS file.
30086 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30088 commit aa9c4f1d22701a92347c1c81f34d12c8ad3a3747
30089 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30090 Date: Thu Nov 29 00:13:04 2007 +0900
30092 sh: Add ms7750se support in MAKEALL
30094 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30096 commit c7144373427a178332bf9754131c8c34c52c200a
30097 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30098 Date: Tue Nov 27 09:44:53 2007 +0100
30100 sh: Add sh3 and sh4 support in MAKEALL
30102 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30103 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30105 commit 130080874a3d28450098481a262c5f7c855e908d
30106 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30107 Date: Sun Nov 25 02:51:17 2007 +0900
30109 sh: Add document for SuperH.
30111 This document is a summary of information concerning SuperH of U-Boot.
30113 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30115 commit 33ecdc2f9d64926e1a6067b28f3a0aefc3b6d23d
30116 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30117 Date: Sun Nov 25 02:39:31 2007 +0900
30119 sh: Add marubun's pcmcia driver
30121 Marubun pcmcia is a chip for PCMCIA used with SuperH.
30122 Of course, this can be used even by other architectures.
30123 When use this driver, came to be able to use CompactFlash
30126 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30128 commit febd86b969b975289ed948f1ac0eb9722da41ced
30129 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30130 Date: Sun Nov 25 02:32:13 2007 +0900
30132 sh: Update SuperH SCIF driver
30134 - Changed volatile unsigned to vu_.
30135 - Changed Makefile for kconfig.
30137 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
30139 commit 8be760903645af09871be50ad0a6f9ebb62b311d
30140 Author: Stefan Roese <sr@denx.de>
30141 Date: Tue Nov 27 11:57:35 2007 +0100
30143 ppc4xx: Kilauea & Makalu: Fix ext IRQ pin multiplexing
30145 After an error in the AMCC 405EX users manual now correctly configure
30146 IRQ2 (Kilauea)/IRQ0 (Makalu) as alternate 2 signal for external IRQ
30149 Signed-off-by: Stefan Roese <sr@denx.de>
30151 commit a5f601fd1b1278deae5aa9fc27a232b0d1c1c788
30152 Author: Wolfgang Denk <wd@denx.de>
30153 Date: Mon Nov 26 19:18:21 2007 +0100
30155 Cleanup coding style; update CHANGELOG
30157 Signed-off-by: Wolfgang Denk <wd@denx.de>
30159 commit 3deca9d44767efd1b83f4b701f0dbf21a7595f7b
30160 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30161 Date: Sun Nov 25 22:39:25 2007 +0100
30163 MAKEALL: add missing 512x boards in ppc
30165 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30167 commit a340c325e668ca7386c2276387681720be9c3757
30168 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30169 Date: Sun Nov 25 18:45:47 2007 +0100
30171 Makefile : fix tags ctags etags with new drivers organization
30173 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30175 commit 63362cfc6baa97ae0e37ba2c6ece530fcac9f79e
30176 Author: Stefan Roese <sr@denx.de>
30177 Date: Mon Nov 26 15:06:14 2007 +0100
30179 ppc4xx: Makalu: Change EBC setup for CS0 to enable 400MHz usage
30181 As suggested by Senao, use a different EBC_PB0AP setup for 400MHz
30184 Signed-off-by: Stefan Roese <sr@denx.de>
30186 commit ca1ce226287270bb01e25b8e3674c701f12edf19
30187 Author: Stefan Roese <sr@denx.de>
30188 Date: Mon Nov 26 15:01:45 2007 +0100
30190 ppc4xx: Kilauea: Configure pin mux to use ext IRQ2 as interrupt
30192 Signed-off-by: Stefan Roese <sr@denx.de>
30194 commit 87ddedd6ad804427ce125ceaa076d7a4f74e9d5d
30195 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30196 Date: Sun Nov 25 18:45:47 2007 +0100
30198 Makefile : fix tags ctags etags with new drivers organization
30200 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30202 commit 59829cc189378c142c13d2aa8d9a897d8bef3961
30203 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30204 Date: Sat Nov 24 21:26:56 2007 +0100
30206 drivers/mtd : move mtd drivers to drivers/mtd
30208 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30210 commit 318c0b90431f2648552e5ade78833f42652ce859
30211 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30212 Date: Sat Nov 24 21:17:55 2007 +0100
30214 drivers/misc : move misc drivers to drivers/misc
30216 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30218 commit 33daf5b7858807cb4ce4158c2c56524671c14c08
30219 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30220 Date: Sat Nov 24 21:13:59 2007 +0100
30222 drivers/block : move block drivers to drivers/block
30224 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30226 commit 0c698dcaa70275eb8814f665b545547cee013892
30227 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30228 Date: Sat Nov 24 20:59:50 2007 +0100
30230 drivers/rtc : move rtc drivers to drivers/rtc
30232 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30234 commit f868cc5a50757d94f36c312395481cb0f187d9e6
30235 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30236 Date: Sat Nov 24 20:14:44 2007 +0100
30238 drivers/hwmon : move hardware monitor drviers to drivers/hwmon
30240 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30242 commit 16b195c82a18cbfd164800f17a1ef9db2e48331a
30243 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30244 Date: Sat Nov 24 19:46:45 2007 +0100
30246 drivers/input : move input drivers to drivers/input
30248 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30250 commit e4558666293364fc3af1c1d9381ca933fa0f1275
30251 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30252 Date: Sat Nov 24 19:40:11 2007 +0100
30254 drivers/usb : move usb drivers to drivers/usb
30256 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30258 commit 1378df792a7ff3abd1bf54a63f5475784f5b083c
30259 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30260 Date: Sat Nov 24 19:33:38 2007 +0100
30262 drivers/serial : move serial drivers to drivers/serial
30264 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30266 commit 2439e4bfa111babf4bc07ba20efbf3e36036813e
30267 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30268 Date: Wed Nov 21 21:19:24 2007 +0100
30270 drivers/net : move net drivers to drivers/net
30272 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30274 commit 352d259130b349fe9593b8dada641bd78a9659e5
30275 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30276 Date: Tue Nov 20 20:41:48 2007 +0100
30278 drivers/video : move video drivers to drivers/video
30280 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30282 commit 73646217186aa17afc8e305c5f06f06dd335eaad
30283 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30284 Date: Tue Nov 20 20:33:09 2007 +0100
30286 drivers/pcmcia : move pcmcia drivers to drivers/pcmcia
30288 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30290 commit 93a686ee9c5ddc6fa368c32cfbfde6f6724599fc
30291 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30292 Date: Tue Nov 20 20:28:09 2007 +0100
30294 drivers/pci : move pci drivers to drivers/pci
30296 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30298 commit 9162352817579840d7802da6d85872b3ca003c97
30299 Author: Gerald Van Baren <vanbaren@cideas.com>
30300 Date: Thu Nov 22 17:23:23 2007 -0500
30302 Fix fdt printing for updated libfdt
30304 Also improve printing (adopt dtc v1 "c style" hex format), whitespace cleanup.
30306 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
30308 commit 9eb77cea1fa12d5969eb26a1d1d81da381bd6b1c
30309 Author: Kumar Gala <galak@kernel.crashing.org>
30310 Date: Wed Nov 21 13:30:15 2007 -0600
30312 Add additional fdt fixup helper functions
30314 Added the following fdt fixup helpers:
30315 * do_fixup_by_prop{_u32} - Find matching nodes by property name/value
30316 * do_fixup_by_compat{_u32} - Find matching nodes by compat
30318 The _u32 variants work the same only the property they are setting
30319 is know to be a 32-bit integer instead of a byte buffer.
30321 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30323 commit ab544633abdd14f4dd5d92e500b73eb59ef57e67
30324 Author: Kumar Gala <galak@kernel.crashing.org>
30325 Date: Wed Nov 21 11:11:03 2007 -0600
30327 Add fdt_fixup_ethernet helper to set mac addresses
30329 Added a fixup helper that uses aliases to set mac addresses
30330 in the device tree based on the bd_t
30332 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30334 commit dbaf07ce620aab249e3502b20a986234a6af1d3a
30335 Author: Kumar Gala <galak@kernel.crashing.org>
30336 Date: Wed Nov 21 14:07:46 2007 -0600
30338 Fix warnings from import of libfdt
30340 cmd_fdt.c: In function fdt_print:
30341 cmd_fdt.c:586: warning: assignment discards qualifiers from pointer target type
30342 cmd_fdt.c:613: warning: assignment discards qualifiers from pointer target type
30343 cmd_fdt.c:635: warning: assignment discards qualifiers from pointer target type
30344 cmd_fdt.c:636: warning: assignment discards qualifiers from pointer target type
30346 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30348 commit 8d04f02f6224e6983f4812ea4da704950ec8539c
30349 Author: Kumar Gala <galak@kernel.crashing.org>
30350 Date: Wed Oct 24 11:04:22 2007 -0500
30352 Update libfdt from device tree compiler (dtc)
30354 Update libfdt to commit 8eaf5e358366017aa2e846c5038d1aa19958314e from
30355 the device tree compiler (dtc) project.
30357 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30359 commit e93becf80d732b64aef81b23e8b6ece02c40533d
30360 Author: Kumar Gala <galak@kernel.crashing.org>
30361 Date: Sat Nov 3 19:46:28 2007 -0500
30363 Move do_fixup* for libfdt into common code
30365 Moved the generic fixup handling code out of cpu/mpc5xxx and cpu/mpc8260
30366 into common/fdt_support.c and renamed:
30368 do_fixup() -> do_fixup_by_path()
30369 do_fixup_u32() -> do_fixup_by_path_u32()
30371 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30373 commit f738b4a75998f42a7408defadc9baac7a31c92db
30374 Author: Kumar Gala <galak@kernel.crashing.org>
30375 Date: Thu Oct 25 16:15:07 2007 -0500
30377 Make no options to fdt print default to '/'
30379 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30381 commit a3c2933e02503fe36ade2c1b65af46f2b7a168e7
30382 Author: Kumar Gala <galak@kernel.crashing.org>
30383 Date: Wed Oct 24 10:21:57 2007 -0500
30385 Removed some nonused fdt functions and moved fdt_find_and_setprop out of libfdt
30388 fdt_node_is_compatible
30389 fdt_find_node_by_type
30390 fdt_find_compatible_node
30392 To ease merge of newer libfdt as we aren't using them anywhere at this time.
30394 Also moved fdt_find_and_setprop out of libfdt into fdt_support.c for the same
30397 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30399 commit 98e2867cc85409b919f862e6c16026461ec955df
30400 Author: Grant Likely <grant.likely@secretlab.ca>
30401 Date: Wed Nov 21 09:19:37 2007 -0700
30403 [BUILD] Remove libraries when updating autoconf.mk
30405 Fix library problems caused by conditional compilation. Using
30406 autoconf.mk to decide which files to compile has caused a problem when
30407 changing configuration from one board to another without clearing out
30408 the library (*.a) files.
30410 It used to be that the linker was always passed the same list of .o
30411 files when building the .a files. However, that is not longer true
30412 with conditional compilation. Now, a different board config will have
30413 a different file list passed to the linker. The problem occurs when
30414 a library has already been built and the board config is changed.
30416 Since the linker will update instead of replace a preexisting library,
30417 then if the file list changes to remove some object files the old
30418 objects will still exist in the library.
30420 The solution is to remove all old library files when autoconf.mk is
30423 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30425 commit ed1353d74b9ce8a7fcd660570b848a184d614b5f
30426 Author: Kumar Gala <galak@kernel.crashing.org>
30427 Date: Wed Nov 21 08:49:50 2007 -0600
30429 [BUILD] conditionally compile libfdt/*.c in libfdt/Makefile
30431 Modify libfdt/Makefile to conditionally compile the *.c files based
30432 on the board config.
30434 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
30436 commit 4a43719a7738712811d822ca8125427b27a55cdc
30437 Author: Grant Likely <grant.likely@secretlab.ca>
30438 Date: Mon Sep 24 09:05:31 2007 -0600
30440 [BUILD] conditionally compile common/cmd_*.c in common/Makefile
30442 Modify common/Makefile to conditionally compile the cmd_*.c files based
30443 on the board config.
30445 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30447 commit 2f155f6c0a1f5e9a306a3f1f4fbe067db7ced3b1
30448 Author: Grant Likely <grant.likely@secretlab.ca>
30449 Date: Mon Sep 24 09:05:31 2007 -0600
30451 [BUILD] Generate include/autoconf.mk from board config files
30453 Use cpp and sed to postprocess config.h and import the defined values
30454 into include/autoconf.mk. autoconf.mk is then included by config.mk to
30455 give 'make' access to the board configuration.
30457 Doing this enables conditional compilation at the Makefile level instead
30458 of by wrapping every .c file with #ifdef/#endif wrappers.
30460 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30462 commit 68b88999da87ab88e71e1306192905be3450198e
30463 Author: Jon Loeliger <jdl@freescale.com>
30464 Date: Tue Nov 20 15:02:26 2007 -0600
30466 8610HPCD: Enable the 8610 Display Interface Unit
30468 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30470 commit 74f89faa9d1e77ed947e628d3effaa513fe05d05
30471 Author: Jon Loeliger <jdl@freescale.com>
30472 Date: Tue Nov 20 15:00:53 2007 -0600
30474 Move 8610 DIU interface structure definitions to header file.
30476 These two structures are still needed during the
30477 initialization and setup of the DIU hardware.
30478 So move them to the fsl_diu_fb.h file for now.
30481 Noticed-by: York Sun <yorksun@freescale.com>
30482 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30484 commit 080c646dbf474a109c3f85718fb01ce042a38c45
30485 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30486 Date: Tue Nov 20 20:14:18 2007 +0100
30488 drivers/i2c : move i2c drivers to drivers/i2c
30490 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30492 commit 9a337ddc154a10a26f117fd147b009abcdeba75a
30493 Author: Wolfgang Denk <wd@denx.de>
30494 Date: Mon Nov 19 22:20:24 2007 +0100
30496 Prepare for 1.3.0 release.
30498 Signed-off-by: Wolfgang Denk <wd@denx.de>
30500 commit f30ad49b16bf998b03c1a5228b6c86369d61c258
30501 Author: Haiying Wang <Haiying.Wang@freescale.com>
30502 Date: Mon Nov 19 10:02:13 2007 -0500
30504 Move CONFIG_QE out of CONFIG_PCI wrap for MPC8568MDS
30506 CONFIG_QE shouldn't be in the wrap of CONFIG_PCI, fix it.
30508 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
30510 commit f8c320609366176b31104d9bf5e295232e1c7f1d
30511 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30512 Date: Mon Nov 19 11:14:16 2007 +0900
30514 [MIPS] board/gth2/lowlevel_init.S: Fix a build warning
30516 lowlevel_init.S: Assembler messages:
30517 lowlevel_init.S:413: Warning: Pretending global symbol used as branch target is local.
30519 Looking at codes, the `memtest' and `clearmem' are intentional mixed
30520 use of `global symbols' and `label' for debugging purpose. To make it
30521 build, just disable global-symbols-use for now. As a result `memtest'
30522 still remains as unused, but leave it be...
30524 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
30526 commit e8da58f2bc092891e8cc92b927ed5c4bd0cb0cab
30527 Author: Wolfgang Denk <wd@denx.de>
30528 Date: Mon Nov 19 12:59:14 2007 +0100
30530 Fix build problems with mp2usb board
30532 Signed-off-by: Wolfgang Denk <wd@denx.de>
30534 commit 6bf4c686afca1e86e1c384d59218f914605713bf
30535 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30536 Date: Sun Nov 18 18:36:11 2007 +0100
30538 s3c24x0: Fix usb_ohci.c missing in Makefile
30539 and usb_ohci.c warning differ in signedness
30541 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30543 commit 6073f61e078da5ddb521b56256bcc36508589883
30544 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30545 Date: Sun Nov 18 12:55:02 2007 +0100
30547 pb1x00 board: Fix u16 status declaration when PCMCIA is defined
30549 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30551 commit 8412d814ce8bf5570a2b747f1e7fd321097fe987
30552 Author: Wolfgang Denk <wd@denx.de>
30553 Date: Sun Nov 18 17:11:09 2007 +0100
30555 Fix compiler warnings for ARM systems.
30557 Signed-off-by: Wolfgang Denk <wd@denx.de>
30559 commit 409ecdc0bb47dd28b0af6c25ffd658d22cc36b37
30560 Author: Wolfgang Denk <wd@denx.de>
30561 Date: Sun Nov 18 16:36:27 2007 +0100
30563 Fix compiler warnings for PPC systems. Update CHANGELOG.
30565 Signed-off-by: Wolfgang Denk <wd@denx.de>
30567 commit 653811a3c2b35856bf12e196dcc8c4694e28e420
30568 Author: Stefan Roese <sr@denx.de>
30569 Date: Sun Nov 18 14:44:44 2007 +0100
30571 ppc4xx: Correct 405EX PCIe UTL register mapping
30573 Map 4k mem space for UTL registers for each port.
30575 Signed-off-by: Stefan Roese <sr@denx.de>
30577 commit 079c2c4fa71c0d1ebef394508df9088df8a308d3
30578 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30579 Date: Sat Nov 17 11:31:10 2007 +0100
30581 Fix warning differ in signedness in net/net.c and net/nfs.c
30583 commit 7e14fc65368cbd2861b1207453da55a4fc7b3f81
30584 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30585 Date: Sat Nov 17 20:42:45 2007 +0900
30587 gth2.c: Fix a warning on gth2 build.
30589 gth2.c: In function 'misc_init_r':
30590 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
30592 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30594 commit 2309c130aa4c84b91bd874a41269c923eb61b555
30595 Author: Stefan Roese <sr@denx.de>
30596 Date: Sat Nov 17 07:58:25 2007 +0100
30598 Fix warning differ in signedness in common/cmd_scsi.c
30600 Signed-off-by: Stefan Roese <sr@denx.de>
30602 commit 9ea61b57968554eaf0f474ec7e088b17d367f474
30603 Author: Stefan Roese <sr@denx.de>
30604 Date: Sat Nov 17 14:52:29 2007 +0100
30606 ppc4xx: Update AMCC Kilauea config file
30608 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
30610 Signed-off-by: Stefan Roese <sr@denx.de>
30612 commit 7e1d884b7cb602007329c517ec1c453e3a6a5d9c
30613 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30614 Date: Sat Nov 17 20:05:26 2007 +0900
30616 [MIPS] cpu/mips/config.mk: Fix GNU assembler minor version picker
30618 Current trick to pick up GNU assembler minor version does not work with the
30619 latest binutils (2007-03-01 or later) due to ${PKGVERSION} now default to
30622 $ sde-as --version |grep "GNU assembler"
30623 GNU assembler 2.15.94 mipssde-6.02.02-20050602
30624 $ sde-as --version |grep "GNU assembler" |awk '{print $3}'
30626 $ sde-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
30630 $ mips-linux-as --version |grep "GNU assembler"
30631 GNU assembler (GNU Binutils) 2.18
30632 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}'
30634 $ mips-linux-as --version |grep "GNU assembler" |awk '{print $3}' |awk -F. '{print $2}'
30638 As a result of above, you'll see many noises with such binutils:
30641 /bin/sh: line 0: [: : integer expression expected
30642 /bin/sh: line 0: [: : integer expression expected
30643 make[1]: Entering directory `/home/skuribay/devel/u-boot.git/cpu/mips'
30644 mips-linux-gcc -D__ASSEMBLY__ -g -Os -D__KERNEL__ -DTEXT_BASE=0xB0000000 -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -c -o incaip_wdt.o incaip_wdt.S
30645 /bin/sh: line 0: [: : integer expression expected
30646 mips-linux-gcc -D__ASSEMBLY__ -g -Os -D__KERNEL__ -DTEXT_BASE=0xB0000000 -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -c -o cache.o cache.S
30647 /bin/sh: line 0: [: : integer expression expected
30648 mips-linux-gcc -g -Os -D__KERNEL__ -DTEXT_BASE=0xB0000000 -I/home/skuribay/devel/u-boot.git/include -fno-builtin -ffreestanding -nostdinc -isystem /home/skuribay/devel/buildroot/build_mips/staging_dir/usr/bin/../lib/gcc/mips-linux-uclibc/4.2.1/include -pipe -DCONFIG_MIPS -D__MIPS__ -G 0 -mabicalls -fpic -pipe -msoft-float -march=4kc -mtune=4kc -EB -Wall -Wstrict-prototypes -c -o asc_serial.o asc_serial.c
30649 /bin/sh: line 0: [: : integer expression expected
30651 This patch simplifies the trick and makes it work with both versions of gas.
30652 I also replace an expensive `awk (or gawk)' with `cut'.
30654 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30656 commit 16664f72850846e645616da1c0fa5afcd6d15f15
30657 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30658 Date: Sat Nov 17 20:05:26 2007 +0900
30660 [MIPS] Remove useless instructions for initializing $gp.
30662 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30664 commit 03c031d5660ea946c39af6e2e16267da857c609f
30665 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30666 Date: Sat Oct 27 15:27:06 2007 +0900
30668 [MIPS] MIPS 4K core: Coding style cleanups
30670 No logical changes.
30672 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30674 commit f5e429d3860bba4c6ae8bead8f78349fa24491b2
30675 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30676 Date: Sat Nov 17 20:05:20 2007 +0900
30678 [MIPS] gth2.c: Fix a warning on gth2 build.
30680 gth2.c: In function 'misc_init_r':
30681 gth2.c:434: warning: pointer targets in passing argument 2 of 'setenv' differ in signedness
30683 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30685 commit 4fbd0741b2b6441da10be93e10267122581b7079
30686 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30687 Date: Sat Oct 27 15:22:33 2007 +0900
30689 [MIPS] au1x00_eth.c: Fixed a warning on pb1000 build.
30691 au1x00_eth.c: In function 'au1x00_miiphy_write':
30692 au1x00_eth.c:139: warning: 'return' with no value, in function returning non-void
30694 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30696 commit f01320459736f156707425cf8112f98606301aa4
30697 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30698 Date: Sat Oct 27 15:00:25 2007 +0900
30700 [MIPS] au1x00_eth.c: Fix au1x00_miiphy_{read,write} build error
30702 au1x00_eth.c: In function 'au1x00_enet_initialize':
30703 au1x00_eth.c:246: error: 'au1x00_miiphy_read' undeclared (first use in this function)
30704 au1x00_eth.c:246: error: (Each undeclared identifier is reported only once
30705 au1x00_eth.c:246: error: for each function it appears in.)
30706 au1x00_eth.c:246: error: 'au1x00_miiphy_write' undeclared (first use in this function)
30707 au1x00_eth.c: In function 'au1x00_miiphy_write':
30708 au1x00_eth.c:298: warning: 'return' with no value, in function returning non-void
30709 make[1]: *** [au1x00_eth.o] Error 1
30711 Fixed by moving these two functions forward.
30713 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30715 commit b09258c5393edd1087c5f39ae68338f16b49f8b3
30716 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30717 Date: Sat Oct 27 15:00:25 2007 +0900
30719 MAKEALL: Added missing pb1000 board
30721 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30723 commit 2e4a6e3667a1e39c0e6e99498686b15d2718b369
30724 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30725 Date: Sat Oct 27 15:00:24 2007 +0900
30727 [MIPS] pb1000: Replace obsolete memsetup.S with lowlevel_init.S
30729 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30731 commit 662e5cb397249c3ea88a4c3255e9ccfc40b98d82
30732 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30733 Date: Sat Oct 27 15:00:24 2007 +0900
30735 [MIPS] u-boot.lds: Cleanup __u_boot_cmd_{start,end}
30737 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30739 commit 5947f6999aafa7c54c1390983d264a8463dfea8e
30740 Author: Wolfgang Denk <wd@denx.de>
30741 Date: Sat Nov 17 02:34:38 2007 +0100
30743 Update CHANGELOIG, prepare for -rc4
30745 Signed-off-by: Wolfgang Denk <wd@denx.de>
30747 commit fd329e6f05bbdfe6bd71b0e09f0c76d3b0a025a5
30748 Author: Luotao Fu <l.fu@pengutronix.de>
30749 Date: Wed Nov 14 18:58:33 2007 +0100
30751 Fix the i2c frequency and default address in rsdproto board
30753 rsdproto board support has wrong I2C frequency and wrong return value
30756 Signed-off-by: Luotao Fu <l.fu@pengutronix.de>
30758 commit 429c180edad038f91c989cb14b478228092e7054
30759 Author: Wolfgang Denk <wd@denx.de>
30760 Date: Sat Nov 17 01:45:38 2007 +0100
30762 powerpc: Backout relocation changes for MPC5121, too.
30764 Apply Grant Likely's backout to MPC5121 code, too.
30766 Pointed out by Rafal Jaworowski <raj@semihalf.com>
30768 Signed-off-by: Wolfgang Denk <wd@denx.de>
30770 commit 1c3dd43338a077165e7e0309cb3994e65d2bdbf8
30771 Author: Grant Likely <grant.likely@secretlab.ca>
30772 Date: Tue Nov 13 22:18:33 2007 -0700
30774 powerpc: Backout relocation changes.
30776 Ugh. I *hate* to back this change out, but these compiler flags don't
30777 work for relocation on all versions of GCC. I've not been able to
30778 reproduce the environment in my setup (and hence, not been able to
30779 find a combination that *does* work), so I've got no choice but to go
30780 back to the old gcc flags and linker script.
30782 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30784 commit 5c15010efad980ad5498cc565fc1ed70df2f52b4
30785 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30786 Date: Tue Nov 13 09:11:05 2007 +0100
30788 Fixed mips_io_port_base build errors.
30790 This patch has been sent on:
30793 Although mips_io_port_base is currently a part of IDE command, it is quite
30794 fundamental for MIPS I/O port access such as in[bwl] and out[bwl]. So move
30795 it to MIPS general part, and introduce `set_io_port_base()' from Linux.
30797 This patch is triggered by multiple definition of `mips_io_port_base' build
30798 error on gth2 (and tb0229 also needs this fix.)
30800 board/gth2/libgth2.a(gth2.o): In function `log_serial_char':
30801 /home/skuribay/devel/u-boot.git/board/gth2/gth2.c:47: multiple definition of `mips_io_port_base'
30802 common/libcommon.a(cmd_ide.o):/home/skuribay/devel/u-boot.git/common/cmd_ide.c:712: first defined here
30803 make: *** [u-boot] Error 1
30805 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
30806 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30808 commit 6ecbb7a3fa9b0940ed33e490d195d4b6830b2422
30809 Author: Wolfgang Denk <wd@denx.de>
30810 Date: Sat Nov 17 01:30:40 2007 +0100
30812 Fix a bug in the slave serial programming mode for the Xilinx
30813 Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
30814 the most significant bit was set, which did not work on any
30815 architecture where "char" defaulted to be an unsigned type.
30817 Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>
30819 Signed-off-by: Wolfgang Denk <wd@denx.de>
30821 commit d08b7233bc252faad8339e7ca0ddfd62fa79903c
30822 Author: Jon Loeliger <jdl@freescale.com>
30823 Date: Thu Nov 1 12:23:29 2007 -0500
30825 86xx: Fix broken variable reference when #def DEBUGing.
30827 Sometimes you can't reference the DDR2 controller variables.
30829 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30831 commit f9d9164d9c6b5a7f0393fd8d7e246b8a0326bc19
30832 Author: Jason Jin <Jason.jin@freescale.com>
30833 Date: Fri Oct 26 18:32:00 2007 +0800
30835 make 8610 board use pixis reset
30837 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30839 commit db74b3c1c9481a6bffbf8cd445e5bcbf6908e836
30840 Author: Jason Jin <Jason.jin@freescale.com>
30841 Date: Mon Oct 29 19:26:21 2007 +0800
30843 Unify pixis_reset altbank across board families
30845 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
30846 into the separate board config files.
30848 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
30849 Signed-off-by: Jon Loeliger <jdl@freescale.com>
30851 commit 64bf555465c7926be13e1046ac0d0f05ac72829c
30852 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30853 Date: Wed Nov 7 08:19:21 2007 +0100
30855 Fix warning: pointer targets in assignment differ in signedness
30857 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30859 commit 7a60ee7c6248a958c5757d3660a1702723a2786d
30860 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30861 Date: Wed Nov 7 08:19:19 2007 +0100
30863 Fix warning differ in signedness in common/cmd_ide.c
30865 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
30867 commit f31d38b9eea9b32f6a1ac848a298cc71ca4c9a03
30868 Author: Stefan Roese <sr@denx.de>
30869 Date: Fri Nov 16 14:16:54 2007 +0100
30871 ppc4xx: Enable 405EX PCIe UTL register configuration
30873 Till now the UTL registers on 405EX were not initialized but left with
30874 their default values. This patch new initializes some of the UTL
30875 registers on 405EX.
30877 Signed-off-by: Stefan Roese <sr@denx.de>
30879 commit ecdcbd4f8c1f8cefd785752f4e7536aae2a4ecf9
30880 Author: Stefan Roese <sr@denx.de>
30881 Date: Fri Nov 16 14:00:59 2007 +0100
30883 ppc4xx: Update AMCC Makalu for board rev 1.1
30885 This patch adds changes needed for Makalu rev 1.1:
30887 - Enable 2nd DDR2 bank resulting in 256MByte of SDRAM
30888 - Enable 2nd ethernet port EMAC1
30889 - Use generic GPIO configuration framework (CFG_4xx_GPIO_TABLE)
30890 - Reset PCIe ports via GPIO upon bootup
30892 Signed-off-by: Stefan Roese <sr@denx.de>
30894 commit 4d4faae65e115e327425cd514c1a35146a85166b
30895 Author: Grant Likely <grant.likely@secretlab.ca>
30896 Date: Mon Sep 24 09:05:31 2007 -0600
30898 Group PCI and PCMCIA drivers in drivers/Makefile
30900 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30902 commit 5798f87dc10a496d79d3177b9f5a76488987fd35
30903 Author: Grant Likely <grant.likely@secretlab.ca>
30904 Date: Mon Sep 24 09:05:31 2007 -0600
30906 Group block/flash drivers in drivers/Makefile
30908 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30910 commit df58c81551700f058b44cacf55a7997fa63bfe0a
30911 Author: Grant Likely <grant.likely@secretlab.ca>
30912 Date: Mon Sep 24 09:05:31 2007 -0600
30914 Group USB drivers in drivers/Makefile
30916 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30918 commit 5dbb6ed622e539b0c8493ef7e578d3a533181d29
30919 Author: Grant Likely <grant.likely@secretlab.ca>
30920 Date: Mon Sep 24 09:05:30 2007 -0600
30922 Group i2c drivers in drivers/Makefile
30924 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30926 commit ec00c76de0e5971273905998d62d6bb119324218
30927 Author: Grant Likely <grant.likely@secretlab.ca>
30928 Date: Mon Sep 24 09:05:30 2007 -0600
30930 Group console drivers in drivers/Makefile
30932 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30934 commit 754f230aa01b8c789fc31f8013c2487954073300
30935 Author: Grant Likely <grant.likely@secretlab.ca>
30936 Date: Mon Sep 24 09:05:30 2007 -0600
30938 Group network drivers in drivers/Makefile
30940 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30942 commit f0037c56b0d12cd46215124667b9f83d60ef9391
30943 Author: Grant Likely <grant.likely@secretlab.ca>
30944 Date: Mon Sep 24 09:05:30 2007 -0600
30946 Build: split COBJS value into multiple lines
30948 This change is in preparation for condtitionial compile support in the
30949 build system. By spliting them all into seperate lines now, subsequent
30950 patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will
30951 be less invasive and easier to review
30953 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30955 commit 1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4
30956 Author: Grant Likely <grant.likely@secretlab.ca>
30957 Date: Mon Sep 24 09:05:30 2007 -0600
30959 Add .gitignore files
30961 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30962 Acked-by: Kim Phillips <kim.phillips@freescale.com>
30964 commit 955413f35f054a82e40042f1dbcf501c6a05719b
30965 Author: Grant Likely <grant.likely@secretlab.ca>
30966 Date: Thu Nov 15 08:27:52 2007 -0700
30968 Revert "Correct relocation fixup for mpc5xx"
30970 This reverts commit 3649cd99ba815b6601868735765602f00ef3692b.
30971 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30973 commit e15633888a058aacb31a62d2cf1278e1e4c236ab
30974 Author: Grant Likely <grant.likely@secretlab.ca>
30975 Date: Thu Nov 15 08:24:32 2007 -0700
30977 Revert "Correct fixup relocation for MPC5xxx"
30979 This reverts commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90.
30980 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30982 commit 139365fbe566d0fc619a1ed04452ec5388f0cef8
30983 Author: Grant Likely <grant.likely@secretlab.ca>
30984 Date: Thu Nov 15 08:21:04 2007 -0700
30986 Revert "Correct fixup relocation for mpc8220"
30988 This reverts commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00.
30989 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
30991 commit 70922342369e5e39b286fe21e768a239ca07a514
30992 Author: Grant Likely <grant.likely@secretlab.ca>
30993 Date: Thu Nov 15 08:20:57 2007 -0700
30995 Revert "Correct fixup relocation for mpc824x"
30997 This reverts commit f3a52fe05923935db86985daf9438e2f70ac39aa.
30998 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31000 commit 96279ab4cad60cb5972aa934fbe4845ac02cc75a
31001 Author: Grant Likely <grant.likely@secretlab.ca>
31002 Date: Thu Nov 15 08:20:50 2007 -0700
31004 Revert "Correct fixup relocation for mpc8260"
31006 This reverts commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96.
31007 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31009 commit 928fe33b24cdf382a8dc8687fed24b1961cdb5d6
31010 Author: Grant Likely <grant.likely@secretlab.ca>
31011 Date: Thu Nov 15 08:20:43 2007 -0700
31013 Revert "Correct fixup relocation for mpc83xx"
31015 This reverts commit 057004f4a4863554d56cc56268bfa7c7d9738e27.
31016 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31018 commit c93945e8f9e300860d2bf73a2549ce5794f8bd00
31019 Author: Grant Likely <grant.likely@secretlab.ca>
31020 Date: Thu Nov 15 08:20:25 2007 -0700
31022 Revert "[MPC512x] Correct fixup relocation"
31024 This reverts commit 8d17979d0359492a822a0a409d26e3a3549b4cd4.
31025 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
31027 commit c9672f81f1bdb4e8ddf62aa72ca0206e8b72aa1c
31028 Author: Stefan Roese <sr@denx.de>
31029 Date: Thu Nov 15 14:25:09 2007 +0100
31031 ppc4xx: Small AMCC Kilauea cleanup
31033 Remove not needed pci_target_init() function.
31035 Signed-off-by: Stefan Roese <sr@denx.de>
31037 commit aee747f19b460a0e9da20ff21e90fdaac1cec359
31038 Author: Stefan Roese <sr@denx.de>
31039 Date: Thu Nov 15 14:23:55 2007 +0100
31041 ppc4xx: Enable 440 GPIO init table CFG_440_GPIO_TABLE for 405 platforms
31043 - Rename CFG_440_GPIO_TABLE to CFG_4xx_GPIO_TABLE
31044 - Cleanup of the 4xx GPIO functions
31045 - Move some GPIO defines from the cpu headers ppc405.h/ppc440.h into gpio.h
31047 Signed-off-by: Stefan Roese <sr@denx.de>
31049 commit 8ada0ebf38e4073beea0309188b25d82a112a2ae
31050 Author: Stefan Roese <sr@denx.de>
31051 Date: Thu Nov 15 14:20:08 2007 +0100
31053 ppc4xx: AMCC Taihu board config file cleanup
31055 This patch makes the AMCC Taihu a little more compatible to the other
31058 Signed-off-by: Stefan Roese <sr@denx.de>
31060 commit 5e71c51d74c963d3174060c078dcacf13bdd02ef
31061 Author: Marian Balakowicz <m8@semihalf.com>
31062 Date: Thu Nov 15 13:37:28 2007 +0100
31064 [INKA4x0] NG hardware: flash support
31066 Disabled and remove inka4x0 custom flash driver, use CFI flash
31069 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31071 commit 5fb6d7191e206cdde0e23140fd8111caed93a595
31072 Author: Marian Balakowicz <m8@semihalf.com>
31073 Date: Thu Nov 15 13:29:55 2007 +0100
31075 [INKA4x0] NG hardware: SDRAM support
31077 Add support for three new DDR chips that may be present on a NG
31078 INKA4x0 hardware: HYB25D512160BF-5, K4H511638C-7CB3, T46V32M16BN-6IT.
31080 Cleanup board/inka4x0/mt48lc16m16a2-75.h file.
31082 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31084 commit f23cb34c367bb27585a4fdb8a75277370e7d0596
31085 Author: Marian Balakowicz <m8@semihalf.com>
31086 Date: Thu Nov 15 13:24:43 2007 +0100
31088 [INKA4x0] NG hardware: platform code update
31090 - Cleanup compile warnings.
31091 - Add missing '\0' in default environment.
31092 - Increase CFG_MONITOR_LEN to 256 KiB.
31093 - Add required CFG_USE_PPCENV.
31095 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31097 commit 2ae64f5135e51bb18753884d1265b99e89b5aedd
31098 Author: Peter Pearse <peter.pearse@arm.com>
31099 Date: Thu Nov 15 08:58:00 2007 +0000
31101 Remove warnings re CONFIG_EXTRA_ENV_SETTINGS
31102 Remove warnings re onenand_read() & write()
31104 commit 2db916e14410e3ec1738508c7bf4dfeb2b299ae7
31105 Author: Peter Pearse <peter.pearse@arm.com>
31106 Date: Thu Nov 15 08:45:13 2007 +0000
31110 commit 1d8a49eca1c7bdc8db1c47a92f9014a29ead03ae
31111 Author: Roy Zang <tie-fei.zang@freescale.com>
31112 Date: Thu Sep 13 18:52:28 2007 +0800
31114 Enable ULi1575 Ethernet support in 8610HPCD config
31116 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
31117 Acked-by: Jon Loeliger <jdl@freescale.com>
31119 commit 54fd6c93c28a0a45352fff5dd92673401ff563f2
31120 Author: Stefan Roese <sr@denx.de>
31121 Date: Tue Nov 13 08:18:20 2007 +0100
31123 ppc4xx: lwmon5: Change PHY reset sequence for PHY MDIO address latching
31125 Signed-off-by: Stefan Roese <sr@denx.de>
31127 commit 7d0a4066b5a6b698e5fc1b66cfe9705774bbce93
31128 Author: Stefan Roese <sr@denx.de>
31129 Date: Tue Nov 13 08:06:11 2007 +0100
31131 ppc4xx: Fix 405EX PCIe UTLSET register setup
31133 Signed-off-by: Stefan Roese <sr@denx.de>
31135 commit 1ce55151c85d068f70317a8d65c61058b891afb4
31136 Author: Heiko Schocher <hs@denx.de>
31137 Date: Tue Nov 13 07:50:29 2007 +0100
31139 [UC101] SRAM now with 2 MB working.
31141 Signed-off-by: Heiko Schocher <hs@denx.de>
31143 commit 2d14684341109a69616e4d6016cd61402d55086f
31144 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31145 Date: Fri Nov 9 15:37:53 2007 +0100
31147 ppc4xx: Use generic usb-ohci driver for sequoia board
31149 This patch makes the sequoia board use the generic usb-ohci driver
31150 instead of cpu/ppc4xx/usb_ohci.c.
31152 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31153 Signed-off-by: Stefan Roese <sr@denx.de>
31155 commit 9be659ac0868dc367caa957c5c725e46b07f6a5f
31156 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31157 Date: Fri Nov 9 15:37:23 2007 +0100
31159 ppc4xx: Make USB working with CONFIG_4xx_DCACHE defined
31161 This patch disables the 44x d-cache on 'usb start' and
31162 reenables it on 'usb stop'. This should be seen as a
31163 temporary fix until the generic usb-ohci driver can
31164 life with d-cache enabled.
31166 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31167 Signed-off-by: Stefan Roese <sr@denx.de>
31169 commit fbde2169d2c48fcc9ff03489534a78ffb0a8a0d4
31170 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31171 Date: Fri Nov 9 15:36:44 2007 +0100
31173 ppc4xx: Remove redundant code from 4xx network driver
31175 This patch removes some redundant code and decrements the end
31176 address of cache flush and invalidate by 1.
31178 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
31179 Signed-off-by: Stefan Roese <sr@denx.de>
31181 commit 5ca9881aad8c413ac2a82868a5e3719178254502
31182 Author: Peter Pearse <peter.pearse@arm.com>
31183 Date: Fri Nov 9 15:24:26 2007 +0000
31185 Add apollon board support
31186 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
31188 commit b53313dbfc74525d85f1e7e0102f902d5c863beb
31189 Author: Stefan Roese <sr@denx.de>
31190 Date: Fri Nov 9 12:19:58 2007 +0100
31192 ppc4xx: Remove In:/Out:/Err: boot output for AMCC Kilauea
31194 Signed-off-by: Stefan Roese <sr@denx.de>
31196 commit c7f69c340277935a6c19a956421852da944a365f
31197 Author: Stefan Roese <sr@denx.de>
31198 Date: Fri Nov 9 12:18:54 2007 +0100
31200 ppc4xx: Make output a little shorter on I2C bootrom detection
31202 Most 4xx PPC capable of using an I2C bootrom for bootstrap setting
31203 already print a line with the information which I2C bootrom is
31204 used for bootstrap configuration. So we don't need this extra line
31205 with "I2C boot EEPROM en-/dis-abled".
31207 This patch also has a little code cleanup integrated.
31209 Signed-off-by: Stefan Roese <sr@denx.de>
31211 commit 8d737a28152ec12873f8544cca1fb39a49e5e693
31212 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31213 Date: Thu Nov 8 12:50:18 2007 -0600
31215 ColdFire: MCF5329 - Remove reset registers from CCM
31217 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31219 commit 7d7cdea769a60b0a6e4c18bef7f9d648fd14b8d7
31220 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31221 Date: Thu Nov 8 12:31:11 2007 -0600
31223 ColdFire: MCF5329 - Add Reset structure to immap_5329.h
31225 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31227 commit 09b26cf00d76d75fdf7fdc4b13e4dd929743bc21
31228 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31229 Date: Thu Nov 8 12:19:01 2007 -0600
31231 ColdFire: MCF5329 - revert include/asm-m68k/m5329.h file mode
31233 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31235 commit 225a24b5e062ad94627424508ae814f51dbe1a34
31236 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31237 Date: Wed Nov 7 18:00:54 2007 -0600
31239 ColdFire: MCF5445x - Update correct RAMBAR and missing linker files
31241 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31243 commit 248c7c14835f34d5d910b45e5600050e58ca6cab
31244 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31245 Date: Wed Nov 7 17:56:15 2007 -0600
31247 ColdFire: MCF532x - Update do_reset() using core reset
31249 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31251 commit d9240a5f827eb3b476a6ba2938d01f1a9e7688f4
31252 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31253 Date: Wed Nov 7 17:51:00 2007 -0600
31255 ColdFire: Update cpu flag for 4.2-xx compiler
31257 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
31259 commit 070ba56115b4da63b46e974287fa4550d4023386
31260 Author: York Sun <yorksun@freescale.com>
31261 Date: Wed Oct 31 14:59:04 2007 -0500
31263 8610: Add console frame buffer support to FSL 8610 DIU driver.
31265 Add cfb console support to FSL 8610 DIU driver.
31266 Inspect board version from PIXIS to obtain correct pixel format.
31268 Use #define CONFIG_VIDEO in config file to enable fb console.
31270 To switch monitor, set monitor variable to
31271 0 - DVI, 1 - Single link LVDS, 2 - Double link LVDS
31272 followed by "diufb init".
31274 Preserve logo bitmap at the top of the fb console.
31276 Signed-off-by: York Sun <yorksun@freescale.com>
31277 Signed-off-by: Jon Loeliger <jdl@freescale.com>
31279 commit a877880c6949e948bd63cd6ea4e216573d2f53dd
31280 Author: York Sun <yorksun@freescale.com>
31281 Date: Mon Oct 29 13:58:39 2007 -0500
31283 8610: Add 8610 DIU display driver
31285 1280x1024 and 1024x768 @ 32 bpp are supported now.
31286 DVI, Single-link LVDS, Double-link LVDS are all supported.
31288 Environmental variable "monitor" is used to specify monitor port.
31290 A new command "diufb" is introduced to reinitialize monitor
31291 and display a BMP file in the memory. So far, 1-bit, 4-bit,
31292 8-bit and 24-bit BMP formats are supported.
31295 - initialize the diu driver
31296 Enable the port specified in the environmental variable "monitor"
31299 - display bmp file in memory.
31300 The bmp image should be no bigger than the resolution, 1280x1024
31301 for DVI and double-link LVDS, 1024x768 for single-link LVDS.
31303 Note, this driver allocate memory but doesn't free it after use
31304 It is written on purpose -- to avoid a failure of reallocation
31305 due to memory fragement.
31307 ECC of DDR is disabled for DIU performance. L2 data cache is also disabled.
31309 Signed-off-by: York Sun <yorksun@freescale.com>
31310 Signed-off-by: Jon loeliger <jdl@freescale.com>
31312 commit 52e5ddfecdda308f75782fae206b677b1810f5f9
31313 Author: York Sun <yorksun@freescale.com>
31314 Date: Wed Oct 31 10:43:59 2007 -0500
31316 FSL: Add a freescale bitmap logo.
31318 This Freescale logo is a 340 x 128 x 4bpp BMP file
31319 that can be displayed by the DIU Framebuffer driver.
31321 Signed-off-by: York Sun <yorksun@freescale.com>
31322 Signed-off-by: Jon Loeliger <jdl@freescale.com>
31324 commit 1815338fbd1c0f94f8276d2891b99caa5a05f622
31325 Author: York Sun <yorksun@freescale.com>
31326 Date: Mon Oct 29 13:57:53 2007 -0500
31328 8610: Make some extra debug environment variables conditional.
31330 One may #define ENV_DEBUG to get them back again.
31332 Signed-off-by: York Sun <yorksun@freescale.com>
31334 commit 761421ccca80a9fb37b19c37aa61d46ef75e0647
31335 Author: Jason Jin <Jason.jin@freescale.com>
31336 Date: Mon Oct 29 19:26:21 2007 +0800
31338 8610: Actually enable pixis_reset CONFIGs
31340 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
31342 commit f3bceaab230b4748d0afc4109b6837308f018b40
31343 Author: Jason Jin <Jason.jin@freescale.com>
31344 Date: Fri Oct 26 18:31:59 2007 +0800
31346 Fix the BAT definition of PCI IO on 8610 board
31348 The address in the BAT register is aligned with the BAT size.
31349 The original definition actually did not define BAT for PCIE2 IO.
31350 This patch fix this.
31352 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
31354 commit 9f23ca334a6f5f021ef9e9d0fad9da80d63b2d56
31355 Author: Jason Jin <Jason.jin@freescale.com>
31356 Date: Mon Oct 29 19:26:21 2007 +0800
31358 Unify pixis_reset altbank across board families
31360 Basically, refactor the CFG_PIXIS_VBOOT_MASK values
31361 into the separate board config files.
31363 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
31364 Signed-off-by: Jon Loeliger <jdl@freescale.com>
31366 commit a8318ec205c8e8794b5f9f1b8584abadb440e8ba
31367 Author: Jason Jin <Jason.jin@freescale.com>
31368 Date: Fri Oct 26 18:32:00 2007 +0800
31370 make 8610 board use pixis reset
31372 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
31374 commit 9c84709eedce9c680dd695984ab7d2328f4f04f5
31375 Author: Jon Loeliger <jdl@freescale.com>
31376 Date: Thu Nov 1 12:23:29 2007 -0500
31378 86xx: Fix broken variable reference when #def DEBUGing.
31380 Sometimes you can't reference the DDR2 controller variables.
31382 Signed-off-by: Jon Loeliger <jdl@freescale.com>
31384 commit 1f103105a3746ab12279b63b8c1d372c0ce2cc58
31385 Author: Roy Zang <tie-fei.zang@freescale.com>
31386 Date: Mon Nov 5 17:39:24 2007 +0800
31388 Implement general ULi 526x Ethernet driver support in U-boot
31390 This patch implements general ULi 526x Ethernet driver.
31391 Until now, it is the only native Ethernet port on
31392 MPC8610HPCD board, but it could be used on other boards
31393 with ULi 526x Ethernet port as well.
31395 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
31396 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
31397 Acked-by: Jon Loeliger <jdl@freescale.com>
31398 Signed-off-by: Ben Warren <bwarren@qstreams.com>
31400 commit 71bc6e6474fea8ef481b9b45d1edd7ad1f6dfbbd
31401 Author: Larry Johnson <lrj@arlinx.com>
31402 Date: Thu Nov 1 08:46:50 2007 -0500
31404 NET: Add Ethernet 1000BASE-X support for PPC4xx
31406 This patch adds support for 1000BASE-X to functions "miiphy_speed ()" and
31407 "miiphy_duplex()". It also adds function "miiphy_is_1000base_x ()", which
31408 returns non-zero iff the PHY registers are configured for 1000BASE-X. The
31409 "mii info" command is modified to distinguish between 1000BASE-T and -X.
31411 Signed-off-by: Larry Johnson <lrj@acm.org>
31412 Signed-off-by: Ben Warren <bwarren@qstreams.com>
31414 commit 298035df4948b113d29ac0e694717d34b95bc5dc
31415 Author: Larry Johnson <lrj@arlinx.com>
31416 Date: Wed Oct 31 11:21:29 2007 -0500
31418 NET: Cosmetic changes
31420 Signed-off-by: Larry Johnson <lrj@acm.org>
31421 Signed-off-by: Ben Warren <bwarren@qstreams.com>
31423 commit 654f38b3a387886996a5a75771fbfc29cb4f225e
31424 Author: Stefan Roese <sr@denx.de>
31425 Date: Mon Nov 5 07:43:05 2007 +0100
31427 ppc4xx: Make output a little shorter on PCIe detection
31429 Now not max 3 lines but 2 lines are printed per PCIe port.
31431 Signed-off-by: Stefan Roese <sr@denx.de>
31433 commit 992742a5b09d9040adbd156fb90756af66ade310
31434 Author: Wolfgang Denk <wd@denx.de>
31435 Date: Sat Nov 3 23:09:27 2007 +0100
31437 Cleanup coding style; update CHANGELOG
31439 Signed-off-by: Wolfgang Denk <wd@denx.de>
31441 commit e881cb563e32f45832b7b6db77bdcd017adcbb41
31442 Author: Bruce Adler <bruce.adler@ccpu.com>
31443 Date: Fri Nov 2 13:15:42 2007 -0700
31445 fix wording in README
31447 Changed the wording to properly describe the shadowing
31448 of the environment from ROM to RAM
31450 Signed-off-by: Bruce Adler <bruce.adler@acm.org>
31452 commit ad845beef06245426c57b53dcdc01b7dc70e0d45
31453 Author: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31454 Date: Wed Oct 31 02:18:15 2007 +0900
31456 blackfin: Move `-D__BLACKFIN__' to $(ARCH)_config.mk
31458 Signed-off-by: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp>
31460 commit ec22755799466c8a103664bb3a5e647bf9c238f4
31461 Author: Vlad Lungu <vlad@comsys.ro>
31462 Date: Thu Oct 25 16:08:14 2007 +0300
31464 Trimmed some variables in ne2000.c
31466 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
31468 commit eb6f214d3644b2a77968c176ed36dcf858cfe7e0
31469 Author: Zhang Wei <wei.zhang@freescale.com>
31470 Date: Thu Oct 25 17:51:27 2007 +0800
31472 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
31474 The scan code of the key 'z' is 0x1d, which should be handled.
31476 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
31479 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
31481 commit bbf4796f6498fbade56d56eff3a0a49b299d93e5
31482 Author: Zhang Wei <wei.zhang@freescale.com>
31483 Date: Thu Oct 25 17:30:04 2007 +0800
31485 Fix USB support issue for MPC8641HPCN board.
31487 The configuration file has already enabled USB, but it
31488 missed definition of CFG_OHCI_SWAP_REG_ACCESS, the USB
31489 on MPC8641HPCN can not work because of the wrong USB
31492 And add the USB command to U-Boot commands list.
31494 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
31496 commit 4e62041023dc3de9d98d977bb080235bc6d035e0
31497 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31498 Date: Wed Oct 24 18:16:01 2007 +0200
31500 Use config_cmd_default.h instead of config_cmd_all.h
31502 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
31504 commit 56622f87857439b1c221e9deef11a9d5bb5d4308
31505 Author: Marian Balakowicz <m8@semihalf.com>
31506 Date: Wed Oct 24 01:37:36 2007 +0200
31508 TQM5200: Call usb_cpu_init() during board init
31510 usb_cpu_init() configures GPS USB pins, clocks, etc. and
31511 is required for proper operation of kernel USB subsystem.
31512 This setup was previously done in the kernel by the fixup
31513 code which is being removed, thus low level init must be
31514 done by U-boot now.
31516 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
31518 commit 29c29c0267fe857e72014ce90c5d35b2ef6302bd
31519 Author: Guennadi Liakhovetski <lg@denx.de>
31520 Date: Tue Oct 23 16:25:50 2007 +0200
31524 An obvious typo. Originally fixed in linkstation u-boot port.
31526 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31528 commit 59543fe00a4ce720ef9f5aa7fb387c6daf1c7d78
31529 Author: Guennadi Liakhovetski <lg@denx.de>
31530 Date: Tue Oct 23 14:35:05 2007 +0200
31532 Fix a typo in cpu/mpc824x/interrupts.c
31534 Since December 2003 the timer_interrupt_cpu() function in
31535 cpu/mpc824x/interrupts.c contains what seems to be a superfluous
31536 parameter. Remove it.
31538 Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
31540 commit c9e7b9b9a1700fe009678d1f9b41e6364ac5df2d
31541 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
31542 Date: Wed Oct 17 11:13:51 2007 +0200
31544 add ft_cpu_setup(..) on mpc8260
31546 Add ft_cpu_setup(..)-function to adapt it for use with libfdt
31547 based on code from mpc5xxx
31549 Sigend-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
31552 commit 6abd82e19ae93c0b4d104e50165e235915ec0875
31553 Author: Sergej Stepanov <Sergej.Stepanov@ids.de>
31554 Date: Wed Oct 17 11:18:42 2007 +0200
31556 changes for IDS8247 board support
31558 To get the IDS8247 board working following are done:
31559 - FCC2 is deactivated
31560 - FCC1 is activated
31562 - CFI driver is activated
31563 - Adapted for use with LIBFDT
31565 Signed-off-by: Sergej Stepanov <Sergej.Stepanov@ids.de>
31568 commit 3d6cb3b24add6415f86a0f013ea40f5639b90047
31569 Author: Stefan Roese <sr@denx.de>
31570 Date: Sat Nov 3 12:08:28 2007 +0100
31572 ppc4xx: Add AMCC Kilauea/Haleakala NAND booting support
31574 This patch adds NAND booting support for the AMCC 405EX(r) eval boards.
31575 Again, only one image supports both targets.
31577 Signed-off-by: Stefan Roese <sr@denx.de>
31579 commit 8b6684a698500be9c142ec2c9f46cfc348e17f0c
31580 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
31581 Date: Wed Oct 24 15:48:37 2007 +0200
31583 ATSTK1002: Remove default ethernet addresses
31585 Wolfgang is right: It's not a good idea to set up default initial
31586 ethernet addresses for a board, even though they belong to the local
31589 This will change the failure mode from "IT manager screams at you for
31590 using duplicate ethernet addresses" to a nice error message explaining
31591 that the ethernet address hasn't been set properly.
31593 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
31595 commit e5c794e491a57d829b6d8733e2ed8368a2269abf
31596 Author: Justin Flammia <jflammia@savantav.com>
31597 Date: Mon Oct 29 17:40:35 2007 -0400
31601 This is a multi-part message in MIME format.
31603 commit e6e505eae94ed721e123e177489291fc4544b7b8
31604 Author: Justin Flammia <jflammia@savantav.com>
31605 Date: Mon Oct 29 17:19:03 2007 -0400
31607 Found a bug in the way the DHCP Request packet is built, where the IP address
31608 that is offered by the server is bound to prematurely. This patch is a fix of
31609 that bug where the IP address offered by the DHCP server is not used until
31610 after the DHCP ACK from the server is received.
31612 Signed-off-by: Justin Flammia <jflammia@savantav.com>
31613 Signed-off-by: Ben Warren <bwarren@qstreams.com>
31615 commit 5d96d40d3f36da33348e68f9ea993f383e11f997
31616 Author: Stefan Roese <sr@denx.de>
31617 Date: Wed Oct 31 20:58:34 2007 +0100
31619 ppc4xx: Fix acadia_nand build problem
31621 Since the cache handling functions were moved from start.S into cache.S
31622 the acadia NAND booting Makfile needs to be adapted accordingly.
31624 Signed-off-by: Stefan Roese <sr@denx.de>
31626 commit ea2e142843533ca593fcb5cb3e1daf1b7f5e5949
31627 Author: Stefan Roese <sr@denx.de>
31628 Date: Wed Oct 31 20:57:11 2007 +0100
31630 ppc4xx: Add CONFIG_4xx_DCACHE compile options to enable cached SDRAM
31632 This patch adds the CONFIG_4xx_DCACHE options to some SDRAM init files
31633 and to the Sequoia TLB init code. Now the cache can be enabled on 44x
31634 boards by defining CONFIG_4xx_DCACHE in the board config file. This
31635 option will disappear, when more boards use is successfully and no
31636 more known problems exist.
31638 This is tested successfully on Sequoia and Katmai. The only problem that
31639 needs to be fixed is, that USB is not working on Sequoia right now, since
31640 it will need some cache handling code too, similar to the 4xx EMAC driver.
31642 Signed-off-by: Stefan Roese <sr@denx.de>
31644 commit 3db93b8bedd32e914b38976141b3fdf4ea3ff738
31645 Author: Stefan Roese <sr@denx.de>
31646 Date: Wed Oct 31 20:51:10 2007 +0100
31648 ppc4xx: Enable CPU POST test for 4xx with dcache enabled
31650 Now with caches enabled (i- and d-cache) on 44x, we need a chance to
31651 disable the cache for the CPU POST tests, since these tests consist
31652 of self modifying code. This is done via the new change_tlb() function.
31654 Signed-off-by: Stefan Roese <sr@denx.de>
31656 commit f71b2888b4b3c870909a0341427b2a914246f81f
31657 Author: Stefan Roese <sr@denx.de>
31658 Date: Wed Oct 31 20:47:26 2007 +0100
31660 ppc4xx: Change 4xx POST ethernet test to handle cached memory too
31662 This patch enables the 4xx EMAC POST driver to work too, when dcache is
31665 Signed-off-by: Stefan Roese <sr@denx.de>
31667 commit a2685904061b35a17583d65fe47cdc2686a69eaa
31668 Author: Stefan Roese <sr@denx.de>
31669 Date: Wed Oct 31 20:45:53 2007 +0100
31671 ppc4xx: Remove temporary TLB entry in POST cache test only for 440
31673 Signed-off-by: Stefan Roese <sr@denx.de>
31675 commit ff768cb168d8157c24a25016dbfbeb465e47f420
31676 Author: Stefan Roese <sr@denx.de>
31677 Date: Wed Oct 31 18:01:24 2007 +0100
31679 ppc4xx: Change 4xx ethernet driver to handle cached memory too
31681 This patch enables the 4xx EMAC driver to work too, when dcache is
31684 Signed-off-by: Stefan Roese <sr@denx.de>
31686 commit 483e09a223c666269ef81d3573a6591b1046b0ef
31687 Author: Stefan Roese <sr@denx.de>
31688 Date: Wed Oct 31 17:59:22 2007 +0100
31690 ppc4xx: Add change_tlb function to modify I attribute of TLB(s)
31692 This function is used to either turn cache on or off in a specific
31695 Signed-off-by: Stefan Roese <sr@denx.de>
31697 commit d25dfe08fbd1220cb994e7e6b105049aa9aa8e79
31698 Author: Stefan Roese <sr@denx.de>
31699 Date: Wed Oct 31 17:57:52 2007 +0100
31701 ppc4xx: Remove cache definition from 4xx board config files
31703 All 4xx board config files don't need the cache definitions anymore.
31704 These are now defined in common headers.
31706 Signed-off-by: Stefan Roese <sr@denx.de>
31708 commit 9b94ac61d2176185c30adf0793e079ec30e68687
31709 Author: Stefan Roese <sr@denx.de>
31710 Date: Wed Oct 31 17:55:58 2007 +0100
31712 ppc4xx: Rework 4xx cache support
31714 New cache handling functions added and all existing functions
31715 moved from start.S into seperate cache.S.
31717 Signed-off-by: Stefan Roese <sr@denx.de>
31719 commit 06713773da4ac3d390c63d82641eb553224b27c2
31720 Author: Stefan Roese <sr@denx.de>
31721 Date: Tue Oct 23 18:03:12 2007 +0200
31723 ppc4xx: Remove compiler warning from previous commit
31725 Signed-off-by: Stefan Roese <sr@denx.de>
31727 commit 6fa397df67c0f269e4528bf181a6e8c88f9723f9
31728 Author: Stefan Roese <sr@denx.de>
31729 Date: Tue Oct 23 14:40:30 2007 +0200
31731 ppc4xx: Remove temporary TLB entry in POST cache test
31733 Signed-off-by: Stefan Roese <sr@denx.de>
31735 commit 1338e6a81834099ba19733b69aafd8ef5f098094
31736 Author: Stefan Roese <sr@denx.de>
31737 Date: Tue Oct 23 14:05:08 2007 +0200
31739 ppc4xx: Change autonegotiation timeout from 4 to 5 seconds
31741 I lately noticed, that newer 4xx board with GBit support sometimes don't
31742 finish link autonegotiation in 4 seconds. Changing this timeout to 5
31743 seconds seems fine here.
31745 Signed-off-by: Stefan Roese <sr@denx.de>
31747 commit 2d83476a4c1c9911d158a3f8a4312d354bc1bdb7
31748 Author: Stefan Roese <sr@denx.de>
31749 Date: Tue Oct 23 14:03:17 2007 +0200
31751 ppc4xx: Change 4xx_enet & miiphy to use out_be32() and friends
31753 This patch changes all in32/out32 calls to use the recommended in_be32/
31754 out_be32 macros instead.
31756 Signed-off-by: Stefan Roese <sr@denx.de>
31758 commit 7d47cee2cc57f907380f2c06f5b6c683d03e423a
31759 Author: Stefan Roese <sr@denx.de>
31760 Date: Thu Oct 25 12:24:59 2007 +0200
31762 ppc4xx: Fix POST ethernet test for Haleakala
31764 The POST ethernet test needed to be changed to dynamically determine
31765 the count of ethernet devices. This code is cloned from the 4xx
31768 Signed-off-by: Stefan Roese <sr@denx.de>
31770 commit f10493c6d77a1e07a6c2ff4d772937a5e7359d6a
31771 Author: Stefan Roese <sr@denx.de>
31772 Date: Tue Oct 23 11:31:05 2007 +0200
31774 ppc4xx: Correct UART input clock calculation and passing to fdt
31776 We now use a value in the gd (global data) structure for the UART input
31777 frequency, since the PPC4xx_SYS_INFO struct is always rewritten completely
31780 Signed-off-by: Stefan Roese <sr@denx.de>
31782 commit 353f2688b4e0fc7b969bc70a02be4b40bf0dd124
31783 Author: Stefan Roese <sr@denx.de>
31784 Date: Tue Oct 23 10:10:08 2007 +0200
31786 ppc4xx: Add initial AMCC Haleakala PPC405EXr eval board support
31788 The Haleakala is nearly identical with the Kilauea eval board. The only
31789 difference is that the 405EXr only supports one EMAC and one PCIe
31790 interface. This patch adds support for the Haleakala board by using
31791 the identical image for Kilauea and Haleakala. The distinction is done
31792 by comparing the PVR.
31794 Signed-off-by: Stefan Roese <sr@denx.de>
31796 commit 9f798766aa85e62eb8fa8c721e148df609b78137
31797 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
31798 Date: Tue Oct 23 08:29:10 2007 +0200
31800 ppc4xx: Fixed offset of refresh rate type for Bamboo on-board DDR SDRAM
31802 This patch also adds a note to the fixed DDR setup for Bamboo NAND booting:
31805 As found out by Eugene O'Brien <eugene.obrien@advantechamt.com>, the fixed
31806 DDR setup has problems (U-Boot crashes randomly upon TFTP), when the DIMM
31807 modules are still plugged in. So it is recommended to remove the DIMM
31808 modules while using the NAND booting code with the fixed SDRAM setup!
31810 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
31811 Signed-off-by: Stefan Roese <sr@denx.de>
31813 commit afe9fa59cb63b4f9d16bf01c93eb212f25a38c2a
31814 Author: Stefan Roese <sr@denx.de>
31815 Date: Mon Oct 22 16:24:44 2007 +0200
31817 ppc4xx: Add SNTP support to AMCC Katmai, Kilauea & Makalu boards
31819 Signed-off-by: Stefan Roese <sr@denx.de>
31821 commit 3248f63ad89cb031491edb7016587fe6e9a238b9
31822 Author: Stefan Roese <sr@denx.de>
31823 Date: Mon Oct 22 16:22:40 2007 +0200
31825 ppc4xx: Rework of 4xx serial driver (4)
31829 - Use in_8/out_8 macros instead of in8/out8
31830 - No need for UART_BASE marco anymore, now really handled via function
31832 - serial_init_common() introduced
31833 - Further coding style cleanup
31835 Signed-off-by: Stefan Roese <sr@denx.de>
31837 commit e61cb8163a66b8a135696ae232e2bead1ce0a049
31838 Author: Stefan Roese <sr@denx.de>
31839 Date: Mon Oct 22 15:45:49 2007 +0200
31841 ppc4xx: Rework of 4xx serial driver (3)
31843 Change all linker scripts to reference the changed driver name iop480_uart.o.
31845 Signed-off-by: Stefan Roese <sr@denx.de>
31847 commit 882ae41274921f9016131806bdeb27e19606f47a
31848 Author: Stefan Roese <sr@denx.de>
31849 Date: Mon Oct 22 15:44:39 2007 +0200
31851 ppc4xx: Rework of 4xx serial driver (2)
31853 Change all linker scripts to reference the changed driver name 4xx_uart.o.
31855 Note: In most cased all these explicit referencing of these object files
31856 in the linker scripts is not neccessary. Only for manually embedded
31857 environment into the U-Boot image, which is not done is most cases.
31859 Signed-off-by: Stefan Roese <sr@denx.de>
31861 commit ad31e40bed042cb670d0036fea96435007afb838
31862 Author: Stefan Roese <sr@denx.de>
31863 Date: Mon Oct 22 15:09:59 2007 +0200
31865 ppc4xx: Rework of 4xx serial driver (1)
31867 This patch starts the rework of the PPC4xx serial driver. First we split
31868 the file into two seperate files, one 4xx_uart.c with the 405/440 UART
31869 handling code and the other one iop480_uart.c with the UART code for the
31870 PLX-Tech IOP480 PPC (PPC403 based).
31872 Signed-off-by: Stefan Roese <sr@denx.de>
31874 commit 764e7417ee5f6e25b1715720e7d7dd3487109385
31875 Author: Stefan Roese <sr@denx.de>
31876 Date: Mon Oct 22 10:30:38 2007 +0200
31878 ppc4xx: Correct UART input clock calculation and passing to fdt
31880 Signed-off-by: Stefan Roese <sr@denx.de>
31882 commit 211ea91ac6c225bec7e668a03d0ba7d7310679fa
31883 Author: Stefan Roese <sr@denx.de>
31884 Date: Mon Oct 22 07:34:34 2007 +0200
31886 ppc4xx: Add initial AMCC Makalu 405EX support
31888 Signed-off-by: Stefan Roese <sr@denx.de>
31890 commit fa8aea20456e6f1dba43f46bcc72024dd9499998
31891 Author: Stefan Roese <sr@denx.de>
31892 Date: Mon Oct 22 07:33:52 2007 +0200
31894 ppc4xx: Add freqUART to CPU speed detection
31896 This value is needed later for the device tree configuration of
31899 Signed-off-by: Stefan Roese <sr@denx.de>
31901 commit 837c730b4d7c6b1ddf3d1e247cb4445005d9bf0d
31902 Author: Stefan Roese <sr@denx.de>
31903 Date: Sun Oct 21 14:26:29 2007 +0200
31905 ppc: Small Kilauea cleanup of config file
31907 Signed-off-by: Stefan Roese <sr@denx.de>
31909 commit 758c037aeead34b49631b8da3a90b1bba14c0410
31910 Author: Stefan Roese <sr@denx.de>
31911 Date: Sun Oct 21 08:16:12 2007 +0200
31913 rtc: Add Xicor/Intersil X1205 RTC support
31915 This patch adds support for the Xicor/Intersil X1205 RTC used on the
31916 AMCC Makalu eval board. This driver is basically cloned from the Linux
31917 driver version (2.6.23).
31919 This patch also introduces the Linux bcd.h header for the BCD2BIN/
31920 BIN2BCD conversions. In the future some of the other U-Boot RTC driver
31921 should be converted to also use this header instead of implementing
31922 their own local copy of these functions/macros.
31924 Signed-off-by: Stefan Roese <sr@denx.de>
31926 commit 087dfdb79b5fd1ab99a26990c62a732c01a8c7f6
31927 Author: Stefan Roese <sr@denx.de>
31928 Date: Sun Oct 21 08:12:41 2007 +0200
31930 ppc4xx: Consolidate some of the 405 and 440 macros/structs into 4xx
31932 This patch moves some common 4xx macros and the PPC405_SYS_INFO/
31933 PPC440_SYS_INFO structure into the common ppc4xx.h header.
31935 Lot's of other macros are good candidates to be consolidated this way
31938 Signed-off-by: Stefan Roese <sr@denx.de>
31940 commit 770c7af5800f598d22730d1f4b70f16c9b33512e
31941 Author: Stefan Roese <sr@denx.de>
31942 Date: Sun Oct 21 08:05:18 2007 +0200
31944 ppc4xx: Fix size setup in Kilauea DDR2 init routine
31946 The size was initilized wrong. Instead of 256MB, the DDR2 controller
31947 was setup to 512MB. Now the correct values is used.
31949 This patch also does a little cleanup and adds a comment here.
31951 Signed-off-by: Stefan Roese <sr@denx.de>
31953 commit f6ba9b56607d4b27550301c7c7f6b55b654fd62a
31954 Author: Eugene O'Brien <eugene.obrien@advantechamt.com>
31955 Date: Thu Oct 18 17:29:04 2007 +0200
31957 ppc4xx: Define CONFIG_BOOKE for all PPC440 based processors
31959 CONFIG_BOOKE must be defined for PPC440 processors so that the proper SPR
31960 number is used to access system registers.
31962 Signed-off-by: Eugene O'Brien <eugene.obrien@advantechamt.com>
31963 Signed-off-by: Stefan Roese <sr@denx.de>
31965 commit c36c68160333ac5fe41ec3db12a728b7075b3912
31966 Author: Stefan Roese <sr@denx.de>
31967 Date: Thu Oct 18 07:42:27 2007 +0200
31969 ppc4xx: Change inbound PCIe location for endpoint tests on Katmai
31971 On Yucca & Katmai, the inbound memory map pointed to 0x4.0000.0000, which
31972 is the internal SRAM. Since I now ported and tested this endpoint mode
31973 on Kilauea successfully to map to 0 (SDRAM), I also changed this for
31976 Yucca will stay at internal SRAM for now. Not sure if somebody relies on
31979 Signed-off-by: Stefan Roese <sr@denx.de>
31981 commit 5cb4af4791f61843432155142b6cfac901f66c10
31982 Author: Stefan Roese <sr@denx.de>
31983 Date: Thu Oct 18 07:39:38 2007 +0200
31985 ppc4xx: Add PCIe endpoint support on Kilauea (405EX)
31987 This patch adds endpoint support for the AMCC Kilauea eval board. It can
31988 be tested by connecting a reworked PCIe cable (only 1x lane singles
31989 connected) to another root-complex.
31991 In this test setup, a 64MB inbound window is configured at BAR0 which maps
31992 to 0 on the PLB side. So accessing this BAR0 from the root-complex will
31993 access the first 64MB of the SDRAM on the PPC side.
31995 Signed-off-by: Stefan Roese <sr@denx.de>
31997 commit d4cb2d17946466740afeb195a57d6cb290bf4cc0
31998 Author: Stefan Roese <sr@denx.de>
31999 Date: Sat Oct 13 16:43:23 2007 +0200
32001 ppc4xx: Dynamic configuration of 4xx PCIe mode as root or endpoint mode
32003 This patch adds support for dynamic configuration of PCIe ports for the
32004 AMCC PPC4xx boards equipped with PCIe interfaces. These are the PPC440SPe
32005 boards Yucca & Katmai and the 405EX board Kilauea.
32007 This dynamic configuration is done via the "pcie_mode" environement
32008 variable. This variable can be set to "EP" or "RP" for endpoint or
32009 rootpoint mode. Multiple values can be joined via the ":" delimiter.
32014 This way, PCIe port 0 will be configured as rootpoint, PCIe port 1 and 2
32017 Per default Yucca will be configured as:
32020 Per default Katmai will be configured as:
32021 pcie_mode=RP:RP:REP
32023 Per default Kilauea will be configured as:
32026 Signed-off-by: Tirumala R Marri <tmarri@amcc.com>
32027 Signed-off-by: Stefan Roese <sr@denx.de>
32029 commit fd671802b67a0ef37a06124fa2ce85f00aa22c6f
32030 Author: Stefan Roese <sr@denx.de>
32031 Date: Thu Oct 11 11:15:59 2007 +0200
32033 ppc4xx: Enable device tree support (fdt) on Kilauea per default
32035 This patch enables the fdt support on the AMCC Kilauea eval board.
32036 Additionally now EBC ranges fdt fixup is included to support NOR
32037 FLASH mapping via the Linux physmap_of driver.
32039 This Kilauea port now support booting arch/ppc and arch/powerpc
32040 Linux kernels. The default environment "net_nfs" is for arch/ppc
32041 and "net_nfs_fdt" is for arch/powerpc. In the long run, arch/ppc
32042 support will be removed.
32044 Signed-off-by: Stefan Roese <sr@denx.de>
32046 commit 4994ffd890b9d95d807387a9b7bd8a4803ee406e
32047 Author: Stefan Roese <sr@denx.de>
32048 Date: Thu Oct 11 11:11:45 2007 +0200
32050 ppc4xx: Add additional debug info to 4xx fdt support
32052 Signed-off-by: Stefan Roese <sr@denx.de>
32054 commit db3232ddb058d0ed0bc31f7c5c296748a1afac67
32055 Author: Stefan Roese <sr@denx.de>
32056 Date: Fri Oct 5 21:28:58 2007 +0200
32058 ppc4xx: Fix small merge problems with CPCI440 and Acadia boards
32060 Signed-off-by: Stefan Roese <sr@denx.de>
32062 commit 1941cce71b1ae975602854045061e82f94ecd012
32063 Author: Stefan Roese <sr@denx.de>
32064 Date: Fri Oct 5 17:35:10 2007 +0200
32066 ppc4xx: Fix small merge problem in 4xx_enet.c
32068 Signed-off-by: Stefan Roese <sr@denx.de>
32070 commit 566806ca1a1bf4d895daaf0b2ba5494abbffebaf
32071 Author: Stefan Roese <sr@denx.de>
32072 Date: Fri Oct 5 17:11:30 2007 +0200
32074 ppc4xx: Add initial AMCC Kilauea 405EX support
32076 Signed-off-by: Stefan Roese <sr@denx.de>
32078 commit dbbd125721aea6645fdb962f36bd41f59e272f9d
32079 Author: Stefan Roese <sr@denx.de>
32080 Date: Fri Oct 5 17:10:59 2007 +0200
32082 ppc4xx: Add PPC405EX support
32084 Signed-off-by: Stefan Roese <sr@denx.de>
32086 commit 1d7b874e9c9a7c66f5d8da9ec78a3733765d3e31
32087 Author: Stefan Roese <sr@denx.de>
32088 Date: Fri Oct 5 17:09:36 2007 +0200
32090 ppc4xx: Cleanup of 4xx PCI and PCIe support (renaming)
32092 Signed-off-by: Stefan Roese <sr@denx.de>
32094 commit 4f14ed6230b9c109aac9a6fb878497dabd44c2db
32095 Author: Stefan Roese <sr@denx.de>
32096 Date: Fri Oct 5 17:07:50 2007 +0200
32098 ppc4xx: Add initial fdt support to 4xx (first needed on 405EX)
32100 Signed-off-by: Stefan Roese <sr@denx.de>
32102 commit a424a8bb2924b90724b944165d3141f1fa8dfe5b
32103 Author: Stefan Roese <sr@denx.de>
32104 Date: Fri Oct 5 17:04:57 2007 +0200
32106 POST: Add 405EX support to 4xx UART POST test
32108 Signed-off-by: Stefan Roese <sr@denx.de>
32110 commit 4f2e92c11f6e2392fc8187829211a5ca7f0c1e12
32111 Author: Stefan Roese <sr@denx.de>
32112 Date: Fri Oct 5 15:10:02 2007 +0200
32114 DTT: Prepare DS1775 driver for use of different I2C addresses
32116 Signed-off-by: Stefan Roese <sr@denx.de>
32118 commit 19e93b1e16d267220440d827b920fbad8abfa70f
32119 Author: Stefan Roese <sr@denx.de>
32120 Date: Fri Oct 5 14:23:43 2007 +0200
32122 ppc4xx: 4xx_pcie: Change PCIe status output to match common style
32124 Signed-off-by: Stefan Roese <sr@denx.de>
32126 commit ff68f66bcb0da847845aa2fac11eba6c25938c99
32127 Author: Stefan Roese <sr@denx.de>
32128 Date: Fri Oct 5 09:22:33 2007 +0200
32130 ppc4xx: 4xx_pcie: Disable debug output as default
32132 Signed-off-by: Stefan Roese <sr@denx.de>
32134 commit 97923770cb52b64d69eec958a11b2eda8d46e0f7
32135 Author: Stefan Roese <sr@denx.de>
32136 Date: Fri Oct 5 09:18:23 2007 +0200
32138 ppc4xx: 4xx_pcie: More general cleanup and 405EX PCIe support added
32140 Signed-off-by: Stefan Roese <sr@denx.de>
32142 commit 4dbee8a90df613eb517aadbecebd70f168913d30
32143 Author: Stefan Roese <sr@denx.de>
32144 Date: Fri Oct 5 07:57:20 2007 +0200
32146 ppc4xx: 4xx_pcie: Change CFG_PCIE_MEMSIZE to 128MB on Yucca & Katmai
32148 128MB seems to be the smallest possible value for the memory size
32149 for on PCIe port. With this change now the BAR's of the PCIe cards
32150 are accessible under U-Boot.
32152 One big note: This only works for PCIe port 0 & 1. For port 2 this
32153 currently doesn't work, since the base address is now 0xc0000000
32154 (0xb0000000 + 2 * 0x08000000), and this is already occupied by
32155 CFG_PCIE0_CFGBASE. But solving this issue for port 2 would mean
32156 to change the base addresses completely and this change would have
32157 too much impact right now.
32159 This patch adds debug output to the 4xx pcie driver too.
32161 Signed-off-by: Stefan Roese <sr@denx.de>
32163 commit 6d95289281ed2958ebf76d2b55f86bbd88591fd2
32164 Author: Stefan Roese <sr@denx.de>
32165 Date: Wed Oct 3 21:16:32 2007 +0200
32167 ppc4xx: 4xx_pcie: Fix problem with SDRN access using port number as idx
32169 Signed-off-by: Stefan Roese <sr@denx.de>
32171 commit 3048bcbf0bad262378c5af68f2bf6778fb7d829a
32172 Author: Stefan Roese <sr@denx.de>
32173 Date: Wed Oct 3 15:01:02 2007 +0200
32175 ppc4xx: Rename 405gp_pci to 4xx_pci since its used on all 4xx platforms
32177 These files were introduced with the IBM 405GP but are currently used on all
32178 4xx PPC platforms. So the name doesn't match the content anymore. This patch
32179 renames the files to 4xx_pci.c/h.
32181 Signed-off-by: Stefan Roese <sr@denx.de>
32183 commit 94276eb0a7a35b9e8c053d589ae225b0f017a237
32184 Author: Stefan Roese <sr@denx.de>
32185 Date: Wed Oct 3 14:14:58 2007 +0200
32187 ppc4xx: Add a comment for 405EX PCIe endpoint configuration
32189 Signed-off-by: Stefan Roese <sr@denx.de>
32191 commit 03d344bb6a5f082ea10ec9d753558ea7dfd1c626
32192 Author: Stefan Roese <sr@denx.de>
32193 Date: Wed Oct 3 10:38:09 2007 +0200
32195 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (3)
32197 (3) This patch introduces macros like SDRN_PESDR_DLPSET(port) to access
32198 the SDR registers of the PCIe ports. This makes the overall design
32199 clearer, since it removed a lot of switch statements which are not
32202 Also, the functions ppc4xx_init_pcie_rootport() and
32203 ppc4xx_init_pcie_entport() are merged into a single function
32204 ppc4xx_init_pcie_port(), since most of the code was duplicated.
32205 This makes maintainance and porting to other 4xx platforms
32208 Signed-off-by: Stefan Roese <sr@denx.de>
32210 commit 026f71106871f31d17d0ea0db9a7547ff92934bc
32211 Author: Stefan Roese <sr@denx.de>
32212 Date: Wed Oct 3 07:48:09 2007 +0200
32214 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (2)
32216 This patch is the first patch of a series to make the 440SPe PCIe code
32217 usable on different 4xx PPC platforms. In preperation for the new 405EX
32218 which is also equipped with PCIe interfaces.
32220 (2) This patch renames the functions from 440spe_ to 4xx_ with a
32221 little additional cleanup
32223 Signed-off-by: Stefan Roese <sr@denx.de>
32225 commit c7c6da23028f146d912514b95aefa3da7cf37699
32226 Author: Stefan Roese <sr@denx.de>
32227 Date: Wed Oct 3 07:34:10 2007 +0200
32229 ppc4xx: Make 440SPe PCIe code more generic to use on different 4xx PPCs (1)
32231 This patch is the first patch of a series to make the 440SPe PCIe code
32232 usable on different 4xx PPC platforms. In preperation for the new 405EX
32233 which is also equipped with PCIe interfaces.
32235 (1) This patch renames the files from 440spe_pcie to 4xx_pcie
32237 Signed-off-by: Stefan Roese <sr@denx.de>
32239 commit 245a362ad3c0c1b84fccc9fec7b623eb14f6e502
32240 Author: Marian Balakowicz <m8@semihalf.com>
32241 Date: Wed Oct 24 01:37:36 2007 +0200
32243 TQM5200: Call usb_cpu_init() during board init
32245 usb_cpu_init() configures GPS USB pins, clocks, etc. and
32246 is required for proper operation of kernel USB subsystem.
32247 This setup was previously done in the kernel by the fixup
32248 code which is being removed, thus low level init must be
32249 done by U-boot now.
32251 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
32252 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32254 commit b5af773f8d92677e06f3295b45557c9d0a487c24
32255 Author: Zhang Wei <wei.zhang@freescale.com>
32256 Date: Thu Oct 25 17:51:27 2007 +0800
32258 Fix the issue of usb_kbd driver missing the scan code of key 'z'.
32260 The scan code of the key 'z' is 0x1d, which should be handled.
32262 The change has be tested on NOVATEK USB keyboard and ULI PCI OHCI
32265 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
32266 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32268 commit 85ac988e86f9414fa645b0148dc66c3520a1eb84
32269 Author: Rodolfo Giometti <giometti@enneenne.com>
32270 Date: Mon Oct 15 11:59:17 2007 +0200
32272 PXA USB OHCI: "usb stop" implementation.
32274 Some USB keys need to be switched off before loading the kernel
32275 otherwise they can remain in an undefined status which prevents them
32276 to be correctly recognized by the kernel.
32278 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
32279 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
32281 commit 31548249decf18a6b877a18436b6139dd483fe4a
32282 Author: Justin Flammia <jflammia@savantav.com>
32283 Date: Mon Oct 29 17:40:35 2007 -0400
32287 This is a multi-part message in MIME format.
32289 commit e6e505eae94ed721e123e177489291fc4544b7b8
32290 Author: Justin Flammia <jflammia@savantav.com>
32291 Date: Mon Oct 29 17:19:03 2007 -0400
32293 Found a bug in the way the DHCP Request packet is built, where the IP address
32294 that is offered by the server is bound to prematurely. This patch is a fix of
32295 that bug where the IP address offered by the DHCP server is not used until
32296 after the DHCP ACK from the server is received.
32298 Signed-off-by: Justin Flammia <jflammia@savantav.com>
32299 Signed-off-by: Ben Warren <bwarren@qstreams.com>
32301 commit e8ee8f3ade2a06c1893dd5e68f223070d650c7ed
32302 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32303 Date: Thu Oct 25 17:16:22 2007 -0500
32305 ColdFire 54455: Fix correct boot location for atmel and intel
32307 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32309 commit 688e8eb414ac111cca7ce60bdf30e805ab9a7bcb
32310 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32311 Date: Thu Oct 25 17:14:00 2007 -0500
32313 ColdFire: Fix build error when CONFIG_WATCHDOG is defined
32315 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32317 commit c67e12e705b204cfe914e3e3e693d69a445dcabf
32318 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32319 Date: Thu Oct 25 17:12:36 2007 -0500
32321 ColdFire 5329: Assign correct SDRAM size and fix cache
32323 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32325 commit 95e9f2c212a65610b2e59a5c00d0113383a4da0b
32326 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32327 Date: Thu Oct 25 17:10:23 2007 -0500
32329 ColdFire 5253: Assign correct SDRAM size
32331 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32333 commit 2acefa72ee0026f862ab65597ca687428f63a973
32334 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32335 Date: Thu Oct 25 17:09:17 2007 -0500
32337 ColdFire 5282: Fix external flash boot and return dramsize
32339 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
32341 commit d78791ae914d4e7c5edca1cdad73b3dc81a4eb82
32342 Author: Bartlomiej Sieka <tur@semihalf.com>
32343 Date: Thu Oct 25 17:20:01 2007 +0200
32345 TQM5200: increase kernel_addr_r and fdt_addr_r (hinted by Wolfgang Denk).
32347 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
32349 commit 1a0ce20aa4cb4e3068da04e7290ee9986fd0b834
32350 Author: Martin Krause <martin.krause@tqs.de>
32351 Date: Wed Oct 24 08:42:25 2007 +0200
32353 TQM5200: fix spurious characters on second serial interface
32355 With this patch PSC3 is configured as UART. This is done, because if
32356 the pins of PSC3 are not configured at all (-> all pins are GPI),
32357 due to crosstalk, spurious characters may be send over the RX232_2_TXD
32360 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32361 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
32363 commit be4a87f11e297a5cededbf7dd71c0248f3874acd
32364 Author: Martin Krause <martin.krause@tqs.de>
32365 Date: Wed Oct 24 08:41:27 2007 +0200
32367 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
32369 Some commands for the STK52xx base board try to access the SM501 grafic
32370 controller. But the TQM5200S has no grafic controller (only the TQM5200
32371 and the TQM5200B have). This patch deactivates the commands accessing
32372 the SM501 for the TQM5200S.
32374 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32375 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
32377 commit b31f64343ead9482cd439b1adbe4c34026a641b1
32378 Author: Martin Krause <martin.krause@tqs.de>
32379 Date: Mon Oct 22 16:45:53 2007 +0200
32381 TQM5200: fix spurious characters on second serial interface
32383 With this patch PSC3 is configured as UART. This is done, because if
32384 the pins of PSC3 are not configured at all (-> all pins are GPI),
32385 due to crosstalk, spurious characters may be send over the RX232_2_TXD
32388 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32390 commit 0fc0f91b20ffa802f5a66534ca5c2844910583f6
32391 Author: Martin Krause <martin.krause@tqs.de>
32392 Date: Mon Oct 22 16:40:06 2007 +0200
32394 TQM5200S: fix commands for STK52xx base board because of missing SM501 grafic controller
32396 Some commands for the STK52xx base board try to access the SM501 grafic
32397 controller. But the TQM5200S has no grafic controller (only the TQM5200
32398 and the TQM5200B have). This patch deactivates the commands accessing
32399 the SM501 for the TQM5200S.
32401 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32403 commit 7b0a42219f30277f71f4405cbaf8a269f6d2d227
32404 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32405 Date: Sun Oct 21 09:14:28 2007 +0200
32407 Mips: Fix string functions differ prototype declaration
32409 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32411 commit cb8250fe4b3c4ed549b270e8a20bc22060e7e1d2
32412 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
32413 Date: Fri Oct 19 17:51:40 2007 -0500
32415 fsl_pci_init enable COMMAND_MEMORY if inbound window
32417 Patch 16e23c3f removed PCSRBAR allocation. But passing zero windows
32418 to pciauto_setup_device has the side effect of not getting
32419 COMMAND_MEMORY set.
32421 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32423 commit e9d0d527992566ebef9826962ff1745b2f082b92
32424 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32425 Date: Fri Oct 19 10:55:24 2007 +0200
32427 delta: Fix OHCI_REGS_BASE undeclared and wait_ms implicit declaration
32429 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32431 commit 9c4884f54da982ce990c7d1760ac81b0704d3c64
32432 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32433 Date: Fri Oct 19 08:10:15 2007 +0200
32435 fix warning: no return statement in function returning non-void
32437 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32439 commit e78220f6e514206757acfe247297fc9a328a881f
32440 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32441 Date: Fri Oct 19 06:33:45 2007 +0200
32443 xsengine: Fix no partition type specified, use DOS as default
32445 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32447 commit 10cdb8dbd67a818823ab9ec88b68fc348903db59
32448 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32449 Date: Fri Oct 19 00:24:59 2007 +0200
32451 lubbock: Fix no partition type specified, use DOS as default
32453 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32455 commit 41b4d282d38fa7231c315c5f6cfff5bdd24e0191
32456 Author: Wolfgang Denk <wd@denx.de>
32457 Date: Tue Oct 23 16:50:03 2007 +0200
32459 Coding style: keep lists sorted; update CHANGELOG
32461 Signed-off-by: Wolfgang Denk <wd@denx.de>
32463 commit 58b74b05c621e2835ecf4e2d3243042cf4186777
32464 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32465 Date: Fri Oct 19 00:09:05 2007 +0200
32467 Fix missing drivers makefile entries ds1722.c mw_eeprom.c
32469 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32471 commit 96455bfebc9887837095c9051d216f53c61b5f10
32472 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32473 Date: Fri Oct 19 00:07:39 2007 +0200
32475 Fix warning differ in signedness in board/innokom/innokom.c
32477 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32479 commit 2a4741d9a14ec475f50e9856d2c0a67e8b4271bd
32480 Author: Marcel Ziswiler <marcel@ziswiler.com>
32481 Date: Fri Oct 19 00:25:33 2007 +0200
32483 fix pxa255_idp board
32485 The pxa255_idp being an old unmaintained board showed several issues:
32486 1. CONFIG_INIT_CRITICAL was still defined.
32487 2. Neither CONFIG_MAC_PARTITION nor CONFIG_DOS_PARTITION was defined.
32488 3. Symbol flash_addr was undeclared.
32489 4. The boards lowlevel_init function was still called memsetup.
32490 5. The TEXT_BASE was still 0xa3000000 rather than 0xa3080000.
32491 6. Using -march=armv5 instead of -march=armv5te resulted in lots of
32492 'target CPU does not support interworking' warnings on recent compilers.
32493 7. The PXA's serial driver redefined FFUART, BTUART and STUART used as
32494 indexes rather than the register definitions from the pxa-regs header
32495 file. Renamed them to FFUART_INDEX, BTUART_INDEX and STUART_INDEX to
32496 avoid any ambiguities.
32497 8. There were several redefinition warnings concerning ICMR, OSMR3,
32498 OSCR, OWER, OIER, RCSR and CCCR in the PXA's assembly start file.
32499 9. The board configuration file was rather outdated.
32500 10. The part header file defined the vendor, product and revision arrays
32501 as unsigned chars instead of just chars in the block_dev_desc_t
32504 Signed-off-by: Marcel Ziswiler <marcel@ziswiler.com>
32506 commit 298cd4cafe81ff8a6c87be8fbc440a20720d3ed6
32507 Author: Rune Torgersen <runet@innovsys.com>
32508 Date: Wed Oct 17 11:56:31 2007 -0500
32510 Make MPC8266ADS command selection more robust
32512 Fix MPC8266 command line definition so it won't break when new commands
32513 are added to u-boot.
32514 Signed-off-by Rune Torgersen <runet@innovsys.com>
32516 commit d3afa1ee19345a31fd1eaad3e98b97d13ca47315
32517 Author: Bartlomiej Sieka <tur@semihalf.com>
32518 Date: Tue Oct 23 13:14:10 2007 +0200
32520 Motion-PRO: Update configuration to accomodate next generation board.
32522 New board has faster oscillator and a different Flash chip. This affects:
32523 - CFG_MPC5XXX_CLKIN
32525 - Flash CS configuration (timings)
32526 - Flash sector size, and thus MTD partition layout
32527 - malloc() arena size (due to bigger Flash sectors)
32528 - smaller memory test range (due to bigger malloc() arena)
32530 This patch also enables more extensive memory testing via "mtest".
32532 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
32534 commit eff501904df2bf1724a750062628ba2c51dbb1f8
32535 Author: Bartlomiej Sieka <tur@semihalf.com>
32536 Date: Tue Oct 23 11:36:07 2007 +0200
32538 Motion-PRO: Add setting of SDelay reg. to SDRAM controller configuration.
32540 Per AN3221 (MPC5200B SDRAM Initialization and Configuration), the SDelay
32541 register must be written a value of 0x00000004 as the first step of the
32542 SDRAM contorller configuration.
32544 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
32546 commit 7a9348728ebda63cdbaacffd83099aa71d9d4c54
32547 Author: Peter Pearse <peter.pearse@arm.com>
32548 Date: Tue Oct 23 10:22:16 2007 +0100
32550 Move PL01* serial drivers to drivers/serial and adjust Makefiles.
32552 commit 20d500d531a6b971ce6cc1bf191cb0092cdc0afc
32553 Author: Stefan Roese <sr@denx.de>
32554 Date: Tue Oct 23 10:17:42 2007 +0200
32556 ppc4xx: lwmon5: Some further GPIO config changes
32558 Signed-off-by: Stefan Roese <sr@denx.de>
32560 commit de9a738faa7c2f47286119c3bfebc3dfbfe7d86d
32561 Author: Vlad Lungu <vlad@comsys.ro>
32562 Date: Sun Oct 21 22:10:10 2007 +0900
32564 [MIPS] Fix UNCACHED_SDRAM
32566 PHYSADDR is for physical address, KSEG1ADDR is for uncached.
32568 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
32569 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32571 commit 00101dd7a32d12f698150123e47e4b3420279f86
32572 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32573 Date: Sun Oct 21 21:30:42 2007 +0900
32575 [MIPS] Add PIC-related switches to PLATFORM_{CPP,LD}FLAGS and cleanup
32577 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32579 commit eb700636db017d310edaeb559b13d82588560674
32580 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32581 Date: Sun Oct 21 10:55:37 2007 +0900
32583 [MIPS] u-boot.lds: Define _gp in a standard manner
32585 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32587 commit 22069215eb7adf5a3888bf7c7784ea9d70a72cd0
32588 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32589 Date: Sun Oct 21 10:55:36 2007 +0900
32591 [MIPS] Fix $gp usage
32593 Now we load $gp with _GLOBAL_OFFSET_TABLE_, but this is incorrect use.
32594 As a general principle, we should use _gp for $gp.
32596 Thanks to linker script's help we fortunately have _gp which equals to
32597 _GLOBAL_OFFSET_TABLE_. But once _gp gets out of alignment, we will not
32598 be able to access to GOT entires, global variables and procedure entry
32599 points. The right thing to do is to use _gp.
32601 This patch also introduce a new symbol `.gpword _GLOBAL_OFFSET_TABLE_'
32602 which holds the offset from _gp. When updating GOT entries, we use this
32603 offset and _gp to calculate the final _GLOBAL_OFFSET_TABLE_.
32605 This patch is originally submitted by Vlad Lungu <vlad@comsys.ro>, then
32606 I made some change to leave over num_got_entries.
32608 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32609 Cc: Vlad Lungu <vlad@comsys.ro>
32611 commit cbf2323b5b8285ea01acba7bbb905a3162d9b021
32612 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32613 Date: Sun Oct 21 10:55:36 2007 +0900
32615 [MIPS] u-boot.lds: Fix __got_start and __got_end
32617 Ensure that __got_start points to top of the `.got', and __got_end points
32618 to bottom as well, so that we never fail to count num_got_entries.
32620 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32622 commit e5f325fec5b48ae705c89522923ba5a2e37cd5c7
32623 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32624 Date: Sun Oct 21 10:55:36 2007 +0900
32626 [MIPS] u-boot.lds: Remove duplicated .sdata section
32628 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
32630 commit 05bf4919c1ce49cdedadacd564d0786a8ed796a1
32631 Author: Wolfgang Denk <wd@denx.de>
32632 Date: Sun Oct 21 01:01:17 2007 +0200
32634 Minor coding style cleanup; update CHANGELOG
32636 Signed-off-by: Wolfgang Denk <wd@denx.de>
32638 commit ff285ca07eda1ea4a8909848cc1cc604ec8fec9c
32639 Author: Vlad Lungu <vlad@comsys.ro>
32640 Date: Thu Oct 4 20:47:10 2007 +0300
32644 Fixed typo in ne2000.h, thinko re n2k_inb() usage, don't try
32645 to do anything in eth_stop() if eth_init() was not called.
32646 Simplified RX path in order to avoid timeouts on really really
32647 fast NE2000 cards (read: qemu with internal tftp), NetLoop() is
32648 clever enough to cope with 1 packet per eth_rx().
32650 Signed-off-by: Vlad Lungu <vlad@comsys.ro>
32652 commit df90968b48fb34fa9072fab150db2ac89678f537
32653 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
32654 Date: Mon Sep 24 13:32:13 2007 -0400
32656 Setting MSR[DE] in do_reset
32659 This patch ensures the soft reset of the board for the 85xx boards
32660 by setting the MSR[DE] in the do_reset function.
32662 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
32664 commit 1e701e701304b3c3a3768ca83dd2ab7b9e88c77d
32665 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
32666 Date: Mon Sep 24 13:36:01 2007 -0400
32671 This patch fixes the MSR overwrite in the start.S when moving out of
32674 Signed-off-by: Sughosh Ganu <urwithsughosh@gmail.com>
32676 commit 5c7ea64bb74a850a2b2303f853a8270695ad8602
32677 Author: Dan Wilson <dwilson@fulcrummicro.com>
32678 Date: Fri Oct 19 11:33:48 2007 -0500
32680 tsec driver should clear RHALT on startup
32682 This was causing problems for some people.
32684 Signed-off-by: Alain Gravel <agravel@fulcrummicro.com>
32685 Signed-off-by: Dan Wilson <dwilson@fulcrummicro.com>
32686 Signed-off-by: Andy Fleming <afleming@freescale.com>
32688 commit 7600d47b8f6a10019e537dc9a62aa1498df58d25
32689 Author: Kumar Gala <galak@kernel.crashing.org>
32690 Date: Thu Oct 11 00:29:18 2007 -0500
32692 Improve handling of PCI interrupt device tree fixup on MPC85xx CDS
32694 On the MPC85xx CDS we have two issues:
32696 1. The device tree fixup code did not check to see if the property we are
32697 trying to update is actually found. Its possible that it would update
32698 random memory starting at 0.
32700 2. Newer Linux kernel's have moved the location of the PCI nodes to be
32701 sibilings of the soc node and not children. The explicit PATH to the PCI
32702 node would not be found for these device trees. Add the ability to handle
32703 both paths. In the future we shouldn't handle such fixups by explicit path.
32705 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32707 commit a3063eec775719b7e91023bbec3f64b3118791df
32708 Author: Kumar Gala <galak@kernel.crashing.org>
32709 Date: Thu Oct 11 00:18:48 2007 -0500
32711 Set OF_STDOUT_PATH to match the default console on MPC8568 MDS
32713 On the MPC8568 MDS we use ttyS0, UART0, etc. as the standard configured
32714 console. Make it so we match that config what we tell Linux as the early
32717 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32719 commit e1ce3cb617bb06f91f82f98915391175addf3e82
32720 Author: Kumar Gala <galak@kernel.crashing.org>
32721 Date: Tue Oct 2 11:12:27 2007 -0500
32723 Remove magic numbers from cache related operations for mpc85xx
32725 The mpc85xx start code uses some magic numbers that we actually
32726 have #defines for in <config.h> so use those instead.
32728 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
32730 commit 5441f61a3d8b7034f19fc1361183e936198e6dbb
32731 Author: Detlev Zundel <dzu@denx.de>
32732 Date: Fri Oct 19 16:47:26 2007 +0200
32736 Signed-off-by: Detlev Zundel <dzu@denx.de>
32738 commit 281df457c1aa50d2752165d0c5c3282d4027b974
32739 Author: Tony Li <tony.li@freescale.com>
32740 Date: Thu Oct 18 17:47:19 2007 +0800
32742 mpc83xx: Add configure entry for MPC83xx ATM support
32744 Add MPC8360EMDS_ATM_config and MPC832XEMDS_ATM_config into
32745 Makfile and MAKEALL
32747 Signed-off-by: Tony Li <tony.li@freescale.com>
32748 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32750 commit d2646554f529a9577515eceb0ec5eceee18244ba
32751 Author: Tony Li <tony.li@freescale.com>
32752 Date: Thu Oct 18 17:44:38 2007 +0800
32754 mpc83xx: pq-mds-pib.c typo error
32756 Correct to val8 from val.
32758 Signed-off-by: Tony Li <tony.li@freescale.com>
32759 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
32761 commit 3e11ae80fec1ee12194940955431186abf6009c2
32762 Author: Stefan Roese <sr@denx.de>
32763 Date: Wed Oct 17 15:40:19 2007 +0200
32765 ppc4xx: Add 667/133 (CPU/PLB) frequency setup to Sequoia bootstrap command
32767 Signed-off-by: Stefan Roese <sr@denx.de>
32769 commit 3c89d75409eb26639d36dfa11d4ee3d8b962dc3c
32770 Author: Jon Loeliger <jdl@freescale.com>
32771 Date: Tue Oct 16 15:27:43 2007 -0500
32773 Initial mpc8610hpcd Makefile files.
32775 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32776 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
32777 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
32778 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32780 commit 9553df86d3a319c3a1a7cde7e4edd6eeb5aa64c7
32781 Author: Jon Loeliger <jdl@freescale.com>
32782 Date: Tue Oct 16 15:26:51 2007 -0500
32784 Initial mpc8610hpcd cpu/, README and include/ files.
32786 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32787 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
32788 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
32789 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32791 commit 3dd2db53ceb0dff80f25c2a07f83f29b907b403e
32792 Author: Jon Loeliger <jdl@freescale.com>
32793 Date: Tue Oct 16 13:54:01 2007 -0500
32795 Initial mpc8610hpcd board files.
32797 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
32798 Signed-off-by: Mahesh Jade <mahesh.jade@freescale.com>
32799 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
32800 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32802 commit 7ee6ba1a056e4061ab4cfde30127e332e7957afd
32803 Author: runet@innovsys.com <runet@innovsys.com>
32804 Date: Tue Oct 16 14:50:40 2007 -0500
32806 Make MPC8266ADS board compile again.
32808 Signed-off-by: Runet Torgersen <runet@innovsys.com>
32810 commit 2491167c245d8ebe6f2dbd8c4287aaa0d14fe93a
32811 Author: Jon Loeliger <jdl@freescale.com>
32812 Date: Mon Aug 27 12:41:03 2007 -0500
32814 86xx: Allow for fewer DDR slots per memory controller.
32816 As a direct correlation exists between DDR DIMM slots
32817 and SPD EEPROM addresses used to configure them, use
32818 the individually defined SPD_EEPROM_ADDRESS* values to
32819 determine if a DDR DIMM slot should have its SPD
32820 configuration read or not.
32822 Effectively, this now allows for 1 or 2 DIMM slots
32823 per memory controller.
32825 Signed-off-by: Jon Loeliger <jdl@freescale.com>
32827 commit 4d4a945e189a2f384c66432316da2788a0ac1607
32828 Author: Rodolfo Giometti <giometti@enneenne.com>
32829 Date: Mon Oct 15 11:59:17 2007 +0200
32831 PXA USB OHCI: "usb stop" implementation.
32833 Some USB keys need to be switched off before loading the kernel
32834 otherwise they can remain in an undefined status which prevents them
32835 to be correctly recognized by the kernel.
32837 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
32839 commit e2e93442e558cf1500e92861f99713b2f045ea22
32840 Author: Stefan Roese <sr@denx.de>
32841 Date: Mon Oct 15 11:39:00 2007 +0200
32843 ppc4xx: Fix bug in I2C bootstrap values for Sequoia/Rainier
32845 The I2C bootstrap values that can be setup via the "bootstrap" command,
32846 were setup incorrect regarding the generation of the internal sync PCI
32847 clock. The values for PLB clock == 133MHz were slighly incorrect and the
32848 values for PLB clock == 166MHz were totally incorrect. This could
32849 lead to a hangup upon booting while PCI configuration scan.
32851 This patch fixes this issue and configures valid PCI divisor values
32852 for the sync PCI clock, with respect to the provided external async
32855 Here the values of the formula in the chapter 14.2 "PCI clocking"
32856 from the 440EPx users manual:
32858 AsyncPCICLK - 1MHz <= SyncPCIClk <= (2 * AsyncPCIClk) - 1MHz
32860 33MHz async PCI frequency:
32862 => 32 <= 44.3 <= 65 (div = 3)
32865 => 32 <= 55.3 <= 65 (div = 3)
32867 66MHz async PCI frequency:
32869 => 65 <= 66.5 <= 132 (div = 2)
32872 => 65 <= 83 <= 132 (div = 2)
32874 Signed-off-by: Stefan Roese <sr@denx.de>
32876 commit 5a5958b7de70ae99f0e7cbd5c97ec1346e051587
32877 Author: Stefan Roese <sr@denx.de>
32878 Date: Mon Oct 15 11:29:33 2007 +0200
32880 ppc4xx: Fix incorrect 33/66MHz PCI clock log-message on Sequoia & Yosemite
32882 The BCSR status bit for the 66MHz PCI operation was correctly
32883 addressed (MSB/LSB problem). Now the correct currently setup
32884 PCI frequency is displayed upon bootup.
32886 This patch also fixes this problem on Rainier & Yellowstone, since these
32887 boards use the same souce code as Sequoia & Yosemite do.
32889 Signed-off-by: Stefan Roese <sr@denx.de>
32891 commit da3aad55cbde80ab6e301aafa82a2c411aa53eff
32892 Author: Martin Krause <martin.krause@tqs.de>
32893 Date: Wed Sep 26 17:55:56 2007 +0200
32895 TQM860M: adjust for doubled flash sector size.
32897 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
32898 doubled sector size.
32900 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32902 commit 9d29250e2e62f4bf20c7a20b4173d84c48f11f5d
32903 Author: Jens Gehrlein <jens.gehrlein@tqs.de>
32904 Date: Wed Sep 26 17:55:54 2007 +0200
32906 TQM8xx: Fix CAN timing.
32908 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32910 commit d43e489baf02afae49077791fb22332d240d8656
32911 Author: Martin Krause <martin.krause@tqs.de>
32912 Date: Thu Sep 27 14:54:36 2007 +0200
32914 TQM866M: fix SDRAM refresh
32916 At 133 MHz the current SDRAM refresh rate is too fast
32917 (measured 4 * 1.17 us).
32918 CFG_MAMR_PTA changes from 39 to 97. This result
32919 in a refresh rate of 4 * 7.8 us at the default clock
32920 50 MHz. At 133 MHz the value will be then 4 * 2.9 us.
32921 This is a compromise until a new method is found to
32922 adjust the refresh rate.
32924 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32926 commit 9ef57bbee1c67cc01da2026c242c4692db32be36
32927 Author: Martin Krause <martin.krause@tqs.de>
32928 Date: Wed Sep 26 17:55:55 2007 +0200
32930 TQM866M: adjust for doubled flash sector size.
32932 Adjust flash map to support the new S29GLxxN (N-Type) Flashes with
32933 doubled sector size.
32935 Signed-off-by: Martin Krause <martin.krause@tqs.de>
32937 commit f8bf90461d9bad2e6fed31fcebaf235f60dd6763
32938 Author: Michal Simek <monstr@monstr.eu>
32939 Date: Sun Oct 14 16:12:29 2007 +0200
32941 [FIX] XUPV2P change command handling
32942 and remove code violation
32944 commit 636400198228d96983c06657b17f760f5989958e
32945 Author: Wolfgang Denk <wd@denx.de>
32946 Date: Sun Oct 14 00:13:19 2007 +0200
32948 Prepare for 1.3.0-rc3 release
32950 Signed-off-by: Wolfgang Denk <wd@denx.de>
32952 commit 68f14f77ca5fe5f9cc025c8cae101671f628309f
32953 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32954 Date: Sat Sep 29 13:41:37 2007 +0200
32956 Fix warning differ in signedness in cpu/pxa/mmc.c
32958 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32960 commit fc19e36f741e8bc727c0a330170b3b5db90399ef
32961 Author: Wolfgang Denk <wd@denx.de>
32962 Date: Sat Oct 13 23:51:14 2007 +0200
32964 Fix warning differ in signedness in board/mpl/vcma9/vcma9.c
32966 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
32967 Signed-off-by: Wolfgang Denk <wd@denx.de>
32969 commit de74b9eeacccaf0a42e5ecc9ae79a88f7a311296
32970 Author: Wolfgang Denk <wd@denx.de>
32971 Date: Sat Oct 13 21:15:39 2007 +0200
32973 Coding Style cleanup.
32975 Signed-off-by: Wolfgang Denk <wd@denx.de>
32977 commit e1893815b0999410d7a327589611c7b38e95299e
32978 Author: Wolfgang Denk <wd@denx.de>
32979 Date: Fri Oct 12 15:49:39 2007 +0200
32981 GP3 SSA: enable RTC
32983 Signed-off-by: Wolfgang Denk <wd@denx.de>
32985 commit 8002012041f1ff9f997a5727abe5015f70cd2e46
32986 Author: Grzegorz Bernacki <gjb@semihalf.com>
32987 Date: Tue Oct 9 13:58:24 2007 +0200
32989 [ads5121] EEPROM support added.
32991 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
32993 commit 7b624ad254b97e5a25dca2304a398b64aeedaffe
32994 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
32995 Date: Sat Oct 6 18:55:35 2007 +0200
32997 AVR32: Initialize bi_flash* in board_init_r
32999 The ATSTK1000-specific flash driver intializes bi_flashstart,
33000 bi_flashsize and bi_flashoffset, but other flash drivers, like the CFI
33003 Initialize these in board_init_r instead so that things will still be
33004 set up correctly when we switch to the CFI driver.
33006 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
33008 commit 2b2a587d6d3076387d22ac740f44044bf46e2cb8
33009 Author: Marian Balakowicz <m8@semihalf.com>
33010 Date: Fri Oct 5 10:40:54 2007 +0200
33012 tqm5200: Fix CONFIG_CMD_PCI typo in board config file.
33014 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
33016 commit 92869195ef8210758d2176230c0a36897afd50ed
33017 Author: Bartlomiej Sieka <tur@semihalf.com>
33018 Date: Fri Oct 5 09:46:06 2007 +0200
33020 CM5200: Fix missing null-termination in hostname manipulation code
33022 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33024 commit 9add9884b1fddc34ca186e00a2f868ccd5d02d87
33025 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
33026 Date: Tue Oct 2 19:09:01 2007 +0200
33028 Fix memtest breakage
33030 CFG_MEMTEST_START uses weird magic involving gd, which fails to
33031 compile. Use hardcoded values instead (we actually know how much RAM
33034 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
33036 commit 738815c0cc44aa329097f868dc1efc49ede9c5ba
33037 Author: Stefan Roese <sr@denx.de>
33038 Date: Tue Oct 2 11:44:46 2007 +0200
33040 ppc4xx: Coding style cleanup
33042 Signed-off-by: Stefan Roese <sr@denx.de>
33044 commit 87c1833a39e944db66385286fd5e28f9b3fcdd50
33045 Author: Stefan Roese <sr@denx.de>
33046 Date: Tue Oct 2 11:44:19 2007 +0200
33048 ppc4xx: lwmon5: Remove watchdog for now, since not fully tested yet
33050 Signed-off-by: Stefan Roese <sr@denx.de>
33052 commit 2db64784061bfc34f4ba70ef1d2fbe7133b55670
33053 Author: Grzegorz Bernacki <gjb@semihalf.com>
33054 Date: Mon Oct 1 09:51:50 2007 +0200
33056 Program EPLD to force full duplex mode for PHY.
33058 EPLD forces modes of PHY operation. By default full duplex is turned off.
33059 This fix turns it on.
33061 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
33063 commit 785c13477b77dcd2e6c5128fffcdb4e1943f4818
33064 Author: Timo Ketola <timo.ketola@exertus.fi>
33065 Date: Mon Sep 24 14:50:32 2007 +0300
33067 Bugfix: Use only one PTD for one endpoint
33069 Original isp116x-hcd code prepared multiple PTDs for longer than 16
33070 byte transfers for one endpoint. That is unnecessary because the
33071 ISP116x is able to split long data from one PTD into multiple
33072 transactions based on the buffer size of the endpoint. It also caused
33073 serious problems if the endpoint NAKed some of the transactions. In
33074 that case ISP116x wouldn't notice that the other PTDs were for the same
33075 endpoint and would try the other PTDs possibly out of order. That would
33076 break the whole transfer.
33078 This patch makes isp116x_submit_job to use one PTD for one transfer.
33080 Signed-off-by: Timo Ketola <timo.ketola@exertus.fi>
33081 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
33083 commit 86ec86c04326c3913178a7679aa910de071da75d
33084 Author: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33085 Date: Thu Sep 27 23:27:47 2007 +0200
33087 Fix missing DECLARE_GLOBAL_DATA_PTR on CONFIG_LPC2292 in serial
33089 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
33091 commit 3e954beb614b5b190d7f4f4c3b641437a0132e35
33092 Author: Stefan Roese <sr@denx.de>
33093 Date: Tue Sep 11 14:12:55 2007 +0200
33095 ppc4xx: lwmon5: Change GPIO 58 to default to low (watchdog test)
33097 Signed-off-by: Stefan Roese <sr@denx.de>
33099 commit 1487adbdcf9594bb2eb686325a6f9540dad1b70a
33100 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33101 Date: Wed Sep 26 16:35:54 2007 -0500
33103 85xx io out functions need sync after write.
33105 This fixes the mc146818 rtc_read/write functions for 85xx.
33107 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33109 commit 0d38effc6e359e6b1b0c78d66e8bc1a4dc15a2ae
33110 Author: Grant Likely <grant.likely@secretlab.ca>
33111 Date: Tue Sep 25 15:48:05 2007 -0600
33113 Fpga: fix incorrect test of CFG_FPGA_XILINX macro
33115 CFG_FPGA_XILINX is a bit value used to test against the value in
33116 CONFIG_FPGA. Testing for a value will always return TRUE. I don't
33117 think that is the intention in this code.
33119 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33121 commit 853643d8cf2ca80cb2e25c53ad5dc580abafe166
33122 Author: Michal Simek <monstr@monstr.eu>
33123 Date: Mon Sep 24 00:41:30 2007 +0200
33125 [FIX] change command handling and removing code violation
33127 commit f240356507038e5ce55e8a24cb2607e9eae6d10c
33128 Author: Michal Simek <monstr@monstr.eu>
33129 Date: Mon Sep 24 00:36:06 2007 +0200
33131 [FIX] change sets of commands
33132 because changing of command handling brings
33133 compilation problems
33135 commit cb1bc63b75a232571eb69aa2c8aa919321655845
33136 Author: Michal Simek <monstr@monstr.eu>
33137 Date: Mon Sep 24 00:30:42 2007 +0200
33139 [FIX] Email reparation & Copyright
33140 Both codes are written by myself without any
33143 commit 0731cbae6c2feab93b244d83fd6a43f5cc9bf852
33144 Author: Michal Simek <monstr@monstr.eu>
33145 Date: Mon Sep 24 00:25:11 2007 +0200
33147 [PATCH] Change macro name for UartLite
33148 because PowerPC 405 can use UartLite as console
33150 commit 1c1100d2fcf46b9d11dcf78d6e5aea75e2e8b716
33151 Author: Michal Simek <monstr@monstr.eu>
33152 Date: Mon Sep 24 00:21:19 2007 +0200
33154 [PATCH] Add support for design without interrupt controller
33157 commit 0731933ec8ec45d02ba89b52df673d526873cdde
33158 Author: Michal Simek <monstr@monstr.eu>
33159 Date: Mon Sep 24 00:19:48 2007 +0200
33161 [FIX] resolve problem with cpu without barrel shifter
33163 commit db14d77995ce515b728b178b63f82babe60e3d56
33164 Author: Michal Simek <monstr@monstr.eu>
33165 Date: Mon Sep 24 00:18:46 2007 +0200
33167 [FIX] repair email address
33169 commit 481d4328618804add1f818a6c96296121cd0528e
33170 Author: Michal Simek <monstr@monstr.eu>
33171 Date: Mon Sep 24 00:17:42 2007 +0200
33173 [FIX] repair MFSL commands
33175 commit b90c045f035c3cc9b5d2edaed6048dfb74e40763
33176 Author: Michal Simek <monstr@monstr.eu>
33177 Date: Mon Sep 24 00:08:37 2007 +0200
33179 synchronizition with mainline
33181 commit eda3e1e6619ad0bee94ae4b16c99d88e77e2af13
33182 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33183 Date: Sun Sep 23 02:42:38 2007 +0900
33185 sh: Add support command of ide with sh
33187 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33189 commit d91ea45d15cf8e0987456bd211ffbb650824b6f1
33190 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33191 Date: Sun Sep 23 02:38:42 2007 +0900
33193 sh: Update Makefile
33195 Add support MS7722SE01 to Makefile.
33197 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33199 commit 6c0bbdccd379f5c8702af9e0765294c2fb7472a6
33200 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33201 Date: Sun Sep 23 02:31:13 2007 +0900
33203 sh: Add support Renesas sh7722 processor and Hitachi MS7722SE01 board
33205 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33207 commit 047375bfa4c3052fa50a748da7ff89e9dad3b364
33208 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33209 Date: Sun Sep 23 02:19:24 2007 +0900
33211 sh: Update MS7750SE01 platform
33213 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33215 commit 516ad760db3553766267ada01b7d5d727faa4bbd
33216 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33217 Date: Sun Sep 23 02:17:08 2007 +0900
33219 sh: Remove comment out code from include/asm-sh/cpu_sh4.h
33221 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33223 commit b02bad128669e567fce87d8df823b06a0144b8db
33224 Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33225 Date: Sun Sep 23 02:12:30 2007 +0900
33227 sh: Update core code of SuperH.
33229 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
33231 commit 66dcad3a9a53e0766d90e0084123bd8529522fb0
33232 Author: Wolfgang Denk <wd@denx.de>
33233 Date: Thu Sep 20 00:04:14 2007 +0200
33237 Signed-off-by: Wolfgang Denk <wd@denx.de>
33239 commit 135e19bc2773ebca487e9a8371f67e1ba202313a
33240 Author: Wolfgang Denk <wd@denx.de>
33241 Date: Tue Sep 18 21:36:35 2007 +0200
33243 Avoid compiler warning.
33245 Signed-off-by: Wolfgang Denk <wd@denx.de>
33247 commit 8a783a65851bc7421ab69f442261215e21b8891a
33248 Author: Grant Likely <grant.likely@secretlab.ca>
33249 Date: Tue Sep 18 12:24:57 2007 -0600
33251 Bugfix: remove embedded null (\0) from CFG_BOOTFILE macro in TQM8540_config
33253 /bin/bash and /bin/dash (which /bin/sh is linked to on ubuntu) handle embedded
33254 nulls in a string differently. For example, the following statement:
33255 echo "this is a string\0" > afile
33256 Will produce the following with /bin/bash:
33257 "this is a string\0"
33258 But with /bin/dash, will produce:
33261 Bug fixed by moving the embedded null out of the makefile and into the
33262 config header. Also renamed the macro to avoid usage colision with the same
33263 macro used by other board ports.
33265 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33267 commit f8d3ca7b6fa322ac57e8e831f07dbeea039a9f35
33268 Author: Wolfgang Denk <wd@denx.de>
33269 Date: Tue Sep 18 17:40:27 2007 +0200
33271 MCC200: fix build warning
33273 The MCC200 board config file includes version.h for some customer-
33274 specific setting, which causes warnings with "make depend"; build
33275 version.h before depend.
33277 Signed-off-by: Wolfgang Denk <wd@denx.de>
33279 commit bd86220f58b99d6896198c385fda132f0c980915
33280 Author: Peter Pearse <peter.pearse@arm.com>
33281 Date: Tue Sep 18 13:07:54 2007 +0100
33283 Move coloured led API to status_led.h
33284 Improve indentation in drivers/at45.c
33286 commit e80e585b00fbbab7ad1bf71619741f2c5b029ab7
33287 Author: Eirik Aanonsen <eaa@wprmedical.com>
33288 Date: Tue Sep 18 08:47:20 2007 +0200
33290 Update atstk1002 bootargs.
33292 Updates to atstk1002 U-Boot header file:
33293 - Changed bootargs:
33294 * Set the bootargs for at1002 to point to the SD-card partition instead
33295 * ... of the boot flash.
33296 * Removing the rootfstype since that argument are not needed.
33298 Signed-off-by: Eirik Aanonsen <eaa@wprmedical.com>
33299 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
33301 commit a4f3aab6dfbed6c29367c688bfb8a47eef62c225
33302 Author: Eirik Aanonsen <eaa@wprmedical.com>
33303 Date: Wed Sep 12 13:32:37 2007 +0200
33305 Add some comments to clocks in atstk1002.h
33307 This patch applies some clarifying comments to how the different
33308 clocks are setup according to atstk1002.h Some of the previous
33309 comments where stating wrongful information.
33311 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
33313 commit 97213f32416ead885deafea86774e912ffd60ad0
33314 Author: David Saada <David.Saada@ecitele.com>
33315 Date: Mon Sep 17 17:04:47 2007 +0200
33317 Description: Add NEC's PCI OHCI module ID to the USB OHCI driver
33319 Signed-off-by: David Saada <david.saada@ecitele.com>
33321 commit 30363e98fa470fbecea5e8bc0f1443352754f303
33322 Author: Stefan Roese <sr@denx.de>
33323 Date: Mon Sep 17 08:20:47 2007 +0200
33325 Small whitespace cleanup of OneNAND patch
33327 Signed-off-by: Stefan Roese <sr@denx.de>
33329 commit d7e8ce101a4a45ed6ed45739fc2de5f87b13f7f1
33330 Author: Kyungmin Park <kmpark@infradead.org>
33331 Date: Mon Sep 10 17:15:14 2007 +0900
33333 OneNAND support (take #2)
33335 [PATCH 3/3] OneNAND support (take #2)
33337 OneNAND support at U-Boot
33339 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33341 commit 17aa2800457df0c06b41516f46f126712c196219
33342 Author: Kyungmin Park <kmpark@infradead.org>
33343 Date: Mon Sep 10 17:14:34 2007 +0900
33345 OneNAND support (take #2)
33347 [PATCH 2/3] OneNAND support (take #2)
33349 OneNAND support at U-Boot
33351 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33353 commit 916527f4809a7bcd811f1f1daf34af184e31dd8c
33354 Author: Kyungmin Park <kmpark@infradead.org>
33355 Date: Mon Sep 10 17:13:49 2007 +0900
33357 OneNAND support (take #2)
33359 [PATCH 1/3] OneNAND support (take #2)
33361 OneNAND support at U-Boot
33363 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33365 commit b49c90df6e7cfcfb8b862b8bbf8448dff5eed9a5
33366 Author: Michal Simek <monstr@monstr.eu>
33367 Date: Sun Sep 16 20:51:57 2007 +0200
33369 [FIX] remove files form repository
33371 commit 67c31036acaaaa992fc346cc89db0909a7e733c4
33372 Author: Wolfgang Denk <wd@denx.de>
33373 Date: Sun Sep 16 17:10:04 2007 +0200
33375 TQM8xx[LM]: Fix broken environment alignment.
33377 With recent toolchains, the environment sectors were no longer aligned to
33378 sector boundaries. The reason was a combination of two bugs:
33380 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined
33381 for all TQM8xxL and TQM8xxM boards. But "include/common.h", where
33382 this gets defined, is not included here (and cannot be included
33383 without causing lots of problems).
33385 Added a new #define CFG_USE_PPCENV for all boards which really
33386 want to put the environment is a ".ppcenv" section.
33388 2) The linker scripts just include environment.o, silently assuming
33389 that the objects in that file are really in the order in which
33390 they are coded in the C file, i. e. "environment" first, then
33391 "redundand_environment", and "env_size" last. However, current
33392 toolchains (GCC-4.x) reorder the objects, causing the environment
33393 data not to start on a flash sector boundary:
33395 Instead of: we got:
33397 40008000 T environment 40008000 T env_size
33398 4000c000 T redundand_environment 40008004 T redundand_environment
33399 40010000 T env_size 4000c004 T environment
33401 Note: this patch fixes just the first part, and cures the alignment
33402 problem by making sure that "env_size" gets placed correctly. However,
33403 we still have a potential issue because primary and redundant
33404 environment sectors are actually swapped, i. e. we have now:
33406 40008000 T redundand_environment
33407 4000c000 T environment
33408 40010000 T env_size
33410 This shall be fixed in the next version.
33412 Signed-off-by: Wolfgang Denk <wd@denx.de>
33414 commit eb6da8050797c204c9d010548424186c7ce32fc1
33415 Author: Wolfgang Denk <wd@denx.de>
33416 Date: Sun Sep 16 02:39:35 2007 +0200
33418 TQM8xx/FPS8xx: adjust flash partitions for 2.6 ARCH=powerpc kernels
33420 Signed-off-by: Wolfgang Denk <wd@denx.de>
33422 commit cd2d1602c54cc6957bdef3872272a4b264893960
33423 Author: urwithsughosh@gmail.com <urwithsughosh@gmail.com>
33424 Date: Mon Sep 10 14:54:56 2007 -0400
33428 Fixup for the break statement in wrong place.
33430 [Patch by urwithsughosh@gmail.com]
33431 Acked-by: Andy Fleming <afleming@freescale.com>
33432 Signed-off-by: Wolfgang Denk <wd@denx.de>
33434 commit 5bd7fe9aeb76906371f40b8fd07613f10922e3e7
33435 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33436 Date: Tue Sep 11 17:04:00 2007 +0200
33438 Fix do_div() usage in nand process output
33440 Fix usage of do_div() in nand erase|read|write process output.
33442 The last patch to nand_util.c introduced do_div() instead of libgcc's
33443 implementation. But do_div() returns the quotient in its first
33444 macro parameter and not as result.
33446 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33448 commit c750d2e6692a000a82f29de7bf24e3dc21239161
33449 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33450 Date: Wed Sep 12 12:36:53 2007 +0200
33452 NAND: Add CFG_NAND_QUIET option
33454 This config option sets the default for the progress information
33455 output behavior that can also be configured through the 'quiet'
33456 environment variable.
33458 The legacy NAND code does not print the current progress info
33459 on the console. So this option is for backward compatibility for
33460 units that are in the field and where setting the quiet variable
33461 is not an option. With CFG_NAND_QUIET set to '1' the console
33462 progress info is turned off. This can still be overwritten
33463 through the environment variable.
33465 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
33467 commit dcb88630290d2bcd803386dd4c2be73142994c4f
33468 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
33469 Date: Thu Sep 13 16:06:05 2007 -0700
33471 ColdFire: fix build error becasue of bad type of mii_init()
33473 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33475 commit 314d5b6ce52a4ed19dd295d1364e246c5e605017
33476 Author: Liew Tsi Chung-r5aahp <Tsi-chung.Liew@freescale.com>
33477 Date: Thu Sep 13 16:04:05 2007 -0700
33479 ColdFire: Fix build error caused by pixis.c
33481 Moved the #include <asm/cache.h> inside the #ifdef CONFIG_FSL_PIXIS.
33483 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
33485 commit e21659e30660a1377c42af135a6114efe39801d9
33486 Author: Sam Sparks <SSparks@twacs.com>
33487 Date: Fri Sep 14 11:14:42 2007 -0600
33489 Update MPC8349ITX*_config to place config.tmp in right place.
33491 MPC834ITX*_config does not store config.tmp at the correct locatation,
33492 causing MPC8349ITXGP to have the wrong TEXT_BASE.
33494 Signed-off-by: Sam Sparks <SSparks@twacs.com>
33495 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33497 commit 1218abf1b5817a39a82399b4b928b00750575bda
33498 Author: Wolfgang Denk <wd@denx.de>
33499 Date: Sat Sep 15 20:48:41 2007 +0200
33501 Fix cases where DECLARE_GLOBAL_DATA_PTR was not declared as global
33503 Signed-off-by: Wolfgang Denk <wd@denx.de>
33505 commit 66b3f24d665be678a9dbb125b1e84185400f63b5
33506 Author: Dirk Behme <dirk.behme@googlemail.com>
33507 Date: Sat Sep 15 11:55:42 2007 +0200
33509 Make DECLARE_GLOBAL_DATA_PTR global for DaVinci
33511 As discussed in [1], DECLARE_GLOBAL_DATA_PTR has to be global and not
33514 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
33516 [1] http://article.gmane.org/gmane.comp.boot-loaders.u-boot/31805
33518 commit 991b089d1ce5ad945725e3657a8f106dfa02a38e
33519 Author: Michal Simek <monstr@monstr.eu>
33520 Date: Sat Sep 15 00:03:35 2007 +0200
33522 Synchronize with U-BOOT mainline
33524 commit d7fee32b7e61fe11c64e371cde79faa4768e8350
33525 Author: Sam Sparks <SSparks@twacs.com>
33526 Date: Fri Sep 14 11:14:42 2007 -0600
33528 Update MPC8349ITX*_config to place config.tmp in right place.
33530 MPC834ITX*_config does not store config.tmp at the correct locatation,
33531 causing MPC8349ITXGP to have the wrong TEXT_BASE.
33533 Signed-off-by: Sam Sparks <SSparks@twacs.com>
33534 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33535 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
33537 commit 6e7b7b6ea1b6d04dbe96242eb6a0c1c664c98e8c
33538 Author: Bartlomiej Sieka <tur@semihalf.com>
33539 Date: Thu Sep 13 18:21:48 2007 +0200
33541 cm5200: Fix a typo introduced by afaac86fe2948ac84cd9a12bbed883b3c683e7d9
33543 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
33545 commit e1f601b572db5de9aa81a0b77c68a86994fe24c4
33546 Author: Bartlomiej Sieka <tur@semihalf.com>
33547 Date: Thu Sep 13 16:33:59 2007 +0200
33549 tqm5200: Restore customary env. variable boot commands for powerpc kernels
33551 - update default definitions of kernel_addr and fdt_addr env. variables
33552 - make arch/powerpc booting the default scenario
33553 - update MTD partition layout to match the above
33555 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33557 commit f34024d4a328e6edd906456da98d2c537155c4f7
33558 Author: Wolfgang Denk <wd@denx.de>
33559 Date: Wed Sep 12 00:48:57 2007 +0200
33561 Fix memory corruption problem on STX GP3 SSA Board.
33563 Signed-off-by: Wolfgang Denk <wd@denx.de>
33565 commit d94c79e47011af5e8dd10ed6163c09b4cfc743cc
33566 Author: Peter Pearse <peter.pearse@arm.com>
33567 Date: Tue Sep 11 15:35:01 2007 +0100
33571 commit 38ad82da0c1180ecdeb212a8f4245e945bcc546e
33572 Author: Grzegorz Bernacki <gjb@semihalf.com>
33573 Date: Tue Sep 11 15:42:11 2007 +0200
33575 [GP3SSA] Add define CONFIG_MPC85XX_PCI2 in config file to allow u-boot to
33576 scan on second pci bus.
33578 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
33580 commit 6c2f4f388e8181655ea8b69343ea00b68aa6e8d0
33581 Author: Grzegorz Bernacki <gjb@semihalf.com>
33582 Date: Tue Sep 11 12:57:52 2007 +0200
33584 [ppc4xx] Individual handling of sdram.c for bamboo_nand build
33586 Bamboo has a file sdram.c which needs special treatment when building in
33587 separate directory. It has to be linked to build directory otherwise it is
33590 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
33592 commit d45963854eff39d575124d859419bb4953ce2c87
33593 Author: Michal Simek <monstr@monstr.eu>
33594 Date: Tue Sep 11 00:37:04 2007 +0200
33596 [FIX] Microblaze ML401 - repare FLASH handling
33598 commit 38c1ef728d19950414a8ab1ccfc53767848fa346
33599 Author: Sean MCGOOGAN <sean.mcgoogan@st.com>
33600 Date: Mon Sep 10 16:55:59 2007 +0100
33602 Allocate CPU Architecture Code for STMicroelectronics' ST200.
33604 Signed-off-by: Sean McGoogan <Sean.McGoogan@st.com>
33605 ---------------------------------------------------
33607 commit 754bac48156f8958d8f6a53a51eda88ab5758929
33608 Author: Wolfgang Denk <wd@denx.de>
33609 Date: Mon Sep 10 20:42:31 2007 +0200
33611 Update version to match current state.
33613 Signed-off-by: Wolfgang Denk <wd@denx.de>
33615 commit 7a888d6b3c32a126dbb504ef146bb4c26574ca7b
33616 Author: Grzegorz Bernacki <gjb@semihalf.com>
33617 Date: Mon Sep 10 17:39:08 2007 +0200
33619 [MPC512x] Streamline frame handling in the FEC driver
33621 - convert frame size settings to be derived from a single base
33622 - set frame size to the recommended default value
33624 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
33626 commit e251e00d0db4b36d1d2b7e38fec43a7296b529a2
33627 Author: Kyungmin Park <kmpark@infradead.org>
33628 Date: Mon Sep 10 11:34:00 2007 +0900
33630 Remove compiler warning: target CPU does not support interworking
33632 Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
33634 commit 1d9e31e04911a6bb7cc66dd91132c699101c32e2
33635 Author: Wolfgang Denk <wd@denx.de>
33636 Date: Sun Sep 9 21:21:33 2007 +0200
33638 Fix compile error in spc1920 config.
33640 Signed-off-by: Markus Klotzbücher <mk@denx.de>
33641 Signed-off-by: Wolfgang Denk <wd@denx.de>
33643 commit a7d7eca791a37f452c9da10fef4b31dd7aa9a622
33644 Author: Grant Likely <grant.likely@secretlab.ca>
33645 Date: Fri Sep 7 09:25:07 2007 -0600
33647 Bugfix: make bootm+libfdt compile on boards with no flash
33649 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33651 commit 6efc1fc0b63e55f94c5bc61d8dd23c918e3bc778
33652 Author: Grzegorz Bernacki <gjb@semihalf.com>
33653 Date: Fri Sep 7 18:35:37 2007 +0200
33655 [PPC440SPe] PCIe environment settings for Katmai and Yucca
33657 - 'pciconfighost' is set by default in order to be able to scan bridges
33658 behind the primary host/PCIe
33660 - 'pciscandelay' env variable is recognized to allow for user-controlled
33661 delay before the PCIe bus enumeration; some peripheral devices require a
33662 significant delay before they can be scanned (e.g. LSI8408E); without the
33663 delay they are not detected
33665 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
33667 commit 7f1913938984ef6c6a46cb53e003719196d9c5de
33668 Author: Grzegorz Bernacki <gjb@semihalf.com>
33669 Date: Fri Sep 7 18:20:23 2007 +0200
33671 [PPC440SPe] Improve PCIe configuration space access
33673 - correct configuration space mapping
33674 - correct bus numbering
33675 - better access to config space
33677 Prior to this patch, the 440SPe host/PCIe bridge was able to configure only the
33678 first device on the first bus. We now allow to configure up to 16 buses;
33679 also, scanning for devices behind the PCIe-PCIe bridge is supported, so
33680 peripheral devices farther in hierarchy can be identified.
33682 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
33684 commit 15ee4734e4e08003d73d9ead3ca80e2a0672e427
33685 Author: Grzegorz Bernacki <gjb@semihalf.com>
33686 Date: Fri Sep 7 17:46:18 2007 +0200
33688 [PPC440SPe] Convert machine check exceptions handling
33690 Convert using fixup mechanism to suppressing MCK for the duration of config
33691 read/write transaction: while fixups work fine with the case of a precise
33692 exception, we identified a major drawback with this approach when there's
33693 an imprecise case. In this scenario there is the following race condition:
33694 the fixup is (by design) set to catch the instruction following the one
33695 actually causing the exception; if an interrupt (e.g. decrementer) happens
33696 between those two instructions, the ISR code is executed before the fixup
33697 handler the machine check is no longer protected by the fixup handler as it
33698 appears as within the ISR code. In consequence the fixup approach is being
33699 phased out and replaced with explicit suppressing of MCK during a PCIe
33700 config read/write cycle.
33702 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
33704 commit ff7640c9ead8806b5d827f2b29f9cb2632add729
33705 Author: Wolfgang Denk <wd@denx.de>
33706 Date: Fri Sep 7 17:43:36 2007 +0200
33708 Fix typo in MAKEALL script.
33710 Signed-off-by: Wolfgang Denk <wd@denx.de>
33712 commit 08e2e5fcd2e06670b62e1680a3934c0e55c72810
33713 Author: Grzegorz Bernacki <gjb@semihalf.com>
33714 Date: Fri Sep 7 17:09:21 2007 +0200
33716 [MPC512x] Proper handling of larger frames in the FEC driver
33718 When frame larger than local RX buffer is received, it is split and handled
33719 by two buffer descriptors. Prior to this patch the FEC driver discarded
33720 contents of a buffer descriptor without the 'LAST' bit set, so the first
33721 part of the frame was lost in case of larger frames. This fix allows to
33722 safely combine the two pieces into the whole frame.
33724 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
33726 commit 8d17979d0359492a822a0a409d26e3a3549b4cd4
33727 Author: Rafal Jaworowski <raj@semihalf.com>
33728 Date: Fri Sep 7 17:05:36 2007 +0200
33730 [MPC512x] Correct fixup relocation
33732 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
33734 commit a89cbbd27a60e6740772000fd0688ffba1c2576a
33735 Author: Wolfgang Denk <wd@denx.de>
33736 Date: Fri Sep 7 01:21:25 2007 +0200
33738 Update CHANGELOG, minor coding style cleanup.
33740 commit 5e5803e119de3bebd76fc9a57baac0b5aeccc8a3
33741 Author: stefano babic <sbabic@denx.de>
33742 Date: Thu Aug 30 23:01:49 2007 +0200
33744 PXA270: Added support for TrizepsIV board.
33746 This patch add support for the Trizeps IV module (520Mhz).
33748 Signed-off-by: Stefano Babic <sbabic@denx.de>
33750 commit 80172c6181c912fbb34ea3ba0c22b232b419b47f
33751 Author: stefano babic <sbabic@denx.de>
33752 Date: Thu Aug 30 22:57:04 2007 +0200
33754 PXA270: Add support for multiple serial ports.
33756 This patch adds support for multiple serial ports to the PXA target.
33757 FFUART, BTUART and STUART are supported.
33759 Signed-off-by: Stefano Babic <sbabic@denx.de>
33761 commit 28bb3f72c687ac6b2eb076b01dd21a5fd657d45e
33762 Author: stefano babic <sbabic@denx.de>
33763 Date: Thu Aug 30 22:48:47 2007 +0200
33765 PXA270: fix compile issue (invalid lvalue)
33767 Code is broken for PXA270 due to "invalid lvalue in assignment".
33769 This patch fix it in pxa-regs.h
33771 Signed-off-by: Stefano Babic <sbabic@denx.de>
33773 commit 1d2ca446e1a731df420206d04fe278c27ea6b8e8
33774 Author: Jason Jin <Jason.jin@freescale.com>
33775 Date: Thu Aug 30 18:19:05 2007 +0800
33777 Add BUILD_DIR support for bios emulator.
33779 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
33781 commit b4d8a55145442f136982634862341a3e02002bda
33782 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33783 Date: Fri Aug 31 14:41:51 2007 +0900
33785 [MIPS] Remove inline asm string functions
33787 Stop using inline string functions on MIPS as other ARCHs do so,
33788 since the optimized inline asm versions are not small.
33790 This change is triggered by a following MIPS build error:
33791 common/libcommon.a(exports.o)(.text+0xdc): In function `jumptable_init':
33792 common/exports.c:32: undefined reference to `strcmp'
33793 make: *** [u-boot] Error 1
33795 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33797 commit 8ea2c4e54833deaebc24c3ca6b7f21353c25b0f5
33798 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33799 Date: Fri Aug 31 14:41:45 2007 +0900
33801 [MIPS] Update asm string header
33803 This patches contains several bugfixes and cleanups in the latest upstream:
33805 - Don't include linux/config.h
33806 - Remove buggy inline version of memscan.
33807 - Merge with Linux 2.6.11-rc3.
33808 - Fix undefined reference to strcpy in binfmt_misc caused by gcc 3.4.
33809 - Goodbye mips64. 31704 lines of code bite the dust.
33810 - Replace extern inline with static inline.
33811 - Fix return value of strncpy.
33812 - Remove a bunch more "$1" clobbers.
33814 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
33816 commit 5b729fb3bd98f49855d6bfc657c3fbae95f2adc2
33817 Author: Bartlomiej Sieka <tur@semihalf.com>
33818 Date: Tue Sep 4 17:31:22 2007 +0200
33820 Fix do_bootm_linux() so that multi-file images with FDT blob boot.
33822 Fix incorrect blob address calculation in do_bootm_linux() that prevents
33823 booting the kernel from a multi-file image (kernel + initrd + blob).
33825 Also, make minor updates to the U-Boot's output and to the coding style.
33827 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
33829 commit 041a2554ad619e80dce520c1a33210affcb6a3f2
33830 Author: Gary Jennejohn <gary.jennejohn@freenet.de>
33831 Date: Fri Aug 31 14:29:04 2007 +0200
33833 Add support for Sil680 IDE controller.
33835 o add drivers/sil680.c to support the Sil680 IDE-controller.
33836 o drivers/Makefile: add sil680.o.
33838 Signed-off-by: Gary Jennejohn <garyj@denx.de>
33840 commit e79021223bc339df655e360645a52c457a74b067
33841 Author: Grant Likely <grant.likely@secretlab.ca>
33842 Date: Thu Sep 6 09:47:40 2007 -0600
33844 bootm/fdt: Only process the fdt if an fdt address was provided
33846 Boards with CONFIG_OF_LIBFDT enabled are not able to boot old-style
33847 kernels using the board info structure (instead of passing a device tree)
33848 This change allows the old style booting to be used if the fdt argument
33849 was not passed to 'bootm'.
33851 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33852 Acked-by: Kim Phillips <kim.phillips@freescale.com>
33854 commit cf2817a84c2e9bea2c5dfc084bce2f2d2563ac43
33855 Author: Grant Likely <grant.likely@secretlab.ca>
33856 Date: Thu Sep 6 09:46:23 2007 -0600
33858 Migrate 5xxx boards from CONFIG_OF_FLAT_TREE to CONFIG_OF_LIBFDT
33860 Affects boards: icecube (lite5200), jupiter, motionpro, tqm5200
33862 Tested on: lite5200b
33864 Note: the fixup functions have not been moved to a common place. This
33865 patch is targeted for immediate merging as in solves a build issue, but
33866 the final name/location of the fixups is still subject to debate. I
33867 propose to merge this now, and move the fixups in the next merge window
33868 to be usable by all targets.
33870 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33872 commit 41bb76e941929f54a73206fb132f7a4c275543a3
33873 Author: Grant Likely <grant.likely@secretlab.ca>
33874 Date: Thu Sep 6 09:46:17 2007 -0600
33876 libfdt: add convenience function fdt_find_and_setprop()
33878 Given the path to a node, fdt_find_and_setprop() allows a property value
33879 to be set directly.
33881 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
33883 commit 80767a6cead9990d9e77e62be947843c2c72f469
33884 Author: Peter Pearse <peter.pearse@arm.com>
33885 Date: Wed Sep 5 16:04:41 2007 +0100
33887 Changed API name to coloured_led.h
33888 Removed code using deprecated ifdef CONFIG_BOOTBINFUNC
33889 Tidied other cpu/arm920t/start.S code
33891 commit 56a9270521baaa00e12639a978302a67f61ef060
33892 Author: Kumar Gala <galak@kernel.crashing.org>
33893 Date: Thu Aug 30 16:18:18 2007 -0500
33895 Fix ULI RTC support on MPC8544 DS
33897 The RTC on the M1575 ULI chipset requires a dummy read before
33898 we are able to talk to the RTC. We accomplish this by adding a
33899 second memory region to the PHB the ULI is on and read from it.
33901 The second region is added to maintain compatiabilty with Linux's
33902 view of the PCI memory map.
33904 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
33906 commit f75e89e9b5714db2b0e80074071dfbdd6f59488a
33907 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
33908 Date: Thu Aug 30 01:58:48 2007 -0500
33910 ft_board_setup update 85xx/86xx of pci/pcie bus-range property.
33912 pcie is now differentiated from pci. Add 8641 bus-range updates.
33914 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
33916 commit 9f5c3d3720e777a572dcdc8af2008b44c7243885
33917 Author: Peter Pearse <peter.pearse@arm.com>
33918 Date: Tue Sep 4 16:18:38 2007 +0100
33920 Add coloured led interface for ARM boards.
33921 Use it in cpu/arm920t/start.S to indicate U-Boot code has been entered.
33923 commit 7462fe0d5a9d40cde083fb1a3cd73911996b5ecb
33924 Author: Peter Pearse <peter.pearse@arm.com>
33925 Date: Tue Sep 4 14:49:28 2007 +0100
33927 Move include/led.h to board/at91rm9200dk
33929 commit 6e4bf9b24e57c15abc6542e685d06380bc64af27
33930 Author: Peter Pearse <peter.pearse@arm.com>
33931 Date: Tue Sep 4 14:25:51 2007 +0100
33933 Ran Lindent on drivers/at45.c
33935 commit 557ab89d294f08dd532f21d19861b40093200a33
33936 Author: Peter Pearse <peter.pearse@arm.com>
33937 Date: Tue Sep 4 14:23:50 2007 +0100
33939 Rename CONFIG_CMD_MUX to CONFIG_CMD_AT91_SPIMUX
33941 commit 81b73dec16fd1227369a191e725e10044a9d56b8
33942 Author: Gary Jennejohn <garyj@denx.de>
33943 Date: Fri Aug 31 15:21:46 2007 +0200
33945 ppc4xx: (Re-)Enable CONFIG_PCI_PNP on AMCC 440EPx Sequoia
33947 The 440EPx has a problem when the PCI_CACHE_LINE_SIZE register is
33948 set to non-zero, because it doesn't support MRM (memory-read-
33949 multiple) correctly. We now added the possibility to configure
33950 this register in the board config file, so that the default value
33951 of 8 can be overridden.
33953 Here the details of this patch:
33955 o drivers_pci_auto.c: introduce CFG_PCI_CACHE_LINE_SIZE to allow
33956 board-specific settings. As an example the sequoia board requires 0.
33957 Idea from Stefan Roese <sr@denx.de>.
33958 o board/amcc/sequoia/init.S: add a TLB mapping at 0xE8000000 for the
33959 PCI IO-space. Obtained from Stefan Roese <sr@denx.de>.
33960 o include/configs/sequoia.h: turn CONFIG_PCI_PNP back on and set
33961 CFG_PCI_CACHE_LINE_SIZE to 0.
33963 Signed-off-by: Gary Jennejohn <garyj@denx.de>
33964 Signed-off-by: Stefan Roese <sr@denx.de>
33966 commit 60174746c668b309378a91488dded898e9553eae
33967 Author: Wolfgang Denk <wd@denx.de>
33968 Date: Fri Aug 31 10:01:51 2007 +0200
33970 Fix TFTP OACK code for short packets.
33972 The old code had a loop limit overflow bug which caused a semi-
33973 infinite loop for small packets, because in "i<len-8", "i" was signed,
33974 but "len" was unsigned, and "len-8" became a huge number for small
33977 This is a workaround which replaces broken commit 8f1bc284.
33979 Signed-off-by: Wolfgang Denk <wd@denx.de>
33981 commit 696dd1307cd8e73a10e9bb3c51731bfd6f837bee
33982 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
33983 Date: Thu Aug 30 15:03:05 2007 +0200
33985 Reduce BOOTDELAY variable to 1 second by default for STK1002
33987 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
33988 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
33990 commit c88b6e1cbf9a8ae2a34fb602f78a1bf4e6692b6a
33991 Author: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
33992 Date: Thu Aug 30 15:03:04 2007 +0200
33994 Remove double quotation marks around MAC address for STK1002
33996 Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
33997 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
33999 commit ff13ac8c7bbebb238e339592de765c546dba1073
34000 Author: Wolfgang Denk <wd@denx.de>
34001 Date: Thu Aug 30 14:42:15 2007 +0200
34003 Backout commit 8f1bc284 as it causes TFTP to fail.
34005 Signed-off-by: Wolfgang Denk <wd@denx.de>
34007 commit 1900fbf255acba8b94fb442a16408ea85a1d46a6
34008 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34009 Date: Thu Aug 30 02:26:17 2007 -0500
34011 Revert "Fix MPC8544DS PCIe3 scsi."
34013 This reverts commit 9468e680.
34014 Commit 16e23c3f5da removing allocation of PCSRBAR is sufficient.
34016 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34018 commit 8f1bc28408ded213418d9bc0780c7d8fb8a03774
34019 Author: Grant Likely <grant.likely@secretlab.ca>
34020 Date: Wed Aug 29 18:26:24 2007 -0600
34022 tftp: don't implicity trust the format of recevied packets
34024 The TFTP OACK code trusts that the incoming packet is formated as
34025 ASCII text and can be processed by string functions. It also has a
34026 loop limit overflow bug where if the packet length is less than 8, it
34027 ends up looping over *all* of memory to find the 'blksize' string.
34029 This patch solves the problem by forcing the packet to be null
34030 terminated and using strstr() to search for the sub string.
34032 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
34034 commit 04625764cc93ce8a61625ac19d7fe2a2ceee8143
34035 Author: Stefan Roese <sr@denx.de>
34036 Date: Wed Aug 29 16:31:18 2007 +0200
34038 ppc4xx: Change lwmon5 default environment to support Linux RTC
34040 The Linux PCF8563 RTC driver doesn't do autoprobing, so we need
34041 to supply the RTC I2C address as bootline parameter. This patch
34042 adds support for this rtc probing parameter to the bootargs:
34044 "rtc-pcf8563.probe=0,0x51"
34046 Signed-off-by: Stefan Roese <sr@denx.de>
34048 commit 2602a5c40ae37ab965a4e240854fdaffb51328a4
34049 Author: Kim Phillips <kim.phillips@freescale.com>
34050 Date: Wed Aug 29 09:06:05 2007 -0500
34052 sbc8641: remove unused OF_FLAT_TREE_MAX_SIZE
34054 this had slipped through the cracks, since the sbc board was added
34055 after I wrote the original patch to remove all these symbols, and
34056 before it was merged.
34058 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34060 commit c5bded3c88e48ae648a75d357dc81a8255fa81f1
34061 Author: Wolfgang Denk <wd@denx.de>
34062 Date: Wed Aug 29 14:05:30 2007 +0200
34064 Add mii_init() prototype
34066 to get rid of a *lot* of compiler warnings.
34068 Signed-off-by: Wolfgang Denk <wd@denx.de>
34070 commit 2d1f23aa1e74e4a8f8ffa67f246eb98c522dfd7f
34071 Author: Wolfgang Denk <wd@denx.de>
34072 Date: Wed Aug 29 13:35:03 2007 +0200
34074 Disable network support on cmi_mpc5xx board
34076 ..because it caused compiler errors and there seems to be no
34077 board maintainer to take care of this.
34079 Signed-off-by: Wolfgang Denk <wd@denx.de>
34081 commit 9468e6804b7e25b0f6f52e53f47bce3175400a16
34082 Author: Kumar Gala <galak@kernel.crashing.org>
34083 Date: Mon Aug 20 09:44:00 2007 -0500
34085 Fix MPC8544DS PCIe3 scsi.
34087 <ed.swarthout@freescale.com>
34089 The problem is pciauto_setup_device() getting called from fsl_pci_init.c
34090 is allocating memory space it doesn't need.
34092 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
34093 Signed-off-by: Andy Fleming <afleming@freescale.com>
34095 commit 4bf4abb8a4e9955556b120a1aafa30c03e74032a
34096 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34097 Date: Tue Aug 21 09:38:59 2007 -0500
34101 Restore CONFIG_EXTRA_ENV_SETTINGS definition which contains the
34102 correct consoledev needed for linux boot.
34103 Standardize on fdt{file,addr} var to hold dtb file name.
34105 Set PCI inbound memory region from CFG_MEMORY_{BUS,PHYS}.
34107 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34109 commit 7a1ac419fa0d2d23ddd08bd61d16896a9f33c933
34110 Author: Haiying Wang <Haiying.Wang@freescale.com>
34111 Date: Thu Aug 23 15:20:54 2007 -0400
34113 Enable L2 cache for MPC8568MDS board
34115 The L2 cache size is 512KB for 8568, print out the correct informaiton.
34117 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
34119 commit 94c47fdaf14cb29fa3fb4d4da2efdd96c803b46b
34120 Author: Jason Jin <Jason.jin@freescale.com>
34121 Date: Wed Aug 22 17:54:49 2007 +0800
34123 Remove the bios emulator binary files from MAI board
34125 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
34127 commit 7608d75f9c87c9eb5b3a43219d0506d3e979a13f
34128 Author: Kim Phillips <kim.phillips@freescale.com>
34129 Date: Tue Aug 21 17:00:17 2007 -0500
34131 support board vendor-common makefiles
34133 if a board/$(VENDOR)/common/Makefile exists, build it.
34135 also add the first such case, board/freescale/common/Makefile, to
34136 handle building board-shared EEPROM, PIXIS, and MDS-PIB code, as
34137 dictated by board configuration.
34139 thusly get rid of alternate build dir errors such as:
34141 FATAL: can't create /work/wd/tmp/u-boot-ppc/board/freescale/mpc8360emds/../common/pq-mds-pib.o: No such file or directory
34143 by putting the common/ mkdir command in its proper place (the common
34144 Makefile). Common bits from existing individual board Makefiles have
34147 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34149 commit ef8f20752712dc1cdbd86f47e3bd6e35f81c83fd
34150 Author: stefano babic <sbabic@denx.de>
34151 Date: Tue Aug 21 15:52:33 2007 +0200
34153 Fix: TFTP is not working on little endian systems
34155 TFTP does not work anymore after multicast tftp
34156 patch was applied on little endian systems.
34159 Signed-off-by: Stefano Babic <sbabic@denx.de>
34161 commit 5f470948570526e9186f053a3003da7719604e90
34162 Author: stefano babic <sbabic@denx.de>
34163 Date: Tue Aug 21 15:50:33 2007 +0200
34165 Fix MAC address setting in DM9000 driver.
34167 The logic to check if there is a correct MAC address in the DM9000
34168 EEPROM, added in the last patch, is wrong. Now the MAC address is
34169 always taken from the environment, even if a suitable MAC is present
34172 Signed-off-by: Stefano Babic <sbabic@denx.de>
34174 commit 4a8527ef086ec7c89f40674ef024ae6f988a614a
34175 Author: Martin Krause <martin.krause@tqs.de>
34176 Date: Tue Aug 21 12:40:34 2007 +0200
34178 MPC5xxx: fix some compiler warnings in USB code
34180 Fix the following warnings:
34181 - usb.c:xx: warning: function declaration isn't a prototype
34182 - usb_ohci.c:xxx: warning: passing argument 1 of '__fswab32' makes integer
34183 from pointer wihtout a cast
34185 Signed-off-by: Martin Krause <martin.krase@tqs.de>
34187 commit 16e23c3f5dab6937f5109365416808c7f15c122b
34188 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34189 Date: Mon Aug 20 23:55:33 2007 -0500
34191 fsl_pci_init - Remove self PCSRBAR allocation
34193 CPU physical address space was being wasted by allocating a
34194 PCSRBAR PCI inbound region to it's memory space.
34196 As a rule, PCSRBAR should be left alone since it does not affect
34197 transactions from self and other masters may have changed it.
34199 Signed-off-by: Ed Swarthout <ed.swarthout@freescale.com>
34201 commit 0e700ce03a23bb1921149bc77008ace7103d5289
34202 Author: Martin Krause <martin.krause@tqs.de>
34203 Date: Mon Aug 20 13:56:47 2007 +0200
34205 Fix compiler warning in include/s3c2410.h
34207 This patch fixes the "type qualifiers ignored on fuction return tpye"
34208 warning for include/s3c2410.h
34210 Signed-off-by: Martin Krause <martin.krause@tqs.de>
34212 commit 9bb8b209ed2058a5756ecbeb544c067e44a42aea
34213 Author: Dirk Behme <dirk.behme@googlemail.com>
34214 Date: Mon Aug 20 07:09:05 2007 +0200
34216 Fix compilation error for omap2420h4_config.
34218 omap2420h4 switched to cfi, so remove old (already disabled) flash.c
34219 and flash_probe() calls in env_flash.c.
34221 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
34223 commit 3bb342fc85d79dbb6b8c2039e7cdcddc82b8d90f
34224 Author: Kim Phillips <kim.phillips@freescale.com>
34225 Date: Fri Aug 10 14:34:14 2007 -0500
34227 fdt: remove unused OF_FLAT_TREE_MAX_SIZE references
34229 and make some minor corrections to the FDT part of the README.
34231 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34233 commit 6af2eeb1e99c2dcc584d4c5ab7fcae30a325f4de
34234 Author: Wolfgang Denk <wd@denx.de>
34235 Date: Wed Aug 29 01:32:05 2007 +0200
34237 Minor coding style cleanup.
34239 Signed-off-by: Wolfgang Denk <wd@denx.de>
34241 commit a861558c65f65f1cf1302f3a35e9db7686b9e1a3
34242 Author: Heiko Schocher <hs@pollux.denx.de>
34243 Date: Tue Aug 28 17:40:33 2007 +0200
34245 [UC101] Fix: if no CF in the board, U-Boot resets sometimes.
34247 Signed-off-by: Heiko Schocher <hs@denx.de>
34249 commit f98984cb194bb34dbe1db9429d3b51133af30d07
34250 Author: Heiko Schocher <hs@pollux.denx.de>
34251 Date: Tue Aug 28 17:39:14 2007 +0200
34253 IDE: - make ide_inb () and ide_outb () "weak", so boards can
34254 define there own I/O functions.
34255 (Needed for the pcs440ep board).
34256 - The default I/O Functions are again 8 Bit accesses.
34257 - Added CONFIG_CMD_IDE for the pcs440ep Board.
34259 Signed-off-by: Heiko Schocher <hs@denx.de>
34261 commit 2c05fd125744981e5f2828d24e66ccc20a77d25d
34262 Author: Semih Hazar <semih.hazar@indefia.com>
34263 Date: Mon Aug 20 19:00:01 2007 +0300
34265 AVR32: Change prototype of memset
34267 Signed-off-by: Semih Hazar <semih.hazar@indefia.com>
34268 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
34270 commit 9c02defc29b57945b600714cf61ddfd02b02fb14
34271 Author: Yuri Tikhonov <yur@emcraft.com>
34272 Date: Sat Aug 25 05:07:16 2007 +0200
34274 POST: limit memory test area to not touch global data anymore
34276 As experienced on lwmon5, on some boards the POST memory test can
34277 corrupt the global data buffer (bd). This patch fixes this issue
34278 by checking and limiting this area.
34280 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
34281 Signed-off-by: Stefan Roese <sr@denx.de>
34283 commit 75e1a84d483e36be10e206e539b028c4889e1158
34284 Author: Stefan Roese <sr@denx.de>
34285 Date: Fri Aug 24 15:41:42 2007 +0200
34287 ppc4xx: Add RTC POST test to lwmon5 board configuration
34289 Since this RTC POST test is taking quite a while to complete
34290 it's only initiated upon special keypress same as the complete
34293 Signed-off-by: Stefan Roese <sr@denx.de>
34295 commit d7bfa620037a6d2210159387571bdf93aa32c162
34296 Author: Stefan Roese <sr@denx.de>
34297 Date: Fri Aug 24 15:19:10 2007 +0200
34299 ppc4xx: Change GPIO signal for watchdog triggering on lwmon5
34301 Signed-off-by: Stefan Roese <sr@denx.de>
34303 commit c25dd8fc25e9ca3695db996a257d9ba4dab414db
34304 Author: Stefan Roese <sr@denx.de>
34305 Date: Thu Aug 23 11:02:37 2007 +0200
34307 ppc4xx: Add support for 2nd I2C EEPROM on lwmon5 board
34309 This patch adds support for the 2nd EEPROM (AT24C128) on the lwmon5
34310 board. Now the "eeprom" command can be used to read/write from/to this
34311 device. Additionally a new command was added "eepromwp" to en-/disable
34312 the write-protect of this 2nd EEPROM.
34314 The 1st EEPROM is not affected by this write-protect command.
34316 Signed-off-by: Stefan Roese <sr@denx.de>
34318 commit c64fb30e4c5976007d56fc1789c7a0666082b536
34319 Author: Stefan Roese <sr@denx.de>
34320 Date: Wed Aug 22 08:56:09 2007 +0200
34322 ppc4xx: Remove unused option CFG_INIT_RAM_OCM
34324 Signed-off-by: Stefan Roese <sr@denx.de>
34326 commit 3ad63878737a5a2b1e60825bf0a7d601d7a695e7
34327 Author: Stefan Roese <sr@denx.de>
34328 Date: Tue Aug 21 16:27:57 2007 +0200
34330 ppc4xx: Add matrix kbd support to lwmon5 board (440EPx based)
34332 This patch adds support for the matrix keyboard on the lwmon5 board.
34333 Since the implementation in the dsPCI is kind of compatible with the
34334 "old" lwmon board, most of the code is copied from the lwmon
34337 Signed-off-by: Stefan Roese <sr@denx.de>
34339 commit 3e66c078003607a7d1d214c15a5f262bc1b4032f
34340 Author: Wolfgang Denk <wd@denx.de>
34341 Date: Sun Aug 19 10:27:34 2007 +0200
34343 Fix some build errors.
34345 Signed-off-by: Wolfgang Denk <wd@denx.de>
34347 commit 05675735ef77dc23b5e0eb782bad1ff477b55e86
34348 Author: Wolfgang Denk <wd@denx.de>
34349 Date: Sat Aug 18 22:00:38 2007 +0200
34353 commit 79f240f7ecc0506b43ac50d1ea405ff6540d4d57
34354 Author: Kim Phillips <kim.phillips@freescale.com>
34355 Date: Thu Aug 16 22:52:39 2007 -0500
34357 lib_ppc: make board_add_ram_info weak
34359 platforms wishing to display RAM diagnostics in addition to size,
34360 can do so, on one line, in their own board_add_ram_info()
34363 this consequently eliminates CONFIG_ADD_RAM_INFO.
34365 Thanks to Stefan for the hint.
34367 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34369 commit 815b5bd5b18569917c3e04b9757511e6ed23b9f6
34370 Author: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
34371 Date: Fri Aug 17 12:43:44 2007 +0900
34373 PCI_READ_VIA_DWORD_OP: Fix *val uninitialized bug
34375 This patch has been sent on:
34378 Many users of PCI config read routines tend to ignore the function
34379 ret value, and are only concerned about the contents of *val. Based
34380 on this, pci_hose_read_config_{byte,word}_via_dword should initialize
34381 the *val on dword read error.
34383 Without this fix, for example, we'll go on scanning bus with vendor or
34384 header_type uninitialized. This brings many unnecessary config trials.
34386 Signed-off-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
34388 commit 26667b7fa05a8bf2fc65fb9f3230b02b1a10c367
34389 Author: Stefan Roese <sr@denx.de>
34390 Date: Sat Aug 18 14:37:52 2007 +0200
34392 ColdFire: Fix some remaining problems with CFG_CMD_
34394 Signed-off-by: Stefan Roese <sr@denx.de>
34396 commit 8280f6a1c43247616b68224675188e5ccd124650
34397 Author: Stefan Roese <sr@denx.de>
34398 Date: Sat Aug 18 14:33:02 2007 +0200
34400 Coding style cleanup
34402 Signed-off-by: Stefan Roese <sr@denx.de>
34404 commit 4a442d3186b31893b4f77c6e82f63c4517a5224b
34405 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34406 Date: Thu Aug 16 19:23:50 2007 -0500
34408 ColdFire: Add M5235EVB Platform for MCF523x
34410 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34412 commit 4cc1cd5941827a04cf5c51a07fcc42e8945894aa
34413 Author: Kim Phillips <kim.phillips@freescale.com>
34414 Date: Fri Aug 17 09:30:00 2007 -0500
34416 mpc83xx: fix typo in DDR2 programming
34418 introduced in the implement board_add_ram_info patch as I was cleaning out the
34419 magic numbers. sorry.
34421 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34423 commit e58fe95784d2514fc9c21028dc59f2b319a35d80
34424 Author: Kim Phillips <kim.phillips@freescale.com>
34425 Date: Thu Aug 16 22:53:09 2007 -0500
34427 mpc83xx: move freescale boards to boards/freescale
34429 includes build fixes.
34431 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34433 commit 5aa4ad8d8e7e9468219990c7875d5fdc9e962f47
34434 Author: Kim Phillips <kim.phillips@freescale.com>
34435 Date: Thu Aug 16 22:52:59 2007 -0500
34437 mpc83xx: suppress unused variable 'val8' warning
34439 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34441 commit bbea46f76f767b919070b4829bf34c86bd223248
34442 Author: Kim Phillips <kim.phillips@freescale.com>
34443 Date: Thu Aug 16 22:52:48 2007 -0500
34445 mpc83xx: implement board_add_ram_info
34447 add board_add_ram_info, to make memory diagnostic output more
34448 consistent. u-boot banner output now looks like:
34450 DRAM: 256 MB (DDR1, 64-bit, ECC on)
34452 and for boards with SDRAM on the local bus, a line such as this is
34455 SDRAM: 64 MB (local bus)
34457 also replaced some magic numbers with their equivalent define names.
34459 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34461 commit 14778585d1389d86d5846efec29e5fce892680ce
34462 Author: Tony Li <tony.li@freescale.com>
34463 Date: Fri Aug 17 10:35:59 2007 +0800
34465 mpc83xx: Split PIB init code from pci.c and add Qoc3 ATM card support
34467 The patch split the PIB init code from pci.c to a single file board/freescale/common/pq-mds-pib.c
34468 And add Qoc3 ATM card support for MPC8360EMDS and MPC832XEMDS board.
34470 Signed-off-by Tony Li <tony.li@freescale.com>
34472 commit 8ae158cd87a4a25722b27835261b6ff0fa2aa6a7
34473 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34474 Date: Thu Aug 16 15:05:11 2007 -0500
34476 ColdFire: Add M54455EVB for MCF5445x
34478 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34480 commit a1436a842654a8d3927d082a8ae9ee0a10da62d7
34481 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34482 Date: Thu Aug 16 13:20:50 2007 -0500
34484 ColdFire: Add M5253EVBE platform for MCF52x2
34486 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34488 commit a605aacd8324094199402816cc6d9124aba57b8d
34489 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34490 Date: Thu Aug 16 05:04:31 2007 -0500
34492 ColdFire: Add M5249EVB platform for MCF52x2
34494 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34496 commit f28e1bd9daa6de5eb33ae4822bda6b008ccb4e9e
34497 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34498 Date: Wed Aug 15 20:32:06 2007 -0500
34500 ColdFire: Update Freescale MCF52x2 platforms
34502 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34504 commit 870470dbf6f4bb9864e0d97aeedbc17c167c6d1c
34505 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34506 Date: Wed Aug 15 19:55:10 2007 -0500
34508 ColdFire: Update EB+MCF-EV123 platform
34510 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34512 commit aa93d859d9b1fcd8eea52d51b06e86c38f72111b
34513 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34514 Date: Wed Aug 15 19:46:38 2007 -0500
34516 ColdFire: update TASREG platform for MCF52x2
34518 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34520 commit a9505510bf56a9b5558248dd8b73ec9d9a1556a2
34521 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34522 Date: Wed Aug 15 19:45:51 2007 -0500
34524 ColdFire: update r5200 platform for MCF52x2
34526 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34528 commit 6cfd3c7bc813fb317ab7c0781f0d1874b1c0877c
34529 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34530 Date: Wed Aug 15 19:43:20 2007 -0500
34532 ColdFire: idmr platform MCF52x2 update
34534 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34536 commit 6706424d0bb851fb52af00cd1c3301e91ee7f2b0
34537 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34538 Date: Wed Aug 15 19:41:06 2007 -0500
34540 ColdFire: cobra5272 platform for MCF52x2 update
34542 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34544 commit 56115665b4a64c10c01440c57749b265e0908fa4
34545 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34546 Date: Wed Aug 15 19:38:15 2007 -0500
34548 ColdFire: MCF52x2 Header files update
34550 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34552 commit 83ec20bc4380eebddfde45da6e3a69a92d4db21d
34553 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34554 Date: Wed Aug 15 19:21:21 2007 -0500
34556 ColdFire: MCF52x2 update
34558 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34560 commit f52e78304dcc0ac459c0ea1fa5be275c7d1642cf
34561 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34562 Date: Wed Aug 15 18:46:11 2007 -0500
34564 ColdFire: MCF5329 update cache
34566 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34568 commit 7171977fb8fd77cfb6676953fa9a05789c450513
34569 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34570 Date: Wed Aug 15 15:40:20 2007 -0500
34572 ColdFire: MCF5329 header file clean up
34574 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34576 commit ab77bc547ba561c25ea34457ed17aa0b2f7c2723
34577 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34578 Date: Wed Aug 15 15:39:17 2007 -0500
34580 ColdFire: MCF5329 Update and cleanup
34582 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
34584 commit 10327dc5541f947c0cf7e31fef86c4706169607a
34585 Author: Andy Fleming <afleming@freescale.com>
34586 Date: Thu Aug 16 16:35:02 2007 -0500
34588 Add CONFIG_HAS_ETH0 to all boards with TSEC
34590 The 85xx code now relies on CONFIG_HAS_ETH0 to determine whether
34591 to update TSEC1's device-tree node, so we need to add it
34592 to all the boards with TSECs. Do this for 83xx and 86xx, too,
34593 since they will eventually do something similar.
34595 Signed-off-by: Andy Fleming <afleming@freescale.com>
34597 commit d64ee908a1b525e5bb2b4cbeb5c449ad6a469666
34598 Author: Kumar Gala <galak@kernel.crashing.org>
34599 Date: Thu Aug 16 15:05:04 2007 -0500
34601 Update MPC8544 DS PCI memory map
34603 The PCIe bus that the ULI M1575 is connected to has no possible way of
34604 needing more than the fixed amount of IO & Memory space needed by the ULI.
34606 So make it use far less IO & memory space and have it use the shared LAW. This
34607 free's up a LAW for PCIe1 IO space. Also reduce the amount of IO space needed
34610 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34612 commit ea5877e31ed63ade948fd1293895ec23fe01472e
34613 Author: Kumar Gala <galak@kernel.crashing.org>
34614 Date: Thu Aug 16 11:01:21 2007 -0500
34616 Fix up some fdt issues on 8544DS
34618 It looks like we had a merge issue that duplicated a bit of code
34619 in ft_board_setup. Also, we need to set CONFIG_HAS_ETH0 to get
34620 the MAC address properly set in the device tree on boot for TSEC1
34622 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
34624 commit 07bc20560cb9d3d186cca268c05c82762e8c55ad
34625 Author: Niklaus Giger <niklaus.giger@netstal.com>
34626 Date: Thu Aug 16 15:16:03 2007 +0200
34628 PPC4xx:HCU4/5 cleanup
34630 Minor cleanups to confirm to the u-boot coding style.
34631 Some german expressions -> english.
34632 HCU5 enforces a unique IP adress for a given slot in the rack.
34634 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
34636 commit 1e6b07c64967c1eb2cd84faa4c32bf2a769bc8eb
34637 Author: Niklaus Giger <niklaus.giger@netstal.com>
34638 Date: Thu Aug 16 15:16:02 2007 +0200
34640 PPC4xx:HCU4/5 cleanup ecc/sdram init
34642 Make ecc initialisation robust, as DDR2-ECC errors may be generated
34643 while zeroing the RAM.
34645 Return 16 bytes (a cacheline) less than the available memory, as the
34646 board and/or PPC440EPx might have problems accessing the last bytes.
34648 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
34650 commit d35b508a55508535b6e8445b718585d27df733d3
34651 Author: Kim Phillips <kim.phillips@freescale.com>
34652 Date: Wed Aug 15 22:29:56 2007 -0500
34654 fdt: suppress unused variable 'bd' warning
34656 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34658 commit 82bd9ee77490588d4da785d75829ca63d0176baf
34659 Author: Andy Fleming <afleming@freescale.com>
34660 Date: Wed Aug 15 20:06:50 2007 -0500
34662 Fix warnings from of_data copy fix
34664 Forgot to cast of_flat_tree to ulong.
34666 Signed-off-by: Andy Fleming <afleming@freescale.com>
34668 commit 7613afda77d5eec0f47d303025b0c661b70e4c73
34669 Author: Andy Fleming <afleming@freescale.com>
34670 Date: Wed Aug 15 20:03:44 2007 -0500
34672 Don't wait for disconnected TSECs
34674 The TSEC driver's PHY code waits a long time for autonegotiation to
34675 complete, even if the link is down. The PHY knows the link is
34676 down or up before autonegotiation completes, so we can short-circuit
34677 the process if the link is down.
34679 Signed-off-by: Andy Fleming <afleming@freescale.com>
34681 commit b96c83d4ae475a70ef2635cd0e748174c44c8601
34682 Author: Andy Fleming <afleming@freescale.com>
34683 Date: Wed Aug 15 20:03:34 2007 -0500
34685 Fix numerous bugs in the 8568 UEC support
34687 Actually, fixed a large bug in the UEC for *all* platforms.
34688 How did this ever work?
34690 uec_init() did not follow the spec for eth_init(), and returned
34691 0 on success. Switch it to return the link like tsec_init()
34694 The immap for the 8568 was defined based on MPC8568, rather than
34699 CONFIG_ETHPRIME was set to "Freescale GETH". Now is "FSL UEC0"
34701 Fixed a comment about the ranges for CONFIG_ETHPRIME if TSEC_ENET is
34704 Signed-off-by: Andy Fleming <afleming@freescale.com>
34706 commit 3a79013e2adda53332dfd0b511066a805e929a9d
34707 Author: Andy Fleming <afleming@freescale.com>
34708 Date: Wed Aug 15 20:03:25 2007 -0500
34710 Define tsec flag values in config files
34712 The tsec_info structure and array has a "flags" field for each
34713 ethernet controller. This field is the only reason there are
34714 settings. Switch to defining TSECn_FLAGS for each controller
34715 in the config header, and we can greatly simplify the array, and
34716 also simplify the addition of future boards.
34718 Signed-off-by: Andy Fleming <afleming@freescale.com>
34720 commit ec7238229507e7f47533a611ea8c53319d234cf3
34721 Author: Andy Fleming <afleming@freescale.com>
34722 Date: Wed Aug 15 20:03:13 2007 -0500
34724 Add support for building all boards with a TSEC
34726 Changes to the TSEC driver affect almost all 83xx, 85xx, and 86xx boards.
34727 Now we can do a MAKEALL test on all of them!
34729 Signed-off-by: Andy Fleming <afleming@freescale.com>
34731 commit 10aaf716cb0dc6614df54ef78bed5144afd23ef8
34732 Author: Andy Fleming <afleming@freescale.com>
34733 Date: Wed Aug 15 17:30:56 2007 -0500
34735 Fix of_data copying for CONFIG_OF_FLAT_TREE-using boards
34737 The fix, "Fix where the #ifdef CFG_BOOTMAPSZ is placed"
34738 neglected to *also* put the code inside the similar #ifdef
34739 for CONFIG_OF_FLAT_TREE.
34741 Signed-off-by: Andy Fleming <afleming@freescale.com>
34743 commit 78f9fef7f406078c8bf7191e665a73f795157746
34744 Author: Scott Wood <scottwood@freescale.com>
34745 Date: Wed Aug 15 15:46:46 2007 -0500
34747 mpc885ads: Don't define CONFIG_BZIP2.
34749 bzip2 requires a significant chunk of malloc space, and there isn't
34750 enough room on mpc885ads (with only 8MB RAM) for both bzip2's malloc area
34751 and a downloaded image at 0x400000.
34753 Signed-off-by: Scott Wood <scottwood@freescale.com>
34755 commit 002275a3ed8b114885f6702d6d544d0780dfe689
34756 Author: Michal Simek <Monstr@seznam.cz>
34757 Date: Thu Aug 16 08:54:10 2007 +0200
34759 Bios emulator - fix microblaze toolchain problem
34761 microblaze CPU have problem with bios_emulator code.
34762 Microblaze toolchain doesn't support PRAGMA PACK.
34764 Signed-off-by: Michal Simek <monstr@monstr.eu>
34766 commit a5a38f4fd7e5366d706ff6a985f9b6715ddbc98b
34767 Author: Wolfgang Denk <wd@denx.de>
34768 Date: Thu Aug 16 11:51:04 2007 +0200
34770 Minor Coding Style fix; Update CHANGELOG file.
34772 Signed-off-by: Wolfgang Denk <wd@denx.de>
34774 commit 8fb6e80c06849e3013ac5c9350d8ed9e52967991
34775 Author: Stefan Roese <sr@denx.de>
34776 Date: Thu Aug 16 11:21:49 2007 +0200
34778 ppc4xx: Remove #warning in esd auto_update.c
34780 Signed-off-by: Stefan Roese <sr@denx.de>
34782 commit 2d78074d2e806edc380c1464eb9e5df335ece65e
34783 Author: Stefan Roese <sr@denx.de>
34784 Date: Fri Jun 22 17:32:28 2007 +0200
34786 ppc7xx: Update CPCI750 board
34788 This small CPCI750 update extends the board specific command
34789 "show_config" to display the Marvell strapping registers and
34790 extends the PCI IDE controller.
34792 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
34793 Signed-off-by: Stefan Roese <sr@denx.de>
34795 commit 78cff50edba6b1508eb15c2f53ce966ac891eb9e
34796 Author: Michal Simek <monstr@monstr.eu>
34797 Date: Thu Aug 16 10:46:28 2007 +0200
34799 [FIX] Changes for bios_emulator code for others architecture
34801 commit 6e0e2253f039344f8ebd2787285fdba90e6714e8
34802 Author: Michal Simek <monstr@monstr.eu>
34803 Date: Thu Aug 16 10:45:09 2007 +0200
34805 [FIX] Remove unused include file
34807 commit 9de469bd960cc1870bb40d6672ed42726b8b50d7
34808 Author: Stefan Roese <sr@denx.de>
34809 Date: Thu Aug 16 10:18:33 2007 +0200
34811 ppc4xx: Only enable POST FPU test on Sequoia and not Rainier
34813 Signed-off-by: Stefan Roese <sr@denx.de>
34815 commit 6da0c5bd4a53e40eb4f7eb72a4c051ecabad783c
34816 Author: Stefan Roese <sr@denx.de>
34817 Date: Thu Aug 16 09:54:51 2007 +0200
34819 Add missing rainier (PPC440GRx) target to MAKEALL and MAINTAINERs files
34821 Signed-off-by: Stefan Roese <sr@denx.de>
34823 commit 02ba7022f62bb75908296c58c63866e1d294b69a
34824 Author: Stefan Roese <sr@denx.de>
34825 Date: Thu Aug 16 09:52:29 2007 +0200
34827 ppc4xx: Update Sequoia/Rainier bootstrap command
34829 As suggested by David Mitchell, here an update for the Sequoia/Rainier
34832 Signed-off-by: Stefan Roese <sr@denx.de>
34834 commit 35cc4e4823668e8745854899cfaedd4489beb0ef
34835 Author: Kim Phillips <kim.phillips@freescale.com>
34836 Date: Wed Aug 15 22:30:39 2007 -0500
34838 mpc83xx: enable libfdt by default on freescale boards
34840 this enables libfdt code by default for the
34841 freescale mpc8313erdb, mpc832xemds, mpc8349emds,
34842 mpc8349itx and gp boards.
34844 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34846 commit 3fde9e8b22cfbd7af489214758f9839a206576cb
34847 Author: Kim Phillips <kim.phillips@freescale.com>
34848 Date: Wed Aug 15 22:30:33 2007 -0500
34850 mpc83xx: migrate remaining freescale boards to libfdt
34852 this adds libfdt support code for the freescale
34853 mpc8313erdb, mpc832xemds, mpc8349emds, mpc8349itx,
34856 Boards remain compatible with OF_FLAT_TREE.
34858 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34860 commit 6a16e0dfcc4119b46adb1dce2d6c8fb3c5d108e1
34861 Author: Kim Phillips <kim.phillips@freescale.com>
34862 Date: Wed Aug 15 22:30:26 2007 -0500
34864 mpc83xx: move common /memory node update mechanism to cpu.c
34866 also adds common prototypes to include/common.h.
34868 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34870 commit 8f9e0e9f339aee4ce31a338d5f27356eb5457f85
34871 Author: Kim Phillips <kim.phillips@freescale.com>
34872 Date: Wed Aug 15 22:30:19 2007 -0500
34874 mpc83xx: remaining 8360 libfdt fixes
34876 PCI clocks and QE frequencies weren't being updated, and the core clock
34877 was being updated incorrectly. This patch also adds a /memory node if
34878 it doesn't already exist prior to update.
34880 plus some cosmetic trimming to single line comments.
34882 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34884 commit f4b2ac5ed9aaff9920d487bff8a59696c083a524
34885 Author: Kim Phillips <kim.phillips@freescale.com>
34886 Date: Wed Aug 15 22:30:12 2007 -0500
34888 mpc83xx: fix UEC2->1 typo in libfdt setup code
34890 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34892 commit 19fa1c35368484d4ed10ddce8a7793c21862e3a3
34893 Author: Kim Phillips <kim.phillips@freescale.com>
34894 Date: Wed Aug 15 22:30:05 2007 -0500
34896 mpc83xx: add MAINTAINER and MAKEALL entries for the mpc8323erdb
34898 and reorder the existing 83xx maintainers alpha.
34900 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
34902 commit 5b4de9309d7a03aa1db2e5391ab696363391f460
34903 Author: Michal Simek <monstr@monstr.eu>
34904 Date: Wed Aug 15 21:15:05 2007 +0200
34906 [FIX] Resolve problem with warnings
34907 microblaze toolchain don't support PRAGMA PACK.
34909 commit d1ed28cf36ab6b1d4c479809de7252bf53d2f2d4
34910 Author: Michal Simek <monstr@monstr.eu>
34911 Date: Wed Aug 15 21:05:07 2007 +0200
34913 [FIX] Correction command setting for Microblaze boards
34915 commit 7aa63d8cd30ab20ac2fd1ab86e60471de8b1f1e5
34916 Author: Michal Simek <monstr@monstr.eu>
34917 Date: Wed Aug 15 21:03:41 2007 +0200
34919 [FIX] Correction command definition
34921 commit 30b52df9e906bf0e465916c2c6bb5192b438e0b8
34922 Author: Jon Loeliger <jdl@freescale.com>
34923 Date: Wed Aug 15 11:55:35 2007 -0500
34925 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
34927 Remove a leftover in net/tftp.c while we're at it.
34929 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34931 commit 4ce917742b1e48faa9bf9a9757545e56fb4cfe44
34932 Author: Jon Loeliger <jdl@freescale.com>
34933 Date: Wed Aug 15 12:20:40 2007 -0500
34935 Move the MPC8641HPCN board under board/freescale.
34937 Minor path corrections needed to ensure buildability.
34939 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34941 commit 8662577fe36fdb6a44b55b998d9daac6392a736a
34942 Author: Jon Loeliger <jdl@freescale.com>
34943 Date: Wed Aug 15 11:46:22 2007 -0500
34945 86xx: Fix lingering CFG_CMD_* references in sbc8641d.h
34947 Remove a leftover in net/tftp.c while we're at it.
34949 Signed-off-by: Jon Loeliger <jdl@freescale.com>
34951 commit 210f463c71917b7a4495c2103c228b9c179ae64d
34952 Author: Jerry Van Baren <gvb.uboot@gmail.com>
34953 Date: Wed Aug 15 11:13:15 2007 -0400
34955 Fix where the #ifdef CFG_BOOTMAPSZ is placed.
34957 Commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924 "Fix initrd/dtb
34958 interaction" put the new code outside of the #if defined(CONFIG_OF_LIBFDT)
34959 when it should have gone inside of the conditional. As a result, it
34960 broke non-LIBFDT board builds.
34962 Also added a missing "not." to the comment.
34964 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
34966 commit 0e19209767194a97cec6d93dba9e64d1da8d548e
34967 Author: Niklaus Giger <niklaus.giger@netstal.com>
34968 Date: Wed Aug 15 12:14:23 2007 +0200
34970 PPC4xx:HCU4/5-Board fix compile warning
34972 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
34974 commit 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7
34975 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
34976 Date: Tue Aug 14 14:06:45 2007 -0500
34978 Fix malloc size error in ahci_init_one.
34980 Typically this causes scsi init to corrupt the
34981 devlist and break the coninfo command.
34982 Fix a compiler size warning.
34984 Signed-off-by: Jason Jin <jason.jin@freescale.com>
34985 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
34986 Acked-by: Andy Fleming <afleming@freescale.com>
34988 commit b361acd64fd2525c081b9b288b0804efe209c0e9
34989 Author: ksi@koi8.net <ksi@koi8.net>
34990 Date: Tue Aug 14 10:02:16 2007 -0700
34992 TI DaVinci - fix unsupported %hhx format
34994 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
34996 commit f01dbb5424a81453c81190dd30e945891466f621
34997 Author: Wolfgang Denk <wd@denx.de>
34998 Date: Tue Aug 14 18:42:36 2007 +0200
35000 Coding style cleanup. Update CHANGELOG.
35002 Signed-off-by: Wolfgang Denk <wd@denx.de>
35004 commit 073e1b509980cefe6f53c2d7fbbcd135df1e3924
35005 Author: Andy Fleming <afleming@freescale.com>
35006 Date: Tue Aug 14 10:32:59 2007 -0500
35008 Fix initrd/dtb interaction
35010 The original code would wrongly relocate the blob to be right before
35011 the initrd if it existed. The blob *must* be within CFG_BOOTMAPSZ,
35012 if it is defined. So we make two changes:
35014 1) flag the blob for relocation whenever its address is above BOOTMAPSZ
35016 2) If the blob is being relocated, relocate it before kbd, not initrd
35018 Signed-off-by: Andy Fleming <afleming@freescale.com>
35020 commit e54b970173769307a116bd34028b6d0c2eea2a4e
35021 Author: Peter Pearse <peter.pearse@arm.com>
35022 Date: Tue Aug 14 15:40:00 2007 +0100
35024 Supply spi interface in at45.c
35026 commit 4ce846ec59f36b85d6644a769690ad3feb667575
35027 Author: Stefan Roese <sr@denx.de>
35028 Date: Tue Aug 14 15:12:01 2007 +0200
35030 POST: Fix merge problem
35032 Signed-off-by: Stefan Roese <sr@denx.de>
35034 commit 429d9571f60631ae8a2fe12b11be4c75b0c2b37c
35035 Author: Stefan Roese <sr@denx.de>
35036 Date: Tue Aug 14 15:03:17 2007 +0200
35038 Coding style cleanup
35040 Signed-off-by: Stefan Roese <sr@denx.de>
35042 commit 779e975117a75e91fcebe226a63104dbfb924ab1
35043 Author: Stefan Roese <sr@denx.de>
35044 Date: Tue Aug 14 14:44:41 2007 +0200
35046 ppc4xx: Add initial Zeus (PPC405EP) board support
35048 Signed-off-by: Stefan Roese <sr@denx.de>
35050 commit c5a172a5fd636c12467429e3f7910e53773979c6
35051 Author: Stefan Roese <sr@denx.de>
35052 Date: Tue Aug 14 14:41:55 2007 +0200
35054 POST: Add option for external ethernet loopback test
35056 When CFG_POST_ETHER_EXT_LOOPBACK is defined, the ethernet POST
35057 is not done using an internal loopback connection, but by assuming
35058 that an external loopback connector is plugged into the board.
35060 Signed-off-by: Stefan Roese <sr@denx.de>
35062 commit eb2b4010ae426245172988804ee8d9193fb41038
35063 Author: Stefan Roese <sr@denx.de>
35064 Date: Tue Aug 14 14:39:44 2007 +0200
35066 POST: Add ppc405 support to cache and UART POST
35068 Signed-off-by: Stefan Roese <sr@denx.de>
35070 commit 0c42f36f15074bd9808a7dbd7ef611fad9bf537c
35071 Author: Peter Pearse <peter.pearse@arm.com>
35072 Date: Tue Aug 14 10:46:32 2007 +0100
35074 Replace lost end of at45.c.
35076 commit 65d7ada64557e76094b4fd3bad30a0f18f5fb2b2
35077 Author: Peter Pearse <peter.pearse@arm.com>
35078 Date: Tue Aug 14 10:30:06 2007 +0100
35080 Update Makefiles for merged and split at45.c.
35082 commit 3454cece2db57cb9eb7087995f7e73066a163f71
35083 Author: Peter Pearse <peter.pearse@arm.com>
35084 Date: Tue Aug 14 10:21:06 2007 +0100
35086 Delete the merged files.
35088 commit dcbfd2e5649f97aa04fbbc6ea2b008aa4486e225
35089 Author: Peter Pearse <peter.pearse@arm.com>
35090 Date: Tue Aug 14 10:14:05 2007 +0100
35094 commit d4fc6012fd0a5c211b825691f44b06f8032c0551
35095 Author: Peter Pearse <peter.pearse@arm.com>
35096 Date: Tue Aug 14 10:10:52 2007 +0100
35098 Add MACH_TYPE records for several AT91 boards.
35099 Merge to two at45.c files into a common file, split to at45.c and spi.c
35100 Fix spelling error in DM9161 PHY Support.
35101 Initialize at91rm9200 board (and set LED).
35102 Add PIO control for at91rm9200dk LEDs and Mux.
35103 Change dataflash partition boundaries to be compatible with Linux 2.6.
35105 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
35106 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
35108 commit 4ef35e53c693556c54b0c22d6f873de87bade253
35109 Author: Wolfgang Denk <wd@denx.de>
35110 Date: Tue Aug 14 09:54:46 2007 +0200
35112 Coding style cleanup, update CHANGELOG
35114 Signed-off-by: Wolfgang Denk <wd@denx.de>
35116 commit 85eb5caf6b906f7ec5b54814e8c7c74f55986bb7
35117 Author: Wolfgang Denk <wd@denx.de>
35118 Date: Tue Aug 14 09:47:27 2007 +0200
35120 Coding style cleanup; rebuild CHANGELOG
35122 commit 7f3f2bd2dc08e0b05e185662ca2e2d283757104a
35123 Author: Randy Vinson <rvinson@linuxbox.(none)>
35124 Date: Tue Feb 27 19:42:22 2007 -0700
35126 85xxCDS: Add make targets for legacy systems.
35128 The PCI ID select values on the Arcadia main board differ depending
35129 on the version of the hardware. The standard configuration supports
35130 Rev 3.1. The legacy target supports Rev 2.x.
35132 Signed-off-by Randy Vinson <rvinson@mvista.com>
35134 commit e41094c7e38177c755fbd9b182018069614f080d
35135 Author: Andy Fleming <afleming@freescale.com>
35136 Date: Tue Aug 14 01:50:09 2007 -0500
35138 85xxCDS: Enable the VIA PCI-to-ISA bridge.
35140 Author: Randy Vinson <rvinson@linuxbox.(none)>
35142 Enable the PCI-to-ISA bridge in the VIA Southbridge located on the
35143 Arcadia main board.
35145 Signed-off-by: Randy Vinson <rvinson@mvista.com>
35146 Signed-off-by: York Sun <yorksun@freescale.com>
35148 commit da9d4610d76e52c4d20a8f3d8433439a7fcf5b71
35149 Author: Andy Fleming <afleming@freescale.com>
35150 Date: Tue Aug 14 00:14:25 2007 -0500
35152 Add support for UEC to 8568
35154 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
35155 Signed-off-by: Andy Fleming <afleming@freescale.com>
35157 commit c59e4091ffe0148398b9e9ff14a019ea038b7432
35158 Author: Haiying Wang <Haiying.Wang@freescale.com>
35159 Date: Tue Jun 19 14:18:34 2007 -0400
35161 Add PCI support for MPC8568MDS board
35163 This patch is against u-boot-mpc85xx.git of www.denx.com
35165 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
35166 Signed-off-by: Ebony Zhu <ebony.zhu@freescale.com>
35168 commit d111d6382c99fdea08c2312eeeae8786945e189a
35169 Author: Haiying Wang <Haiying.Wang@freescale.com>
35170 Date: Tue Jun 19 14:18:32 2007 -0400
35172 Empirically set cpo and clk_adjust for mpc85xx DDR2 support
35174 This patch is against u-boot-mpc85xx.git of www.denx.com
35176 Setting cpo to 0x9 for frequencies higher than 333MHz is verified on
35177 both MPC8548CDS board and MPC8568MDS board, especially for supporting
35180 Setting clk_adjust to 0x6(3/4 late cycle) for MPC8568MDS board is for
35181 DDR2 on all current board versions especially ver 1.92 or later to bring
35184 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
35186 commit 3db0bef59eab1155801618cef5c481e97553b597
35187 Author: Kumar Gala <galak@kernel.crashing.org>
35188 Date: Tue Aug 7 18:07:27 2007 -0500
35190 Use an absolute address when jumping out of 4k boot page
35192 On e500 when we leave the 4k boot page we should use an absolute address since
35193 we don't know where the board code may want us to be really running at.
35195 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
35197 commit 39980c610c9a4c381907c9e1d1b9c0e1c0dca57a
35198 Author: Andy Fleming <afleming@freescale.com>
35199 Date: Mon Aug 13 14:49:59 2007 -0500
35201 MPC85xx BA bits not set for 3-bit bank address DIMM
35203 The current implementation does not set the number of bank address bits
35204 (BA) in the processor. The default assumes 2 logical bank bits. This
35205 works fine for a DIMM that uses devices with 4 internal banks (SPD
35206 byte17 = 0x4) but needs to be set appropriately for a DIMM that uses
35207 devices with 8 internal banks (SPD byte17 = 0x8).
35209 Signed-off-by: Greg Davis <DavisG@embeddedplanet.com>
35211 commit 6c543597bb4b1ecf5d8589f7abb0f39929fb7fd1
35212 Author: Andy Fleming <afleming@freescale.com>
35213 Date: Mon Aug 13 14:38:06 2007 -0500
35215 Fix minor 85xx warnings
35217 Some patches had inserted warnings into the build:
35218 * mpc8560ads declared data without using it
35219 * cpu_init declared ecm and immap without using it in all CONFIGs
35220 * MPC8548CDS.h had its default filenames changed so that they contained
35221 "\m" in the paths. Made the defaults not Windows-specific (or
35224 Signed-off-by: Andy Fleming <afleming@freescale.com>
35226 commit f2cff6b104f82b993bef6086ce0c97159bbe1add
35227 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35228 Date: Fri Jul 27 01:50:52 2007 -0500
35230 8548cds PCIE support.
35232 Make the early L1 cache stack region guarded to prevent speculative
35233 fetches outside the locked range.
35235 Use _PHYS defines, not _MEM for cpu-side PCI memory mapped regions.
35236 init.S whitespace cleanup.
35238 Allow TEXT_BASE value to be specified on command line. This allows it
35239 to be set to 0xfffc0000 which cuts the uboot binary in half.
35241 Clear and enable lbc and ecm errors.
35243 Update last_busno in device-tree for pci and pcie.
35245 Remove load of obsolete cpu/mpc85xx/pci.0
35247 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35248 Acked-by: Andy Fleming <afleming@freescale.com>
35250 commit 837f1ba05cfb248aba5ab8e1fb1bfeefa07d5962
35251 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35252 Date: Fri Jul 27 01:50:51 2007 -0500
35254 8544ds PCIE support
35256 PCI1 LAW mapping should use CFG_PCI1_MEM_PHY and not _BASE address.
35258 Enable LBC and ECM errors and clear error registers.
35260 Add tftpflash env var to get uboot from tftp server and flash it.
35262 Add pci/pcie convenience env vars to display register space:
35263 "run pcie3regs" to see all pcie3 ccsr registers
35264 "run pcie3cfg" to see all cfg registers
35265 Whitespace cleanup and MPC8544DS.h
35267 Enable CONFIG_INTERRUPTS.
35269 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35270 Acked-by: Andy Fleming <afleming@freescale.com>
35272 commit 61a21e980a7b9188424d04f1c265fdc5c21c7e85
35273 Author: Andy Fleming <afleming@freescale.com>
35274 Date: Tue Aug 14 01:34:21 2007 -0500
35276 85xx start.S cleanup and exception support
35278 From: Ed Swarthout <Ed.Swarthout@freescale.com>
35280 Support external interrupts from platform to eliminate system hangs.
35281 Define CONFIG_INTERRUPTS board configure option to enable.
35282 Enable ecm, ddr, lbc, and pci/pcie error interrupts in PIC.
35284 Remove extra cpu initialization redundant with hardware initialization.
35285 Whitespace cleanup.
35287 Define and use _START_OFFSET consistent with other processors using
35290 Move additional code from .text to boot page to make room for
35291 exception vectors at start of image.
35293 Handle Machine Check, External and Critical exceptions.
35295 Fix e500 machine check error determination in traps.c
35297 TEXT_BASE can now be 0xfffc_0000 - which cuts binary image in half.
35299 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35300 Acked-by: Andy Fleming <afleming@freescale.com>
35302 commit 7bd30fc4a6475b41d6679ae3aafc9fa505260c47
35303 Author: Andy Fleming <afleming@freescale.com>
35304 Date: Tue Aug 14 01:33:18 2007 -0500
35306 Add MPC8544DS README
35308 Signed-off-by: Andy Fleming <afleming@freescale.com>
35310 commit 40c7f9b0de4e300370adfc704128fa0f79a143b6
35311 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35312 Date: Fri Jul 27 01:50:48 2007 -0500
35314 85xx allow debugger to configure ddr.
35316 Only check for mpc8548 rev 1 when compiled for 8548.
35318 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35319 Acked-by: Andy Fleming <afleming@freescale.com>
35321 commit 29372ff38c5baab7d0e3a8c14fe11fa194a38704
35322 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35323 Date: Fri Jul 27 01:50:47 2007 -0500
35325 mpc85xx L2 cache reporting and SRAM relocation option.
35327 Allow debugger to override flash cs0/cs1 settings to enable alternate
35330 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35331 Acked-by: Andy Fleming <afleming@freescale.com>
35333 commit 41f0f8fb1ab92f0cba7d329de90070f822f8299f
35334 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35335 Date: Fri Jul 27 01:50:46 2007 -0500
35337 e500 needs ppc_asm.tmp MCK_EXCEPTION
35339 Always define MCK_EXCEPTION macro - so e500 can use it too.
35341 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35342 Acked-by: Andy Fleming <afleming@freescale.com>
35344 commit 53a5c424bf8655b7b4e2c305a441963259a26a81
35345 Author: David Updegraff <dave@cray.com>
35346 Date: Mon Jun 11 10:41:07 2007 -0500
35348 multicast tftp: RFC2090
35350 Implemented IETF RFC2090, Multicast TFTP. Initial implementation
35351 on Realtek RTL8139 and Freescale TSEC.
35353 Signed-off-by: David Updegraff <dave@cray.com>
35354 Signed-off-by: Ben Warren <bwarren@qstreams.com>
35356 commit 5d110f0aa69f065ee386ec1840dfee1e8cc46bc1
35357 Author: Wilson Callan <wcallan@savantav.com>
35358 Date: Sat Jul 28 10:56:13 2007 -0400
35360 New CONFIG_BOOTP_SERVERIP option
35362 Added CONFIG_BOOTP_SERVERIP to allow the tftp server to be different
35363 from the bootp server
35365 Signed-off-by: Wilson Callan <wcallan@savantav.com>
35366 Signed-off-by: Ben Warren <bwarren@qstreams.com>
35368 commit 50cca8b976ec74069860208c36e64ce8f4d5e4c1
35369 Author: Mike Rapoport <mike@compulab.co.il>
35370 Date: Sun Aug 12 08:48:27 2007 +0300
35372 Add ability to take MAC address from the environment to DM9000 driver
35374 Signed-off-by: Mike Rapoport <mike@compulab.co.il>
35375 Signed-off-by: Ben Warren <bwarren@qstreams.com>
35377 commit be5d72d10d47609326226225181e301fb9a33b58
35378 Author: Wolfgang Denk <wd@denx.de>
35379 Date: Mon Aug 13 21:57:53 2007 +0200
35381 Minor coding style cleanup. Update CHANGELOG.
35383 Signed-off-by: Wolfgang Denk <wd@denx.de>
35385 commit cca34967cbd13ff6bd352be29e3f1cc88ab24c05
35386 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
35387 Date: Sat Aug 11 06:54:58 2007 -0500
35389 Modify SBC8641D to use new Freescale PCI routines
35391 PCI-Express sockets 1 and 2 verified working with Intel Pro/1000 PT
35394 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
35395 Signde-off-by: Jon Loeliger <jdl@freescale.com>
35397 commit a08458303e7f9db67f296980036d3292c35cb45c
35398 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
35399 Date: Fri Jun 29 18:38:51 2007 +0200
35401 atmel_mci: Fix data timeout value
35403 Calculate the data timeout based on values from the CSD instead of
35404 just using a hardcoded DTOR value. This is a backport of a similar fix
35405 in BSP 2.0, with one additional fix: the DTOCYC value is rounded up
35408 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35410 commit 0ba8eed28b575626b17e0a7882f923b83e0d7584
35411 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
35412 Date: Mon Aug 13 17:22:31 2007 +0200
35414 AVR32: Include <div64.h> instead of <asm/div64.h>
35416 include/asm-avr32/div64.h was recently moved to include/div64.h, but
35417 cpu/at32ap/interrupts.c wasn't properly updated (an earlier version of
35418 the patch was merged perhaps?)
35420 This patch updates cpu/at32ap/interrupts.c so that the avr32 port
35423 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35425 commit f0d1246ed7cb5a88522244c596d7ae7e6f161283
35426 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
35427 Date: Wed Jun 27 13:34:26 2007 +0200
35429 atmel_mci: Use 512 byte blocksize if possible
35431 Instead of always using the largest blocksize the card supports, check
35432 if it can support smaller block sizes and use 512 bytes if possible.
35433 Most cards do support this, and other parts of u-boot seem to have
35434 trouble with block sizes different from 512 bytes.
35436 Also enable underrun/overrun protection.
35438 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
35439 Acked-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
35441 commit 273db7e1bdd1937e32f1d4507321bb721ebd3118
35442 Author: Stefan Roese <sr@denx.de>
35443 Date: Mon Aug 13 09:05:33 2007 +0200
35445 ppc4xx: Fix problem in PLL clock calculation
35447 This patch was originall provided by David Mitchell <dmitchell@amcc.com>
35448 and fixes a bug in the PLL clock calculation.
35450 Signed-off-by: Stefan Roese <sr@denx.de>
35452 commit 9986bc3e40e899bea372a99a2bca4071bdf2e24b
35453 Author: Wolfgang Denk <wd@denx.de>
35454 Date: Sun Aug 12 21:34:50 2007 +0200
35458 commit 77d19a8bf3b0b1e401cb9f23c81e2ef419705c1a
35459 Author: Wolfgang Denk <wd@denx.de>
35460 Date: Sun Aug 12 21:34:34 2007 +0200
35462 Minor alignment of output, 2nd try.
35463 Also update CHANGELOG
35465 Signed-off-by: Wolfgang Denk <wd@denx.de>
35467 commit 6b309f22a724fad8418e811751a0741b893419cf
35468 Author: Wolfgang Denk <wd@denx.de>
35469 Date: Sun Aug 12 20:35:49 2007 +0200
35471 Minor alignment of output
35473 Signed-off-by: Wolfgang Denk <wd@denx.de>
35475 commit 6f6d7b9c8559e241e8d232621542b8b59699b07b
35476 Author: Wolfgang Denk <wd@denx.de>
35477 Date: Sun Aug 12 18:28:18 2007 +0200
35479 Cleanup output on ADS5121 board
35481 Signed-off-by: Wolfgang Denk
35483 commit a4d2636f2a859245ed3a401f26189da2dfda4ceb
35484 Author: Wolfgang Denk <wd@denx.de>
35485 Date: Sun Aug 12 15:11:38 2007 +0200
35487 Adapt board configuration and fix kernel crash on MCC200 board.
35489 The update procedure was modified to turn off the USB subsystem
35490 before exit for MCC200 and TRAB. This is necessary as otherwise the
35491 USB controller continues to write periodically to system memory!
35493 MCC200-specific notes:
35494 - the patch disables the magic key check for MCC200
35495 - the patch contains the configuration changes made
35496 for the new revision of the board.
35498 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
35499 Signed-off-by: Wolfgang Denk <wd@denx.de>
35501 commit e27f3a6efb9db5a533223b05c629ff4ac8d921bf
35502 Author: Wolfgang Denk <wd@denx.de>
35503 Date: Sun Aug 12 14:47:54 2007 +0200
35505 Adjust default configuration of ADS5121 board.
35507 Signed-off-by: Wolfgang Denk <wd@denx.de>
35509 commit afaac86fe2948ac84cd9a12bbed883b3c683e7d9
35510 Author: Wolfgang Denk <wd@denx.de>
35511 Date: Sun Aug 12 14:27:39 2007 +0200
35513 Clean up some remaining CFG_CMD_ -> CONFIG_CMD_ issues.
35515 Signed-off-by: Wolfgang Denk <wd@denx.de>
35517 commit 5fe6be6208dda852c3564e384bd78d75784dea3e
35518 Author: Gerald Van Baren <vanbaren@cideas.com>
35519 Date: Tue Aug 7 21:14:22 2007 -0400
35521 Improve error print messages.
35523 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35525 commit 99dffca3b7590a16a00bc475c860b67b2a3f1462
35526 Author: Kim Phillips <kim.phillips@freescale.com>
35527 Date: Tue Jul 17 13:57:04 2007 -0500
35529 fdt: allow for builds that don't want env and bd_t nodes
35531 protect fdt_env and fdt_bd_t invocations, fix codingstyle while in the
35534 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35536 commit 91148bf7aeba142d6f348805db7625db7da64d6f
35537 Author: Kim Phillips <kim.phillips@freescale.com>
35538 Date: Tue Jul 17 13:56:53 2007 -0500
35540 fdt: do board setup based on fdt address specified on bootm line
35542 The last fdt patch to bootm did board setup based on the address
35543 specified by a prior fdt address command invocation. The bootm
35544 code, as its call to fdt_chosen does, should use the fdt specified
35545 by the user on the bootm command. Note this restores full
35546 functionality for the 8360's existing default boot environment
35547 values, e.g. 'run nfsboot' (i.e. no having to 'fdt addr $fdtaddr'
35548 before booting a kernel).
35550 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35552 commit e125a2ffc209dd34794e326c7175658253beadf3
35553 Author: Gerald Van Baren <vanbaren@cideas.com>
35554 Date: Tue Jul 10 20:40:39 2007 -0400
35556 Call ft_board_setup() from the bootm command.
35558 In the patch titled "Create new fdt boardsetup command..." I removed the
35559 call to ft_board_setup() from the routine fdt_chosen(), but I forgot
35560 to add a direct call back into cmd_bootm.c
35562 This fixes the oversight by adding the direct call to the bootm command.
35564 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35566 commit fd61e55dd8cb52ce3ff91b3917af26e24b6b0845
35567 Author: Gerald Van Baren <vanbaren@cideas.com>
35568 Date: Mon Jun 25 23:25:28 2007 -0400
35570 Create new fdt boardsetup command, fix bug parsing [] form of set values.
35572 Previously ft_board_setup() was called by fdt_chosen() which was not
35573 really correctly structured. This splits ft_board_setup() out by creating
35574 a new fdt boardsetup command.
35576 Fix a bug when parsing fdt set command values which have the square
35577 bracket form [00 11 22 33] - the length was updated incorrectly in when
35580 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35582 commit 6f35ded9e85493595e0eb66a82b502a95326d049
35583 Author: Gerald Van Baren <vanbaren@cideas.com>
35584 Date: Mon Jun 25 20:55:58 2007 -0400
35586 Tighten up the error messages.
35588 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35590 commit c45874b05aae897a6c29d1a97d4bb708fca2756c
35591 Author: Gerald Van Baren <vanbaren@cideas.com>
35592 Date: Mon Jun 25 19:52:23 2007 -0400
35594 Asthetic improvements: error messages and line lengths.
35596 Tighten up the error messages, split overlength lines.
35598 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35600 commit 35ec398f16e17df600edc1b38c1e9e62c15c9aa1
35601 Author: Gerald Van Baren <vanbaren@cideas.com>
35602 Date: Fri May 25 22:08:57 2007 -0400
35604 Fix fdt_chosen() to call ft_board_setup(), clean up long lines.
35606 The fdt_chosen() function was adding/seting some properties ad-hoc
35607 improperly and duplicated (poorly) what was done in ft_board_setup()
35609 Clean up long lines (setting properties, printing errors).
35611 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35613 commit 06e19a07701c968f15d72c083b5872a1a11c7b01
35614 Author: Gerald Van Baren <vanbaren@cideas.com>
35615 Date: Mon May 21 23:27:16 2007 -0400
35617 For fdt_find_node_by_path(), handle the root path properly.
35619 Also removes the special case root path detection in cmd_fdt.c since it
35620 is no longer necessary.
35622 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35624 commit 9675ee7208ab965d13ea8d8262d77ac4160ef549
35625 Author: Gerald Van Baren <vanbaren@cideas.com>
35626 Date: Thu May 17 23:54:36 2007 -0400
35628 Add fdt_find_node_by_type() and fdt_find_compatible_node() to LIBFDT
35630 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35631 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
35633 commit 1a861169bc3758f9de3aead62b058736c6891246
35634 Author: Gerald Van Baren <vanbaren@cideas.com>
35635 Date: Wed Jun 6 22:47:58 2007 -0400
35637 Replace fdt_node_offset() with fdt_find_node_by_path().
35639 The new name matches more closely the kernel's name, which is also
35640 a much better description.
35642 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
35643 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
35645 commit addd8ce83078c25f0eca5f23adbdfc64ca50a243
35646 Author: Gerald Van Baren <vanbaren@cideas.com>
35647 Date: Wed May 16 22:39:59 2007 -0400
35649 Fix cmd_fdt line lengths, refactor code.
35651 Break lines that were greater than 80 characters in length.
35652 Move the fdt print and property parsing code to separate static functions
35653 to reduce coding clutter in the fdt_cmd handling body.
35655 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35657 commit 25114033ab21788810c48ba4df103b649da1223b
35658 Author: Gerald Van Baren <vanbaren@cideas.com>
35659 Date: Sat May 12 09:47:25 2007 -0400
35661 FDT command improvements.
35663 Fix "fdt set" so that it will create a non-existing property.
35664 Add "fdt mknode" to create nodes.
35666 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35668 commit 38eb508e8e811e2e57628f445de3a24a23c7d804
35669 Author: Gerald Van Baren <vanbaren@cideas.com>
35670 Date: Sat May 12 09:45:46 2007 -0400
35672 Reorganize and fix problems (returns) in the bootm command.
35674 Do *NOT* return after the "point of no return" has been passed.
35675 If something goes wrong, the board must be reset after that point.
35676 Move the "Transferring control to Linux" debug message back to where it
35677 belongs: just before transferring control to linux.
35679 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35681 commit 89c8757d8f213c47709bdc4efe0695263a6080a6
35682 Author: Gerald Van Baren <vanbaren@cideas.com>
35683 Date: Tue May 8 21:27:35 2007 -0400
35685 Fix bugs in the CONFIG_OF_LIBFDT
35687 Stupid coding mistakes (identified by Timur Tabi, thanks).
35689 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35691 commit 6be07cc1ca458278c85ecdbf1a0536cff4c701ec
35692 Author: Gerald Van Baren <vanbaren@cideas.com>
35693 Date: Wed Apr 25 22:47:15 2007 -0400
35695 Improve fdt move length handling.
35697 Make the length parameter optional: if not specified, do the move using
35698 the current size unchanged.
35700 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35702 commit bb930e76fea6cf89ca2d98e2f7c7a6043d79327d
35703 Author: Gerald Van Baren <vanbaren@cideas.com>
35704 Date: Wed Apr 25 22:23:36 2007 -0400
35706 Minor code clean up.
35708 Declare the variable fdt properly as extern.
35709 Call the "set_fn" function pointer the "short way" without the full
35710 dereferencing syntax.
35712 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35714 commit ba24e2ac3bdb5c489f3c787e7542b6474c4d65c6
35715 Author: Gerald Van Baren <vanbaren@cideas.com>
35716 Date: Wed Apr 25 21:24:27 2007 -0400
35718 Improve error messages, more informative.
35720 Print more than the raw libfdt error message strings. This is especially
35721 useful for cluing in the user when the bootm command aborts due to
35724 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35726 commit 8096b3b8f772c1894ddeda9dbceff6a8826473a4
35727 Author: Gerald Van Baren <vanbaren@cideas.com>
35728 Date: Fri Apr 20 22:46:53 2007 -0400
35730 libfdt: Conditionally compile based on CONFIG_OF_LIBFDT
35732 This is the way u-boot reduces configured-out code. At Wolfgang
35733 Grandegger and Wolfgang Denk's request, make libfdt conform.
35735 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
35737 commit 923efd286411ed052d9e074f59f8986d6081061c
35738 Author: Bruce Adler <bruce.adler@ccpu.com>
35739 Date: Fri Aug 10 14:54:47 2007 -0700
35741 add image size and descriptors for Spartan 3E FPGA chips
35743 Spartan 3E image sizes taken from Table 1-4 in Xilinx UG332 (v1.1)
35745 Signed-off by: Bruce Adler <bruce.adler@ccpu.com>
35747 commit fb56579ffe7ef3275b7036bb7b924e5a0d32bd70
35748 Author: Kim Phillips <kim.phillips@freescale.com>
35749 Date: Fri Aug 10 15:34:48 2007 -0500
35751 make MAKEALL more immune to merge conflicts
35753 ..by placing board entries one per line, as suggested by jdl.
35755 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35757 commit 2628114ec564f969f34b5f7105fbd168cb8c9c3f
35758 Author: Kim Phillips <kim.phillips@freescale.com>
35759 Date: Fri Aug 10 13:28:25 2007 -0500
35761 README: Remove outdated cpu type, board type, and NAME_config lists
35763 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
35765 commit 49bb59912d21aacb507eb81fd21fb7af650c706c
35766 Author: Dave Liu <r63238@freescale.com>
35767 Date: Fri Aug 10 15:48:59 2007 +0800
35769 mpc83xx: Suppress the warning 'burstlen'
35771 suppress the warning 'burstlen' of spd_sdram.
35773 Signed-off-by: Dave Liu <daveliu@freescale.com>
35775 commit c646bba6465a45c60746d4cc1602cd06c1960f2d
35776 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
35777 Date: Thu Aug 9 15:11:03 2007 -0500
35779 Add support for SBC8641D. Config files.
35781 Add support for Wind River's SBC8641D reference board.
35783 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
35784 Acked-by: Wolfgang Denk <wd@denx.de>
35785 Acked-by: Jon Loeliger <jdl@freescale.com>
35787 commit 8ac273271d57321f90505c7a51cdb1ef2113b628
35788 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
35789 Date: Thu Aug 9 15:10:53 2007 -0500
35791 Add support for SBC8641D. Board files.
35793 Add support for Wind River's SBC8641D reference board.
35795 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
35796 Acked-by: Wolfgang Denk <wd@denx.de>
35797 Acked-by: Jon Loeliger <jdl@freescale.com>
35799 commit c2c0ab4aff86622b837a48a0e560351f9afafb95
35800 Author: Stefan Roese <sr@denx.de>
35801 Date: Fri Aug 10 20:34:58 2007 +0200
35803 Conding style cleanup
35805 Signed-off-by: Stefan Roese <sr@denx.de>
35807 commit c74b2108e31fe09bd1c5d291c3cf360510d4f13e
35808 Author: Sergey Kubushyn <ksi@koi8.net>
35809 Date: Fri Aug 10 20:26:18 2007 +0200
35811 [ARM] TI DaVinci support, hopefully final
35813 Add support for the following DaVinci boards:
35820 - Split into separate board directories
35821 - Removed changes to MTD_DEBUG (or whatever it's called)
35822 - New CONFIG_CMD party line followed
35823 - Some cosmetic fixes, cleanup etc.
35824 - Patches against the latest U-Boot tree as of now.
35825 - Fixed CONFIG_CMD_NET in net files.
35826 - Fixed CONFIG_CMD_EEPROM for schmoogie.
35827 - Made sure it compiles and works (forceenv() link problem) on SCHMOOGIE and
35828 DV_EVM. Can't check if it works on SONATA, don't have a board any more,
35829 but it at least compiles.
35831 Here is an excerpt from session log on SCHMOOGIE...
35833 U-Boot 1.2.0-g6c33c785-dirty (Aug 7 2007 - 13:07:17)
35842 ETH PHY : DP83848 @ 0x01
35844 Valid chip addresses: 1B 38 3A 3D 3F 50 5D 6F
35845 U-Boot > ping 192.168.253.10
35846 host 192.168.253.10 is alive
35849 Signed-off-by: Sergey Kubushyn <ksi@koi8.net>
35850 Acked-by: Dirk Behme <dirk.behme@gmail.com>
35851 Acked-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
35852 Acked-by: Stefan Roese <sr@denx.de>
35854 commit 2e4d94f1e3c2961428967a33b6ff2520568391b3
35855 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35856 Date: Fri Jul 27 01:50:45 2007 -0500
35858 fsl_pci_init cleanup.
35860 Do not enable normal errors created during probe (master abort, perr,
35861 and pcie Invalid Configuration access).
35863 Add CONFIG_PCI_NOSCAN board option to prevent bus scan.
35865 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35866 Acked-by: Andy Fleming <afleming@freescale.com>
35868 commit 936b3e69b667c3eb9a61ece4e78647d3fce9fc2a
35869 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
35870 Date: Fri Jul 27 01:50:44 2007 -0500
35872 pciauto_setup_device bars_num fix
35874 Passing bars_num=0 to pciauto_setup_device should assign no bars.
35876 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35877 Acked-by: Shinya Kuribayashi <shinya.kuribayashi@necel.com>
35878 Acked-by: Andy Fleming <afleming@freescale.com>
35880 commit cf0b185e58ca0aec8ae2b2a8804ec0ef58ee21d4
35881 Author: Jon Loeliger <jdl@freescale.com>
35882 Date: Mon Aug 6 17:39:44 2007 -0500
35884 8641hpcn: Do correct sized pointer math.
35886 When I rebased Ed's patch and cleaned up a few compilation
35887 problems, I apparently rebased my brain on crack first.
35888 Fix that by doing (char *) sized pointer math as needed.
35890 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35892 commit cfc7a7f5bb3273c9951173c788001d45118f141f
35893 Author: Jon Loeliger <jdl@freescale.com>
35894 Date: Thu Aug 2 14:42:20 2007 -0500
35898 Remove rev 1 fixes.
35899 Always set PICGCR_MODE.
35900 Enable machine check and provide board config option
35901 to set and handle SoC error interrupts.
35903 Include MSSSR0 in error message.
35905 Isolate a RAMBOOT bit of code with #ifdef CFG_RAMBOOT.
35907 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
35908 Signed-off-by: Jon Loeliger <jdl@freescale.com>
35910 commit 35d22f957a85a22bb3cd1ad084fa5404620d1c42
35911 Author: Stefan Roese <sr@denx.de>
35912 Date: Fri Aug 10 10:42:25 2007 +0200
35914 Coding style cleanup
35916 Signed-off-by: Stefan Roese <sr@denx.de>
35918 commit 3a6d56c20989fe27360afe743bd2a7ad4d76e48f
35919 Author: Dirk Behme <dirk.behme@googlemail.com>
35920 Date: Thu Aug 2 17:42:08 2007 +0200
35922 Make use of generic 64bit division in nand_util.c
35924 Use generic 64bit division in nand_util.c. This makes nand_util.c
35925 independent of any toolchain 64bit division.
35927 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
35929 commit f7c086e94e8ce9aad7268af97f73aa6884686f27
35930 Author: Dirk Behme <dirk.behme@googlemail.com>
35931 Date: Thu Aug 2 17:41:14 2007 +0200
35933 Move 64bit division from avr32 to generic lib
35935 Move the 64bit division from lib_avr32 to lib_generic. With this, all
35936 boards can do_div/__div64_32 if needed, not only avr one. Code is put
35937 to lib_generic, so no larger memory footprint if not used. No code
35938 modifications. Thanks for proposal by HÃ¥vard Skinnemoen.
35940 Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
35942 commit 157cda4d0c3d592ccbb19bbfc07d9251894f0894
35943 Author: Niklaus Giger <niklausgiger@gmx.ch>
35944 Date: Fri Jul 27 11:31:22 2007 +0200
35946 Add PPC4xx-HCU4 and HCU5 boards: HCU5 files
35948 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35950 commit 6e5de26c6e7580faf16e87745cd488b92b492d0c
35951 Author: Niklaus Giger <niklausgiger@gmx.ch>
35952 Date: Fri Jul 27 11:30:33 2007 +0200
35954 Add PPC4xx-HCU4 and HCU5 boards: HCU4 files
35956 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35958 commit e8397fc78c9394d71de233a4d810fbc9047e4c76
35959 Author: Niklaus Giger <niklausgiger@gmx.ch>
35960 Date: Fri Jul 27 11:38:26 2007 +0200
35962 Add PPC4xx-HCU4 and HCU5 boards: common files
35964 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35966 commit ac982ea5a4f2f993efcf52dca122f5a59df047d8
35967 Author: Niklaus Giger <niklausgiger@gmx.ch>
35968 Date: Fri Jul 27 11:28:44 2007 +0200
35970 Add PPC4xx-HCU4 and HCU5 boards: make related
35972 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35974 commit 137fdd9f474ecb853efdace5200576308c67f18d
35975 Author: Niklaus Giger <niklausgiger@gmx.ch>
35976 Date: Fri Jul 27 11:28:03 2007 +0200
35978 Add PPC4xx-HCU4 and HCU5 boards: HCU5 config
35980 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35982 commit 714bc55b35b6f6a65cc8740a3842a543e88cdef2
35983 Author: Niklaus Giger <niklausgiger@gmx.ch>
35984 Date: Fri Jul 27 11:27:15 2007 +0200
35986 Add PPC4xx-HCU4 and HCU5 boards: HCU4 config
35988 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35990 commit 1894dd381124bdbfbdae7cf3a6ca52a8eb1f4421
35991 Author: Niklaus Giger <niklausgiger@gmx.ch>
35992 Date: Fri Jul 27 11:25:31 2007 +0200
35994 Add PPC4xx-HCU4 and HCU5 boards: READMEs
35996 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
35998 commit 641cca9569ce351ddb287fd3343d8b1dcb591db4
35999 Author: Niklaus Giger <niklausgiger@gmx.ch>
36000 Date: Fri Jul 27 11:37:40 2007 +0200
36002 Add PPC4xx-HCU4 and HCU5 boards: Infrastructure
36004 This series of patches adds support for 2 boards from Netstal Maschinen.
36006 The HCU4 has a PPC405Gpr and
36007 the HCU5 has a PPC440EPX.
36009 The HCU4 has a somehow complicated flash setup, as the booteprom is
36010 only 8 bits and the CFI 16 bits wide, which makes it impossible to use a more
36013 The HCU5 has only a booteprom as the whole code will be downloaded from a
36014 different board which has HD, CD-ROM, etc and where all code is stored.
36016 This is my third try. I incorporated all suggestions made by Wolfgang and Stefan.
36019 Signed-off-by: Niklaus Giger <niklaus.giger@netstal.com>
36021 commit 3e4c90c6233618fc1806e63fde68df5f3d6a0171
36022 Author: Stefan Roese <sr@denx.de>
36023 Date: Fri Aug 10 08:42:55 2007 +0200
36025 ppc4xx: Update lwmon5 POST configuration
36027 Signed-off-by: Stefan Roese <sr@denx.de>
36029 commit 29cb25da56afe18cf5e7072a92a9d98ea8af1fd4
36030 Author: Yuri Tikhonov <yur@emcraft.com>
36031 Date: Fri Aug 10 08:25:22 2007 +0200
36033 POST: Add ppc4xx UART POST support without external uart clock (lwmon5)
36035 The patch adds support for UART POST on ppc44x-based boards with no
36036 external serial clocks installed.
36038 Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
36039 Acked-by: Stefan Roese <sr@denx.de>
36041 commit 99c2fdab91bc633e46fb41dbaa629f87ccf6e00f
36042 Author: Kim Phillips <kim.phillips@freescale.com>
36043 Date: Mon Aug 6 18:18:34 2007 -0500
36045 mpc83xx: fix ITX[GP] O=builddir builds
36047 make: *** No rule to make target `/work/wd/tmp/board/mpc8349itx/u-boot.lds', needed by `/work/wd/tmp/u-boot'. Stop.
36049 Both the ITX and ITX-GP fail when you use "make O=<some dir> ..." or
36050 "BUILD_DIR=<some dir> ./MAKEALL ..."
36052 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36054 commit 47e8bc846759e037b8af0e5f9c9f9cfa7a1050c3
36055 Author: Dave Liu <r63238@freescale.com>
36056 Date: Wed Aug 1 15:00:59 2007 +0800
36058 mpc83xx: Correct the README for DDR ECC
36060 Update the README for DDR ECC, change the name
36061 to README.mpc83xx.ddrecc.
36063 Signed-off-by: Dave Liu <daveliu@freescale.com>
36064 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36066 commit daab8c67d2defef73dc26ab07f0c3afd1b05d019
36067 Author: Dave Liu <r63238@freescale.com>
36068 Date: Wed Aug 1 15:00:15 2007 +0800
36070 mpc83xx: Consolidate the ECC support of 83xx
36072 Remove the duplicated source code of ecc command on the <board>.c,
36073 for reused, move these code to cpu/mpc83xx directory.
36075 Signed-off-by: Dave Liu <daveliu@freescale.com>
36076 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36078 commit 036575c544cf1b69654d8fb334bda69c6ff3da36
36079 Author: Dave Liu <r63238@freescale.com>
36080 Date: Sat Aug 4 13:37:39 2007 +0800
36082 mpc83xx: Correct the burst length for DDR2 with 32 bits
36084 The burst length should be 4 for DDR2 with 32 bits bus
36086 Signed-off-by: Dave Liu <daveliu@freescale.com>
36088 commit 1c274c4e05b6dc9b24edc8aa618b02f607ee6eed
36089 Author: Kim Phillips <kim.phillips@freescale.com>
36090 Date: Wed Jul 25 19:25:33 2007 -0500
36092 mpc83xx: add support for the MPC8323E RDB
36094 MPC8323E based board with 64MB fixed SDRAM, 16MB flash,
36095 five 10/100 ethernet ports connected via an ICPlus IP175C
36096 switch, one PCI slot, and serial. Features not supported
36097 in this patch are SD card interface, 2 USB ports, and the
36100 Signed-off-by: Michael Barkowski <michael.barkowski@freescale.com>
36101 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36103 commit 343d91009d55fc5b3ff8cc940597af6c6aa1d359
36104 Author: Kim Phillips <kim.phillips@freescale.com>
36105 Date: Wed Jul 25 19:25:28 2007 -0500
36107 mpc83xx: fixup generic pci for libfdt
36109 add libfdt support to the generic 83xx pci code
36111 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36113 commit f57ac7a7b37109245b69db80839ebee26179966a
36114 Author: Kim Phillips <kim.phillips@freescale.com>
36115 Date: Wed Jul 25 19:25:22 2007 -0500
36117 mpc83xx: fix 8360 and cpu functions to update fdt being passed
36119 ..and not the global fdt. Rename local fdt vars to blob so as not to
36120 be confused with the global var with the same three-letter name.
36122 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36124 commit 8be404459a6b7395415a57bb35e8377e3b2b5acb
36125 Author: Jerry Van Baren <gvb.uboot@gmail.com>
36126 Date: Wed Jul 4 21:34:24 2007 -0400
36128 mpc83xx: Fix errors when CONFIG_OF_LIBFDT is enabled
36130 Several node strings were not correct (trailing slashes and properties
36132 Added setting of the timebase-frequency.
36133 Improved error messages and use debug() instead of printf().
36135 Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
36136 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36138 commit 26d02c9bbac1751c5e19294f000100b48d43a920
36139 Author: Jerry Van Baren <gvb.uboot@gmail.com>
36140 Date: Wed Jul 4 21:27:30 2007 -0400
36142 mpc83xx: Replace fdt_node_offset() with fdt_find_node_by_path().
36144 The new name matches more closely the kernel's name, which is also
36145 a much better description.
36147 These are the mpc83xx changes made necessary by the function name change.
36149 Signed-off-by: Wolfgang Grandegger <wg@grandegger.com>
36150 Acked-by: Gerald Van Baren <vanbaren@cideas.com>
36151 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36153 commit 9be39a67c9f8fef7107f5df09d673005f04d0963
36154 Author: Dave Liu <daveliu@freescale.com>
36155 Date: Mon Jun 25 10:41:56 2007 +0800
36157 mpc83xx: Add support for the display of reset status
36159 83xx processor family has many reset sources, such as
36160 power on reset, software hard reset, software soft reset,
36161 JTAG, bus monitor, software watchdog, check stop reset,
36162 external hard reset, external software reset.
36163 sometimes, to figure out the fault of system, we need to
36164 know the cause of reset early before the prompt of
36167 Signed-off-by: Dave Liu <daveliu@freescale.com>
36168 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36170 commit ff9658d7049bf8c8e8e0a05dbe5e9f7e91aa5a5d
36171 Author: Dave Liu <daveliu@freescale.com>
36172 Date: Mon Jun 25 10:41:04 2007 +0800
36174 mpc83xx: Fix the align bug of SDMA buffer
36176 According to the latest user manual, the SDMA temporary
36177 buffer base address must be 4KB aligned.
36179 Signed-off-by: Dave Liu <daveliu@freescale.com>
36180 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36182 commit 66dc2c2dc51f8b88bb8e231bc80cd92eae1d6476
36183 Author: Dave Liu <daveliu@freescale.com>
36184 Date: Mon Jun 25 13:21:12 2007 +0800
36186 mpc83xx: Revise the MPC8360EMDS readme doc
36188 When the rev2.x silicon mount on the MPC8360EMDS baord,
36189 and if you are using the u-boot version after the commit
36190 3fc0bd159103b536e1c54c6f4457a09b3aba66ca.
36191 to make the ethernet interface usable, we have to setup
36192 the jumpers correctly.
36194 Signed-off-by: Dave Liu <daveliu@freescale.com>
36195 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36197 commit e739bc95797aac4fefc4c75b55c7c78e59d3ea9c
36198 Author: Timur Tabi <timur@freescale.com>
36199 Date: Tue Jul 3 13:46:32 2007 -0500
36201 FSL I2C driver programs the two I2C busses differently
36203 The i2c_init() function in fsl_i2c.c programs the two I2C busses differently.
36204 The second I2C bus has its slave address programmed incorrectly and is
36205 missing a 5-us delay.
36207 Signed-off-by: Timur Tabi <timur@freescale.com>
36208 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36210 commit df33f6b4d6d63693dd9200808b242de1b86cb8e8
36211 Author: Timur Tabi <timur@freescale.com>
36212 Date: Tue Jul 3 13:04:34 2007 -0500
36214 Update SCCR programming in cpu_init_f() to support all 83xx processors
36216 Update the cpu_init_f() function in cpu/mpc83xx/cpu_init.c to program the
36217 bitfields for all 83xx processors. The code to update some bitfields was
36218 compiled only on some processors. Now, the bitfields are programmed as long
36219 as the corresponding CFG_SCCR option is defined in the board header file.
36220 This means that the board header file should not define any CFG_SCCR macros
36221 for bitfields that don't exist on that processor, otherwise the SCCR will be
36222 programmed incorrectly.
36224 Signed-off-by: Timur Tabi <timur@freescale.com>
36225 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36227 commit 9546266999f0b9b51372636614211b88d90f0f25
36228 Author: Martin Krause <martin.krause@tqs.de>
36229 Date: Fri Jun 22 13:04:22 2007 +0200
36231 TQM834x: cleanup configuraton
36233 Remove irritating #undef DEBUG
36235 Signed-off-by: Martin Krause <martin.krause@tqs.de>
36236 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36238 commit 5d497e6bf0f5bf63729b4a47b3fd786d3c77a1bc
36239 Author: david.saada <David.Saada@ecitele.com>
36240 Date: Mon Jun 18 09:09:53 2007 -0700
36242 MPC83xx: Fix makefile to generate config.h file in the build directory
36244 MPC83xx: Fix the Makefile config sections to generate the include/config.h
36245 file in the build directory instead of the source directory.
36247 Signed-off-by: David Saada <david.saada@ecitele.com>
36248 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36250 commit 1ded0242e437259366792d52b7e9d1e1931d8fa5
36251 Author: Lee Nipper <Lee.Nipper@freescale.com>
36252 Date: Thu Jun 14 20:07:33 2007 -0500
36254 mpc83xx: Add support for 8360 silicon revision 2.1
36256 This change adds 8360 silicon revision 2.1 support to u-boot.
36258 Signed-off-by: Lee Nipper <lee.nipper@freescale.com>
36259 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36261 commit a22806469a8f2b69c829f4fd5361fdebd0cb01b4
36262 Author: Kumar Gala <galak@kernel.crashing.org>
36263 Date: Wed Aug 8 04:14:28 2007 -0500
36265 Treat ppc64 host as ppc
36267 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
36269 commit 0dc4279b08ff82472bec2e2c90858602459febe8
36270 Author: Jason Jin <Jason.jin@freescale.com>
36271 Date: Wed Aug 8 09:01:46 2007 +0800
36273 Minor fix for bios emulator makefile
36275 Add $(obj) to LIB avoiding objects be built in the source dir
36277 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36279 commit ce981dc857adfc8036ca2f6d5d5a06c2a8aa77d6
36280 Author: Jason Jin <Jason.jin@freescale.com>
36281 Date: Wed Aug 8 08:33:11 2007 +0800
36283 Add CONFIG_BIOSEMU define to guard all the bios emulator code
36285 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36287 This patch fix the compile issue on the board that did not enable the bios emulator
36289 commit ed8106433522f2ea8933e9808346860d061d7731
36290 Author: Zach Sadecki <Zach.Sadecki@ripcode.com>
36291 Date: Tue Jul 31 12:27:25 2007 -0500
36293 tsec: fix multiple PHY support
36295 The change entitled "Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx"
36296 broke multiple PHY support in tsec.c. This fixes it.
36298 Signed-off-by: Zach Sadecki <Zach.Sadecki@ripcode.com>
36299 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
36301 commit dcb84b7208ade0bbebbeb56bec9c2c64f8b2eede
36302 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
36303 Date: Thu Aug 9 09:08:18 2007 -0500
36305 tsec: Allow Ten Bit Interface address to be configurable
36307 Allow the address of the Ten Bit Interface (TBI) to be changed in the
36308 event of a conflict with another device.
36310 Signed-off by: Joe Hamman <joe.hamman@embeddedspecialties.com>
36312 commit 3ba4c2d68f6541db4677b4aea12071f56e6ff6e6
36313 Author: Stefan Roese <sr@denx.de>
36314 Date: Wed Aug 8 09:54:26 2007 +0200
36316 Coding style cleanup
36318 Signed-off-by: Stefan Roese <sr@denx.de>
36320 commit a41de1f0d373e09c782dea558385a06247111ba5
36321 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36322 Date: Sun Aug 5 05:15:18 2007 -0500
36324 Port enabled for I2C signals and chipselects port configuration.
36326 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36328 commit 1a33ce65a4c51a69190dd8c408f9e1c62a66e94f
36329 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36330 Date: Sun Aug 5 04:31:18 2007 -0500
36334 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36336 commit eaf9e447beb3e498818ef8ad0b8c1597cd506149
36337 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36338 Date: Sun Aug 5 04:11:20 2007 -0500
36342 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36344 commit 99c03c175d2689093176facf17c58ce2cb320001
36345 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36346 Date: Sun Aug 5 03:58:52 2007 -0500
36348 Changed CFG_CLK to gd->bus_clk for CFG_TIMER_PRESCALER. Added DECLARE_GLOBAL_DATA_PTR for time.c
36350 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36352 commit 8d1d66af54d305de29d0bbf4aa8c9e6375f7f731
36353 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36354 Date: Sun Aug 5 03:55:21 2007 -0500
36356 Added uart_gpio_conf() in serial_init(), seperated uart port configuration from cpu_init() to uart_gpio_conf()
36358 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36360 commit 6fde84a44b7e575ea80fe0e2d5be3b6f73d1e630
36361 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36362 Date: Sun Aug 5 03:43:30 2007 -0500
36364 Moved sync() from board file to include/asm-m68k/io.h
36366 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36368 commit 9e737d8476e7d6a596d16caaf6a3853a9a1190a2
36369 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36370 Date: Sun Aug 5 03:30:44 2007 -0500
36372 Declared attributes of void __mii_init(void) as an alias for int mii_init(void)
36374 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36376 commit 9998bd37ead85e93953559720710d3b0685c81e6
36377 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36378 Date: Sun Aug 5 03:19:10 2007 -0500
36380 Renamed CONFIG_MCFSERIAL to CONFIG_MCFUART
36382 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
36384 commit 7c4c3722a38d40b0cf537ddae72b04f4088b190c
36385 Author: Jason Jin <Jason.jin@freescale.com>
36386 Date: Tue Aug 7 16:17:06 2007 +0800
36388 Add CONFIG_BIOSEMU define to guard all the bios emulator code
36390 This patch fix the compile issue on the board that did not enable the bios emulator
36392 commit bf1060ea4f9eaa7e7d164a70a7d6f28939882053
36393 Author: Wolfgang Denk <wd@denx.de>
36394 Date: Tue Aug 7 16:02:13 2007 +0200
36396 Fix missing brace error in fs/fat/fat.c
36397 [pointed out by Roderik Wildenburg]
36399 Signed-off-by: Wolfgang Denk <wd@denx.de>
36401 commit 706714d97a0d08d59eda4de2268c39f504688329
36402 Author: Michal Simek <monstr@monstr.eu>
36403 Date: Mon Aug 6 23:41:53 2007 +0200
36405 [FIX] remove cute code
36407 commit f500d9fdeb576288656dac427052ad2c5ca0ad1a
36408 Author: Michal Simek <monstr@monstr.eu>
36409 Date: Mon Aug 6 23:35:26 2007 +0200
36411 [FIX] Fix romfs code
36413 commit ab4b956d3143f8f8174089053f5dfabbb04762b0
36414 Author: Michal Simek <monstr@monstr.eu>
36415 Date: Mon Aug 6 23:31:49 2007 +0200
36417 [FIX] Coding style cleanup - Wolfgang's suggestions
36419 commit 6c33c78557ca6f8da68c01ce33e278695197d3f4
36420 Author: Wolfgang Denk <wd@denx.de>
36421 Date: Mon Aug 6 23:21:05 2007 +0200
36423 Fixed typo in README (pointed out by Martin Jost).
36425 Signed-off-by: Wolfgang Denk <wd@denx.de>
36427 commit 537223afa61f64480df31ce440a9cb386df4a814
36428 Author: Stefan Roese <sr@denx.de>
36429 Date: Mon Aug 6 21:10:17 2007 +0200
36431 ppc4xx: Update AMCC Bamboo README doc/README.bamboo
36433 As suggested by Eugene O'Brien <Eugene.O'Brien@advantechamt.com>,
36434 here an updated Bamboo README.
36436 Signed-off-by: Stefan Roese <sr@denx.de>
36438 commit 9c7e4b06214db61bb21f1bcbe57c97519669baae
36439 Author: Wolfgang Denk <wd@denx.de>
36440 Date: Mon Aug 6 02:17:36 2007 +0200
36442 Coding style cleanup. Update CHANGELOG.
36444 Signed-off-by: Wolfgang Denk <wd@denx.de>
36446 commit 221838cc7eb178370ff62aa05920a582e12ac322
36447 Author: Jason Jin <Jason.jin@freescale.com>
36448 Date: Tue Jul 10 09:03:22 2007 +0800
36450 Remove the bios emulator from MAI board.
36452 The bios emulator in the MAI board can not pass compile
36453 and have a lot of crap in it. remove it and will have a
36454 clean and small bios emulator in the drivers directory
36455 which can be uesed for every board.
36457 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36459 commit 5618332409bb96f4448d1712899369fc80c0b489
36460 Author: Jason Jin <Jason.jin@freescale.com>
36461 Date: Fri Jul 13 12:14:59 2007 +0800
36463 Fix some compile issues for MAI board.
36465 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36467 commit 0f460a1ee148b648ee242c3157650287d4296260
36468 Author: Jason Jin <Jason.jin@freescale.com>
36469 Date: Fri Jul 13 12:14:58 2007 +0800
36471 Configurations for ATI video card BIOS emulator
36473 This patch add definition of the BIOS emulator and the ATI framebuffer
36474 driver for MPC8641HPCN board.
36476 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36477 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36479 commit ece92f85053b8df613edcf05b26a416cbc3d629c
36480 Author: Jason Jin <Jason.jin@freescale.com>
36481 Date: Fri Jul 6 08:34:56 2007 +0800
36483 This is a BIOS emulator, porting from SciTech for u-boot, mainly for
36484 ATI video card BIOS. and can be used for x86 code emulation by some
36487 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36489 commit 5072188acabde3178fac7f5a597150e6e74fd40c
36490 Author: Jason Jin <Jason.jin@freescale.com>
36491 Date: Fri Jul 6 08:33:33 2007 +0800
36493 This is a framebuffer driver for ATI video card, can work for PCI9200,
36494 X300, X700, X800 ATI video cards.
36496 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36497 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
36499 commit 5728be389e65fd47f34b33c2596271eb4db751ae
36500 Author: Wolfgang Denk <wd@denx.de>
36501 Date: Mon Aug 6 01:01:49 2007 +0200
36503 Coding style cleanup. Update CHANGELOG.
36505 Signed-off-by: Wolfgang Denk <wd@denx.de>
36507 commit 8092fef4c29b395958bb649647da7e3775731517
36508 Author: Martin Krause <Martin.Krause@tqs.de>
36509 Date: Tue Dec 12 14:26:01 2006 +0100
36511 Add functions to list of exported functions
36513 Additionally export the following fuctions (to make trab_config build again):
36517 Also bump the ABI version to reflect this change
36519 Signed-off-by: Martin Krause <martin.krause@tqs.de>
36521 commit 63cec5814fab5d2b1c86982327433807a5ac0249
36522 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36523 Date: Thu Aug 2 14:09:49 2007 -0500
36525 Make MPC8641's PCI/PCI-E driver a common driver for many FSL parts.
36527 All of the PCI/PCI-Express driver and initialization code that
36528 was in the MPC8641HPCN port has now been moved into the common
36529 drivers/fsl_pci_init.c. In a subsequent patch, this will be
36530 utilized by the 85xx ports as well.
36532 Common PCI-E IMMAP register blocks for FSL 85xx/86xx are added.
36534 Also enable the second PCI-Express controller on 8641
36535 by getting its BATS and CFG_ setup right.
36537 Fixed a u16 vendor compiler warning in AHCI driver too.
36539 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
36540 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
36541 Signed-off-by: Jon Loeliger <jdl@freescale.com>
36543 commit a274ca4f6d68830e7c916f897561cff8c4101c38
36544 Author: Michal Simek <monstr@monstr.eu>
36545 Date: Sun Aug 5 22:33:05 2007 +0200
36547 [FIX] Coding style cleanup
36549 commit af8377d4eb3a0ac5a831830d5ce63fbf65fecb7f
36550 Author: Michal Simek <monstr@monstr.eu>
36551 Date: Sun Aug 5 16:13:31 2007 +0200
36553 [FIX] Xilinx Uartlite driver
36554 Because PPC405 can use UARTLITE serial interface and
36555 Microblaze can use Uart16550 serial interface not only Uartlite.
36557 commit 98889edd50aadf862071eb5664747ad0d568a20e
36558 Author: Michal Simek <monstr@monstr.eu>
36559 Date: Sun Aug 5 15:54:53 2007 +0200
36561 [FIX] Change configuration for XUPV2P Microblaze board
36563 commit 537091b4eed9302865d03fef3f7212b4fe5cf28f
36564 Author: Michal Simek <monstr@monstr.eu>
36565 Date: Sun Aug 5 15:53:50 2007 +0200
36567 [PATCH] Added support for Xilinx Emac community driver
36569 commit 86b116b1b1e165ca4840daefed36d2e3b8460173
36570 Author: Bartlomiej Sieka <tur@semihalf.com>
36571 Date: Fri Aug 3 12:08:16 2007 +0200
36573 cm1_qp1 -> cm5200: single U-Boot image for modules from the cm5200 family.
36575 Add the ability for modules from the Schindler cm5200 family to use a
36576 single U-Boot image:
36577 - rename cm1_qp1 to cm5200
36578 - add run-time module detection
36579 - parametrize SDRAM configuration according to the module we are running on
36581 Few minor, board-specific fixes included in this patch:
36582 - better MAC address handling
36583 - updated default environment ('update' command uses +{filesize} now)
36584 - improved error messages in the auto-update code
36585 - allow booting U-Boot from RAM (CFG_RAMBOOT)
36587 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36588 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
36589 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
36591 commit c7e717ebc2b044d7a71062552c9dc0f54ea9b779
36592 Author: Andy Fleming <afleming@freescale.com>
36593 Date: Fri Aug 3 04:05:25 2007 -0500
36595 Add Marvell 1149 PHY support to the TSEC
36597 commit b1b54e352028ed370c3aa95d6fdeb9d64c5d2f86
36598 Author: Wolfgang Denk <wd@denx.de>
36599 Date: Thu Aug 2 21:27:46 2007 +0200
36601 Coding style cleanup, update CHANGELOG
36603 Signed-off-by: Wolfgang Denk <wd@denx.de>
36605 commit 63e22764d2f8653f68888c667eb65b3996b52680
36606 Author: Wolfgang Denk <wd@denx.de>
36607 Date: Thu Aug 2 10:11:18 2007 +0200
36609 Minor cleanup of <board>_nand build rules.
36611 commit 9ca8d79de096c65b9b9c867259b3ff4685f775ef
36612 Author: Stefan Roese <sr@denx.de>
36613 Date: Thu Aug 2 08:33:56 2007 +0200
36615 ppc4xx: Code cleanup
36617 Signed-off-by: Stefan Roese <sr@denx.de>
36619 commit c92409812206ac67a7fa7aae298539a9c3804a46
36620 Author: Grzegorz Bernacki <gjb@semihalf.com>
36621 Date: Tue Jul 31 18:51:48 2007 +0200
36623 [ppc440SPe] Graceful recovery from machine check during PCIe configuration
36625 During config transactions on the PCIe bus an attempt to scan for a
36626 non-existent device can lead to a machine check exception with certain
36627 peripheral devices. In order to avoid crashing in such scenarios the
36628 instrumented versions of the config cycle read routines are introduced, so
36629 the exceptions fixups framework can gracefully recover.
36631 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36632 Acked-by: Rafal Jaworowski <raj@semihalf.com>
36634 commit dec99558b9ea75a37940d07f41a3565a50b54ad1
36635 Author: Rafal Jaworowski <raj@semihalf.com>
36636 Date: Tue Jul 31 18:19:54 2007 +0200
36638 [ppc4xx] Separate settings for PCIe bus numbering on 440SPe rev.A
36640 This brings back separate settings for PCIe bus numbers depending on chip
36641 revision, which got eliminated in 2b393b0f0af8402ef43b25c1968bfd29714ddffa
36642 commit. 440SPe rev. A does NOT work properly with the same settings as for
36643 the rev. B (no devices are seen on the bus during enumeration).
36645 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
36647 commit cdd917a43da6fa7fc8f54a3cc9f420ce5ecf3197
36648 Author: Wolfgang Denk <wd@denx.de>
36649 Date: Thu Aug 2 00:48:45 2007 +0200
36651 Fix build errors and warnings / code cleanup.
36653 Signed-off-by: Wolfgang Denk <wd@denx.de>
36655 commit d2f68006627eda6cb6c7f364bddf621dbfd2fc68
36656 Author: Eugene OBrien <eugene.obrien@advantechamt.com>
36657 Date: Tue Jul 31 10:24:56 2007 +0200
36659 ppc4xx: Update AMCC Bamboo 440EP support
36661 Changed storage type of cfg_simulate_spd_eeprom to const
36662 Changed storage type of gpio_tab to stack storage
36663 (Cannot access global data declarations in .bss until afer code relocation)
36665 Improved SDRAM tests to catch problems where data is not uniquely addressable
36666 (e.g. incorrectly programmed SDRAM row or columns)
36668 Added CONFIG_PROG_SDRAM_TLB to support Bamboo SIMM/DIMM modules
36669 Fixed AM29LV320DT (OpCode Flash) sector map
36671 Signed-off-by: Eugene OBrien <eugene.obrien@advantechamt.com>
36672 Signed-off-by: Stefan Roese <sr@denx.de>
36674 commit ea9f6bce383cc9fbcdee28b5836109b1a6dba574
36675 Author: Stefan Roese <sr@denx.de>
36676 Date: Tue Jul 31 08:37:01 2007 +0200
36678 ppc4xx: Update 440EPx lwmon5 board support
36680 - Clear ECC status regs after ECC POST test
36681 - Set dcbz for ECC generation with caches enabled as default
36684 Signed-off-by: Stefan Roese <sr@denx.de>
36686 commit 27a528fb41433c4c1e2b5d6bd3fd8d78606fc724
36687 Author: Stefan Roese <sr@denx.de>
36688 Date: Mon Jul 30 11:04:57 2007 +0200
36690 ppc4xx: Only print ECC related info when the error bis are set
36692 Signed-off-by: Stefan Roese <sr@denx.de>
36694 commit e36220a4baf1f188ba60f17e9d0f043069b1362a
36695 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36696 Date: Fri Jul 27 16:44:31 2007 +0200
36698 new FPGA image for PLU405 board
36700 new FPGA image for PLU405 board with improved CompactFlash timing
36702 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
36704 commit 8993e54b6f397973794f3d6f47d3b3c0c98dd4f6
36705 Author: Rafal Jaworowski <raj@semihalf.com>
36706 Date: Fri Jul 27 14:43:59 2007 +0200
36708 [ADS5121] Support for the ADS5121 board
36710 The following MPC5121e subsystems are supported:
36712 - low-level CPU init
36713 - NOR Boot Flash (common CFI driver)
36719 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
36720 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
36721 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
36723 commit 1863cfb7b100ba0ee3401799457a01dc058745f8
36724 Author: Rafal Jaworowski <raj@semihalf.com>
36725 Date: Fri Jul 27 14:22:04 2007 +0200
36727 [PPC] Remove unused MSR_USER definition
36729 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
36731 commit d4024bb72dd81695ec099b2199eda0d27c623e62
36732 Author: John Otken <john@softadvances.com>
36733 Date: Thu Jul 26 17:49:11 2007 +0200
36735 ppc4xx: Add support for AMCC 405EP Taihu board
36737 Signed-off-by: John Otken <john@softadvances.com>
36739 commit b66091de6c7390620312c2501db23d8391e7cabb
36740 Author: Anatolij Gustschin <agust@denx.de>
36741 Date: Thu Jul 26 15:08:01 2007 +0200
36743 ppc4xx: lwmon5: Update Lime initialization
36745 Change Lime SDRAM initialization to now support 100MHz and
36746 133MHz (if enabled). Also the framebuffer is initialized to
36747 display a blue rectangle with a white border.
36749 Signed-off-by: Anatolij Gustschin <agust@denx.de>
36750 Signed-off-by: Stefan Roese <sr@denx.de>
36752 commit 9f24a808f17fc0f37b7fb4805f734741335caecc
36753 Author: Stefan Roese <sr@denx.de>
36754 Date: Tue Jul 24 09:52:52 2007 +0200
36756 ppc4xx: lwmon5: Support for 128 MByte NOR FLASH added
36758 The used Intel NOR FLASH chips have internally two dies, and are now
36759 treated as two seperate chips.
36761 Signed-off-by: Stefan Roese <sr@denx.de>
36763 commit aedf5bde179ecfbd0a96130d18996a96518b785f
36764 Author: Stefan Roese <sr@denx.de>
36765 Date: Tue Jul 24 07:20:09 2007 +0200
36767 ppc4xx: Fix lwmon5 interrupt controller setup (polarity, trigger...)
36769 As suggested by Hakan Eryigit, here an updated setup for the lwmon5
36770 interrupt controller.
36772 Signed-off-by: Stefan Roese <sr@denx.de>
36774 commit a71d96eac8130b53a91f93cd10c70fca0db18d52
36775 Author: Stefan Roese <sr@denx.de>
36776 Date: Fri Jul 20 15:03:44 2007 +0200
36778 ppc4xx: Fix bug with default GPIO output value
36780 As spotted by Matthias Fuchs, the default output values for all GPIO1
36781 outputs were not setup correctly. This patch fixes this issue.
36783 Signed-off-by: Stefan Roese <sr@denx.de>
36785 commit 531e3e8b831f357056448fa573137d5fb37000fd
36786 Author: Pavel Kolesnikov <concord@emcraft.com>
36787 Date: Fri Jul 20 15:03:03 2007 +0200
36789 POST: Add ECC POST for the lwmon5 board
36791 This patch adds ECC Post test for the Lwmon5 board based
36792 on PPC440EPx to U-Boot.
36794 Signed-off-by: Pavel Kolesnikov <concord@emcraft.com>
36795 Acked-by: Yuri Tikhonov <yur@emcraft.com>
36796 Acked-by: Stefan Roese <sr@denx.de>
36798 commit cc3023b9f95d7ac959a764471a65001062aecf41
36799 Author: Rafal Jaworowski <raj@semihalf.com>
36800 Date: Thu Jul 19 17:12:28 2007 +0200
36802 Fix breakage of 8xx boards from recent commit.
36804 This patch fixes the negative consequences for 8xx of the recent
36805 "ppc4xx: Clean up 440 exceptions handling" commit.
36807 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
36809 commit c883f6ea32dce91f07670b3aafecf6c99b1e5341
36810 Author: Stefan Roese <sr@denx.de>
36811 Date: Mon Jul 16 13:11:12 2007 +0200
36813 Coding style cleanup
36815 Signed-off-by: Stefan Roese <sr@denx.de>
36817 commit 8848ec858f74ed6dab06fb6d5ddc933e0a1328bf
36818 Author: Stefan Roese <sr@denx.de>
36819 Date: Mon Jul 16 10:02:12 2007 +0200
36821 ppc4xx: Code cleanup
36823 Signed-off-by: Stefan Roese <sr@denx.de>
36825 commit 2a49fc17d09020e7ebd9536694d99d20e419fcb8
36826 Author: Stefan Roese <sr@denx.de>
36827 Date: Mon Jul 16 10:01:38 2007 +0200
36829 ppc4xx: AMCC Luan uses the new boardspecific DDR2 controller setup
36831 Signed-off-by: Stefan Roese <sr@denx.de>
36833 commit df3f17422aeb03fb81a7ac8c78d2b05d05aa4cf9
36834 Author: Stefan Roese <sr@denx.de>
36835 Date: Mon Jul 16 10:00:43 2007 +0200
36837 ppc4xx: Support for Yucca board with 440SPe Rev A added to 44x_spd_ddr2.c
36839 The new boardspecific DDR2 controller configuration is used for the Yucca
36840 board. Now the Yucca board with 440SPe Rev. A chips is also supported.
36842 Signed-off-by: Stefan Roese <sr@denx.de>
36844 commit 6ed14addf97c8cd8f531e9ae7b2d3e222fffd53e
36845 Author: Stefan Roese <sr@denx.de>
36846 Date: Mon Jul 16 09:57:00 2007 +0200
36848 ppc4xx: Add new weak functions to support boardspecific DDR2 configuration
36850 The new "weak" functions ddr_wrdtr() and ddr_clktr() are added to better
36851 support non default, boardspecific DDR(2) controller configuration.
36853 Signed-off-by: Stefan Roese <sr@denx.de>
36855 commit 5743a9207a370b90f09b20ebd61167c806b937f3
36856 Author: Stefan Roese <sr@denx.de>
36857 Date: Mon Jul 16 08:53:51 2007 +0200
36859 ppc4xx: Add remove_tlb() function to remove a mem area from TLB setup
36861 The new function remove_tlb() can be used to remove the TLB's used to
36862 map a specific memory region. This is especially useful for the DDR(2)
36863 setup routines which configure the SDRAM area temporarily as a cached
36864 area (for speedup on auto-calibration and ECC generation) and later
36865 need this area uncached for normal usage.
36867 Signed-off-by: Stefan Roese <sr@denx.de>
36869 commit 0c0a9cda1bde37106520476ed486bd67eb8d30ae
36870 Author: Michal Simek <monstr@monstr.eu>
36871 Date: Mon Jul 16 00:31:07 2007 +0200
36873 [PATCH] Support for Xilinx EmacLite controller
36875 commit 3a6cab844cf74f76639d795e0be8717e02c86af7
36876 Author: Wolfgang Denk <wd@denx.de>
36877 Date: Sat Jul 14 22:51:02 2007 +0200
36881 Signed-off-by: Wolfgang Denk <wd@denx.de>
36883 commit 5280f352c8da33b1d7fbf448768717d9e16ff9a1
36884 Author: Michal Simek <monstr@monstr.eu>
36885 Date: Sat Jul 14 13:11:28 2007 +0200
36887 [FIX] support for simply measuring time
36889 commit 91bb4ca665d2e0cf7f60c4b5b370990250ec0c43
36890 Author: Michal Simek <monstr@monstr.eu>
36891 Date: Sat Jul 14 12:41:23 2007 +0200
36893 [FS] Added support for ROMFS
36895 commit 011595307731a7a67a7445d107c279d031e8ab97
36896 Author: Heiko Schocher <hs@pollux.denx.de>
36897 Date: Sat Jul 14 01:06:58 2007 +0200
36899 [PCS440EP] - fix compile error, if BUILD_DIR is used
36901 commit 5a2f1098d81ad58b309e5e558d0492643166a799
36902 Author: Michal Simek <monstr@monstr.eu>
36903 Date: Sat Jul 14 00:18:48 2007 +0200
36905 [PATCH] Support time without timer
36907 commit a476ca2ac2217ddd05a2bf0c514075814b10a3c0
36908 Author: Michal Simek <monstr@monstr.eu>
36909 Date: Fri Jul 13 21:43:55 2007 +0200
36911 [PATCH] Remove problem with disabled BARREL SHIFTER
36913 commit 55e26ad62107d2f14f757de3ae0b14b9aa7aed94
36914 Author: Michal Simek <monstr@monstr.eu>
36915 Date: Fri Jul 13 21:41:44 2007 +0200
36917 [FIX] correct help for rspr
36919 commit fad63407154f46246ce80d53a9c669a44362ac67
36920 Author: Heiko Schocher <hs@pollux.denx.de>
36921 Date: Fri Jul 13 09:54:17 2007 +0200
36923 make show_boot_progress () weak.
36925 Signed-off-by: Heiko Schocher <hs@denx.de>
36927 commit 907902472391b6ca1876ec300687562ecaf459b1
36928 Author: Heiko Schocher <hs@pollux.denx.de>
36929 Date: Fri Jul 13 08:26:05 2007 +0200
36931 [PCS440EP] - The DIAG LEDs are now blinking, if an error occur
36932 - fix compile error, if BUILD_DIR is used
36934 Signed-off-by: Heiko Schocher <hs@denx.de>
36936 commit a2e1c7098cf9574386b0c96841dfc8ea5cc93578
36937 Author: Stefan Roese <sr@denx.de>
36938 Date: Thu Jul 12 16:32:08 2007 +0200
36940 ppc4xx: Change receive buffer handling in the 4xx emac driver
36942 This change fixes a bug in the receive buffer handling, that
36943 could lead to problems upon high network traffic (broadcasts...).
36945 Signed-off-by: Stefan Roese <sr@denx.de>
36947 commit 239f05ee4dd4cfe0b50f251b533dcebe9e67c360
36948 Author: Wolfgang Denk <wd@denx.de>
36949 Date: Thu Jul 12 01:45:34 2007 +0200
36951 Update CHANGELOG, minor coding style cleanup.
36953 Signed-off-by: Wolfgang Denk <wd@denx.de>
36955 commit 5a56af3b522ba47fb33a3fee84d23bf1e5429654
36956 Author: Andy Fleming <afleming@freescale.com>
36957 Date: Fri Jun 8 16:41:18 2007 -0500
36959 Remove erroneous errata code from Marvel 88E1111S driver
36961 The Marvel 88E1111S driver for the TSEC was copied from the
36962 88E1101 driver, and included a fix for an erratum which does not
36963 exist on that part. Now it is removed
36965 Signed-off-by: Andy Fleming <afleming@freescale.com>
36967 commit 982efcf23fd03647e01e2fbe28a7a36239156cc0
36968 Author: Andy Fleming <afleming@freescale.com>
36969 Date: Tue Jun 5 16:38:44 2007 -0500
36971 From: eran liberty <eran.liberty@gmail.com>
36973 adds the reset register to 85xx immap
36975 Signed-off-by: Eran Liberty <eran.liberty@gmail.com>
36976 Signed-off-by: Andy Fleming <afleming@freescale.com>
36978 commit d3ec0d943a045bdb99e159e7bbc77430e09f11d7
36979 Author: Andy Fleming <afleming@freescale.com>
36980 Date: Thu May 10 17:50:01 2007 -0500
36982 Polished the 85xx ADS config files
36984 Made the boot commands use device trees by default.
36985 Also moved the ramdisk to 1000000 (I think the previous address
36986 was getting overridden during boot).
36988 Signed-off-by: Andy Fleming <afleming@freescale.com>
36990 commit bfb37b32d1b0b03f18077dba49cc66a6e76fa038
36991 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
36992 Date: Wed May 9 11:03:32 2007 -0500
36994 8544ds: Fix Makefile after moving pixis to board/freescale.
36996 The OBJTREE != SRCTREE build scenario was broken.
36999 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37000 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37002 commit 2a3cee43c3b71fa5b8d91db19f05067865290f3e
37003 Author: Andy Fleming <afleming@freescale.com>
37004 Date: Wed May 9 00:54:20 2007 -0500
37006 tsec: Fix PHY code to match first driver
37008 Jarrold Wen noticed that the generic PHY code always matches
37009 under the current implementation. Change it so the first match
37010 wins, and *only* unknown PHYs trigger the generic driver
37012 Signed-off-by: Andy Fleming <afleming@freescale.com>
37014 commit ccc091aac61a38cd998d575d92f7232e256d6312
37015 Author: Andy Fleming <afleming@freescale.com>
37016 Date: Tue May 8 17:27:43 2007 -0500
37018 Add support for CPM device tree configuration to 8560 ADS
37020 * Adds code to modify CPM frequencies
37021 * Cleans up the config file to #define TSEC and (for now) #undef FCC
37022 * Adds the MII command for all 8560 ADS configurations
37023 * Updates config file to provide convenience commands for booting
37026 Signed-off-by: Vitaly Bordug <vbordug@ru.mvista.com>
37027 Signed-off-by: Andy Fleming <afleming@freescale.com>
37029 commit 7507d56ccaf7aae1c474342a9a5540165cd7e9d9
37030 Author: Andy Fleming <afleming@freescale.com>
37031 Date: Tue May 8 17:23:02 2007 -0500
37033 Fix Marvell 88e1145 PHY init code
37035 Fix a bug in the Marvell 88e1145 PHY init code in the TSEC driver
37036 where the reset was being done after the errata code instead of
37039 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
37040 Signed-off-by: Andy Fleming <afleming@freescale.com>
37042 commit 5dc210dec5bace98a50b6ba905347890091a9bb0
37043 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37044 Date: Wed Jul 11 14:52:16 2007 -0500
37046 Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
37048 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37050 commit e8b85f3ba4cd8930e0a2fea2100c815d64201765
37051 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37052 Date: Wed Jul 11 14:52:08 2007 -0500
37054 pciauto setup bridge
37056 The P2P bridge bus numbers programmed into the device are relative to
37059 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37061 commit 571f49fa717004ca4268b4e24057efc7bf9f987b
37062 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37063 Date: Wed Jul 11 14:52:01 2007 -0500
37065 Support PCIe extended config registers
37067 FSL PCIe block has extended cfg registers in the 100 and 400 range.
37068 For example, to read the LTSSM register: pci display <busn>.0 404 1
37070 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37072 commit ba5feb12581bb2912ce301e4866b71f846e9fc07
37073 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37074 Date: Wed Jul 11 14:51:48 2007 -0500
37076 Minor improvements to drivers/pci_auto.c
37078 - Make pciauto_{pre,post}scan_setup_bridge non-static
37079 - Added physical address display in debug messages.
37081 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37083 commit 40e81addab7bb74d20ddf681ce9babc880a828ee
37084 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
37085 Date: Wed Jul 11 14:51:35 2007 -0500
37087 Start pci hose scan from hose->current_busno.
37089 Ensure hose->current_busno is not less than first_busno. This fixes
37090 broken board code which leaves current_busno=0 when first_busno is
37091 greater than 0 for the cases with multiple controllers.
37093 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
37095 commit 3865b1fb7843a08ad49a6319a36415752276ff48
37096 Author: Stefan Roese <sr@denx.de>
37097 Date: Wed Jul 11 12:13:53 2007 +0200
37099 Fix some compile problems introduced by the latest CFG_CMD_xxx cleanup
37101 Signed-off-by: Stefan Roese <sr@denx.de>
37103 commit fa1df308926a6f70e3504c57514ef27ac31fd13a
37104 Author: Bartlomiej Sieka <tur@semihalf.com>
37105 Date: Wed Jul 11 20:11:07 2007 +0200
37107 CM1.QP1: Support for the Schindler CM1.QP1 board.
37109 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
37110 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
37112 commit 96e1d75be8193ca79e4215a368bf9d7f2362450f
37113 Author: Heiko Schocher <hs@pollux.denx.de>
37114 Date: Wed Jul 11 18:39:11 2007 +0200
37116 [PCS440EP] - Show on the DIAG LEDs, if the SHA1 check failed
37117 - now the Flash ST M29W040B is supported (not tested)
37118 - fix the "led" command
37119 - fix compile error, if BUILD_DIR is used
37121 Signed-off-by: Heiko Schocher <hs@denx.de>
37123 commit e9514751cfa5cce61ea699fa0d3eb37898a5eeb5
37124 Author: Stefan Roese <sr@denx.de>
37125 Date: Sun Jul 8 13:44:27 2007 +0200
37127 Fix malloc problem introduced with the relocation fixup for the PPC platform
37129 The relocation fixup didn't handle the malloc pointer initialization
37130 correctly. This patch fixes this problem. Tested successfully on 4xx.
37131 The relocation fixup patches for 4xx will follow soon.
37133 Signed-off-by: Stefan Roese <sr@denx.de>
37135 commit 0dca874db62718e41253659e60f3a1de7eb418ce
37136 Author: TsiChung <tcliew@Goku.(none)>
37137 Date: Tue Jul 10 15:45:43 2007 -0500
37139 Cache update and added CFG_UNIFY_CACHE
37141 Enabled cache in cpu_init_f() for faster flash to mem allocation. Updated cache handling in start.S. Applied cache invalidate in fec_send() and fec_recv(). Added CFG_UNIFY_CACHE for CF V3 only.
37143 Signed-off-by: TsiChung <tcliew@Goku.(none)>
37145 commit 52b017604a8f4d4a795880ef6e7861d7f2f1b005
37146 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37147 Date: Thu Jul 5 23:36:16 2007 -0500
37149 Update header file. Include dtimer_intr_setup(). Changed timer divider to global define.
37151 Include immap.h and timer.h. Moved dtimer interrupt setup to dtimer_intr_setup() from cpu/mcf532x/interrupts.c. Changed (CFG_CLK /1000000) -1 << 8 to CFG_TIMER_PRESCALER
37153 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37155 commit 5cdc07c7ef8f08ea55d3c47ed9221d91aa6d5fac
37156 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37157 Date: Thu Jul 5 23:31:25 2007 -0500
37159 Update header files
37161 Include immap.h and renamed mcfrtc.h to rtc.h
37163 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37165 commit 2870e98ac8e5553e9187b12a47e5f46babb53990
37166 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37167 Date: Thu Jul 5 23:29:21 2007 -0500
37169 Add mcffec_initialize()
37171 Added mcffec_initialize() in eth_initialize()
37173 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37175 commit 45a25bfd0c52f8a3fa137216bc94d32f90bedc5d
37176 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37177 Date: Thu Jul 5 23:27:40 2007 -0500
37179 Update header file and clean up
37183 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37185 commit 0cee9c66318602c856a899ae5fa7579ccba6443a
37186 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37187 Date: Thu Jul 5 23:23:15 2007 -0500
37189 New uart structure and defines
37191 Seperated from mcfuart.h
37193 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37195 commit a90e79de8d99e9c9d69d60bfff9f24c337165900
37196 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37197 Date: Thu Jul 5 23:22:31 2007 -0500
37199 New timer structure and defines
37201 Seperated from mcftimer.h
37203 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37205 commit e04acb2eba4782489417240eff76e20e176aec10
37206 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37207 Date: Thu Jul 5 23:21:09 2007 -0500
37209 Rename mcfrtc to rtc
37211 Since it is already in m68k folder, un-necessary to pad mcf. Replaced immap_5329.h and m5329.h to immap.h
37213 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37215 commit 2bd806fe4fc23958b8f78778199e7a6e3f8f6ad5
37216 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37217 Date: Thu Jul 5 23:17:36 2007 -0500
37219 Rename mcfserial.c. Update include header
37221 Renamed mcfserial.c to mcfuart.c. Modified Makefile for mcfuart.o from mcfserial.o. Replace immap_5329.h and m5329.h to immap.h
37223 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37225 commit f2208fbc2eb9de3f4285bfaa021c6ebae16c9b0e
37226 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37227 Date: Thu Jul 5 23:13:58 2007 -0500
37229 Header file update, clean up and cache handling
37231 Replaced immap_5329.h and m5329.h with immap.h. Included cache_invalid.
37233 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37235 commit 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97
37236 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37237 Date: Thu Jul 5 23:10:40 2007 -0500
37239 Create interrupts.c and modify Makefile
37241 interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
37243 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37245 commit ddd104f1ed655eda50c06ba636237a83ed943f34
37246 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37247 Date: Thu Jul 5 23:06:55 2007 -0500
37251 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37253 commit b9bf3de377b2bae70c983c9b97feae914999e735
37254 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37255 Date: Thu Jul 5 23:05:31 2007 -0500
37257 Update header file and some clean up
37259 Replaced immap_5329.h and m5329.h with immap.h. Removed whitespaces.
37261 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37263 commit 84a015b52ec820a5ae173717d78516de731c89c2
37264 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37265 Date: Thu Jul 5 23:03:28 2007 -0500
37267 Update header file and enable icache
37269 Replaced immap_5329.h and m5329.h with immap.h. Enabled icache_enable() in cpu_init_r().
37271 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37273 commit 7a17e759c7a8b58e910daf54df611e94fc8ca074
37274 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37275 Date: Thu Jul 5 23:01:22 2007 -0500
37277 Update header file and removed interrupt_init()
37279 Replace immap_5329.h and m5329.h with immap.h. Removed interrupt_init() and placed it in interrupts.c
37281 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37283 commit 3b635492c95bd0d6e08f93f699821cba1f602a64
37284 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37285 Date: Thu Jul 5 22:57:46 2007 -0500
37287 Update for flash.o and mii.o
37289 Removed flash.o and added mii.o
37291 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37293 commit c5ded275d839e4ff79f41718d50a835d989f57bc
37294 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37295 Date: Thu Jul 5 22:56:19 2007 -0500
37297 MII functions calls.
37299 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37301 commit 427c814104560e29bda14955c67703245aaaa5b4
37302 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37303 Date: Thu Jul 5 22:54:42 2007 -0500
37305 Removed MII functions and replaced immap_5329.h and m5329.h with immap.h.
37307 The removed MII routines will be placed in mii.c.
37309 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37311 commit 01a793fda09c63df5a496f09dc1c7cb26e6751a2
37312 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37313 Date: Thu Jul 5 22:51:05 2007 -0500
37317 There is a Common Flash Interface Driver existed. To use the CFI driver, define CFG_FLASH_CFI in configuration file.
37319 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37321 commit 2744354a8437b8f78db178e30660215688bff570
37322 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37323 Date: Thu Jul 5 22:46:38 2007 -0500
37325 Seperate old structure defines and new structure defines
37327 Removed new uart structure and defines to uart.h
37329 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37331 commit 2bd58608dbcff8890ca9a0c59e861ac24f8bb230
37332 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37333 Date: Thu Jul 5 22:45:01 2007 -0500
37335 Seperate old structure defines and new structure defines
37337 New timer structure and defines will move to new timer.h
37339 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37341 commit 8cd5cd6de4ff92e03978338ed7aeb3ce7b7b9784
37342 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37343 Date: Thu Jul 5 22:42:23 2007 -0500
37349 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37351 commit 514871f565dd8bd1121e4a3ac1665a790e20b8f2
37352 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37353 Date: Thu Jul 5 22:41:24 2007 -0500
37357 Replaced whitespace with tabs
37359 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37361 commit 48dbfeabc7afffe30609a4489f10c22cb67ef7dd
37362 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37363 Date: Thu Jul 5 22:39:07 2007 -0500
37365 Create new header file and move peripherals base address from configs file to new header file.
37367 Create new header file to include immap_5xxx.h and m5xxx.h and to share among drivers without update in driver file each processor is added. Moved peripherals base address and defines from configs file to immap.h.
37369 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37371 commit be296e31c4411f96d9cb3d2afc8fcb006867abfa
37372 Author: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37373 Date: Thu Jul 5 22:24:58 2007 -0500
37377 Changed MAKEALL file mode to executable, removed executable file mode from Makefile
37379 Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
37381 commit b3aff0cb9ecf236d7e8c93761dd1dadf6837a582
37382 Author: Jon Loeliger <jdl@freescale.com>
37383 Date: Tue Jul 10 11:19:50 2007 -0500
37385 disk/ doc/ lib_*/ and tools/: Remove lingering references to CFG_CMD_* symbols.
37387 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
37388 Those always evaluated TRUE, and thus were always compiled
37389 even when IDE really wasn't defined/wanted.
37391 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37393 commit ddb5d86f0215bcb6c293510c50eb050e92883b7a
37394 Author: Jon Loeliger <jdl@freescale.com>
37395 Date: Tue Jul 10 11:13:21 2007 -0500
37397 drivers/: Remove lingering references to CFG_CMD_* symbols.
37399 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
37400 Those always evaluated TRUE, and thus were always compiled
37401 even when IDE really wasn't defined/wanted.
37403 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37405 commit f40a7f3e3888b42a43674b099e5470022c8c544c
37406 Author: Jon Loeliger <jdl@freescale.com>
37407 Date: Tue Jul 10 11:07:56 2007 -0500
37409 fs/: Remove lingering references to CFG_CMD_* symbols.
37411 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
37412 Those always evaluated TRUE, and thus were always compiled
37413 even when IDE really wasn't defined/wanted.
37415 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37417 commit 610f2e9c28a9c101e09fa1b78143cf5f00ed1593
37418 Author: Jon Loeliger <jdl@freescale.com>
37419 Date: Tue Jul 10 11:05:02 2007 -0500
37421 net/: Remove lingering references to CFG_CMD_* symbols.
37423 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
37424 Those always evaluated TRUE, and thus were always compiled
37425 even when IDE really wasn't defined/wanted.
37427 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37429 commit 902531788376046da212afd1661cffb62f3daa1c
37430 Author: Jon Loeliger <jdl@freescale.com>
37431 Date: Tue Jul 10 11:02:44 2007 -0500
37433 common/: Remove lingering references to CFG_CMD_* symbols.
37435 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
37436 Those always evaluated TRUE, and thus were always compiled
37437 even when IDE really wasn't defined/wanted.
37439 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37441 commit d39b57415838c73fb0a37eca84de3c68ba990586
37442 Author: Jon Loeliger <jdl@freescale.com>
37443 Date: Tue Jul 10 10:48:22 2007 -0500
37445 board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.
37447 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
37448 Those always evaluated TRUE, and thus were always compiled
37449 even when IDE really wasn't defined/wanted.
37451 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37453 commit 77a318545d57aefa844752465b94c7e09a3f26d0
37454 Author: Jon Loeliger <jdl@freescale.com>
37455 Date: Tue Jul 10 10:39:10 2007 -0500
37457 board/[A-Za-i]*: Remove lingering references to CFG_CMD_* symbols.
37459 Fixed some broken instances of "#ifdef CMD_CFG_IDE" too.
37460 Those always evaluated TRUE, and thus were always compiled
37461 even when IDE really wasn't defined/wanted.
37463 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37465 commit 068b60a0eb7e73b243ca55399f2a7df76e2c3f3d
37466 Author: Jon Loeliger <jdl@freescale.com>
37467 Date: Tue Jul 10 10:27:39 2007 -0500
37469 cpu/ rtc/ include/: Remove lingering references to CFG_CMD_* symbols.
37471 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37473 commit 079a136c3588814784561d6e4856970ee82d6e2a
37474 Author: Jon Loeliger <jdl@freescale.com>
37475 Date: Tue Jul 10 10:12:10 2007 -0500
37477 include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
37479 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
37480 used to be included but CONFIG_BOOTP_MASK was not defined.
37482 Remove lingering references to CFG_CMD_* symbols.
37484 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37486 commit 7f5c01577400c74cc5bac74f41dd0d3c79df623c
37487 Author: Jon Loeliger <jdl@freescale.com>
37488 Date: Tue Jul 10 09:38:02 2007 -0500
37490 include/configs/[g-o]*: Cleanup BOOTP and lingering CFG_CMD_*.
37492 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
37493 used to be included but CONFIG_BOOTP_MASK was not defined.
37495 Remove lingering references to CFG_CMD_* symbols.
37497 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37499 commit 80ff4f99b84b64edca3fd10da365ec1493be1c95
37500 Author: Jon Loeliger <jdl@freescale.com>
37501 Date: Tue Jul 10 09:29:01 2007 -0500
37503 include/configs/[a-e]*: Cleanup BOOTP and lingering CFG_CMD_*.
37505 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
37506 used to be included but CONFIG_BOOTP_MASK was not defined.
37508 Remove lingering references to CFG_CMD_* symbols.
37510 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37512 commit a1aa0bb502e25fd598b5e0ccdfb2c174921d714a
37513 Author: Jon Loeliger <jdl@freescale.com>
37514 Date: Tue Jul 10 09:22:23 2007 -0500
37516 include/configs/[P-Z]*: Cleanup BOOTP and lingering CFG_CMD_*.
37518 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
37519 used to be included but CONFIG_BOOTP_MASK was not defined.
37521 Remove lingering references to CFG_CMD_* symbols.
37523 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37525 commit 659e2f6736232a08acca8785c206e2b4d9cd07d7
37526 Author: Jon Loeliger <jdl@freescale.com>
37527 Date: Tue Jul 10 09:10:49 2007 -0500
37529 include/configs/[J-O]*: Cleanup BOOTP and lingering CFG_CMD_*.
37531 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
37532 used to be included but CONFIG_BOOTP_MASK was not defined.
37534 Remove lingering references to CFG_CMD_* symbols.
37536 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37538 commit 11799434c5ff15a612577bb1ad1f4ea1a0595e4b
37539 Author: Jon Loeliger <jdl@freescale.com>
37540 Date: Tue Jul 10 09:02:57 2007 -0500
37542 include/configs/[A-I]*: Cleanup BOOTP and lingering CFG_CMD_*.
37544 Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h
37545 used to be included but CONFIG_BOOTP_MASK was not defined.
37547 Remove lingering references to CFG_CMD_* symbols.
37549 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37551 commit 1fe80d79c5c4e52d3410a7ab4b8515da095cdab3
37552 Author: Jon Loeliger <jdl@freescale.com>
37553 Date: Mon Jul 9 22:08:34 2007 -0500
37555 Finally retire cmd_confdefs.h and CONFIG_BOOTP_MASK!
37557 All of the choices for CONFIG_BOOTP_ are now documented in
37558 the README file. You must now individually select exactly
37559 the set that you want using a series of
37560 #define CONFIG_BOOTP_<x>
37561 statements in the board port config files now.
37563 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37565 commit d3b8c1a743dcd31625c99e6a44590f207eb00028
37566 Author: Jon Loeliger <jdl@freescale.com>
37567 Date: Mon Jul 9 21:57:31 2007 -0500
37569 include/configs/[m-z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
37571 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37573 commit 2fd90ce575b02d189cbf443c85309bcd001aa393
37574 Author: Jon Loeliger <jdl@freescale.com>
37575 Date: Mon Jul 9 21:48:26 2007 -0500
37577 include/configs/[a-m]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
37579 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37581 commit 37d4bb70586659dedef1658ce1bed071be098aec
37582 Author: Jon Loeliger <jdl@freescale.com>
37583 Date: Mon Jul 9 21:38:02 2007 -0500
37585 include/configs/[T-Z]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
37587 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37589 commit 18225e8dd1950bd6dbf35011e436db7f474c187d
37590 Author: Jon Loeliger <jdl@freescale.com>
37591 Date: Mon Jul 9 21:31:24 2007 -0500
37593 include/configs/[P-S]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
37595 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37597 commit 7be044e4ea644b0ef1c486dadc1a4c2665b4374d
37598 Author: Jon Loeliger <jdl@freescale.com>
37599 Date: Mon Jul 9 21:24:19 2007 -0500
37601 include/configs/[H-N]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
37603 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37605 commit 5d2ebe1b3ef0055c661bb1a0d252bf252380069f
37606 Author: Jon Loeliger <jdl@freescale.com>
37607 Date: Mon Jul 9 21:16:53 2007 -0500
37609 include/configs/[A-G]*: Directly use CONFIG_BOOTP_* symbols rather than CONFIG_BOOTP_MASK.
37611 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37613 commit f55f7f8d83f36021ab1f0e3d738f5d8c8083a7e3
37614 Author: Jon Loeliger <jdl@freescale.com>
37615 Date: Mon Jul 9 19:12:30 2007 -0500
37617 Retire CONFIG_COMMANDS finally.
37618 Strip old CFG_CMD_* symbols out.
37620 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37622 commit b5501f7d720fed99ab0b42c83f5dea52868ce007
37623 Author: Jon Loeliger <jdl@freescale.com>
37624 Date: Mon Jul 9 19:10:03 2007 -0500
37626 Update README.* to reference new CONFIG_CMD_* names now.
37628 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37630 commit 4431283c7e6d54ae180d466e51bf2d97471a0ad9
37631 Author: Jon Loeliger <jdl@freescale.com>
37632 Date: Mon Jul 9 19:06:00 2007 -0500
37634 cpu/m*: Remove obsolete references to CONFIG_COMMANDS
37636 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37638 commit 3a1ed1e1f922c419bb71f7df4949d783ade369fa
37639 Author: Jon Loeliger <jdl@freescale.com>
37640 Date: Mon Jul 9 18:57:22 2007 -0500
37642 cpu/[7a-ln-z]*: Remove obsolete references to CONFIG_COMMANDS
37644 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37646 commit ab3abcbabd840928fb1eb5122118ca466b5e5013
37647 Author: Jon Loeliger <jdl@freescale.com>
37648 Date: Mon Jul 9 18:45:16 2007 -0500
37650 board/[q-z]*: Remove obsolete references to CONFIG_COMMANDS
37652 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37654 commit 3fe00109a5f12de55b6e25b1f98dfc24bc9090c9
37655 Author: Jon Loeliger <jdl@freescale.com>
37656 Date: Mon Jul 9 18:38:39 2007 -0500
37658 board/[m-p]*: Remove obsolete references to CONFIG_COMMANDS
37660 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37662 commit c508a4cefd8a953fc64957650506a035e6e3d9d1
37663 Author: Jon Loeliger <jdl@freescale.com>
37664 Date: Mon Jul 9 18:31:28 2007 -0500
37666 board/[f-l]*: Remove obsolete references to CONFIG_COMMANDS
37668 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37670 commit b9307262f8a9f3b5c9e15a6067eadc17407146f6
37671 Author: Jon Loeliger <jdl@freescale.com>
37672 Date: Mon Jul 9 18:24:55 2007 -0500
37674 board/[d-e]*: Remove obsolete references to CONFIG_COMMANDS
37676 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37678 commit fcec2eb93e126400009729328e797f12bc94f1fd
37679 Author: Jon Loeliger <jdl@freescale.com>
37680 Date: Mon Jul 9 18:19:09 2007 -0500
37682 board/[A-Za-c]*: Remove obsolete references to CONFIG_COMMANDS
37684 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37686 commit a593814f2be0c9cdc3133cd550b167b8a988328f
37687 Author: Jon Loeliger <jdl@freescale.com>
37688 Date: Mon Jul 9 18:10:50 2007 -0500
37690 rtc/: Remove obsolete references to CONFIG_COMMANDS
37692 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37694 commit 67350568f9d46e66c21829f3513b3db0caeb948b
37695 Author: Jon Loeliger <jdl@freescale.com>
37696 Date: Mon Jul 9 18:05:38 2007 -0500
37698 lib_{arm,avr32,blackfin,generic,i386}/: Remove obsolete references to CONFIG_COMMANDS
37700 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37702 commit 7def6b34f910f08d7ef0a14646da067719237ca2
37703 Author: Jon Loeliger <jdl@freescale.com>
37704 Date: Mon Jul 9 18:02:11 2007 -0500
37706 lib_{m68k,microblaze,mips,ppc}/: Remove obsolete references to CONFIG_COMMANDS
37708 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37710 commit dd60d1223b99a88a7216f3e041fe40634ad4c2bb
37711 Author: Jon Loeliger <jdl@freescale.com>
37712 Date: Mon Jul 9 17:56:50 2007 -0500
37714 fs/: Remove obsolete references to CONFIG_COMMANDS
37716 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37718 commit c91898bbc505aff3e12a807af88e76da18efb7ee
37719 Author: Jon Loeliger <jdl@freescale.com>
37720 Date: Mon Jul 9 17:46:09 2007 -0500
37722 tools/: Remove obsolete references to CONFIG_COMMANDS
37724 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37726 commit 643d1ab23960950b52e0a2803c2d3ea4c558fa01
37727 Author: Jon Loeliger <jdl@freescale.com>
37728 Date: Mon Jul 9 17:45:14 2007 -0500
37730 net/: Remove obsolete references to CONFIG_COMMANDS
37732 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37734 commit cb51c0bf88f95a1bca68324b0126f8eed8b43273
37735 Author: Jon Loeliger <jdl@freescale.com>
37736 Date: Mon Jul 9 17:39:42 2007 -0500
37738 drivers/[n-z]*: Remove obsolete references to CONFIG_COMMANDS
37740 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37742 commit 07d38a17e964aec4c7827f0ee9a583bc8cc1ad6b
37743 Author: Jon Loeliger <jdl@freescale.com>
37744 Date: Mon Jul 9 17:30:01 2007 -0500
37746 drivers/[a-m]*: Remove obsolete references to CONFIG_COMMANDS
37748 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37750 commit cde5c64d17cf4834aa7b5c373f288bc7dad27b29
37751 Author: Jon Loeliger <jdl@freescale.com>
37752 Date: Mon Jul 9 17:22:37 2007 -0500
37754 disk/: Remove obsolete references to CONFIG_COMMANDS
37756 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37758 commit 639221c76c88215bd55af83ad174fc30d1940f8f
37759 Author: Jon Loeliger <jdl@freescale.com>
37760 Date: Mon Jul 9 17:15:49 2007 -0500
37762 include/: Remove obsolete references to CONFIG_COMMANDS
37763 Mostly removed from comments here.
37765 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37767 commit 4ef218f6fdf8d747f4589da5252b004e7d2c2876
37768 Author: Wolfgang Denk <wd@denx.de>
37769 Date: Tue Jul 10 00:01:28 2007 +0200
37771 Coding style cleanup; update CHANGELOG.
37773 Signed-off-by: Wolfgang Denk <wd@denx.de>
37775 commit c8603cfbd4573379a6076c9c208545ba2bbf019a
37776 Author: Stefan Roese <sr@denx.de>
37777 Date: Mon Jul 9 11:00:24 2007 +0200
37779 Small coding style cleanup
37781 Signed-off-by: Stefan Roese <sr@denx.de>
37783 commit 0f92c7e7c9a62755b1457d3c46f93c8c1f6c19fc
37784 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37785 Date: Mon Jul 9 10:10:08 2007 +0200
37787 Migrate esd 405EP boards to new NAND subsystem
37789 Remove unused CFG_NAND_LEGACY define
37791 These boards to not have NAND.
37793 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37795 commit bd84ee4c2020c3a6861f4bb2e7ea0fb49f82e803
37796 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37797 Date: Mon Jul 9 10:10:06 2007 +0200
37799 Migrate esd 405EP boards to new NAND subsystem
37801 Migrate esd 405EP boards to new NAND subsystem
37804 -use correct io accessors (in/out_be32())
37806 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37808 commit e09f7ab5749c345f924da272bea0521a73af5b11
37809 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37810 Date: Mon Jul 9 10:10:04 2007 +0200
37812 Migrate esd 405EP boards to new NAND subsystem
37814 This patch prepares the migration from the legacy NAND driver
37815 to U-Boot's new NAND subsystem for esd boards.
37817 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
37819 commit c3517f919d0f61650cf3027fd4faf0f631142f6c
37820 Author: Jon Loeliger <jdl@freescale.com>
37821 Date: Sun Jul 8 18:10:08 2007 -0500
37823 common/* non-cmd*: Remove obsolete references to CONFIG_COMMANDS
37825 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37827 commit fd9bcaa35be64fe41a4223fdb6ecdbad52470b39
37828 Author: Jon Loeliger <jdl@freescale.com>
37829 Date: Sun Jul 8 18:05:39 2007 -0500
37831 common/cmd_[p-x]*: Remove obsolete references to CONFIG_COMMANDS.
37833 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37835 commit c76fe47425afc7d5d670ff0539823c85d65d9c42
37836 Author: Jon Loeliger <jdl@freescale.com>
37837 Date: Sun Jul 8 18:02:23 2007 -0500
37839 common/cmd_[i-n]*: Remove obsolete references to CONFIG_COMMANDS.
37841 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37843 commit baa26db4113679b80970ff447d91cc10217742a6
37844 Author: Jon Loeliger <jdl@freescale.com>
37845 Date: Sun Jul 8 17:51:39 2007 -0500
37847 common/cmd_[af]*: Remove obsolete references to CONFIG_COMMANDS.
37849 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37851 commit af075ee96e52dda7b6bca6c937588aeaaec5f2cd
37852 Author: Jon Loeliger <jdl@freescale.com>
37853 Date: Sun Jul 8 17:02:01 2007 -0500
37855 Clear up confusion over the CMD_POST and POST_DIAG mess.
37857 For some reason, CONFIG_POST permeated as CONFIG_CMD_POST_DIAG
37858 when it really means just CONFIG_CMD_DIAG. There is no CMD_POST.
37859 Clear this mess up some.
37861 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37863 commit b3631487105a57ab7cbadfc26efbaf9676275018
37864 Author: Jon Loeliger <jdl@freescale.com>
37865 Date: Sun Jul 8 15:45:08 2007 -0500
37867 Remove references to the old cmd_confdefs.h include file.
37869 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37871 commit a22d4da95e20049b4daa1c2a022f61e8a72f2fb6
37872 Author: Jon Loeliger <jdl@freescale.com>
37873 Date: Sun Jul 8 15:42:59 2007 -0500
37875 include/configs: Catch some CONFIG_CMD_* conversion stragglers.
37877 Use new CONFIG_CMD_* in lwmon5.h board config file.
37878 Fix CONFIG_CMD_* typo braindamage in omap1510inn.h
37880 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37882 commit a5562901661bd428f7e5feb333f796372cb81019
37883 Author: Jon Loeliger <jdl@freescale.com>
37884 Date: Sun Jul 8 15:31:57 2007 -0500
37886 include/configs: Use new CONFIG_CMD_* in various [TUVWZYZ]* named board config files.
37888 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37890 commit fe7f782d5b8c64a0195c68c31a0a11d4f641355e
37891 Author: Jon Loeliger <jdl@freescale.com>
37892 Date: Sun Jul 8 15:02:44 2007 -0500
37894 include/configs: Use new CONFIG_CMD_* in various S* named board config files.
37896 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37898 commit e9a0f8f15c11f337967aa0600ad6e8af33037f50
37899 Author: Jon Loeliger <jdl@freescale.com>
37900 Date: Sun Jul 8 15:12:40 2007 -0500
37902 include/configs: Use new CONFIG_CMD_* in various R* named board config files.
37904 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37906 commit 12aa9fd23d724bd6ab88e1baa0db35133a27303f
37907 Author: Jon Loeliger <jdl@freescale.com>
37908 Date: Sun Jul 8 14:55:07 2007 -0500
37910 include/configs: Use new CONFIG_CMD_* in various Q* named board config files.
37912 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37914 commit acf0269779422f3e147d2ddfb499c9f6ff10ad5e
37915 Author: Jon Loeliger <jdl@freescale.com>
37916 Date: Sun Jul 8 14:49:44 2007 -0500
37918 include/configs: Use new CONFIG_CMD_* in various P* named board config files.
37920 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37922 commit e18a1061a8630cb67995fdf99afd3fb50d1b187d
37923 Author: Jon Loeliger <jdl@freescale.com>
37924 Date: Sun Jul 8 14:21:43 2007 -0500
37926 include/configs: Use new CONFIG_CMD_* in various [NO]* named board config files.
37928 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37930 commit 8353e139bfad9059c54f5b2421f1a3090e15a2e2
37931 Author: Jon Loeliger <jdl@freescale.com>
37932 Date: Sun Jul 8 14:14:17 2007 -0500
37934 include/configs: Use new CONFIG_CMD_* in various M* named board config files.
37936 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37938 commit 348f258f24253433e4a2302a0bbceb6740a67246
37939 Author: Jon Loeliger <jdl@freescale.com>
37940 Date: Sun Jul 8 13:46:18 2007 -0500
37942 include/configs: Use new CONFIG_CMD_* in various [IJKL]* named board config files.
37944 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37946 commit 6c4f4da9bfc9f9403f54fce678ed0364b7c86a6a
37947 Author: Jon Loeliger <jdl@freescale.com>
37948 Date: Sun Jul 8 10:09:35 2007 -0500
37950 include/configs: Use new CONFIG_CMD_* in various H* named board config files.
37952 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37954 commit 60a0876b5106b34220e459c208bbf648073306c0
37955 Author: Jon Loeliger <jdl@freescale.com>
37956 Date: Sat Jul 7 21:04:26 2007 -0500
37958 include/configs: Use new CONFIG_CMD_* in various F* and G* named board config files.
37960 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37962 commit dcaa71562826a2466e894c868d132509dcda8444
37963 Author: Jon Loeliger <jdl@freescale.com>
37964 Date: Sat Jul 7 20:56:05 2007 -0500
37966 include/configs: Use new CONFIG_CMD_* in various E* named board config files.
37968 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37970 commit 3c3227f3c737502311b25b72084573901cbbf17d
37971 Author: Jon Loeliger <jdl@freescale.com>
37972 Date: Sat Jul 7 20:40:43 2007 -0500
37974 include/configs: Use new CONFIG_CMD_* in various D* named board config files.
37976 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37978 commit 49cf7e8ee7ef943fdfe866ce28410b0bfbf6a26c
37979 Author: Jon Loeliger <jdl@freescale.com>
37980 Date: Thu Jul 5 19:52:35 2007 -0500
37982 include/configs: Use new CONFIG_CMD_* in various C* named board config files.
37984 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37986 commit de8b2a6e33298dcdb10bdda48db25e53c3089eba
37987 Author: Jon Loeliger <jdl@freescale.com>
37988 Date: Thu Jul 5 19:32:07 2007 -0500
37990 include/configs: Use new CONFIG_CMD_* in various B* named board config files.
37992 Signed-off-by: Jon Loeliger <jdl@freescale.com>
37994 commit 498ff9a228485bd4b9f23d066bada268f9add1dd
37995 Author: Jon Loeliger <jdl@freescale.com>
37996 Date: Thu Jul 5 19:13:52 2007 -0500
37998 include/configs: Use new CONFIG_CMD_* in various A* named board config files.
38000 Since ADS860.h includes "board/fads/fads.h" with ramifications
38001 on the CONFIG_COMMAND treatment, it too has to be adjusted to
38002 exclude already configured commands in this same commit.
38004 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38006 commit 10e038932f22ee80ebd53de312531e70e6590a2f
38007 Author: Thomas Knobloch <knobloch@siemens.com>
38008 Date: Fri Jul 6 14:58:39 2007 +0200
38010 [NAND] Bad block skipping for command nboot
38012 The old implementation of command nboot does not support reading the image from
38013 NAND flash with skipping of bad blocks. The patch implements a new version of
38014 the nboot command: by calling nboot.jffs2 from the u-boot command line the
38015 command will load the image from NAND flash with respect to bad blocks (by using
38016 nand_read_opts()). This is similar to e.g. the NAND read command: "nand
38019 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
38020 Signed-off-by: Stefan Roese <sr@denx.de>
38022 commit 334043f601a90ac53e5ecc846fbb73a1ef38cb1f
38023 Author: Stefan Roese <sr@denx.de>
38024 Date: Fri Jul 6 12:26:51 2007 +0200
38026 ppc4xx: Update lwmon5 default environment
38028 Signed-off-by: Stefan Roese <sr@denx.de>
38030 commit 5d187430a055d62f17ca84d75e7245439d1f7e75
38031 Author: Stefan Roese <sr@denx.de>
38032 Date: Fri Jul 6 11:48:24 2007 +0200
38034 ppc4xx: Update lwmon5 board
38036 Add unlock=yes environment variable to default variables to unlock
38037 the CFI flash by default.
38039 Signed-off-by: Stefan Roese <sr@denx.de>
38041 commit 6b0a174a1e6f55e1f5a1fbb223cdad7645a4646e
38042 Author: Stefan Roese <sr@denx.de>
38043 Date: Fri Jul 6 09:45:47 2007 +0200
38045 Fix problem with get/setdcr commands introduced by cfg patches
38047 Signed-off-by: Stefan Roese <sr@denx.de>
38049 commit f1152f8c28db4a22087c21c618a3f7baa48e9a4f
38050 Author: Wolfgang Denk <wd@denx.de>
38051 Date: Fri Jul 6 02:50:19 2007 +0200
38053 Code cleanup and default config update for STC GP3 SSA board.
38055 Signed-off-by: Wolfgang Denk <wd@denx.de>
38057 commit e4dbe1b215f5c6c462e76909d240bd96472b84de
38058 Author: Wolfgang Denk <wd@denx.de>
38059 Date: Thu Jul 5 17:56:27 2007 +0200
38061 Fixing some typos etc. introduced mainly by cfg patches.
38063 Signed-off-by: Wolfgang Denk <wd@denx.de>
38065 commit b6b4684546809f89c8bac72863ca49b5fd8ac0cd
38066 Author: Wolfgang Denk <wd@denx.de>
38067 Date: Thu Jul 5 11:12:16 2007 +0200
38069 Minor coding style cleanup. Update CHANGELOG.
38071 commit dca3b3d6d6396b67e5e84af53452164923c73443
38072 Author: Jon Loeliger <jdl@jdl.com>
38073 Date: Wed Jul 4 22:33:46 2007 -0500
38075 include/configs: Use new CONFIG_CMD_* in various [v-z]* named board config files.
38077 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38079 commit 6c18eb9804b525f3e4f3bb3d014dd69a200d9fa7
38080 Author: Jon Loeliger <jdl@jdl.com>
38081 Date: Wed Jul 4 22:33:38 2007 -0500
38083 include/configs: Use new CONFIG_CMD_* in various t* and u* named board config files.
38085 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38087 commit 46da1e96b7db14f4fcd2c92544e7c0862024bc76
38088 Author: Jon Loeliger <jdl@jdl.com>
38089 Date: Wed Jul 4 22:33:30 2007 -0500
38091 include/configs: Use new CONFIG_CMD_* in various s* named board config files.
38093 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38095 commit 90cc3eb6d2be856d9ddd81436de9cf343bc6b5c8
38096 Author: Jon Loeliger <jdl@jdl.com>
38097 Date: Wed Jul 4 22:33:23 2007 -0500
38099 include/configs: Use new CONFIG_CMD_* in various q* and r* named board config files.
38101 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38103 commit 26a34560d56a9df5bc2ae23525d9229736134757
38104 Author: Jon Loeliger <jdl@jdl.com>
38105 Date: Wed Jul 4 22:33:17 2007 -0500
38107 include/configs: Use new CONFIG_CMD_* in various p* named board config files.
38109 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38111 commit a5cb23092a7d31490a33d4ec871468b63babfa3c
38112 Author: Jon Loeliger <jdl@jdl.com>
38113 Date: Wed Jul 4 22:33:13 2007 -0500
38115 include/configs: Use new CONFIG_CMD_* in various o* named board config files.
38117 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38119 commit 929a2bfd142737003a8fc32e1b86e1f2c1850257
38120 Author: Jon Loeliger <jdl@jdl.com>
38121 Date: Wed Jul 4 22:33:07 2007 -0500
38123 include/configs: Use new CONFIG_CMD_* in various n* named board config files.
38125 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38127 commit 5dc11a511960d490f7f01ffd746edfe6277f99b0
38128 Author: Jon Loeliger <jdl@jdl.com>
38129 Date: Wed Jul 4 22:33:01 2007 -0500
38131 include/configs: Use new CONFIG_CMD_* in various m* named board config files.
38133 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38135 commit 9bbb1c0820c1fbd3811ab6ee4ba0f6c6f76b27e4
38136 Author: Jon Loeliger <jdl@jdl.com>
38137 Date: Wed Jul 4 22:32:57 2007 -0500
38139 include/configs: Use new CONFIG_CMD_* in various l* named board config files.
38141 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38143 commit bc234c129fa04fb9fa33530930e5cbc6084cd47a
38144 Author: Jon Loeliger <jdl@jdl.com>
38145 Date: Wed Jul 4 22:32:51 2007 -0500
38147 include/configs: Use new CONFIG_CMD_* in various j* and k* named board config files.
38149 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38151 commit 1d2c6bc491969f8d8fb34c8e30e8bea7a2af9c31
38152 Author: Jon Loeliger <jdl@jdl.com>
38153 Date: Wed Jul 4 22:32:32 2007 -0500
38155 include/configs: Use new CONFIG_CMD_* in various i* named board config files.
38157 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38159 commit 48d5d102a2f2e619c92050b9aedbb69689185bc0
38160 Author: Jon Loeliger <jdl@jdl.com>
38161 Date: Wed Jul 4 22:32:25 2007 -0500
38163 include/configs: Use new CONFIG_CMD_* in various h* named board config files.
38165 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38167 commit 72eb0efaed7048afcc61fc6f0085c49394b5dc36
38168 Author: Jon Loeliger <jdl@jdl.com>
38169 Date: Wed Jul 4 22:32:19 2007 -0500
38171 include/configs: Use new CONFIG_CMD_* in various g* named board config files.
38173 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38175 commit 1bec3d3002d3bbbae6f2468a0f7376db1120d33e
38176 Author: Jon Loeliger <jdl@jdl.com>
38177 Date: Wed Jul 4 22:32:10 2007 -0500
38179 include/configs: Use new CONFIG_CMD_* in various e* named board config files.
38181 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38183 commit ab999ba1b31ebe78dd16374394a55d7c6e5aa6e4
38184 Author: Jon Loeliger <jdl@jdl.com>
38185 Date: Wed Jul 4 22:32:03 2007 -0500
38187 include/configs: Use new CONFIG_CMD_* in various d* named board config files.
38189 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38191 commit 37e4f24b87fa255ae456d193b7cd23c18dd1d56b
38192 Author: Jon Loeliger <jdl@jdl.com>
38193 Date: Wed Jul 4 22:31:56 2007 -0500
38195 include/configs: Use new CONFIG_CMD_* in various c* named board config files.
38197 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38199 commit ba2351f9d1e841bd00ea6dad1e3c16d0259ad264
38200 Author: Jon Loeliger <jdl@jdl.com>
38201 Date: Wed Jul 4 22:31:49 2007 -0500
38203 include/configs: Use new CONFIG_CMD_* in various b* named board config files.
38205 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38207 commit 0b361c916617aff79e647b40f0e43361e0bbaccf
38208 Author: Jon Loeliger <jdl@jdl.com>
38209 Date: Wed Jul 4 22:31:42 2007 -0500
38211 include/configs: Use new CONFIG_CMD_* in various a* named board config files.
38213 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38215 commit b730cda82e362df6a22f4c59c0a9b97e885b1014
38216 Author: Jon Loeliger <jdl@jdl.com>
38217 Date: Wed Jul 4 22:31:35 2007 -0500
38219 include/configs: Use new CONFIG_CMD_* in mpc5xx board config files.
38221 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38223 commit d794cfefead5fc177cf4f41164e80382e9c9484a
38224 Author: Jon Loeliger <jdl@jdl.com>
38225 Date: Wed Jul 4 22:31:15 2007 -0500
38227 include/configs: Use new CONFIG_CMD_* in various 5200 board config files.
38229 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38231 commit ef0df52ab49eea4a30c15087fd27d54c1d946f2c
38232 Author: Jon Loeliger <jdl@jdl.com>
38233 Date: Wed Jul 4 22:31:07 2007 -0500
38235 include/configs: Use new CONFIG_CMD_* in STx board config files.
38237 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38239 commit 866e3089bfc826bb4dc74637f8aad87a3bab79fc
38240 Author: Jon Loeliger <jdl@jdl.com>
38241 Date: Wed Jul 4 22:30:58 2007 -0500
38243 include/configs: Use new CONFIG_CMD_* in sbc* board config files.
38245 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38247 commit 2694690e285acaa34922f55f4b5ae030da60c55a
38248 Author: Jon Loeliger <jdl@jdl.com>
38249 Date: Wed Jul 4 22:30:50 2007 -0500
38251 include/configs: Use new CONFIG_CMD_* in TQM board config files.
38253 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38255 commit 1cc4c458329765b58e584a19821e796b3c10e976
38256 Author: Jon Loeliger <jdl@jdl.com>
38257 Date: Wed Jul 4 22:30:28 2007 -0500
38259 include/configs: Use new CONFIG_CMD_* in 82xx board config files.
38261 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38263 commit 8ea5499afdaba0acf60923dd99001c399d4a7c8e
38264 Author: Jon Loeliger <jdl@jdl.com>
38265 Date: Wed Jul 4 22:30:06 2007 -0500
38267 include/configs: Use new CONFIG_CMD_* in 83xx board config files.
38269 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38271 commit b44896215a09c60fa40cae906f7ed207bbc2c492
38272 Author: Sergei Poselenov <sposelenov@emcraft.com>
38273 Date: Thu Jul 5 08:17:37 2007 +0200
38275 Merged POST framework with the current TOT.
38277 Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com>
38279 commit b24629fa377214d63bb40d1360e354b6d3e4af56
38280 Author: Jon Loeliger <jdl@jdl.com>
38281 Date: Wed Jun 13 13:23:15 2007 -0500
38283 mpc86xx: Remove old CFG_CMD_* references.
38285 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38287 commit 46175d9764da129bb4fd341cd2554dc7d55f5b2a
38288 Author: Jon Loeliger <jdl@jdl.com>
38289 Date: Wed Jun 13 13:22:54 2007 -0500
38291 Add MPC8568MDS to MAKEALL 85xx target.
38293 It was missing from the original port submission.
38295 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38297 commit 2835e518c969e5124ba1174eef3e8375e12fa7d5
38298 Author: Jon Loeliger <jdl@jdl.com>
38299 Date: Wed Jun 13 13:22:08 2007 -0500
38301 include/configs: Use new CONFIG_CMD_* in 85xx board config files.
38303 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38305 commit 56b304ac2091689506088a9ae67f63fd6300cf16
38306 Author: Jon Loeliger <jdl@jdl.com>
38307 Date: Wed Jun 13 13:21:37 2007 -0500
38309 Fix #if typo in CONFIG_CMD_* changes.
38311 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38313 commit f780b83316d9af1f61d71cc88b1917b387b9b995
38314 Author: Niklaus Giger <niklausgiger@gmx.ch>
38315 Date: Wed Jun 27 18:11:38 2007 +0200
38317 resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
38319 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
38321 commit 04e6c38b766eaa2f3287561563c9e215e0c3a0d4
38322 Author: Stefan Roese <sr@denx.de>
38323 Date: Wed Jul 4 10:06:30 2007 +0200
38325 ppc4xx: Update lwmon5 board
38327 - Add optional ECC generation routine to preserve existing
38328 RAM values. This is needed for the Linux log-buffer support
38329 - Add optional DDR2 setup with CL=4
38330 - GPIO50 not used anymore
38331 - Lime register setup added
38333 Signed-off-by: Stefan Roese <sr@denx.de>
38335 commit 6810a34677dbc446334f5e451f1682426dd33b49
38336 Author: Grant Likely <grant.likely@secretlab.ca>
38337 Date: Tue Jul 3 00:17:28 2007 -0600
38339 Fix Makefile to use $(MKCONFIG) macro for all board ports
38341 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38343 commit 90b1b2d69b9396ff2f01165ebc16c9a594eb5926
38344 Author: Grant Likely <grant.likely@secretlab.ca>
38345 Date: Tue Jul 3 00:17:28 2007 -0600
38347 Fix Makefile to use $(MKCONFIG) macro for all board ports
38349 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38351 commit 057004f4a4863554d56cc56268bfa7c7d9738e27
38352 Author: Grant Likely <grant.likely@secretlab.ca>
38353 Date: Tue Jul 3 00:34:49 2007 -0600
38355 Correct fixup relocation for mpc83xx
38357 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38359 commit 5af61b2f4b838a05f79be274f3e5a66edd2d9c96
38360 Author: Grant Likely <grant.likely@secretlab.ca>
38361 Date: Tue Jul 3 00:34:44 2007 -0600
38363 Correct fixup relocation for mpc8260
38365 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38367 commit f3a52fe05923935db86985daf9438e2f70ac39aa
38368 Author: Grant Likely <grant.likely@secretlab.ca>
38369 Date: Tue Jul 3 00:34:39 2007 -0600
38371 Correct fixup relocation for mpc824x
38373 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38375 commit a85dd254c0577fca13627c46e93fc2ad4c4f1f00
38376 Author: Grant Likely <grant.likely@secretlab.ca>
38377 Date: Tue Jul 3 00:34:34 2007 -0600
38379 Correct fixup relocation for mpc8220
38381 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38383 commit 6f7576b20ecf0d040c3ac3b032b5cbc860e38a90
38384 Author: Grant Likely <grant.likely@secretlab.ca>
38385 Date: Tue Jul 3 00:34:29 2007 -0600
38387 Correct fixup relocation for MPC5xxx
38389 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38391 commit 3649cd99ba815b6601868735765602f00ef3692b
38392 Author: Grant Likely <grant.likely@secretlab.ca>
38393 Date: Tue Jul 3 00:34:24 2007 -0600
38395 Correct relocation fixup for mpc5xx
38397 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38399 commit f82b3b6304b620ef7e28bfaa1ea887a2ad2fa325
38400 Author: Grant Likely <grant.likely@secretlab.ca>
38401 Date: Tue Jul 3 00:34:19 2007 -0600
38403 Don't set gd->reloc_off if relocation of .fixup works correctly
38405 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38407 commit e1a6144c32dc7de73bcdd33995de0148cbd0bd28
38408 Author: Grant Likely <grant.likely@secretlab.ca>
38409 Date: Tue Jul 3 00:34:14 2007 -0600
38411 Remove obsolete mpc83xx linker scripts
38413 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38415 commit 17e32fc3908bf7089d3f16fc82a1c3ae674dd65b
38416 Author: Grant Likely <grant.likely@secretlab.ca>
38417 Date: Tue Jul 3 00:34:09 2007 -0600
38419 Consolidate mpc8260 linker scripts
38421 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38423 commit af7d38b393690d7eeaf418ac85a1e831a50d5fd0
38424 Author: Grant Likely <grant.likely@secretlab.ca>
38425 Date: Tue Jul 3 00:34:04 2007 -0600
38427 Remove obsolete mpc824x linker scripts
38429 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38431 commit f94a3aecebc40ca0939c7d66d010009cf51be9e2
38432 Author: Grant Likely <grant.likely@secretlab.ca>
38433 Date: Tue Jul 3 00:33:59 2007 -0600
38435 Remove obsolete mpc824x linker scripts (3 of 4)
38437 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38439 commit a71c084f3ac7fedf144537db2b2da47323068833
38440 Author: Grant Likely <grant.likely@secretlab.ca>
38441 Date: Tue Jul 3 00:33:53 2007 -0600
38443 Remove obsolete mpc824x linker scripts (2 of 4)
38445 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38447 commit f670a15468d1365241d40022b9408e1004181f5e
38448 Author: Grant Likely <grant.likely@secretlab.ca>
38449 Date: Tue Jul 3 00:33:48 2007 -0600
38451 Remove obsolete mpc824x linker scripts (1 of 4)
38453 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38455 commit 09555bd45a04c0e54f172528d21bc18896550d28
38456 Author: Grant Likely <grant.likely@secretlab.ca>
38457 Date: Tue Jul 3 00:33:43 2007 -0600
38459 Remove obsolete mpc8220 linker scripts
38461 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38463 commit 5efb992f046e51225c93d52f80fecbe433abd789
38464 Author: Grant Likely <grant.likely@secretlab.ca>
38465 Date: Tue Jul 3 00:33:38 2007 -0600
38467 Remove obsolete mpc5xxx linker scripts (3 of 3)
38469 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38471 commit 07c13dfef65b31647e69d8b61daa1eec598add1a
38472 Author: Grant Likely <grant.likely@secretlab.ca>
38473 Date: Tue Jul 3 00:33:33 2007 -0600
38475 Remove obsolete mpc5xxx linker scripts (2 of 3)
38477 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38479 commit b4f67513a624ce85866c66c575bd2d9d7977d7f0
38480 Author: Grant Likely <grant.likely@secretlab.ca>
38481 Date: Tue Jul 3 00:33:28 2007 -0600
38483 Remove obsolete mpc5xxx linker scripts (1 of 3)
38485 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38487 commit b7d8e05f8675249b5f208aa73babeed384a4519d
38488 Author: Grant Likely <grant.likely@secretlab.ca>
38489 Date: Tue Jul 3 00:33:23 2007 -0600
38491 Remove obsolete mpc5xx linker scripts
38493 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38495 commit 416a0b6d40f6eba3a2fc547253c16bda28d922f7
38496 Author: Grant Likely <grant.likely@secretlab.ca>
38497 Date: Tue Jul 3 00:33:18 2007 -0600
38499 Consolidate mpc83xx linker scripts
38501 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38503 commit 5fc59175b92883ed5d2666a04e6bc49e70a4a365
38504 Author: Grant Likely <grant.likely@secretlab.ca>
38505 Date: Tue Jul 3 00:33:13 2007 -0600
38507 Consolidate mpc8260 linker scripts
38509 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38511 commit 737f9eb02d7335df2b3e4d7a4d3348784d1da207
38512 Author: Grant Likely <grant.likely@secretlab.ca>
38513 Date: Tue Jul 3 00:33:08 2007 -0600
38515 Consolidate mpc824x linker scripts
38517 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38519 commit 9c757b789a59a855db57b448dd825329c4e9c4a0
38520 Author: Grant Likely <grant.likely@secretlab.ca>
38521 Date: Tue Jul 3 00:33:03 2007 -0600
38523 Consolidate mpc8220 linker scripts
38525 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38527 commit d181c9a15cd41863fe24840d17848429f27d3c8c
38528 Author: Grant Likely <grant.likely@secretlab.ca>
38529 Date: Tue Jul 3 00:32:58 2007 -0600
38531 Consolidate mpc5xxx linker scripts
38533 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38535 commit 287ac924adb7291bebe5086652a362a30ab28b13
38536 Author: Grant Likely <grant.likely@secretlab.ca>
38537 Date: Tue Jul 3 00:32:53 2007 -0600
38539 Consolidate mpc5xx linker scripts
38541 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
38543 commit 52b8704d0245e589f86d462e9ec25aeb7ecbbbdd
38544 Author: Wolfgang Denk <wd@denx.de>
38545 Date: Wed Jul 4 00:43:53 2007 +0200
38547 Fix a few file permission problems.
38549 Signed-off-by: Wolfgang Denk <wd@denx.de>
38551 commit 78e0cf2de7be7f1eaeeb622eb61fd50e4d5e205c
38552 Author: Wolfgang Denk <wd@denx.de>
38553 Date: Wed Jul 4 00:38:38 2007 +0200
38555 Minor coding style cleanup. Rebuild CHANGELOG file.
38557 commit 2f9c19e496acb6bb50d9299e1aab377625d48c38
38558 Author: Jon Loeliger <jdl@jdl.com>
38559 Date: Mon Jun 11 19:03:44 2007 -0500
38561 configs/ mpc86xx: Rewrite command line options using new CONFIG_CMD-* style.
38563 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38565 commit 602ad3b33d9ceef83dbab46be68646d645d637ee
38566 Author: Jon Loeliger <jdl@jdl.com>
38567 Date: Mon Jun 11 19:03:39 2007 -0500
38569 README: Rewrite command line config to use CONFIG_CMD_* names.
38571 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38573 commit 72a074cec68e5bad60d63206c050974e08afd804
38574 Author: Jon Loeliger <jdl@jdl.com>
38575 Date: Mon Jun 11 19:03:34 2007 -0500
38577 include/ non-config: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38579 This is a compatibility step that allows both the older form
38580 and the new form to co-exist for a while until the older can
38581 be removed entirely.
38583 All transformations are of the form:
38585 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38587 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38589 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38591 commit 5fcf543e0b6628c76ff48705b1b0566bfd11507b
38592 Author: Jon Loeliger <jdl@jdl.com>
38593 Date: Mon Jun 11 19:03:28 2007 -0500
38595 tools/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38597 This is a compatibility step that allows both the older form
38598 and the new form to co-exist for a while until the older can
38599 be removed entirely.
38601 All transformations are of the form:
38603 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38605 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38607 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38609 commit 9107ebe0d352420895ab69b715697bdebc8caf50
38610 Author: Jon Loeliger <jdl@jdl.com>
38611 Date: Mon Jun 11 19:03:23 2007 -0500
38613 board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38615 This is a compatibility step that allows both the older form
38616 and the new form to co-exist for a while until the older can
38617 be removed entirely.
38619 All transformations are of the form:
38621 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38623 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38625 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38627 commit 5e378003d592ea828ec69d6defcd4de79096dd5c
38628 Author: Jon Loeliger <jdl@jdl.com>
38629 Date: Mon Jun 11 19:03:19 2007 -0500
38631 board/[Ma-i]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38633 This is a compatibility step that allows both the older form
38634 and the new form to co-exist for a while until the older can
38635 be removed entirely.
38637 All transformations are of the form:
38639 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38641 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38643 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38645 commit 737184114ec9c9e0ab94d6713536126073bd2472
38646 Author: Jon Loeliger <jdl@jdl.com>
38647 Date: Mon Jun 11 19:03:15 2007 -0500
38649 cpu/ non-mpc*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38651 This is a compatibility step that allows both the older form
38652 and the new form to co-exist for a while until the older can
38653 be removed entirely.
38655 All transformations are of the form:
38657 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38659 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38661 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38663 commit f48070fe5fe440dfb5ee5268c920de70e48ea327
38664 Author: Jon Loeliger <jdl@jdl.com>
38665 Date: Mon Jun 11 19:03:08 2007 -0500
38667 cpu/mpc*/ : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38669 This is a compatibility step that allows both the older form
38670 and the new form to co-exist for a while until the older can
38671 be removed entirely.
38673 All transformations are of the form:
38675 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38677 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38679 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38681 commit 0c505db0a0dc1f670b13ce3b4d3fbf1ec5b3cbd2
38682 Author: Jon Loeliger <jdl@jdl.com>
38683 Date: Mon Jun 11 19:03:03 2007 -0500
38685 lib_*/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38687 This is a compatibility step that allows both the older form
38688 and the new form to co-exist for a while until the older can
38689 be removed entirely.
38691 All transformations are of the form:
38693 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38695 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38697 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38699 commit 73f032021ec5f13cda8faa4e34b6de80960eb86f
38700 Author: Jon Loeliger <jdl@jdl.com>
38701 Date: Mon Jun 11 19:02:58 2007 -0500
38703 lib_ppc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38705 This is a compatibility step that allows both the older form
38706 and the new form to co-exist for a while until the older can
38707 be removed entirely.
38709 All transformations are of the form:
38711 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38713 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38715 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38717 commit 98b79003c21c2578206003256de4e781d6b36ca8
38718 Author: Jon Loeliger <jdl@jdl.com>
38719 Date: Mon Jun 11 19:02:53 2007 -0500
38721 rtc/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38723 This is a compatibility step that allows both the older form
38724 and the new form to co-exist for a while until the older can
38725 be removed entirely.
38727 All transformations are of the form:
38729 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38731 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38733 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38735 commit 6e2115acb6a892d53a6881bf253ae41d3df39156
38736 Author: Jon Loeliger <jdl@jdl.com>
38737 Date: Mon Jun 11 19:02:49 2007 -0500
38739 net/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38741 This is a compatibility step that allows both the older form
38742 and the new form to co-exist for a while until the older can
38743 be removed entirely.
38745 All transformations are of the form:
38747 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38749 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38751 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38753 commit 45cdb9b72c94655c7308b464a2666057c0b286e0
38754 Author: Jon Loeliger <jdl@jdl.com>
38755 Date: Mon Jun 11 19:02:34 2007 -0500
38757 disk/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38759 This is a compatibility step that allows both the older form
38760 and the new form to co-exist for a while until the older can
38761 be removed entirely.
38763 All transformations are of the form:
38765 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38767 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38769 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38771 commit 4e109ae98294a5ca7ff848b7652c7bfd4023a94a
38772 Author: Jon Loeliger <jdl@jdl.com>
38773 Date: Mon Jun 11 19:02:20 2007 -0500
38775 fs/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38777 This is a compatibility step that allows both the older form
38778 and the new form to co-exist for a while until the older can
38779 be removed entirely.
38781 All transformations are of the form:
38783 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38785 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38787 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38789 commit d5be43de93ff905c465e509d45a3164ef48d26e7
38790 Author: Jon Loeliger <jdl@jdl.com>
38791 Date: Mon Jun 11 19:02:10 2007 -0500
38793 drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38795 This is a compatibility step that allows both the older form
38796 and the new form to co-exist for a while until the older can
38797 be removed entirely.
38799 All transformations are of the form:
38801 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38803 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38805 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38807 commit b453960d4fdb87b3970d96119b90df2ed024fc4a
38808 Author: Jon Loeliger <jdl@jdl.com>
38809 Date: Mon Jun 11 19:02:05 2007 -0500
38811 common/ non-cmd: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38813 This is a compatibility step that allows both the older form
38814 and the new form to co-exist for a while until the older can
38815 be removed entirely.
38817 All transformations are of the form:
38819 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38821 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38823 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38825 commit 65c450b47a62659d522cfa8f4fa1e4e5c60dccd0
38826 Author: Jon Loeliger <jdl@jdl.com>
38827 Date: Mon Jun 11 19:01:54 2007 -0500
38829 common/cmd_[i-z]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38831 This is a compatibility step that allows both the older form
38832 and the new form to co-exist for a while until the older can
38833 be removed entirely.
38835 All transformations are of the form:
38837 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38839 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38841 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38843 commit a76adc8142c1d956385a109e0b70f9319ede4d66
38844 Author: Jon Loeliger <jdl@jdl.com>
38845 Date: Mon Jun 11 19:01:43 2007 -0500
38847 common/cmd_[a-f]* : Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).
38849 This is a compatibility step that allows both the older form
38850 and the new form to co-exist for a while until the older can
38851 be removed entirely.
38853 All transformations are of the form:
38855 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT)
38857 #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT)
38859 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38861 commit ec63b10b61fd68238d4c15c1cd04c0b38228e2c1
38862 Author: Jon Loeliger <jdl@jdl.com>
38863 Date: Mon Jun 11 19:01:34 2007 -0500
38865 Introduce initial versions of new Command Config files.
38867 Derive three new files from cmd_confdefs.h:
38868 config_bootp.h - Has BOOTP related config options, not commands
38869 config_cmd_all.h - Has a CONFIG_CMD_* definition for every command
38870 config_cmd_default.h - Has a CONFIG_CMD_* definition for default cmds.
38872 For now, include "config_bootp.h" for compatability until all
38873 users of it directly include it properly.
38875 Signed-off-by: Jon Loeliger <jdl@freescale.com>
38877 commit 1f2a05898658900dc5717761e27abf2052e67e13
38878 Author: Mushtaq Khan <mushtaqk_921@yahoo.co.in>
38879 Date: Sat Jun 30 18:50:48 2007 +0200
38883 Signed-off-by: mushtaq khan <mushtaqk_921@yahoo.co.in>
38885 commit a5d71e290f3673269be8eefb4ec44f53412f9461
38886 Author: Heiko Schocher <hs@pollux.denx.de>
38887 Date: Mon Jun 25 19:11:37 2007 +0200
38889 [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
38891 Signed-off-by: Heiko Schocher <hs@denx.de>
38893 commit a1bd6200eccd3a02040a955d5f43d3ee1fc9f93b
38894 Author: Niklaus Giger <niklaus.giger@nestal.com>
38895 Date: Mon Jun 25 17:03:13 2007 +0200
38897 ppc4xx: PPC440EPx Emit DDR0 registers on machine check interrupt
38899 This patch prints the DDR status registers upon machine check
38900 interrupt on the 440EPx/GRx. This can be useful especially when
38901 ECC support is enabled.
38903 I added some small changes to the original patch from Niklaus to
38904 make it compile clean.
38906 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
38907 Signed-off-by: Stefan Roese <sr@denx.de>
38909 commit 807018fb7faceb429ce0cb47baa2073746b33a4e
38910 Author: Niklaus Giger <niklaus.giger@nestal.com>
38911 Date: Mon Jun 25 16:50:55 2007 +0200
38913 ppc4xx: Fix O=buildir builds
38915 This patch fixes the problem to assemble cpu/ppc4xx/start.S
38916 experienced last week where building failed having specified
38917 O=../build.sequoia.
38919 Signed-off-by: Niklaus Giger <niklaus.giger@nestal.com>
38921 commit 466fff1a7bb5fe764a06450626f6098219f446b8
38922 Author: Stefan Roese <sr@denx.de>
38923 Date: Mon Jun 25 15:57:39 2007 +0200
38925 ppc4xx: Add pci_pre_init() for 405 boards
38927 This patch removes the CFG_PCI_PRE_INIT option completely, since
38928 it's not needed anymore with the patch from Matthias Fuchs with
38929 the "weak" pci_pre_init() implementation.
38931 Signed-off-by: Stefan Roese <sr@denx.de>
38933 commit 6f35c53166213c24a5a0e2390ed861136ff73870
38934 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38935 Date: Sun Jun 24 17:41:21 2007 +0200
38937 ppc4xx: Maintenance patch for esd's CPCI405 derivats
38939 -add pci_pre_init() for pci interrupt fixup code
38940 -disable phy sleep mode via reset_phy() function
38941 -use correct io accessors
38944 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38946 commit 5a1c9ff0c44305b57cb4d8f9369bba90bcf0e1f8
38947 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38948 Date: Sun Jun 24 17:23:41 2007 +0200
38950 ppc4xx: Add pci_pre_init() for 405 boards
38952 This patch adds support for calling a plattform dependant
38953 pci_pre_init() function for 405 boards. This can be used to
38954 move the current pci_405gp_fixup_irq() function into the
38957 This patch also makes the CFG_PCI_PRE_INIT define obsolete.
38958 A default function with 'weak' attribute is used when
38959 a board specific pci_pre_init() is not implemented.
38961 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
38963 commit 1636d1c8529c006d106287cfbc20cd0a246fe1cb
38964 Author: Wolfgang Denk <wd@denx.de>
38965 Date: Fri Jun 22 23:59:00 2007 +0200
38967 Coding stylke cleanup; rebuild CHANGELOG
38969 commit 2dc64451b4c08ffd619372abfdc2506a2e2363b9
38970 Author: Igor Lisitsin <igor@emcraft.com>
38971 Date: Wed Apr 18 14:55:19 2007 +0400
38973 Adapt log buffer code to support Linux 2.6
38975 A new environment variable, "logversion", selects the log buffer
38976 behaviour. If it is not set or set to a value other than 2, then the
38977 old, Linux 2.4.4, behaviour is selected.
38979 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
38982 commit a11e06965ec91270c51853407ff1261d3c740386
38983 Author: Igor Lisitsin <igor@emcraft.com>
38984 Date: Wed Mar 28 19:06:19 2007 +0400
38986 Extend POST support for PPC440
38988 Added memory, CPU, UART, I2C and SPR POST tests for PPC440.
38990 Signed-off-by: Igor Lisitsin <igor@emcraft.com>
38993 commit 566a494f592ae3b3c0785d90d4e1ba45574880c4
38994 Author: Heiko Schocher <hs@pollux.denx.de>
38995 Date: Fri Jun 22 19:11:54 2007 +0200
38997 [PCS440EP] upgrade the PCS440EP board:
38998 - Show on the Status LEDs, some States of the board.
38999 - Get the MAC addresses from the EEProm
39001 - use the CF on the board.
39002 - check the U-Boot image in the Flash with a SHA1
39004 - use dynamic TLB entries generation for the SDRAM
39006 Signed-off-by: Heiko Schocher <hs@denx.de>
39008 commit 3a1f5c81b0b9557817a789bece839905581c2205
39009 Author: Stefan Roese <sr@denx.de>
39010 Date: Fri Jun 22 16:58:40 2007 +0200
39012 ppc4xx: Fix problem with extended program_tlb() funtion
39014 The recently extended program_tlb() function had a problem when
39015 multiple TLB's had to be setup (for example with 512MB of SDRAM). The
39016 virtual address was not incremented. This patch fixes this issue
39017 and is tested on Katmai with 512MB SDRAM.
39019 Signed-off-by: Stefan Roese <sr@denx.de>
39021 commit 02032e8f14751a1a751b09240a4f1cf9f8a2077f
39022 Author: Rafal Jaworowski <raj@semihalf.com>
39023 Date: Fri Jun 22 14:58:04 2007 +0200
39025 [ppc] Fix build breakage for all non-4xx PowerPC variants.
39027 - adapt to the more generic EXCEPTION_PROLOG and CRIT_EXCEPTION macros
39028 - minor 4xx cleanup
39030 commit d677b32855f577ae2690dcd64a172cdd706e0ffc
39031 Author: Mike Frysinger <vapier@gentoo.org>
39032 Date: Fri Jun 22 10:34:12 2007 +0200
39034 [patch] add nand_init() prototype to nand.h
39036 since nand_init() is expected to be called by other parts of u-boot, there
39037 should be a prototype for it in nand.h
39039 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
39040 Signed-off-by: Stefan Roese <sr@denx.de>
39042 commit 83b4cfa3d629dff0264366263c5e94d9a50ad80b
39043 Author: Wolfgang Denk <wd@denx.de>
39044 Date: Wed Jun 20 18:14:24 2007 +0200
39046 Coding style cleanup. Refresh CHANGELOG.
39048 commit b3f9ec86e388207fd03dcdf7b145b9ed080bf024
39049 Author: Stefan Roese <sr@denx.de>
39050 Date: Tue Jun 19 17:22:44 2007 +0200
39052 ppc4xx: Add bootstrap command for AMCC Sequoia (440EPx) eval board
39054 This patch adds a board command to configure the I2C bootstrap EEPROM
39055 values. Right now 533 and 667MHz are supported for booting either via NOR
39056 or NAND FLASH. Here the usage:
39058 => bootstrap 533 nor ;to configure the board for 533MHz NOR booting
39059 => bootstrap 667 nand ;to configure the board for 667MHz NNAND booting
39061 Signed-off-by: Stefan Roese <sr@denx.de>
39063 commit df8a24cdd30151505cf57bbee5289e91bf53bd1b
39064 Author: Stefan Roese <sr@denx.de>
39065 Date: Tue Jun 19 16:42:31 2007 +0200
39067 [ppc4xx] Fix problem with NAND booting on AMCC Acadia
39069 The latest changes showed a problem with the location of the NAND-SPL
39070 image in the OCM and the init-data area (incl. cache). This patch
39071 fixes this problem.
39073 Signed-off-by: Stefan Roese <sr@denx.de>
39075 commit 86ba99e34194394052d24c04dc40d1263d29a26f
39076 Author: Stefan Roese <sr@denx.de>
39077 Date: Tue Jun 19 16:40:58 2007 +0200
39079 [ppc4xx] Change board/amcc/acadia/cpr.c to pll.c
39081 Signed-off-by: Stefan Roese <sr@denx.de>
39083 commit 8e585f02f82c17cc66cd229dbf0fd3066bbbf658
39084 Author: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39085 Date: Mon Jun 18 13:50:13 2007 -0500
39087 Added M5329AFEE and M5329BFEE Platforms
39089 Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
39090 drivers/serial, immap_5329.h, m5329.h, mcfrtc.h,
39091 include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
39094 Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
39095 common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
39096 include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
39097 include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
39098 include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
39099 lib_m68k/time.c, net/eth.c and rtc/Makefile
39101 Signed-off-by: TsiChung Liew <Tsi-Chung.Liew@freescale.com>
39103 commit 093172f08d6afb3f34d8a2f26ee0ee874261cf27
39104 Author: Michal Simek <monstr@monstr.eu>
39105 Date: Sun Jun 17 19:04:11 2007 +0200
39107 [fix] email reparation
39109 commit 3666afffe7baf859c6ae0ce2bebbc8ab7e512ddc
39110 Author: Michal Simek <monstr@monstr.eu>
39111 Date: Sun Jun 17 19:03:21 2007 +0200
39113 [FIX] fix microblaze file permitission
39115 commit e73846b7cf1e29ae635bf9bb5570269663df2ee5
39116 Author: Stefan Roese <sr@denx.de>
39117 Date: Fri Jun 15 11:33:41 2007 +0200
39119 [ppc4xx] Change lwmon5 port to work with recent 440 exception rework
39121 Now CONFIG_440 has to be defined in all PPC440 board config files.
39123 Signed-off-by: Stefan Roese <sr@denx.de>
39125 commit efa35cf12d914d4caba942acd5a6c45f217de302
39126 Author: Grzegorz Bernacki <gjb@semihalf.com>
39127 Date: Fri Jun 15 11:19:28 2007 +0200
39129 ppc4xx: Clean up 440 exceptions handling
39131 - Introduced dedicated switches for building 440 and 405 images required
39132 for 440-specific machine instructions like 'rfmci' etc.
39134 - Exception vectors moved to the proper location (_start moved away from
39135 the critical exception handler space, which it occupied)
39137 - CriticalInput now serviced (with default handler)
39139 - MachineCheck properly serviced (added a dedicated handler and return
39142 - Overall cleanup of exceptions declared with STD_EXCEPTION macro (unused,
39143 unhandled and those not relevant for 4xx were eliminated)
39145 - Eliminated Linux leftovers, removed dead code
39147 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
39148 Signed-off-by: Rafal Jaworowski <raj@semihalf.com>
39149 Signed-off-by: Stefan Roese <sr@denx.de>
39151 commit b765ffb773f5a3cd5aa94ec76b6a05276b8cd5b2
39152 Author: Stefan Roese <sr@denx.de>
39153 Date: Fri Jun 15 08:18:01 2007 +0200
39155 [ppc4xx] Add initial lwmon5 board support
39157 This patch adds initial support for the Liebherr lwmon5 board euqipped
39158 with an AMCC 440EPx PowerPC.
39160 Signed-off-by: Stefan Roese <sr@denx.de>
39162 commit 85f737376d5ff3d5f0d45a8b657686326d175307
39163 Author: Stefan Roese <sr@denx.de>
39164 Date: Fri Jun 15 07:39:43 2007 +0200
39166 [ppc4xx] Extend 44x GPIO setup with default output state
39168 The board config array CFG_440_GPIO_TABLE for the ppc440 GPIO setup
39169 is extended with the default GPIO output state (level).
39171 Signed-off-by: Stefan Roese <sr@denx.de>
39173 commit dbca208518e5e7f01a6420588d1cd6e60db74c2b
39174 Author: Stefan Roese <sr@denx.de>
39175 Date: Thu Jun 14 11:14:32 2007 +0200
39177 [ppc4xx] Extend program_tlb() with virtual & physical addresses
39179 Now program_tlb() allows to program a TLB (or multiple) with
39180 different virtual and physical addresses. With this change, now one
39181 physical region (e.g. SDRAM) can be mapped 2 times, once with caches
39182 diabled and once with caches enabled.
39184 Signed-off-by: Stefan Roese <sr@denx.de>
39186 commit 9912121f7ed804ea58fd62f3f230b5dcfc357d88
39187 Author: Detlev Zundel <dzu@denx.de>
39188 Date: Wed May 23 19:02:41 2007 +0200
39190 Change 'repeatable' attribute of some commands to sensible values.
39192 Most prominently this changes 'erase' to be non-repeatable.
39194 Signed-off-by: Detlev Zundel <dzu@denx.de>
39196 commit 5afb202093f6a001797db92cf695b93a70ea9ab4
39197 Author: Detlev Zundel <dzu@denx.de>
39198 Date: Wed May 23 18:47:48 2007 +0200
39200 Fix 'run' not to continue after interrupted command
39202 Signed-off-by: Detlev Zundel <dzu@denx.de>
39204 commit 9b7464a2c88614e1061f509c48930a3d240d1a35
39205 Author: Jason Jin <Jason.jin@freescale.com>
39206 Date: Mon Jun 11 15:14:24 2007 +0200
39208 USB: This patch fix readl in ohci swap reg access.
39210 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
39212 commit 8f8416fada9faf94b9a92f21fe6000643cb521d5
39213 Author: Bartlomiej Sieka <tur@semihalf.com>
39214 Date: Fri Jun 8 14:52:22 2007 +0200
39216 TQM5200: Add Flat Device Tree support, update default env. accordingly.
39218 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
39219 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39221 commit 9045f33c023f698660a2e45d1b2194c0711abebc
39222 Author: Wolfgang Denk <wd@denx.de>
39223 Date: Fri Jun 8 10:24:58 2007 +0200
39225 Fix config problems on SC3 board; make ide_reset_timeout work.
39227 commit fba3fb0449b8a54542aed1e729de76e7f5a2ff1b
39228 Author: Benoît Monin <bmonin@adeneo.eu>
39229 Date: Fri Jun 8 09:55:24 2007 +0200
39231 [PATCH] fix gpio setting when using CFG_440_GPIO_TABLE
39233 Set the correct value in GPIOx_TCR when configuring the gpio
39234 with CFG_440_GPIO_TABLE.
39236 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
39237 Signed-off-by: Stefan Roese <sr@denx.de>
39239 commit f539edc076cfe52bff919dd512ba8d7af0e22092
39240 Author: Vadim Bendebury <vbendeb@google.com>
39241 Date: Thu May 24 15:52:25 2007 -0700
39243 cosmetic changes to bcm570x driver
39245 This is a cosmetic only changes submission.
39246 It affects files relevant to bcm570x driver.
39247 the commands used to generate this change was
39250 Lindent -pcs -l80 bcm570x.c bcm570x_lm.h bcm570x_mm.h tigon3.c tigon3.h
39252 The BMW target (the only one using this chip so far) builds cleanly, the
39253 `before and after' generated object files for drivers/bcm570x.c and
39254 drivers/tigon3.o are identical as reported by objdump -d
39256 Signed-off-by: Vadim Bendebury <vbendeb@google.com>
39257 Signed-off-by: Ben Warren <bwarren@qstreams.com>
39259 commit 725671ccd2cd04c9ebc50c9e5a94dd8cbade66b7
39260 Author: Wolfgang Denk <wd@denx.de>
39261 Date: Wed Jun 6 16:26:56 2007 +0200
39263 Coding Style cleanup; generate new CHANGELOG file.
39265 Signed-off-by: Wolfgang Denk <wd@denx.de>
39267 commit 19d763c35e0b5568eaf0b8adbf7a68ccfe7fa243
39268 Author: Markus Klotzbuecher <mk@denx.de>
39269 Date: Wed Jun 6 11:49:44 2007 +0200
39271 TRAB, USB: update trab board configuration for use of generic ohci driver
39273 commit dace45acd1c1357daa9322099d07c9a9e08b0024
39274 Author: Markus Klotzbuecher <mk@denx.de>
39275 Date: Wed Jun 6 11:49:43 2007 +0200
39277 USB: ohci fixes and cleanup for ppc4xx and yosemite board.
39279 commit 72657570b61635c74fa0c3f0e9e7d0671a9d08df
39280 Author: Markus Klotzbuecher <mk@denx.de>
39281 Date: Wed Jun 6 11:49:43 2007 +0200
39283 USB: ohci fixes and cleanup for mpc5xxx and IceCube board config
39285 commit fc43be478f2aa37ce38acd85355038866e4162af
39286 Author: Markus Klotzbuecher <mk@denx.de>
39287 Date: Wed Jun 6 11:49:35 2007 +0200
39289 USB/OHCI: endianness cleanup in the generic ohci driver
39291 commit c440bfe6d6d92d66478a7e84402b31f48413617b
39292 Author: Stefan Roese <sr@denx.de>
39293 Date: Wed Jun 6 11:42:13 2007 +0200
39295 ppc4xx: Add NAND booting support for AMCC Acadia (405EZ) eval board
39297 This patch adds NAND booting support for the AMCC Acadia eval board.
39299 Please make sure to configure jumper J7 to position 2-3 when booting
39300 from NOR, and to position 1-2 when booting for NAND.
39302 I also added a board command to configure the I2C bootstrap EEPROM
39303 values. Right now only 267MHz is support for booting either via NOR
39304 or NAND FLASH. Here the usage:
39306 => bootstrap 267 nor ;to configure the board for 267MHz NOR booting
39307 => bootstrap 267 nand ;to configure the board for 267MHz NNAND booting
39309 Signed-off-by: Stefan Roese <sr@denx.de>
39311 commit 18135125f909948b85d1d6881ab4ac0efb4a1c58
39312 Author: Rodolfo Giometti <giometti@linux.it>
39313 Date: Wed Jun 6 10:08:14 2007 +0200
39315 Files include/linux/byteorder/{big,little}_endian.h define
39316 __BIG_ENDIAN and __LITTLE_ENDIAN.
39318 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
39320 commit a81d1c0b85b13e9d45f2d87de96a51a6e0ef0f82
39321 Author: Zhang Wei <wei.zhang@freescale.com>
39322 Date: Wed Jun 6 10:08:14 2007 +0200
39324 Add USB PCI-OHCI, USB keyboard and event poll support to the
39325 MPC8641HPCN board config file.
39327 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
39329 commit 4dae14ce8fbdf380017dc54f172218e7d2acc889
39330 Author: Zhang Wei <wei.zhang@freescale.com>
39331 Date: Wed Jun 6 10:08:14 2007 +0200
39333 USB PCI-OHCI, interrupt pipe and usb event poll support
39335 This patch added USB PCI-OHCI chips support, interrupt pipe support
39336 and usb event poll support. For supporting the USB interrupt pipe, the
39337 globe urb_priv is moved to purb in ed struct. Now, we can process
39338 several urbs at one time. The interrupt pipe support codes are ported
39339 from Linux kernel 2.4.
39341 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
39343 commit fdcfaa1b02268b2899e374b35adf936c911a47eb
39344 Author: Zhang Wei <wei.zhang@freescale.com>
39345 Date: Wed Jun 6 10:08:13 2007 +0200
39347 USB event poll support
39349 This patch adds USB event poll support, which could be used in usbkbd
39350 and other usb devices driver when the asynchronous interrupt
39351 processing is supported.
39353 Signed-off-by: Zhang Wei <wei.zhang@freescale.com
39355 commit 9a1d00fa47c1e05e3fdb60b33213af4e18d4c18e
39356 Author: Rodolfo Giometti <giometti@linux.it>
39357 Date: Wed Jun 6 10:08:12 2007 +0200
39359 ISP116x: delay for crappy USB keys
39361 Using some (very) slow USB keys cause the USB host controller buffers
39362 are not ready to be read by the CPU so we need an extra delay before
39363 reading the USB storage data.
39365 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
39367 commit 09444143670c9c2243cb7aba9f70b3713d33bed1
39368 Author: Markus Klotzbuecher <mk@denx.de>
39369 Date: Wed Jun 6 10:08:12 2007 +0200
39371 Change duplicate usb_cpu_init_fail to usb_board_init_fail
39373 Thanks to Liew Tsi Chung <Tsi-chung.Liew@freescale.com> for pointing
39376 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
39378 commit 32922cdc470fdfd39bea0c1c4f582d3fb340421e
39379 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
39380 Date: Tue Jun 5 12:30:52 2007 -0500
39382 mpc8641 image size cleanup
39384 e600 does not have a bootpg restriction.
39385 Move the version string to beginning of image at fff00000.
39386 Resetvec.S is not needed.
39387 Update flash copy instructions.
39388 Add tftpflash env variable
39390 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
39391 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39393 commit e3cbe1f93c5722f8ebbad468e30c069a2b511097
39394 Author: Benoît Monin <bmonin@adeneo.eu>
39395 Date: Mon Jun 4 08:36:05 2007 +0200
39397 [PATCH] Fix ppc4xx bootstrap letter displayed on startup
39399 The attached patch is mainly cosmetic, allowing u-boot to
39400 display the correct bootstrap option letter according to the
39403 The original patch was extended with 405EZ support by Stefan
39406 Signed-off-by: Benoit Monin <bmonin@adeneo.eu>
39407 Signed-off-by: Stefan Roese <sr@denx.de>
39409 commit 5b1313fb2758ffce8b624457f777d8cc6709608d
39410 Author: Nikita V. Youshchenko <yoush@debian.org>
39411 Date: Wed May 23 12:45:19 2007 +0400
39413 fix compilation problem for mpc8349itx CFG_RAMBOOT
39415 Current include/configs/MPC8349ITX.h does contain some support for building
39416 image that will be started from memory (without putting in into flash).
39417 It could be triggered by building with TEXT_BASE set to a low value.
39419 However, this support is incomplete: using of low TEXT_BASE causes
39420 defining configuration macros in inconsistent way, which later leads
39421 to compilation errors. In particular. flash support is being disabled,
39422 but then flash structures get referenced.
39424 This patch fixes this, making it possible to build with low TEXT_BASE.
39426 Signed-Off-By: Nikita Youshchenko <yoush@debian.org>
39428 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39430 commit 8a364f0970de49949d635e60accf463c6443ef8c
39431 Author: Nikita V. Youshchenko <yoush@debian.org>
39432 Date: Wed May 23 12:45:25 2007 +0400
39434 add missing 'console' var to default mpc8349itx config
39436 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39438 commit 18d156eb37c90fadc8ec7a81a3b89176161f85b7
39439 Author: Stefan Roese <sr@denx.de>
39440 Date: Fri Jun 1 16:18:17 2007 +0200
39442 ppc4xx: Add missing file for Bamboo NAND booting support
39444 Signed-off-by: Stefan Roese <sr@denx.de>
39446 commit 155a96478a0881e6da96cbbbcf34952d6a3b1b4b
39447 Author: Stefan Roese <sr@denx.de>
39448 Date: Fri Jun 1 15:58:19 2007 +0200
39450 ppc4xx: Undo Sequoia patch for dynamic EBC speed support of 83MHz
39452 This patch undoes the patch by Jeff Mann with commit-id ada4697d. As
39453 suggested by AMCC it is not recommended to dynamically change the EBC
39454 speed after bootup. So we undo this change to be on the safe side.
39456 Signed-off-by: Stefan Roese <sr@denx.de>
39458 commit 9d9096043e8f713d4bf1743d32e1459e6a11644b
39459 Author: Stefan Roese <sr@denx.de>
39460 Date: Fri Jun 1 15:29:04 2007 +0200
39462 ppc4xx: Update Sequoia NAND booting support with ECC
39464 Signed-off-by: Stefan Roese <sr@denx.de>
39466 commit cf959c7d6687567c308e366e9581e1a5aff5cc5b
39467 Author: Stefan Roese <sr@denx.de>
39468 Date: Fri Jun 1 15:27:11 2007 +0200
39470 ppc4xx: Add NAND booting support for AMCC Bamboo (440EP) eval board
39472 This patch adds NAND booting support for the AMCC Bamboo eval board.
39473 Since the NAND-SPL boot image is limited to 4kbytes, this version
39474 only supports the onboard 64MBytes of DDR. The DIMM modules can't be
39475 supported, since the setup code for I2C DIMM autodetection and
39476 configuration is too big for this NAND bootloader.
39478 Signed-off-by: Stefan Roese <sr@denx.de>
39480 commit 42be56f53c8b107868e6125c8524ae84293e95a7
39481 Author: Stefan Roese <sr@denx.de>
39482 Date: Fri Jun 1 15:23:04 2007 +0200
39484 NAND: Add ECC support to NAND booting support in nand_spl/nand_boot.c
39486 The U-Boot NAND booting support is now extended to support ECC
39487 upon loading of the NAND U-Boot image.
39489 Tested on AMCC Sequoia (440EPx) and Bamboo (440EP).
39491 Signed-off-by: Stefan Roese <sr@denx.de>
39493 commit a471db07fbb65a841ffc9f4f112562b945230f98
39494 Author: Stefan Roese <sr@denx.de>
39495 Date: Fri Jun 1 15:19:29 2007 +0200
39497 ppc4xx: Prepare Bamboo port for NAND booting support
39499 This patch updates the "normal" Bamboo NOR booting port, so
39500 that it is compatible with the coming soon NAND booting
39503 It also enables the 2nd NAND flash on the Bamboo.
39505 Signed-off-by: Stefan Roese <sr@denx.de>
39507 commit 53ad02103fb8be4138a9937a8ab91fcdff7b4987
39508 Author: Stefan Roese <sr@denx.de>
39509 Date: Fri Jun 1 15:16:58 2007 +0200
39511 ppc4xx: Update in_be32() functions and friends to latest Linux version
39513 Signed-off-by: Stefan Roese <sr@denx.de>
39515 commit 91da09cfbce0c1de05d6d84aa8363d666fa7ea3c
39516 Author: Stefan Roese <sr@denx.de>
39517 Date: Fri Jun 1 15:15:12 2007 +0200
39519 NAND: Add hardware ECC support to the PPC4xx NAND driver ndfc.c
39521 This patch adds hardware ECC support to the NDFC driver. It also
39522 changes the register access from using the "simple" in32/out32
39523 functions to the in_be32/out_be32 functions, which make sure
39524 that the access is correctly synced. This is the only recommended
39525 access to SoC registers in the current Linux kernel.
39527 Signed-off-by: Stefan Roese <sr@denx.de>
39529 commit 17b5e862287cca76f19dcf8b741e61a7d06617f2
39530 Author: Stefan Roese <sr@denx.de>
39531 Date: Fri Jun 1 15:12:15 2007 +0200
39533 NAND: Update nand_ecc.c to latest Linux version
39535 This patch updates the nand_ecc code to the latest Linux version.
39536 The main reason for this is the more compact code. This makes
39537 it possible to include the ECC code into the NAND bootloader
39538 image (NAND_SPL) for PPC4xx.
39540 Signed-off-by: Stefan Roese <sr@denx.de>
39542 commit d2d432760d2199d0e8558fdd9d1789b8131abcf7
39543 Author: Stefan Roese <sr@denx.de>
39544 Date: Fri Jun 1 15:09:50 2007 +0200
39546 ppc4xx: 44x DDR driver code cleanup and small fix for Bamboo
39548 Signed-off-by: Stefan Roese <sr@denx.de>
39550 commit e4bbed2803a2ad0521c7362f5d3e065f99abaedc
39551 Author: Stefan Roese <sr@denx.de>
39552 Date: Fri Jun 1 13:45:24 2007 +0200
39554 ppc4xx: Change Luan config file to support ECC
39556 With the updated 44x DDR2 driver the Luan board now supports
39557 ECC generation and checking.
39559 Signed-off-by: Stefan Roese <sr@denx.de>
39561 commit 7187db73491c8de0fb56efb5e5134ba5ec443089
39562 Author: Stefan Roese <sr@denx.de>
39563 Date: Fri Jun 1 13:45:00 2007 +0200
39565 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
39567 Add config option for 180 degree advance clock control as needed
39568 for the AMCC Luan eval board.
39570 Signed-off-by: Stefan Roese <sr@denx.de>
39572 commit ee1529838abbfaa35f14e3ffbeaaba693159475f
39573 Author: Wolfgang Denk <wd@denx.de>
39574 Date: Thu May 31 17:20:09 2007 +0200
39576 Add support for STX GP3SSA (stxssa) Board with 4 MiB flash.
39578 Signed-off-by: Wolfgang Denk <wd@denx.de>
39580 commit 7049288fb1f16f1b317140226cdebd07bd416395
39581 Author: Bartlomiej Sieka <tur@semihalf.com>
39582 Date: Sun May 27 17:26:46 2007 +0200
39584 Motion-PRO: Code cleanup, fix of a typo in OF_STDOUT_PATH.
39586 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
39588 commit 4520fd4d2c450da49637216aa0e53739b61c60ac
39589 Author: Bartlomiej Sieka <tur@semihalf.com>
39590 Date: Sun May 27 17:06:36 2007 +0200
39592 Motion-PRO: Add support for redundant environment.
39594 Enable redundant environment, add a MTD partition for it; also add env.
39595 variable command for passing MTD partitions to the kernel command line.
39597 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
39598 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39600 commit a26eabeec31746f06d309103690892805696e344
39601 Author: Bartlomiej Sieka <tur@semihalf.com>
39602 Date: Sun May 27 17:05:11 2007 +0200
39604 Motion-PRO: Change maximum console buffer size from 256 to 1024 bytes.
39606 Allow passing longer command line to the kernel - useful especially
39607 for passing MTD partition layout.
39609 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
39610 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39612 commit 9160b96f71483a116de81c68985e8ee306d36764
39613 Author: Bartlomiej Sieka <tur@semihalf.com>
39614 Date: Sun May 27 17:04:18 2007 +0200
39616 Fix: Add missing NULL termination in strings expanded by macros parser.
39618 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
39619 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39621 commit 630ec84aef7228fc1dbfb38dec78541403a786cd
39622 Author: Bartlomiej Sieka <tur@semihalf.com>
39623 Date: Sun May 27 17:03:37 2007 +0200
39625 Motion-PRO: Update EEPROM's page write bits and write delay.
39627 Change EEPROM configuration according to the datasheet: "The 24C01A and 24C02A
39628 have a page write capability of two bytes", and "This device offers fast (1ms)
39629 byte write". Add 3ms of extra delay.
39631 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
39632 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39634 commit c00125e07c1ebc125bab40e1e18bceed8be0c162
39635 Author: Bartlomiej Sieka <tur@semihalf.com>
39636 Date: Sun May 27 16:58:45 2007 +0200
39638 MPC5XXX, Motion-PRO: Fix PHY initialization problem.
39640 After being reset in mpc5xxx_fec_init_phy(), PHY goes into FX mode, in which
39641 networking does not function. This commit switches PHY to TX mode by clearing
39642 the FX_SEL bit of Mode Control Register. It also reverses commit
39643 008861a2f3ef2c062744d733787c7e530a1b8761, i.e., a temporary workaround.
39645 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
39646 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39648 commit 93b78f534a6e708b4cf1a4ffb4d8438c67a007db
39649 Author: Bartlomiej Sieka <tur@semihalf.com>
39650 Date: Sun May 27 16:57:15 2007 +0200
39652 Motion-PRO: Add support for the temperature sensor.
39654 Signed-off-by: Piotr Kruszynski <ppk@semihalf.com>
39655 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39657 commit c75e639630cc132dc19cd1ecda5922c0db0bfbba
39658 Author: Bartlomiej Sieka <tur@semihalf.com>
39659 Date: Sun May 27 16:55:23 2007 +0200
39661 Motion-PRO: Add displaying of CPLD revision information during boot.
39663 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
39664 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39666 commit c99512d6bd3973f01ca2fc4896d829b46e68f150
39667 Author: Bartlomiej Sieka <tur@semihalf.com>
39668 Date: Sun May 27 16:53:43 2007 +0200
39670 MPC5xxx: Change names of defines related to IPB and PCI clocks.
39672 Both CFG_PCISPEED_66 and CFG_IPBSPEED_133 are misnamed, as defining
39673 them does not cause PCI or IPB clocks to run at the specified speed.
39674 Instead, they configure divisors used to calculate said clocks. This
39675 patch renames the defines according to their real function.
39677 Signed-off-by: Grzegorz Bernacki <gjb@semihalf.com>
39678 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39680 commit a11c0b85dc3664bb3c1e781137118730c8f619ab
39681 Author: Bartlomiej Sieka <tur@semihalf.com>
39682 Date: Sun May 27 16:51:48 2007 +0200
39684 Motion-PRO: Add LED support.
39686 Signed-off-by: Jan Wrobel <wrr@semihalf.com>
39687 Signed-off-by: Marian Balakowicz <m8@semihalf.com>
39688 Acked-by: Bartlomiej Sieka <tur@semihalf.com>
39690 commit 7ebb4479b07ff294eb4d76e420753a0349f7c93b
39691 Author: Ulf Samuelsson <ulf@atmel.com>
39692 Date: Thu May 24 12:12:47 2007 +0200
39694 [PATCH][NAND] Define the Vendor Id for Micron NAND Flash
39696 Signed-off-by: Ulf Samuelsson <ulf@atmel.com>
39697 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
39698 Signed-off-by: Stefan Roese <sr@denx.de>
39700 commit d756894722c888d09a9fa1df8323753772d3dcce
39701 Author: Stefan Roese <sr@denx.de>
39702 Date: Thu May 24 09:49:00 2007 +0200
39704 ppc4xx: Fix small 405EZ OCM initilization bug in start.S
39706 As pointed out by Bruce Adler <bruce.adler@acm.org> this patch
39707 fixes a small bug in the 405EZ OCM initialization. Thanks for
39710 Signed-off-by: Stefan Roese <sr@denx.de>
39712 commit 5d4a179013d59a76446462e1eb0a969fba63eb81
39713 Author: Stefan Roese <sr@denx.de>
39714 Date: Thu May 24 08:22:09 2007 +0200
39716 ppc4xx: Update AMCC Acadia support for board revision 1.1
39718 This patch updates the Acadia (405EZ) support for the new 1.1 board
39719 revision. It also adds support for NAND FLASH via the 4xx NDFC.
39721 Please note that the jumper J7 must be in position 2-3 for this
39722 NAND support. Position 1-2 is for NAND booting only. NAND booting
39723 support will follow later.
39725 Signed-off-by: Stefan Roese <sr@denx.de>
39727 commit 822d55365bb557e084d0e33625a6dedcc866110b
39728 Author: Jon Loeliger <jdl@freescale.com>
39729 Date: Wed May 23 14:09:46 2007 -0500
39731 Add LIST_86xx MAKEALL target for PowerPC builds.
39733 Signed-off-by: Jon Loeliger <jdl@freescale.com>
39735 commit 9f0077abd69f7a7c756a915b961037302be3e6f2
39736 Author: Stefan Roese <sr@denx.de>
39737 Date: Tue May 22 12:48:09 2007 +0200
39739 ppc4xx: Use do { ... } while (0) for CPR & SDR access macros
39741 Signed-off-by: Stefan Roese <sr@denx.de>
39743 commit 6f3dfc139a838b0841c151efe00ad47db2366e79
39744 Author: Stefan Roese <sr@denx.de>
39745 Date: Tue May 22 12:46:10 2007 +0200
39747 ppc4xx: Add 405 support to 4xx NAND driver ndfc.c
39749 This patch adds support for 405 PPC's to the 4xx NAND driver
39750 ndfc.c. This is in preparation for the new AMCC 405EZ.
39752 Signed-off-by: Stefan Roese <sr@denx.de>
39754 commit 10603d76767426be803dadd4fb688b97eb69481c
39755 Author: Stefan Roese <sr@denx.de>
39756 Date: Mon May 21 07:41:22 2007 +0200
39758 ppc4xx: Fix problem in 405EZ OCM initialization
39760 As spotted by Bruce Adler this patch fixes an initialization problem
39763 Signed-off-by: Stefan Roese <sr@denx.de>
39765 commit 3e3b956906eba9e4ad7931581ecedaad10eccce8
39766 Author: Peter Pearse <peter.pearse@arm.com>
39767 Date: Fri May 18 16:47:03 2007 +0100
39769 Reduce line lengths to 80 characters max.
39771 commit 93ef45c9ddfdd9fc17c4e74bd8e2f2456580eb72
39772 Author: Peter Pearse <peter.pearse@arm.com>
39773 Date: Fri May 18 14:34:07 2007 +0100
39775 Makefile permissions
39777 commit 1443a31457d68f7e8f0b9403e9832ec1e79dc59d
39778 Author: Peter Pearse <peter.pearse@arm.com>
39779 Date: Fri May 18 14:33:11 2007 +0100
39781 Makefile permissions
39783 commit 255a3577c848706441daee0174543efe205a77f8
39784 Author: Kim Phillips <kim.phillips@freescale.com>
39785 Date: Wed May 16 16:52:19 2007 -0500
39787 Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx
39789 For all practical u-boot purposes, TSECs don't differ throughout the
39790 mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx.
39792 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
39794 commit 70124c2602ae2d4c5d3dba05b482d91548242de8
39795 Author: Stefano Babic <sbabic@denx.de>
39796 Date: Wed May 16 14:49:12 2007 +0200
39798 Fix compile problem cause my Microblaze merge
39800 Signed-off-by: Stefano Babic <sbabic@denx.de>
39802 commit ada4697d0230d6da552867777f98a67ec3ba2579
39803 Author: Jeffrey Mann <mannj@embeddedplanet.com>
39804 Date: Wed May 16 13:23:10 2007 +0200
39806 [PATCH] Run new sequoia boards with an EBC speed of 83MHz
39808 Because the Sequoia board does not boot with an EBC faster than 66MHz,
39809 the clock divider are changed after the initial boot process.
39811 This allows for maximum clocking speeds to be achieved on newer boards.
39812 Sequoia boards with 666.66 MHz processors require that the EBC divider
39813 be set to 3 in order to start the initial boot process at a slower EBC
39814 speed. After the initial boot process, the divider can be set back to 2,
39815 which will cause the boards to run at 83.333MHz. This is backward
39816 compatible with boards with 533.33 MHz processors, as these boards will
39817 already be set with an EBC divider of 2.
39819 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
39821 commit a7676ea7732f3c596805079fed7e5c9fac652cfc
39822 Author: Wolfgang Denk <wd@denx.de>
39823 Date: Wed May 16 01:16:53 2007 +0200
39825 Minor Coding Style cleanup, update CHANGELOG.
39827 Signed-off-by: Wolfgang Denk <wd@denx.de>
39829 commit d62f64cc23a940eafe712c776b3249e4160753d1
39830 Author: Wolfgang Denk <wd@denx.de>
39831 Date: Wed May 16 00:13:33 2007 +0200
39833 Coding Style Cleanup, new CHANGELOG
39835 commit 3162eb836903c8b247fdc7470dd39bfa6996f495
39836 Author: Wolfgang Denk <wd@denx.de>
39837 Date: Tue May 15 23:38:05 2007 +0200
39839 Minor coding style cleanup.
39841 commit 66d9dbec1cc27d6398ee6cf84639dbe14971251e
39842 Author: mushtaq khan <mushtaq_k@procsys.com>
39843 Date: Fri Apr 20 14:23:02 2007 +0530
39845 Add driver for S-ATA-controller on Intel processors with South
39846 Bridge, ICH-5, ICH-6 and ICH-7.
39850 1. Code is divided in to two files. All functions, which are
39851 controller specific are kept in "drivers/ata_piix.c" file and
39852 functions, which are not controller specific, are kept in
39853 "common/cmd_sata.c" file.
39855 2. Reading and Writing from the S-ATA drive is done using PIO method.
39857 3. Driver can be configured for 48-bit addressing by defining macro
39858 CONFIG_LBA48, if this macro is not defined driver uses the 28-bit
39861 4. S-ATA read function is hooked to the File system, commands like
39862 ext2ls and ext2load file can be used. This has been tested.
39864 5. U-Boot command "SATA_init" is added, which initializes the S-ATA
39865 controller and identifies the S-ATA drives connected to it.
39867 6. U-Boot command "sata" is added, which is used to read/write, print
39868 partition table and get info about the drives present. This I have
39869 implemented in same way as "ide" command is implemented in U-Boot.
39871 7. This driver is for S-ATA in native mode.
39873 8. This driver does not support the Native command queuing and
39876 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
39878 commit 644e6fb4eb8be90ea04ba34b643a8bf019d680e0
39879 Author: mushtaq khan <mushtaq_k@procsys.com>
39880 Date: Mon Apr 30 15:57:22 2007 +0530
39882 Fixes bug clearing the bss section for i386
39885 There is a bug in the code of clearing the bss section for processor
39886 i386.(File: cpu/i386/start.S)
39887 In the code, bss_start addr (starting addr of bss section) is put into
39888 the register %eax, but the code which clears the bss section refers to
39889 the addr pointed by %edi.
39891 This patch fixes this bug by putting bss_start into %edi register.
39893 Signed-off-by: Mushtaq Khan <mushtaq_k@procsys.com>
39895 commit c3243cf7b490057277d61acffe4ad0946f9eb4a4
39896 Author: Joe Hamman <joe.hamman@embeddedspecialties.com>
39897 Date: Mon Apr 30 16:47:28 2007 -0500
39899 Add support for BCM5464 Quad Phy
39901 Added support for Broadcom's BCM5464 Quad Phy
39903 Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
39905 commit 1b305bdc754c8468e1d5d858f5dcf8a7a0a4bb7a
39906 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
39907 Date: Wed May 9 08:10:57 2007 +0800
39909 Search the exception table with linear algorithm
39911 Search the exception table with linear algorithm instead of
39912 bisecting algorithm.
39913 Because the exception table might be unsorted.
39915 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
39917 commit 5dfaa50eb819686bfba1927e8c5b8a70a4d65fd3
39918 Author: Aubrey.Li <aubrey.adi@gmail.com>
39919 Date: Mon May 14 11:47:35 2007 +0800
39921 Fix compilation issues on MACOSX
39923 Singed-off-by: Marc Hoffman <Marc.Hoffman@analog.com>
39924 Signed-off-by: Aubrey Li <aubrey.adi@gmail.com>
39926 commit 56fd7162985c412317bbf763a225fba23c64fd31
39927 Author: Stephen Williams <steve@icarus.com>
39928 Date: Tue May 15 07:55:42 2007 -0700
39930 Fix for compile of JSE target
39932 The attached patch fixes the compile of the JSE board in the
39933 denx git as of 14 may 2007. It is an extremely simple patch,
39934 it just adds the missing define of CFG_SYSTEMACE_WIDTH.
39936 Fix to compile JSE against 20070514 git of u-boot
39938 commit 69df3c4da0c93017cceb25a366e794570bd0ed98
39939 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
39940 Date: Sun May 13 21:01:03 2007 +0900
39942 sh: MS7750SE support.
39944 This adds support for the Hitachi MS7750SE.
39946 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39948 commit 0b135cfc2e524dc249b75057b55dd4cc09842e27
39949 Author: Nobuhiro Iwamatsu <iwamatsu@rahute.(none)>
39950 Date: Sun May 13 20:58:00 2007 +0900
39952 sh: First support code of SuperH.
39954 Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
39956 commit 61936667e86a250ae12fd2dc189d3588f0a59e0b
39957 Author: Stefan Roese <sr@denx.de>
39958 Date: Fri May 11 12:01:49 2007 +0200
39960 ppc4xx: Add mtcpr/mfcpr access macros
39962 Signed-off-by: Stefan Roese <sr@denx.de>
39964 commit 343c48bd84606c4025c8a7c7263fda465d6e284c
39965 Author: Stefan Roese <sr@denx.de>
39966 Date: Fri May 11 12:01:06 2007 +0200
39968 ppc4xx: Set bd->bi_pci_busfreq on 440EPx/GRx too
39970 Signed-off-by: Stefan Roese <sr@denx.de>
39972 commit 7d98ba770a7eaefa29ce927f31a0956df85bf650
39973 Author: Piotr Kruszynski <ppk@semihalf.com>
39974 Date: Thu May 10 16:55:52 2007 +0200
39976 [Motion-PRO] Add MTD and JFFS2 support, also add default partition
39979 commit 65fb6a676e821f9570a2a376dc204bf611ce5f81
39980 Author: Peter Pearse <peter.pearse@arm.com>
39981 Date: Wed May 9 11:42:44 2007 +0100
39983 Add the board directory for SMN42
39985 commit 160131bf965785419626df6c388729fe0b597992
39986 Author: Peter Pearse <peter.pearse@arm.com>
39987 Date: Wed May 9 11:41:58 2007 +0100
39989 Add the files for the SMN42 board
39991 commit 5c6d2b5a500f8c49670de8910150b78a41f781fc
39992 Author: Peter Pearse <peter.pearse@arm.com>
39993 Date: Wed May 9 11:40:34 2007 +0100
39995 Remove the deleted files for the SMN42 patch
39997 commit b0d8f5bf0d215adc9424cb228b2484dbf07f7761
39998 Author: Peter Pearse <peter.pearse@arm.com>
39999 Date: Wed May 9 11:37:56 2007 +0100
40001 New board SMN42 branch
40003 commit 29f3be0caf0799ca6b89dfd9824c15619a50000f
40004 Author: Peter Pearse <peter.pearse@arm.com>
40005 Date: Wed May 9 10:24:38 2007 +0100
40007 Makefile permissions
40009 commit b84289b595731e8851df46e893845cc1322c9b9b
40010 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40011 Date: Tue May 8 14:17:07 2007 -0500
40013 8641hpcn: Fix Makefile after moving pixis to board/freescale.
40015 The OBJTREE != SRCTREE build scenario was broken.
40018 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40019 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40021 commit e69f66c6ebe82bbbd1da766bc4eda40ec7ee5af1
40022 Author: Michal Simek <monstr@monstr.eu>
40023 Date: Tue May 8 15:57:43 2007 +0200
40025 add: reading special purpose registers
40027 commit 1a50f164beb065f360fbddb76029607d6b099698
40028 Author: Michal Simek <monstr@monstr.eu>
40029 Date: Tue May 8 14:52:52 2007 +0200
40031 add: Microblaze V5 exception handling
40033 commit ab874d5047e5d30dbc1e517ff26083efffa98ecb
40034 Author: Michal Simek <monstr@monstr.eu>
40035 Date: Tue May 8 14:39:11 2007 +0200
40037 add: FSL control read and write
40039 commit de1de02a7cbf05e6b63e0d8ffc624f12493f6ba3
40040 Author: Piotr Kruszynski <ppk@semihalf.com>
40041 Date: Tue May 8 13:05:44 2007 +0200
40043 [Motion-PRO] Add support for I2C, EEPROM and RTC.
40045 commit fa5c2ba123b1bf88455bfc21db5e786ca045029d
40046 Author: Bartlomiej Sieka <tur@semihalf.com>
40047 Date: Tue May 8 10:23:56 2007 +0200
40049 [Motion-PRO] Add ATA support. Add CF-booting commands to the default
40052 commit 06241d50a3ab1b20a0b08baeeaffcaa23ae4b839
40053 Author: Bartlomiej Sieka <tur@semihalf.com>
40054 Date: Tue May 8 09:39:12 2007 +0200
40056 [Motion-PRO] Change IPB clock frequency from 50MHz to 100MHz. This
40057 eliminates networking problems in Linux (timeouts).
40059 commit 1f1369c34b629be94702684d41d3fddf0f6193e7
40060 Author: Bartlomiej Sieka <tur@semihalf.com>
40061 Date: Tue May 8 09:21:57 2007 +0200
40063 [Motion-PRO] Enable Flat Device Tree support and modify default environment
40064 to allow booting of FDT-expecting kernels.
40066 commit fb05f6da35ea1c15c553abe6f23f656bf18dc5db
40067 Author: Michal Simek <monstr@monstr.eu>
40068 Date: Mon May 7 23:58:31 2007 +0200
40070 new: USE_MSR_INTR support
40072 commit 008861a2f3ef2c062744d733787c7e530a1b8761
40073 Author: Bartlomiej Sieka <tur@semihalf.com>
40074 Date: Mon May 7 22:36:15 2007 +0200
40076 [MPC5xxx] There are networking problems on the Motion-PRO board with
40077 current PHY initalization code (tftp timeouts all the time). This commit
40078 temporarily disables PHY initalization sequence to make the networking
40079 operational, until a fix is found.
40081 commit abca901869c3760b6c5fecb825db6c1d91a78a93
40082 Author: Wolfgang Denk <wd@denx.de>
40083 Date: Mon May 7 22:10:36 2007 +0200
40085 Get rid of duplicated file (see include/configs/sbc8560.h instead)
40087 Signed-off-by: Wolfgang Denk <wd@denx.de>
40089 commit 207b7b2c9d9752e0f6478c30c29b7087f6e6cbb6
40090 Author: Wolfgang Denk <wd@denx.de>
40091 Date: Mon May 7 22:07:08 2007 +0200
40093 Get rid of duplicated file (see doc/README.SBC8560 instead)
40095 Signed-off-by: Wolfgang Denk <wd@denx.de>
40097 commit a7bac7e9b57ba948051beb19ec5be3a75ce75383
40098 Author: Michal Simek <monstr@monstr.eu>
40099 Date: Mon May 7 19:43:10 2007 +0200
40101 fix: read and write MSR - repair number of parameters
40103 commit 193b4a3bb3acaddf798da8de0da05d94ba8774ee
40104 Author: Jeffrey Mann <mannj@embeddedplanet.com>
40105 Date: Mon May 7 19:42:49 2007 +0200
40107 [PATCH] ppc4xx: Fix CONFIG_SYS_CLK_FREQ definition in Sequoia config file
40109 A '3' got cut off in the formatting of the last patch to automatically
40110 change the clock speed of the system clock on sequoia board.
40112 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
40113 Signed-off-by: Stefan Roese <sr@denx.de>
40115 commit 19bf1fbad7f19d5a120be9b1daf136e052fcab39
40116 Author: Michal Simek <monstr@monstr.eu>
40117 Date: Mon May 7 19:33:51 2007 +0200
40119 new: fsl interrupt support
40120 FSL_Has_data is connected to INTC.
40122 commit 792032baa7d625e34c981ab6df521911bd8dc861
40123 Author: Michal Simek <monstr@monstr.eu>
40124 Date: Mon May 7 19:30:12 2007 +0200
40126 fix: interrupt handler
40129 commit f3f001a341ef185d0f13841be5b5dc3395aacc31
40130 Author: Michal Simek <monstr@monstr.eu>
40131 Date: Mon May 7 19:25:08 2007 +0200
40133 fix: remove asm code
40135 commit fb7c2dbef02c9f6f8d7b04ec4c2bfb91418b9c01
40136 Author: Michal Simek <monstr@monstr.eu>
40137 Date: Mon May 7 19:12:43 2007 +0200
40139 fix: clean interrupt
40141 commit 42efed6130c8fcf7da881385b5427065d2801757
40142 Author: Michal Simek <monstr@monstr.eu>
40143 Date: Mon May 7 17:22:25 2007 +0200
40145 fix: interrupt handler for multiple sources
40147 commit 48fbd3a4cdabbebc1debd7eed73c00c2caf914f6
40148 Author: Michal Simek <monstr@monstr.eu>
40149 Date: Mon May 7 17:11:09 2007 +0200
40151 new: add writing to msr register
40153 commit 3a619dd7bed03e8b4d22a3911f90fd12af5376c2
40154 Author: Markus Klotzbuecher <mk@denx.de>
40155 Date: Mon May 7 16:43:56 2007 +0200
40157 Fix an ancient CHANGELOG conflict
40159 commit ac4cd59d59c9bf3f89cb7a344abf8184d678f562
40160 Author: Timur Tabi <timur@freescale.com>
40161 Date: Sat May 5 08:12:30 2007 +0200
40163 5xxx: write MAC address to mac-address and local-mac-address
40165 Some device trees have a mac-address property, some have local-mac-address,
40166 and some have both. To support all of these device trees, ftp_cpu_setup()
40167 should write the MAC address to mac-address and local-mac-address, if they
40170 Signed-off-by: Timur Tabi <timur@freescale.com>
40171 Acked-by: Grant Likely <grant.likely@secretlab.ca>
40173 commit a9d87e2707dcb249f6bb7f7ff7e00acd8cda9fd2
40174 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
40175 Date: Sun Apr 29 14:01:54 2007 +0200
40177 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
40179 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
40180 message. Use PVR to distinguish between the two variants, and print proper CPU
40183 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
40184 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
40185 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40187 commit 4ec5bd55ed1ffa91a774af298769621f4fbb18c1
40188 Author: Ladislav Michl <ladis@linux-mips.org>
40189 Date: Wed Apr 25 16:01:26 2007 +0200
40191 [PATCH] simplify silent console
40193 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
40194 Acked-by: Stefan Roese <sr@denx.de>
40196 commit b7598a43f2b421a713d8135e98a42c37d9eb9df0
40197 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
40198 Date: Mon Apr 23 15:30:39 2007 +0200
40200 [PATCH] Avoid assigning PCI resources from zero address
40202 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
40203 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
40204 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
40205 sentence about "0" being considered an invalid address) -- so, use a reasonable
40206 starting value of 0x1000 (that's what the most Linux archs are using).
40208 Alternatively, one might have fixed the calls to pci_set_region() individually
40209 (some code even seems to have taken care of this issue) but that would have
40210 been a lot more work. :-)
40212 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
40213 Acked-by: Stefan Roese <sr@denx.de>
40215 commit 9ffd451afeb08e5be7ddae680487ec962b2bca25
40216 Author: Jeffrey Mann <mannj@embeddedplanet.com>
40217 Date: Mon Apr 23 14:00:11 2007 +0200
40219 [patch] setenv(...) can delete environmentalvariables
40221 update setenv() function so that entering a NULL value for the
40222 variable's value will delete the environmental variable
40224 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
40225 Acked-by: Stefan Roese <sr@denx.de>
40227 commit ebd0a0ae05a44769c4e27458ad4e9f3438250443
40228 Author: Mike Frysinger <vapier@gentoo.org>
40229 Date: Mon Apr 23 13:54:24 2007 +0200
40231 [patch] use unsigned char in smc91111 driver for mac
40233 the v_mac variable in the smc91111 driver is declared as a signed char ...
40234 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
40235 because when it gets printed out, you get a display like:
40236 0xFFFFFFE0 and that's no good
40238 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40240 commit ffc50f9bb194343c6303517a517708457a5eb6b8
40241 Author: Michal Simek <monstr@monstr.eu>
40242 Date: Sat May 5 18:54:42 2007 +0200
40244 new: FSL and MSR support #2
40246 commit f7e2e0eb0668136305f78bb9c21be79b48a34247
40247 Author: Michal Simek <monstr@monstr.eu>
40248 Date: Sat May 5 18:27:16 2007 +0200
40250 new: FSL and MSR support
40252 commit 2f15278c2eb911c668b4fe562130b78cf554d139
40253 Author: Wolfgang Denk <wd@denx.de>
40254 Date: Sat May 5 18:23:11 2007 +0200
40256 Coding stylke cleanup; update CHANGELOG.
40258 Signed-off-by: Wolfgang Denk <wd@denx.de>
40260 commit 885ec89b648a899a2f32393fd3ffd9f7234c4402
40261 Author: Wolfgang Denk <wd@denx.de>
40262 Date: Sat May 5 18:05:02 2007 +0200
40264 Add STX GP3 SSA board to MAKEALL script; update CHANGELOG.
40266 Signed-off-by: Wolfgang Denk <wd@denx.de>
40268 commit 5499645b3fe17a548af9dfc479ca6e2455f179a2
40269 Author: Wolfgang Denk <wd@denx.de>
40270 Date: Sat May 5 17:15:50 2007 +0200
40272 Make "file" command happy with some config.mk files; update CHANGELOG
40274 commit e3b8c78bc2489c27ae020986ef0eaca684866cef
40275 Author: Jeffrey Mann <mannj@embeddedplanet.com>
40276 Date: Sat May 5 08:32:14 2007 +0200
40278 ppc4xx: Detect if the sysclk on Sequoia is 33 or 33.333 MHz
40280 The AMCC Secquoia board has been changed in a new revision from using a
40281 33.000 MHz clock to a 33.333 MHz system clock. A bit in the CPLD
40282 indicates the difference. This patch reads that bit and uses the correct
40283 clock speed for the board. This code is backward compatable will all
40284 prior boards. All prior boards will be read as 33.000.
40286 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
40287 Signed-off-by: Stefan Roese <sr@denx.de>
40289 commit f544ff6656fca263ed1ebe39899b6d95da67c8b8
40290 Author: Stefan Roese <sr@denx.de>
40291 Date: Sat May 5 08:29:01 2007 +0200
40293 ppc4xx: Sequoia: Remove cpu/ppc4xx/speed.c from NAND booting
40295 Using cpu/ppc4xx/speed.c to calculate the bus frequency is too big
40296 for the 4k NAND boot image so define bus_frequency to 133MHz here
40297 which is save for the refresh counter setup.
40299 Signed-off-by: Stefan Roese <sr@denx.de>
40301 commit 2f550ab976405300f5b07bf2890800840d0aa05f
40302 Author: Timur Tabi <timur@freescale.com>
40303 Date: Sat May 5 08:12:30 2007 +0200
40305 5xxx: write MAC address to mac-address and local-mac-address
40307 Some device trees have a mac-address property, some have local-mac-address,
40308 and some have both. To support all of these device trees, ftp_cpu_setup()
40309 should write the MAC address to mac-address and local-mac-address, if they
40312 Signed-off-by: Timur Tabi <timur@freescale.com>
40313 Acked-by: Grant Likely <grant.likely@secretlab.ca>
40315 commit a79886590593ba1d667c840caa4940c61639f18f
40316 Author: Thomas Knobloch <knobloch@siemens.com>
40317 Date: Sat May 5 07:04:42 2007 +0200
40319 NAND: Wrong calculation of page number in nand_block_bad()
40321 In case that there is no memory based bad block table available the
40322 function nand_block_checkbad() in drivers/mtd/nand/nand_base.c will call
40323 nand_block_bad() directly. When parameter 'getchip' is set to zero,
40324 nand_block_bad() will not right shift the offset to calculate the
40325 correct page number.
40327 Signed-off-by: Thomas Knobloch <knobloch@siemens.com>
40328 Signed-off-by: Stefan Roese <sr@denx.de>
40330 commit 9877d7dcd1eebe61aa5d8b8ffe9c048ea426e6f6
40331 Author: Wolfgang Denk <wd@denx.de>
40332 Date: Fri May 4 10:02:33 2007 +0200
40334 Fix initrd length corruption in bootm command.
40336 When using FDT Images, the length of an inital ramdisk was
40337 overwritten (bug introduced by commit 87a449c8, 22 Aug 2006).
40339 Patches by Timur Tabi & Johns Daniel.
40341 Signed-off-by: Wolfgang Denk <wd@denx.de>
40343 commit 068aab660bc3912b930be5540e6b3f3fd6ad3c96
40344 Author: Kim Phillips <kim.phillips@freescale.com>
40345 Date: Thu May 3 19:43:52 2007 -0500
40347 mpc83xx: fix trivial error in MAKEALL
40349 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40351 commit c64a89d6ce8584b9fc64f4e85da9ecac3cfc2c2a
40352 Author: Wolfgang Denk <wd@denx.de>
40353 Date: Thu May 3 16:34:41 2007 +0200
40355 Update board configuration for STX GP3SSA board:
40357 Enable hush shell, environment in flash rather in EEPROM,
40358 more user-friendly default environment, etc.
40359 The simple EEPROM environment can be selected easily in the board
40362 Signed-off-by: Wolfgang Denk <wd@denx.de>
40364 commit 2c6fb199dc5756fc72f49d1f4de105e089049d65
40365 Author: Wolfgang Denk <wd@denx.de>
40366 Date: Tue Apr 24 14:37:49 2007 +0200
40368 Cleanup STX GP3SSA code; fix build and compile problems.
40370 commit 35171dc04e028ecacc23ad916a66295472555dbf
40371 Author: Dan Malek <dan@embeddedalley.com>
40372 Date: Fri Jan 5 09:15:34 2007 +0100
40374 Add support for STX GP3SSA (stxssa) Board
40376 Signed-off-by Dan Malek, <dan@embeddedalley.com>
40378 commit f2134f8e9eb006bdcd729e89f309c07b2fa45180
40379 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
40380 Date: Wed May 2 13:31:53 2007 +0200
40382 macb: Don't restart autonegotiation if we already have link
40384 Rework macb_phy_init so that it doesn't attempt to re-negotiate if the
40385 link is already up.
40387 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
40389 commit 04fcb5d38bc90779cd9a710d60702075986f0e29
40390 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
40391 Date: Wed May 2 13:22:38 2007 +0200
40393 macb: Introduce a few barriers when dealing with DMA descriptors
40395 There were a few theoretical possibilities that the compiler might
40396 optimize away DMA descriptor reads and/or writes and thus cause
40397 synchronization problems with the hardware. Insert barriers where
40398 we depend on reads/writes actually hitting memory.
40400 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
40402 commit ffa621a0d12a1ccd81c936c567f8917a213787a8
40403 Author: Andy Fleming <afleming@freescale.com>
40404 Date: Sat Feb 24 01:08:13 2007 -0600
40406 Cleaned up some 85xx PCI bugs
40408 * Cleaned up the CDS PCI Config Tables and added NULL entries to
40410 * Fixed PCIe LAWBAR assignemt to use the cpu-relative address
40411 * Fixed 85xx PCI code to assign powar region sizes based on the
40412 config values (rather than hard-coding them)
40413 * Fixed the 8548 CDS PCI2 IO to once again have 0 as the base address
40415 Signed-off-by: Andy Fleming <afleming@freescale.com>
40417 commit 6743105988fc44d5b0d30388c790607835aae7a6
40418 Author: Andy Fleming <afleming@freescale.com>
40419 Date: Mon Apr 23 02:54:25 2007 -0500
40421 Add support for the 8568 MDS board
40423 This included some changes to common files:
40424 * Add 8568 processor SVR to various places
40425 * Add support for setting the qe bus-frequency value in the dts
40426 * Add the 8568MDS target to the Makefile
40428 Signed-off-by: Andy Fleming <afleming@freescale.com>
40430 commit af1c2b84bf27c8565baddc82d1abb93700d10e2e
40431 Author: David Updegraff <dave@cray.com>
40432 Date: Fri Apr 20 14:34:48 2007 -0500
40434 Add support for treating unknown PHYs as generic PHYs.
40436 When bringing up u-boot on new boards, PHY support sometimes gets
40437 neglected. Most PHYs don't really need any special support,
40438 though. By adding a generic entry that always matches if nothing
40439 else does, we can provide support for "unsupported" PHYs for the
40442 The generic PHY driver supports most PHYs, including gigabit.
40444 Signed-off-by: David Updegraff <dave@cray.com>
40445 Signed-off-by: Andy Fleming <afleming@freescale.com>
40447 commit a75af9bfd8fff0499efdbb90601cec5a2afef117
40448 Author: James Yang <James.Yang@freescale.com>
40449 Date: Wed Feb 7 15:28:04 2007 -0600
40451 Conditionalize 8641 Rev1.0 MCM workarounds
40453 Signed-off-by: James Yang <James.Yang@freescale.com>
40454 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40456 commit f64702b7fc8f8df39d31add770df6e372f9e9ce3
40457 Author: Timur Tabi <timur@freescale.com>
40458 Date: Mon Apr 30 13:59:50 2007 -0500
40460 Fix memory initialization on MPC8349E-mITX
40462 Define CFG_DDR_SDRAM_CLK_CNTL for the MPC8349E-mITX and MPC8349E-mITX-GP.
40463 This allows ddr->sdram_clk_cntl to be properly initialized. This is necessary
40464 on some ITX boards, notably those with a revision 3.1 CPU.
40466 Also change spd_sdram() in cpu/mpc83xx/spd_sdram.c to not write anything into
40467 ddr->sdram_clk_cntl if CFG_DDR_SDRAM_CLK_CNTL is not defined.
40469 Signed-off-by: Timur Tabi <timur@freescale.com>
40470 Acked-by: Michael Benedict <MBenedict@twacs.com>
40471 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40473 commit 54b2d434ae9d01787936f34fe1759cf3d7624ae3
40474 Author: Kim Phillips <kim.phillips@freescale.com>
40475 Date: Mon Apr 30 15:26:21 2007 -0500
40477 mpc83xx: replace elaborate boottime verbosity with 'clocks' command
40479 and fix CPU: to align with Board: display text.
40481 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40483 commit c1ab82669d9525998c34e802a12cad662723f22a
40484 Author: James Yang <James.Yang@freescale.com>
40485 Date: Fri Mar 16 13:02:53 2007 -0500
40487 Rewrote picos_to_clk() to avoid rounding errors.
40488 Clarified that conversion is to DRAM clocks rather than platform clocks.
40489 Made function static to spd_sdram.c.
40491 Signed-off-by: James Yang <James.Yang@freescale.com>
40492 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40494 commit 8b39501d28754e72726ce7fb02310e56dbdf116a
40495 Author: Stefan Roese <sr@denx.de>
40496 Date: Sun Apr 29 14:13:01 2007 +0200
40498 ppc4xx: Bamboo: Use current NAND driver and *not* the legacy driver
40500 Signed-off-by: Stefan Roese <sr@denx.de>
40502 commit 864aa6a6a466fcb92bf32b1d7dba79cd709b52c9
40503 Author: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
40504 Date: Sun Apr 29 14:01:54 2007 +0200
40506 [PATCH] Use PVR to distinguish MPC5200B from MPC5200 in boot message
40508 MPC5200B systems are incorrectly reported as MPC5200 in U-Boot start-up
40509 message. Use PVR to distinguish between the two variants, and print proper CPU
40512 Signed-off-by: Grzegorz Wianecki <grzegorz.wianecki@gmail.com>
40513 Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
40514 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
40516 commit 5c5d3242935cf3543af01142627494434834cf98
40517 Author: Kim Phillips <kim.phillips@freescale.com>
40518 Date: Wed Apr 25 12:34:38 2007 -0500
40520 mpc83xx: minor fixups for 8313rdb introduction
40522 commit ada4d40091f6ed4a4f0040e08d20db21967e4a67
40523 Author: Ladislav Michl <ladis@linux-mips.org>
40524 Date: Wed Apr 25 16:01:26 2007 +0200
40526 [PATCH] simplify silent console
40528 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
40529 Acked-by: Stefan Roese <sr@denx.de>
40531 commit 144876a380f5756f57412caf74c1d6dc201dd796
40532 Author: Michal Simek <monstr@monstr.eu>
40533 Date: Tue Apr 24 23:01:02 2007 +0200
40535 [PATCH] MTD partition support, JFFS2 support
40537 commit 37ed6cdd4159195bfad68d8a237f6adda8f482cb
40538 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40539 Date: Tue Apr 24 14:03:45 2007 +0200
40541 ppc4xx: setup 440EPx/GRx ZMII/RGMII bridge depending on PFC register content.
40543 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
40545 commit 66ed6cca3f340f7a8a06d9272ae2ef8e96f0273d
40546 Author: Andy Fleming <afleming@freescale.com>
40547 Date: Mon Apr 23 02:37:47 2007 -0500
40549 Reworked 85xx speed detection code
40551 Changed the code to read the registers and calculate the clock
40552 rates, rather than using a "switch" statement.
40554 Idea from Andrew Klossner <andrew@cesa.opbu.xerox.com>
40556 Signed-off-by: Andy Fleming <afleming@freescale.com>
40558 commit 81f481ca708ed6a56bf9c410e3191dbad581c565
40559 Author: Andy Fleming <afleming@freescale.com>
40560 Date: Mon Apr 23 02:24:28 2007 -0500
40562 Enable 8544 support
40564 * Add support to the Makefile
40565 * Add 8544 configuration support to the tsec driver
40566 * Add 8544 SVR numbers to processor.h
40568 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40569 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40571 commit 0d8c3a2096eaff8d7de89d45e9af4d4b0d4868fe
40572 Author: Andy Fleming <afleming@freescale.com>
40573 Date: Fri Feb 23 17:12:25 2007 -0600
40575 Support 1G size on 8548
40577 e500v2 and newer cores support 1G page sizes.
40579 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40580 Signed-off-by: Andy Fleming <afleming@freescale.com>
40582 commit 45cef612cc601d2d1c890fbbd7cdc9609a189a46
40583 Author: Andy Fleming <afleming@freescale.com>
40584 Date: Fri Feb 23 17:11:16 2007 -0600
40586 Changed BOOKE_PAGESZ_nGB to BOOKE_PAGESZ_nG
40588 The other pagesz constants use one letter to specify order of
40589 magnitude. Also change the one reference to it in mpc8548cds/init.S
40591 Signed-off-by: Andy Fleming <afleming@freescale.com>
40593 commit 1f9a318cea14272edd10d63739e2d326c90f430e
40594 Author: Andy Fleming <afleming@freescale.com>
40595 Date: Fri Feb 23 16:28:46 2007 -0600
40597 Only set ddrioovcr for 8548 rev1.
40599 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40600 Signed-off-by: Andy Fleming <afleming@freescale.com>
40602 commit 9343dbf85bc03033f2102d8e8543567c2c1ad2d2
40603 Author: Andy Fleming <afleming@freescale.com>
40604 Date: Sat Feb 24 01:16:45 2007 -0600
40606 Tweak DDR ECC error counter
40608 Enable single-bit error counter when memory was cleared by ddr controller.
40610 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40611 Signed-off-by: Andy Fleming <afleming@freescale.com>
40613 commit 85e7c7a45e3dd9c7ce3e722352ba60f8df1a7a4b
40614 Author: Timur Tabi <timur@freescale.com>
40615 Date: Mon Feb 12 13:34:55 2007 -0600
40617 85xx: write MAC address to mac-address and local-mac-address
40619 Some device trees have a mac-address property, some have local-mac-address,
40620 and some have both. To support all of these device trees, ftp_cpu_setup()
40621 should write the MAC address to mac-address and local-mac-address, if they
40624 Signed-off-by: Timur Tabi <timur@freescale.com>
40626 commit 03b81b48eec0ad249ec97a4ae16c36fa2e014ff4
40627 Author: Andy Fleming <afleming@freescale.com>
40628 Date: Mon Apr 23 01:44:44 2007 -0500
40630 Some 85xx cpu cleanups
40632 * Cleaned up the TSR[WIS] clearing
40633 * Cleaned up DMA initialization
40635 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40636 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40637 Acked-by: Andy Fleming <afleming@freescale.com>
40639 commit 151d5d992eab8c497b24c816c73dc1ad8bffb4eb
40640 Author: Andy Fleming <afleming@freescale.com>
40641 Date: Mon Apr 23 01:32:22 2007 -0500
40643 Add cpu support for the 8544
40645 Recognize new SVR values, and add a few register definitions
40647 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40648 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40649 Acked-by: Andy Fleming <afleming@freescale.com>
40651 commit 25d83d7f4ac65727182d8ddaf7ba42fa74cf65ae
40652 Author: Jon Loeliger <jdl@freescale.com>
40653 Date: Wed Apr 11 16:51:02 2007 -0500
40655 Add MPC8544DS basic port board files.
40657 Add board port under new board/freescale directory
40658 structure and reuse existing PIXIS FPGA support there.
40660 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40661 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40663 commit 0cde4b00fc7393b89f379d83a9d436dcb1334bfa
40664 Author: Jon Loeliger <jdl@freescale.com>
40665 Date: Wed Apr 11 16:50:57 2007 -0500
40667 Add MPC8544DS main configuration file.
40669 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40670 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40672 commit 362dd83077ac04c0296bca3e824ec2fb3d44d9d6
40673 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
40674 Date: Wed Dec 27 22:07:15 2006 +0300
40676 Fix PCI I/O space mapping on Freescale MPC85x0ADS
40678 The PCI I/O space mapping for Freescale MPC8540ADS board was broken by commit
40679 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc which failed to update the #define's
40680 describing the local address window used for the PCI I/O space accesses -- fix
40681 this and carry over the necessary changes into the MPC8560ADS code since the
40682 PCI I/O space mapping was also broken for this board (by the earlier commit
40683 087454609e47295443af793a282cddcd91a5f49c). Add the comments clarifying how
40684 the PCI I/O space must be mapped to all the MPC85xx board config. headers.
40686 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
40688 board/mpc8540ads/init.S | 4 ++--
40689 board/mpc8560ads/init.S | 4 ++--
40690 include/configs/MPC8540ADS.h | 5 ++---
40691 include/configs/MPC8541CDS.h | 2 +-
40692 include/configs/MPC8548CDS.h | 2 +-
40693 include/configs/MPC8560ADS.h | 8 ++++----
40694 6 files changed, 12 insertions(+), 13 deletions(-)
40696 commit 96629cbabdb727d4a5e62542deefc01d498db6dc
40697 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
40698 Date: Tue Dec 5 16:42:30 2006 +0800
40700 u-boot: Fix e500 v2 core reset bug
40702 The following patch fixes the e500 v2 core reset bug.
40703 For e500 v2 core, a new reset control register is added to reset the
40706 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40708 commit 63247a5acd58032e6cf33f525bc3923b467bac88
40709 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
40710 Date: Wed Dec 20 11:01:00 2006 +0800
40712 u-boot: v2: Remove the fixed TLB and LAW entrynubmer
40714 Remove the fixed TLB and LAW entry nubmer. Use actually TLB and LAW
40715 entry number to control the loop. This can reduce the potential risk
40716 for the 85xx processor increasing its TLB adn LAW entry number.
40718 Signed-off-by: Swarthout Edward <swarthout@freescale.com>
40719 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40721 commit 0b1934ba12fd408fcc3b8bd9f4b04864c42a42bf
40722 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
40723 Date: Mon Dec 18 17:01:04 2006 +0800
40725 u-boot: Fix the 85xxcds tsec bug
40727 Fix the 85xxcds tsec bug.
40728 When enable PCI, tsec.o should be added to u-boot.lds to make tsec work.
40730 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40732 commit 7337b237ffc4aaf1b9467024fe472a880d852598
40733 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
40734 Date: Fri Dec 15 14:43:31 2006 +0800
40736 u-boot: Fix CPU2 errata on MPC8548CDS board
40738 This patch apply workaround of CPU2 errata on MPC8548CDS board.
40740 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
40742 commit 39b18c4f3e0b6d0dc00f4e68bad2da3766c85f09
40743 Author: ebony.zhu@freescale.com <ebony.zhu@freescale.com>
40744 Date: Mon Dec 18 16:25:15 2006 +0800
40746 u-boot: Disables MPC8548CDS 2T_TIMING for DDR by default
40748 This patch disables MPC8548CDS 2T_TIMING for DDR by default.
40750 Signed-off-by:Ebony Zhu <ebony.zhu@freescale.com>
40752 commit 41fb7e0f1ec9b91bdae2565bab5f2e3ee15039c7
40753 Author: Zang Roy-r61911 <tie-fei.zang@freescale.com>
40754 Date: Thu Dec 14 14:14:55 2006 +0800
40756 u-boot: Enable PCI function and add PEX & rapidio memory map on MPC8548CDS board
40758 Enable PCI function and add PEX & rapidio memory map on MPC8548CDS
40760 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
40762 commit 96b8a05432f346f36493535c85320b70ec9c7c1b
40763 Author: Scott Wood <scottwood@freescale.com>
40764 Date: Mon Apr 16 14:54:15 2007 -0500
40766 mpc83xx: Add MPC8313ERDB support.
40768 Signed-off-by: Scott Wood <scottwood@freescale.com>
40770 commit 49ea3b6eafe606285ae4d5c378026153dde53200
40771 Author: Scott Wood <scottwood@freescale.com>
40772 Date: Mon Apr 16 14:34:21 2007 -0500
40774 mpc83xx: Add generic PCI setup code.
40776 Board code can now request the generic setup code rather than having to
40777 copy-and-paste it for themselves. Boards should be converted to use this
40778 once they're tested with it.
40780 Signed-off-by: Scott Wood <scottwood@freescale.com>
40782 commit 7c98e5193e93df6b9b651851d54b638a61ebb0ea
40783 Author: Scott Wood <scottwood@freescale.com>
40784 Date: Mon Apr 16 14:34:19 2007 -0500
40786 mpc83xx: Add 831x support to speed.c.
40788 Signed-off-by: Scott Wood <scottwood@freescale.com>
40790 commit 0f253283a32d91e06844d7f87f9b33f4f4fbce8f
40791 Author: Scott Wood <scottwood@freescale.com>
40792 Date: Mon Apr 16 14:34:18 2007 -0500
40794 mpc83xx: Add 831x support to global_data.h
40796 Signed-off-by: Scott Wood <scottwood@freescale.com>
40798 commit 95e7ef897e54591e615fc1b458b74c286fe1fb06
40799 Author: Scott Wood <scottwood@freescale.com>
40800 Date: Mon Apr 16 14:34:16 2007 -0500
40802 mpc83xx: Change PVR_83xx to PVR_E300C1-3, and update checkcpu().
40804 Rather than misleadingly define PVR_83xx as the specific type of 83xx
40805 being built for, the PVR of each core revision is defined. checkcpu() now
40806 prints the core that it detects, rather than aborting if it doesn't find
40807 what it thinks it wants.
40809 Signed-off-by: Scott Wood <scottwood@freescale.com>
40811 commit a35b0c4950d84cf9e3a9e32b916135956d1ac636
40812 Author: Scott Wood <scottwood@freescale.com>
40813 Date: Mon Apr 16 14:34:15 2007 -0500
40815 mpc83xx: Recognize SPR values for MPC8311 and MPC8313.
40817 Signed-off-by: Scott Wood <scottwood@freescale.com>
40819 commit d87c57b201b4572d16f1b642998faa00c9912b16
40820 Author: Scott Wood <scottwood@freescale.com>
40821 Date: Mon Apr 16 14:31:55 2007 -0500
40823 mpc83xx: Add register definitions for MPC831x.
40825 Signed-off-by: Scott Wood <scottwood@freescale.com>
40827 commit 7fc4c71a143be8666d70803fb25ae60379c95622
40828 Author: Stefan Roese <sr@denx.de>
40829 Date: Mon Apr 23 15:39:59 2007 +0200
40833 Signed-off-by: Stefan Roese <sr@denx.de>
40835 commit 38257988abfe74d459ca2ad748b109ca04e4efe1
40836 Author: Sergei Shtylyov <sshtylyov@ru.mvista.com>
40837 Date: Mon Apr 23 15:30:39 2007 +0200
40839 [PATCH] Avoid assigning PCI resources from zero address
40841 If a PCI IDE card happens to get a zero address assigned to it, the Linux IDE
40842 core complains and IDE drivers fails to work. Also, assigning zero to a BAR
40843 was illegal according to PCI 2.1 (the later revisions seem to have excluded the
40844 sentence about "0" being considered an invalid address) -- so, use a reasonable
40845 starting value of 0x1000 (that's what the most Linux archs are using).
40847 Alternatively, one might have fixed the calls to pci_set_region() individually
40848 (some code even seems to have taken care of this issue) but that would have
40849 been a lot more work. :-)
40851 Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
40852 Acked-by: Stefan Roese <sr@denx.de>
40854 commit afb903a2eb9436baa9270ccc0c27082d86497d89
40855 Author: Jeffrey Mann <mannj@embeddedplanet.com>
40856 Date: Mon Apr 23 14:00:11 2007 +0200
40858 [patch] setenv(...) can delete environmentalvariables
40860 update setenv() function so that entering a NULL value for the
40861 variable's value will delete the environmental variable
40863 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
40864 Acked-by: Stefan Roese <sr@denx.de>
40866 commit 36f104e5caa747d568eff26b369565af57c2ffa6
40867 Author: Mike Frysinger <vapier@gentoo.org>
40868 Date: Mon Apr 23 13:54:24 2007 +0200
40870 [patch] use unsigned char in smc91111 driver for mac
40872 the v_mac variable in the smc91111 driver is declared as a signed char ...
40873 this causes problems when one of the bytes in the MAC is "signed" like 0xE0
40874 because when it gets printed out, you get a display like:
40875 0xFFFFFFE0 and that's no good
40877 Signed-off-by: Mike Frysinger <vapier@gentoo.org>
40879 commit d98c0885ad617fccf21e7c26ef8cb728fbfb2459
40880 Author: Rodolfo Giometti <giometti@enneenne.com>
40881 Date: Mon Apr 23 13:10:52 2007 +0200
40883 USB: (Another) delay for crappy USB keys.
40885 Some USB keys are slow in giving back an answer when the Root HUB
40886 enables power lines.
40888 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
40890 commit 323bfa8f436dc3bc57187c9b1488bc3146ff1522
40891 Author: Stefan Roese <sr@denx.de>
40892 Date: Mon Apr 23 12:00:22 2007 +0200
40894 Remove BOARDLIBS usage completely
40896 Signed-off-by: Stefan Roese <sr@denx.de>
40898 commit 32556443840f127170e4baa8bdd5b567039f6c36
40899 Author: Michal Simek <monstr@monstr.eu>
40900 Date: Sat Apr 21 21:07:22 2007 +0200
40902 [PATCH] SystemACE support for Microblaze
40904 commit 0643631aa1036cd746bf5d15f5a34bc7bc01ea4f
40905 Author: Michal Simek <monstr@monstr.eu>
40906 Date: Sat Apr 21 21:02:40 2007 +0200
40908 16bit read/write little endian
40910 commit 9d1d6a34d26c5933bc097ce73c9348f95573cdd4
40911 Author: Michal Simek <monstr@monstr.eu>
40912 Date: Sat Apr 21 20:53:31 2007 +0200
40914 Change ML401 parameters - Xilinx BSP
40916 commit 2e343b9a57f32e1bd08c35c9976910333fb4e13d
40917 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
40918 Date: Wed Feb 28 05:37:29 2007 -0600
40920 mpc8641hpcn: Fix LAW and TLB setup to use the IO_PHYS #defines.
40922 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
40924 commit 79cb47391eebef85acadb3f6961ef6c55cace6ac
40925 Author: Zhang Wei <wei.zhang@freescale.com>
40926 Date: Fri Jan 19 10:42:37 2007 +0800
40928 Enable LAWs for MPC8641 PCI-Ex2.
40930 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
40931 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40933 commit bd7851ce1e1f140665b520026abf1042968b1102
40934 Author: Jon Loeliger <jdl@freescale.com>
40935 Date: Fri Apr 20 14:12:26 2007 -0500
40937 mpc86xx; Write MAC address to mac-address and local-mac-address
40939 Some device trees have a mac-address property, some have local-mac-address,
40940 and some have both. To support all of these device trees, ftp_cpu_setup()
40941 should write the MAC address to mac-address and local-mac-address, if they
40944 Signed-off-by: Timur Tabi <timur@freescale.com>
40945 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40947 commit 7dbdf28b8bd855a8530dc3292e4982575a197060
40948 Author: Jon Loeliger <jdl@freescale.com>
40949 Date: Fri Apr 20 14:11:38 2007 -0500
40951 mpc86xx: protect memcpy to bad address if a mac-address is missing from dt
40953 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
40954 Signed-off-by: Jon Loeliger <jdl@freescale.com>
40956 commit 14da5f7675bbb427c469e3f45006e027b6e21db9
40957 Author: Wolfgang Denk <wd@denx.de>
40958 Date: Fri Apr 20 17:43:28 2007 +0200
40960 Cleanup compiler warnings, update CHANGELOG
40962 Signed-off-by: Wolfgang Denk <wd@denx.de>
40964 commit 6923565db12af34fd5e02d354ee65a8c78ac460f
40965 Author: Detlev Zundel <dzu@denx.de>
40966 Date: Fri Apr 20 12:01:47 2007 +0200
40968 Fix breakage of NC650 board with respect to nand support.
40970 Signed-off-by: Detlev Zundel <dzu@denx.de>
40972 commit 39f23cd90947639ac278a18ff277ec786b5ac167
40973 Author: Domen Puncer <domen.puncer@telargo.com>
40974 Date: Fri Apr 20 11:13:16 2007 +0200
40976 [RFC PATCH] icecube/lite5200b: fix OF_TBCLK (timebase-frequency) calculation
40978 G2 core reference manual says decrementer and time base
40979 are decreasing/increasing once every 4 bus clock cycles.
40980 Lets fix it, so time in Linux won't run twice as fast
40982 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
40983 Acked-by: Grant Likely <grant.likely@secretlab.ca>
40985 commit 7651f8bdbba03bb0b4f241e2d2c4cb65b230bd56
40986 Author: Gerald Van Baren <vanbaren@cideas.com>
40987 Date: Thu Apr 19 23:14:39 2007 -0400
40989 Fix serious pointer bug with bootm and reserve map.
40991 What was suppose to be a stack variable was declared as a pointer,
40992 overwriting random memory.
40993 Also moved the libfdt.a requirement into the main Makefile. That is
40996 commit d21686263574e95cb3e9e9b0496f968b1b897fdb
40997 Author: Stefan Roese <sr@denx.de>
40998 Date: Thu Apr 19 09:53:52 2007 +0200
41000 ppc4xx: Fix chip select timing for SysACE access on AMCC Katmai
41002 Previous versions used full wait states for the chip select #1 which
41003 is connected to the Xilinix SystemACE controller on the AMCC Katmai
41004 evaluation board. This leads to really slow access and therefore low
41005 performance. This patch now sets up the chip select a lot faster
41006 resulting in much better read/write performance of the Linux driver.
41008 Signed-off-by: Stefan Roese <sr@denx.de>
41010 commit 37837828d89084879bee2f2b8c7c68d4695940df
41011 Author: Wolfgang Denk <wd@denx.de>
41012 Date: Wed Apr 18 17:49:29 2007 +0200
41014 Clenaup, update CHANGELOG
41016 Signed-off-by: Wolfgang Denk <wd@denx.de>
41018 commit fd094c6379e2ef8a4d0ceb5640b24cb0c8d04449
41019 Author: Wolfgang Denk <wd@denx.de>
41020 Date: Wed Apr 18 17:20:58 2007 +0200
41024 Signed-off-by: Wolfgang Denk <wd@denx.de>
41026 commit 2a26ec4732efd7a308d0bbc97714c1d75ef1173b
41027 Author: Wolfgang Denk <wd@denx.de>
41028 Date: Wed Apr 18 17:07:26 2007 +0200
41030 Cleanup, update CHANGELOG
41032 Sigend-off-by: Wolfgang Denk <wd@denx.de>
41034 commit 5f6c732affea9647762d27a4617a2ae64c52dceb
41035 Author: Wolfgang Denk <wd@denx.de>
41036 Date: Wed Apr 18 16:17:46 2007 +0200
41040 commit ad4eb555671d97f96dc56eab55103b1f86874b01
41041 Author: Wolfgang Denk <wd@denx.de>
41042 Date: Wed Apr 18 14:30:39 2007 +0200
41044 MCC200 board: remove warning which is obsolete after PSoC firmware changes
41046 Signed-off-by: Wolfgang Denk <wd@denx.de>
41048 commit 3747a3f010b2b1442dec3e871c69788b6017aaae
41049 Author: Domen Puncer <domen.puncer@telargo.com>
41050 Date: Wed Apr 18 12:11:05 2007 +0200
41052 [PATCH] icecube/lite5200b: document wakeup from low-power support
41054 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
41056 commit e673226ff9d6aa91b47ceac74b8c13770b06bb37
41057 Author: Stefan Roese <sr@denx.de>
41058 Date: Wed Apr 18 12:07:47 2007 +0200
41060 ppc4xx: Update Acadia to not setup PLL when booting via bootstrap EEPROM
41062 Signed-off-by: Stefan Roese <sr@denx.de>
41064 commit 90e6f41cf09fc98f6ccb510e183d53ab8546cf2f
41065 Author: Stefan Roese <sr@denx.de>
41066 Date: Wed Apr 18 12:05:59 2007 +0200
41068 ppc4xx: Add output for bootrom location to 405EZ ports
41070 Now 405EZ ports also show upon bootup from which boot device
41071 they are configured to boot:
41073 U-Boot 1.2.0-gd3832e8f-dirty (Apr 18 2007 - 07:47:05)
41075 CPU: AMCC PowerPC 405EZ Rev. A at 199.999 MHz (PLB=133, OPB=66, EBC=66 MHz)
41076 Bootstrap Option E - Boot ROM Location EBC (32 bits)
41077 16 kB I-Cache 16 kB D-Cache
41078 Board: Acadia - AMCC PPC405EZ Evaluation Board
41080 Signed-off-by: Stefan Roese <sr@denx.de>
41082 commit 9c00dfb0bf89c8c23e8af5b5bdf49cf66d769f85
41083 Author: Peter Pearse <peter.pearse@arm.com>
41084 Date: Tue Apr 17 13:30:33 2007 +0100
41086 Move ppearse to ARM board list
41087 Add Konstantin Kletschke for scb9328.
41088 Signed-off-by: Peter Pearse <peter.pearse@arm.com>
41090 commit d3832e8fe1b214ec62424eac36cfda9fc56d21b3
41091 Author: Domen Puncer <domen.puncer@telargo.com>
41092 Date: Mon Apr 16 14:00:13 2007 +0200
41094 [PATCH] icecube/lite5200b: wakeup from low-power support
41096 U-Boot part of Lite5200b low power mode support.
41097 Puts SDRAM out of self-refresh and transfers control to
41098 address saved at physical 0x0.
41100 Signed-off-by: Domen Puncer <domen.puncer@telargo.com>
41101 Acked-by: Grant Likely <grant.likely@secretlab.ca>
41103 commit f35a53fc7b0c79fcfe7bdc01163c4b34aaba1460
41104 Author: Gerald Van Baren <vanbaren@cideas.com>
41105 Date: Sun Apr 15 13:54:26 2007 -0400
41107 Fix the ft_cpu_setup() property settings.
41109 Use "setter" functions instead of flags, cleaner and more flexible.
41110 It also fixes the problem noted by Timur Tabi that the ethernet MAC
41111 addresses were all being set incorrectly to the same MAC address.
41113 commit c28abb9c614f65ce2096cc4a66fc886c77d0e5a4
41114 Author: Gerald Van Baren <vanbaren@cideas.com>
41115 Date: Sat Apr 14 22:51:24 2007 -0400
41117 Improve the bootm command for CONFIG_OF_LIBFDT
41119 In bootm, create the "/chosen" node only if it doesn't already exist
41120 (better matches the previous behavior).
41121 Update for proper reserved memory map handling for initrd.
41123 commit 3f9f08cf91c8a6949a5d78a18bd3d8df7b86d888
41124 Author: Gerald Van Baren <vanbaren@cideas.com>
41125 Date: Sat Apr 14 22:46:41 2007 -0400
41127 Add some utilities to manipulate the reserved memory map.
41129 commit 8048cdd56f04a756eeea4951f402bf5cc33785db
41130 Author: Wolfgang Denk <wd@denx.de>
41131 Date: Sat Apr 14 21:16:54 2007 +0200
41135 commit 8e6875183cdca91c134408d119d4abcd48ef6856
41136 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41137 Date: Sun Dec 17 18:56:46 2006 +0100
41139 AVR32: Enable MMC support
41141 Set up the portmux for the MMC interface and enable the MMC driver
41142 along with support for DOS partitions, ext2 and FAT filesystems.
41144 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41146 commit fc26c97bb6df41b4a95662c34054fe912387bf38
41147 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41148 Date: Fri Jan 20 10:03:53 2006 +0100
41152 Driver for the Atmel MCI controller (MMC interface) for AT32AP CPUs.
41154 The AT91 ARM-based CPUs use basically the same hardware, so it should
41155 be possible to share this driver, but no effort has been made so far.
41157 Hardware documentation can be found in the AT32AP7000 data sheet,
41158 which can be downloaded from
41160 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
41162 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41164 commit 05fdab1ef6a10d049a50021a86f1226f444d9b9f
41165 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41166 Date: Sun Dec 17 18:55:37 2006 +0100
41168 AVR32: Add clk and gpio infrastructure for mmci
41170 Implement functions for configuring the mmci pins, as well as
41171 functions for getting the clock rate of the mmci controller.
41173 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41175 commit 7fac3f69e9f05c5e5326681976c35d129324c4de
41176 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41177 Date: Sun Dec 17 18:53:56 2006 +0100
41179 Enable partition support with MMC
41181 Include implementations of init_part() and get_partition_info() when
41184 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41186 commit 9a24f477a1ed5bb0f74377c985d754ebbfa44872
41187 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41188 Date: Sun Dec 17 17:14:30 2006 +0100
41190 AVR32: Enable networking
41192 Implement MACB initialization for AVR32 and ATSTK1000, and turn
41193 everything on, including the MACB driver.
41195 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41197 commit 5c1fe1ffffd1750a7e47e5a2e2cd600c00e4f009
41198 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41199 Date: Fri Jan 20 10:03:34 2006 +0100
41201 Atmel MACB ethernet driver
41203 Driver for the Atmel MACB on-chip ethernet controller.
41205 This driver has been tested on the ATSTK1000 board with a AT32AP7000
41206 CPU. It should probably work on AT91SAM926x as well with some minor
41209 Hardware documentation can be found in the AT32AP7000 data sheet,
41210 which can be downloaded from
41212 http://www.atmel.com/dyn/products/datasheets.asp?family_id=682
41214 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41216 commit b4ec9c2d43d894729bb633bfdbdfa95a962c1556
41217 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41218 Date: Sun Dec 17 16:56:14 2006 +0100
41220 AVR32: Add clk and gpio infrastructure for macb0 and macb1
41222 Implement functions for configuring the macb0 and macb1 pins, as
41223 well as functions for getting the clock rate of the various
41224 busses the macb ethernet controllers are connected to.
41226 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41228 commit d5acb95b16a0a74c643524342c3437e765426d05
41229 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41230 Date: Sun Dec 17 15:39:15 2006 +0100
41232 AVR32: Implement simple DMA memory allocator
41234 Implement dma_alloc_coherent() which returns cache-aligned
41235 uncacheable memory.
41237 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41239 commit 91975b0fea773c9e681fea8cf3349669f27685ee
41240 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41241 Date: Sun Dec 17 15:46:02 2006 +0100
41243 Import <linux/mii.h> from the Linux kernel
41245 Instead of creating yet another set of MII register definitions
41246 in the macb driver, here's a complete set of definitions for everyone
41249 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41251 commit 1b804b229556a4d862da93c0ec94e79419364b2c
41252 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41253 Date: Wed Mar 21 19:47:36 2007 +0100
41255 AVR32: Include more commands for ATSTK1000
41257 Include the imi, imls and jffs commands sets by default on ATSTK1000.
41258 Also define CONFIG_BOOTARGS to something more useful, define
41259 CONFIG_BOOTCOMMAND and enable autoboot by default.
41261 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41263 commit 9c0deb5ae3ea0189f2e08ac29ef1316f1fb8548d
41264 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41265 Date: Wed Mar 21 19:44:48 2007 +0100
41267 AVR32: Provide a definition of struct stat
41269 Copy the definition of struct stat from the Linux kernel.
41271 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41273 commit 12f099c08167a7a51aeee623bc16dafd0841271c
41274 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41275 Date: Sun Dec 17 14:46:06 2006 +0100
41277 AVR32: Use initdram() instead of board_init_memories()
41279 Conform to the "standard" interface and use initdram() instead of
41280 board_init_memories() on AVR32. This enables us to get rid of the
41281 sdram_size member of the global_data struct as well.
41283 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41285 commit 1f4f2121c2685182eb87fa9a9b799d1917387a1c
41286 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41287 Date: Mon Nov 20 15:53:10 2006 +0100
41289 AVR32: Relocate u-boot to SDRAM
41291 Relocate the u-boot image into SDRAM like everyone else does. This
41292 means that we can handle much larger .data and .bss than we used to.
41294 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41296 commit df548d3c3e2bbc40258713167859ffc2ce99a900
41297 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41298 Date: Sun Nov 19 18:06:53 2006 +0100
41300 AVR32: Resource management rewrite
41302 Rewrite the resource management code (i.e. I/O memory, clock gating,
41303 gpio) so it doesn't depend on any global state. This is necessary
41304 because this code is heavily used before relocation to RAM, so we
41305 can't write to any global variables.
41307 As an added bonus, this makes u-boot's memory footprint a bit smaller,
41308 although some functionality has been left out; all clocks are enabled
41309 all the time, and there's no checking for gpio line conflicts.
41311 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41313 commit 03d1e1365796cd15d1726e8a51fd8b5be50b2fe9
41314 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41315 Date: Sat Nov 18 18:01:13 2006 +0100
41317 AVR32: Clean up memory-map.h for at32ap7000
41319 Convert spaces to tabs (must have missed this one last time around),
41320 sort the entries by address and group them together by bus
41323 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41325 commit 28c699ef69f4b6cdf252e4747b7b590028a88981
41326 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41327 Date: Sat Nov 18 17:32:31 2006 +0100
41329 AVR32: Build position-independent u-boot
41331 Add -fPIC -mno-init-got to the avr32-specific CFLAGS to make u-boot
41332 position independent. This will make relocation a lot easier.
41334 -mno-init-got means that gcc shouldn't emit code to load the GOT
41335 address into r6 in every function prologue. We do it once and for
41336 all in the early startup assembly code, so enabling this option
41337 makes u-boot a bit faster and smaller.
41339 The assembly parts have always been position-independent, so no code
41340 changes should be necessary.
41342 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41344 commit 5374b36de91d006d1df9536259fa9f66b01aa3aa
41345 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41346 Date: Sat Nov 18 17:24:31 2006 +0100
41348 AVR32: Use avr32-linux- cross-compilation prefix by default
41350 It doesn't really matter which toolchain you use to compile u-boot,
41351 but the avr32-linux one is probably what most people have installed.
41353 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41355 commit c841beeddebece0039e724fb27f4d1a39ee1c6b6
41356 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
41357 Date: Sat Nov 18 17:15:30 2006 +0100
41359 AVR32: Split start_u_boot into board_init_f and board_init_r
41361 Split the avr32 initialization code into a function to run before
41362 relocation, board_init_f and a function to run after relocation,
41363 board_init_r. For now, board_init_f simply calls board_init_r
41366 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
41368 commit 37403005cfe6bb13964d450f6a48a0b0f2f7017e
41369 Author: Heiko Schocher <hs@pollux.denx.de>
41370 Date: Sat Apr 14 05:26:48 2007 +0200
41372 [Fix] Set the LED status register on the UC101 for the LXT971 PHY.
41373 clear the Display after reset.
41375 Signed-off-by: Heiko Schocher <hs@denx.de>
41377 commit 7882751c78b7ecabfd49b0eff8de27661c71f16c
41378 Author: Denis Peter <d.peter@mpl.ch>
41379 Date: Fri Apr 13 09:13:33 2007 +0200
41381 [PATCH] Fix bugs in cmd_ide.c and cmd_scsi.c
41383 Fix bug introduced by "Fix get_partition_info() parameter error in all
41384 other calls" from 2005-03-04 in cmd_ide.c and cmd_scsi.c, which prevented
41385 to use diskboot or scsiboot form another device than 0.
41387 Signed-off-by: Denis Peter <d.peter@mpl.ch>
41389 commit 0b94504d22e70f537c17a0d38c87edb6e370977d
41390 Author: Greg Lopp <lopp@pobox.com>
41391 Date: Fri Apr 13 08:02:24 2007 +0200
41393 [PATCH] Fix use of "void *" for block dev read/write buffer pointers
41395 Signed-of-by: Greg Lopp <lopp@pobox.com>
41396 Acked-by: Grant Likely <grant.likely@secretlab.ca>
41398 commit 6fbf261f8df294e589cfadebebe5468e3c0f29e9
41399 Author: Xie Xiaobo <r63061@freescale.com>
41400 Date: Fri Mar 9 19:08:25 2007 +0800
41402 Fix two bugs for MPC83xx DDR2 controller SPD Init
41404 There are a few bugs in the cpu/mpc83xx/spd_sdram.c
41405 the first bug is that the picos_to_clk routine introduces a huge
41406 rounding error in 83xx.
41407 the second bug is that the mode register write recovery field is
41408 tWR-1, not tWR >> 1.
41410 commit 2ad3aba01d37b72e7c957b07e102fccd64fe6d13
41411 Author: Jeffrey Mann <mannj@embeddedplanet.com>
41412 Date: Thu Apr 12 14:15:59 2007 +0200
41414 ppc4xx: Fix i2c divisor calcularion for PPC4xx
41416 This patch fixes changes the i2c_init(...) function to use the function
41417 get_OPB_freq() rather than calculating the OPB speed by
41418 sysInfo.freqPLB/sysInfo.pllOpbDiv. The get_OPB_freq() function is
41419 specific per processor. The prior method was not and so was calculating
41420 the wrong speed for some PPC4xx processors.
41422 Signed-off-by: Jeffrey Mann <mannj@embeddedplanet.com>
41423 Signed-off-by: Stefan Roese <sr@denx.de>
41425 commit 6c9ba919375db977aaad9146bf320c7afd07ae7a
41426 Author: Wolfgang Denk <wd@denx.de>
41427 Date: Wed Apr 11 17:25:01 2007 +0200
41431 Signed-off-by: Wolfgang Denk <wd@denx.de>
41433 commit 51056dd9863e6a1bc363afbbe1775c58cd967418
41434 Author: Wolfgang Denk <wd@denx.de>
41435 Date: Wed Apr 11 17:22:55 2007 +0200
41437 Update for SC3 board
41439 * Make IDE timeout configurable through ide_reset_timeout variable.
41440 * Use Newline as "password" string
41441 * Use just a single partition in NAND flash
41443 commit 3d98b85800c80dc68227c8f10bf5c93456d6d054
41444 Author: Haiying Wang <haiying.wang@freescale.com>
41445 Date: Mon Jan 22 12:37:30 2007 -0600
41447 Add PIXIS FPGA support for MPC8641HPCN board.
41449 Move the 8641HPCN's PIXIS code to the new directory
41450 board/freescale/common/ as it will be shared by
41451 future boards not in the same processor family.
41453 Write a "pixis_reset" command that utilizes the FPGA
41454 reset sequencer to support alternate soft-reset options
41455 such as using the "alternate" flash bank, enabling
41456 the watch dog, or choosing different CPU frequencies.
41458 Add documentation for the pixis_reset to README.mpc8641hpcn.
41460 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
41461 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41463 commit 64dbbd40c58349b64f43fd33dbb5ca0adb67d642
41464 Author: Gerald Van Baren <vanbaren@cideas.com>
41465 Date: Fri Apr 6 14:19:43 2007 -0400
41467 Moved fdt command support code to fdt_support.c
41469 ...in preparation for improving the bootm command's handling of fdt blobs.
41470 Also cleaned up some coding sloppiness.
41472 commit 6679f9299534e488a171a9bb8f9bb891de247aab
41473 Author: Gerald Van Baren <vanbaren@cideas.com>
41474 Date: Fri Apr 6 14:17:14 2007 -0400
41476 libfdt: Make fdt_check_header() public
41478 Changed _fdt_check_header() to fdt_check_header() and made it part of
41479 the interface - it is a useful routine.
41481 Also did some asthetics cleanup to the include files (headers).
41483 commit c0707ce65677650b5ceab0500ee50ae5168afef2
41484 Author: Aubrey Li <aubrey.adi@gmail.com>
41485 Date: Thu Apr 5 18:34:06 2007 +0800
41487 [Blackfin][PATCH] Kill off a bunch of common local prototypes
41489 commit 7b7e30aa64bb6657a1bfd32fdbdbfeb561e6a48d
41490 Author: Aubrey Li <aubrey.adi@gmail.com>
41491 Date: Thu Apr 5 18:33:04 2007 +0800
41493 [Blackfin][PATCH] Fix dynamic CPLB generation issue
41495 commit 0445e3a264251d75b1be45ef713c70726a2952f0
41496 Author: Aubrey Li <aubrey.adi@gmail.com>
41497 Date: Thu Apr 5 18:31:47 2007 +0800
41499 [Blackfin][PATCH] minior cleanup
41501 commit 155fd766573981090e638b493d5857562151862e
41502 Author: Aubrey Li <aubrey.adi@gmail.com>
41503 Date: Thu Apr 5 18:31:18 2007 +0800
41505 [Blackfin][PATCH] Fix copyright and update license
41507 commit 9fd437bbd75d282f899e1da50be20a2bf38450bc
41508 Author: Aubrey Li <aubrey.adi@gmail.com>
41509 Date: Thu Apr 5 18:30:25 2007 +0800
41511 [Blackfin][PATCH] Add BF537 EMAC driver initialization
41513 commit 889256e8604e0c68db1d866d720894dffede9df6
41514 Author: Aubrey Li <aubrey.adi@gmail.com>
41515 Date: Thu Apr 5 18:29:55 2007 +0800
41517 [Blackfin][PATCH] call real the system synchronize instruction
41519 commit e0df1c921b788289564e4c1ee7120a6a9cd3ab05
41520 Author: Aubrey Li <aubrey.adi@gmail.com>
41521 Date: Thu Apr 5 18:29:17 2007 +0800
41523 [Blackfin][PATCH] remove asm/page.h as we do not actually use/want any of these definitions nor does any other arch include it
41525 commit dfeeab2cd680df047e68e723b246adf6f33bb556
41526 Author: Aubrey Li <aubrey.adi@gmail.com>
41527 Date: Thu Apr 5 18:28:34 2007 +0800
41529 [Blackfin][PATCH]: fix flash unaligned copy issue
41531 commit 443feb740584e406efa203af909fe2926608e8d5
41532 Author: Igor Marnat <marny@rambler.ru>
41533 Date: Wed Mar 21 09:55:01 2007 +0300
41535 Update usage of 'nc' in README.NetConsole
41537 Added information about usage of NetConsole on systems where the -l and -p
41538 switches are mutually exclusive.
41540 Signed-off-by: Igor Marnat <marny@rambler.ru>
41541 Signed-off-by: Ben Warren <bwarren@qstreams.com>
41543 commit 31c98a88228021b314c89ebb8104fb6473da4471
41544 Author: Wolfgang Denk <wd@denx.de>
41545 Date: Wed Apr 4 02:09:30 2007 +0200
41547 Minor coding style cleanup.
41549 commit 94abd7c0583ebe01e799b25f451201deeaab550d
41550 Author: Wolfgang Denk <wd@denx.de>
41551 Date: Wed Apr 4 01:49:15 2007 +0200
41555 commit 822af351ad2babc7d99033361a5fcacd30f6bc78
41556 Author: Rodolfo Giometti <giometti@enneenne.com>
41557 Date: Tue Apr 3 14:27:18 2007 +0200
41559 Support for the Philips ISP116x HCD (Host Controller Driver)
41561 Signed-off-by: Rodolfo Giometti <giometti@enneenne.com>
41563 commit edf5851be6c17c031d4f71dd5b0a12040b7c50c8
41564 Author: Markus Klotzbuecher <mk@denx.de>
41565 Date: Tue Apr 3 14:27:08 2007 +0200
41567 USB: cleanup monahans usb support. Remove dead code.
41569 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41571 commit a65c5768e5537530bd1780af3d3fddc3113a163c
41572 Author: Stefan Roese <sr@denx.de>
41573 Date: Mon Apr 2 10:09:30 2007 +0200
41575 ppc4xx: Change SysACE address on Katmai
41577 With this new base address of the Xilinx SystemACE controller
41578 the Linux driver will be easier to adapt, since it can now be
41579 mapped via the "normal" ioremap() call.
41581 Signed-off-by: Stefan Roese <sr@denx.de>
41583 commit aea03c4e8c3a21ce43d3faf48a6e6d474c8bdf73
41584 Author: Gerald Van Baren <vanbaren@cideas.com>
41585 Date: Sat Mar 31 14:30:53 2007 -0400
41587 Fix some minor whitespace violations.
41589 commit 213bf8c822de8eecaf69860684469cdaba2e9e6a
41590 Author: Gerald Van Baren <vanbaren@cideas.com>
41591 Date: Sat Mar 31 12:23:51 2007 -0400
41593 Add a flattened device tree (fdt) command (2 of 2)
41595 Modifications to the existing code to support the new fdt command.
41597 commit 781e09ee6e3e3e392ab362c1f0ef1068adc76e3e
41598 Author: Gerald Van Baren <vanbaren@cideas.com>
41599 Date: Sat Mar 31 12:22:10 2007 -0400
41601 Add a flattened device tree (fdt) command (1 of 2)
41603 The fdt command uses David Gibson's libfdt library to manipulate as well
41604 as print the flattened device tree. This patch is the new command,
41605 the second part is the modifications to the existing code.
41607 commit 3af0d587d93e0be5f96e1b30fa41e662f8b0803e
41608 Author: Gerald Van Baren <vanbaren@cideas.com>
41609 Date: Sat Mar 31 12:13:43 2007 -0400
41611 libfdt: Enhanced and published fdt_next_tag()
41613 Enhanced the formerly private function _fdt_next_tag() to allow stepping
41614 through the tree, used to produce a human-readable dump, and made
41615 it part of the published interface.
41616 Also added some comments.
41618 commit fa3a74cec73dfd06a5ae35a9a3368200273aaa71
41619 Author: Gerald Van Baren <vanbaren@cideas.com>
41620 Date: Sat Mar 31 12:05:39 2007 -0400
41622 libfdt: Customizations for use by u-boot.
41624 Changes to David Gibson's original source to fit into u-boot's
41625 environment. No functionality changes.
41627 commit 35748177c64a4a83a00057e93bb33e40278a2a96
41628 Author: Gerald Van Baren <vanbaren@cideas.com>
41629 Date: Sat Mar 31 12:00:56 2007 -0400
41631 libfdt: Import libfdt source (2 of 2)
41633 This adds the applicable libfdt source files (unmodified) and a README
41634 to explain where the source came from.
41636 commit 7cd5da0fe877e7171a4cdd44880bce783132871a
41637 Author: Gerald Van Baren <vanbaren@cideas.com>
41638 Date: Sat Mar 31 11:59:59 2007 -0400
41640 libfdt: Import libfdt source (1 of 2)
41642 This adds the applicable libfdt source files (unmodified) and a README
41643 to explain where the source came from.
41645 commit da6ebc1bc082cbe3b6bbde079cafe09f7ebbad4b
41646 Author: Stefan Roese <sr@denx.de>
41647 Date: Sat Mar 31 13:16:23 2007 +0200
41649 ppc4xx: Update Katmai bootstrap command
41651 Now the DDR2 frequency is also 2*PLB frequency when 166MHz PLB
41654 Signed-off-by: Stefan Roese <sr@denx.de>
41656 commit cabee756a6532986729477c3cc1ea16ef8517ad2
41657 Author: Stefan Roese <sr@denx.de>
41658 Date: Sat Mar 31 13:15:06 2007 +0200
41660 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
41662 Additional RAM information is now printed upon powerup, like
41663 DDR2 frequency and CAS latency.
41665 Signed-off-by: Stefan Roese <sr@denx.de>
41667 commit 60723803431ac75cad085690789e433d5ab9174e
41668 Author: Stefan Roese <sr@denx.de>
41669 Date: Sat Mar 31 08:48:36 2007 +0200
41671 ppc4xx: Change Yucca config file to support ECC
41673 With the updated 44x DDR2 driver the Yucca board now supports
41674 ECC generation and checking.
41676 Signed-off-by: Stefan Roese <sr@denx.de>
41678 commit 490e5730c674b20d708b783a2c5ffd7208f83873
41679 Author: Stefan Roese <sr@denx.de>
41680 Date: Sat Mar 31 08:47:34 2007 +0200
41682 ppc4xx: Fix "bootstrap" command for Katmai board
41684 The board specific "bootstrap" command is now fixed and can
41685 be used for the AMCC Katmai board to configure different
41686 CPU/PLB/OPB frequencies.
41688 Signed-off-by: Stefan Roese <sr@denx.de>
41690 commit 94f54703c3a776ec23e427ca2a16e0a79a5d50c1
41691 Author: Stefan Roese <sr@denx.de>
41692 Date: Sat Mar 31 08:46:08 2007 +0200
41694 ppc4xx: Update 44x_spd_ddr2 code (440SP/440SPe)
41696 Fix a bug in the auto calibration routine. This driver now runs
41697 more reliable with the tested modules. It's also tested with
41698 167MHz PLB frequency (667MHz DDR2 frequency) on the Katmai.
41700 Signed-off-by: Stefan Roese <sr@denx.de>
41702 commit 342cd097be1e7affe82f42ab3da220959a699e64
41703 Author: Michal Simek <monstr@monstr.eu>
41704 Date: Fri Mar 30 22:52:09 2007 +0200
41706 [PATCH] Clean include dependence
41708 commit 6f934210fb293fde2cfb4251c6d96fdc58b6a906
41709 Author: Michal Simek <monstr@monstr.eu>
41710 Date: Fri Mar 30 22:42:45 2007 +0200
41712 [CLEAN] Remove inefficient Suzaku code
41714 commit 430f1b0f9a670c2f13eaa52e66a10db96dd3647d
41715 Author: Stefan Roese <sr@denx.de>
41716 Date: Wed Mar 28 15:03:16 2007 +0200
41718 Merge some AMCC make targets to keep the top-level Makefile smaller
41720 Signed-off-by: Stefan Roese <sr@denx.de>
41722 commit 0c75c9d84307a9f1cbe1ff0c4d8937ee3a96475e
41723 Author: Stefan Roese <sr@denx.de>
41724 Date: Wed Mar 28 14:52:12 2007 +0200
41726 i2c: Enable "old" i2c commands even when CONFIG_I2C_CMD_TREE is defined
41728 The "old" i2c commands (iprobe, imd...) are now compiled in again,
41729 even when the i2c command tree is enabled via the CONFIG_I2C_CMD_TREE
41732 Signed-off-by: Stefan Roese <sr@denx.de>
41734 commit 5da048adf44bea5e3b94080d02903c2e3fe7aa4a
41735 Author: Michal Simek <monstr@monstr.eu>
41736 Date: Tue Mar 27 00:32:16 2007 +0200
41738 PATCH: Resolve GPL license problem
41740 commit ae00bb4b2944dc64a485ed72a19754b11af7c223
41741 Author: Rodolfo Giometti <giometti@enneenne.com>
41742 Date: Mon Mar 26 12:03:36 2007 +0200
41744 PXA: pxa27x USB OHCI support
41746 Signed-off-by: Rodolfo Giometti <giometti@linux.it>
41748 commit ae79f60677c208326535647dcbd5c3ec40dbcb0b
41749 Author: Markus Klotzbuecher <mk@denx.de>
41750 Date: Mon Mar 26 11:21:05 2007 +0200
41752 USB: remove the S3C24X0_merge #define, which was introduced while
41753 merging OHCI drivers.
41755 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41757 commit 1798049522f594013aea29457d46794298c6ae15
41758 Author: Michal Simek <root@monstr.eu>
41759 Date: Mon Mar 26 01:39:07 2007 +0200
41761 Support for XUPV2P board
41763 BSP autoconfig support
41765 commit 0d974d5297349504a2ddfa09314be573b5df320a
41766 Author: Stefan Roese <sr@denx.de>
41767 Date: Sat Mar 24 15:57:09 2007 +0100
41769 [PATCH] Add 4xx GPIO functions
41771 This patch adds some 4xx GPIO functions. It also moves some of the
41772 common code and defines into a common 4xx GPIO header file.
41774 Signed-off-by: Stefan Roese <sr@denx.de>
41776 commit 2db633658bbf366ab0c8dad7a0727e1fb2ae6b11
41777 Author: Stefan Roese <sr@denx.de>
41778 Date: Sat Mar 24 15:55:58 2007 +0100
41780 [PATCH] Small Sequoia cleanup
41782 Signed-off-by: Stefan Roese <sr@denx.de>
41784 commit 3cb86f3e40d2a80356177434a99f75bc8baa9caf
41785 Author: Stefan Roese <sr@denx.de>
41786 Date: Sat Mar 24 15:45:34 2007 +0100
41788 [PATCH] Clean up 40EZ/Acadia support
41790 This patch cleans up all the open issue of the preliminary
41793 Signed-off-by: Stefan Roese <sr@denx.de>
41795 commit 6eb1df835191d8ce4b81d5af40fa8e0fbe78e997
41796 Author: Jon Loeliger <jdl@freescale.com>
41797 Date: Tue Dec 12 11:02:20 2006 -0600
41799 Fix 8641HPCN problem with ld version 2.16
41801 (Dot outside sections problem).
41803 This fix is in the spirit of 807d5d7319330e336ab34a5623c5e0d73b87d540.
41805 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41807 commit 9964a4dd0d4ef5a037febaebf1aa494b1a72991c
41808 Author: Haiying Wang <haiying.wang@freescale.com>
41809 Date: Thu Dec 7 10:35:55 2006 -0600
41811 Set Rev 2.x 86xx PIC in mixed mode.
41813 Prevent false interrupt from hanging Linux as MSR[EE] is set
41814 to enable interrupts by changing the PIC out of the default
41815 pass through mode into mixed mode.
41817 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
41818 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41820 commit 5a58a73ceb0a4059c42ef64cedbc1a45e0aaa00e
41821 Author: Jason Jin <jason.jin@freescale.com>
41822 Date: Thu Dec 7 10:32:35 2006 -0600
41824 Add flash cmd function to 8641HPCN ramboot
41826 Also fixes some commmand for 8641 HPCN ramboot case.
41828 Signed-off-by: Jason Jin <jason.jin@freescale.com>
41829 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41831 commit 2ccceacc04b009d923afb7c26189ba2f8a2a5d46
41832 Author: Ed Swarthout <ed.swarthout@freescale.com>
41833 Date: Thu Dec 7 10:34:14 2006 -0600
41835 Add support for 8641 Rev 2 silicon.
41837 Without this patch, I am unable to get to the prompt on rev 2 silicon.
41838 Only set ddrioovcr for rev1.
41840 Signed-off-by: Ed Swarthout<ed.swarthout@freescale.com>
41841 Signed-off-by: Jon Loeliger <jdl@freescale.com>
41843 commit 44ba464b99001f8bd1c456a1e9d59726252f707a
41844 Author: Wolfgang Denk <wd@denx.de>
41845 Date: Thu Mar 22 00:13:12 2007 +0100
41847 Code cleanup / re-insert previous Copyright entries.
41849 Signed-off-by: Wolfgang Denk <wd@denx.de>
41851 commit 2a8dfe08359a1b663418b2faa1da1d7bce34d302
41852 Author: Wolfgang Denk <wd@denx.de>
41853 Date: Wed Mar 21 23:26:15 2007 +0100
41855 Code cleanup. Update CHANGELOG
41857 commit e6615ecf4eaf4dd52696934aed8f5c6474cfd286
41858 Author: Stefan Roese <sr@denx.de>
41859 Date: Wed Mar 21 14:54:29 2007 +0100
41861 ppc4xx: Fix file mode of include/configs/acadia.h
41863 Signed-off-by: Stefan Roese <sr@denx.de>
41865 commit d5f4614c9350d9333e575100fb250aab774d0258
41866 Author: Markus Klotzbuecher <mk@denx.de>
41867 Date: Wed Mar 21 14:41:46 2007 +0100
41869 SPC1920: fix small clock routing bug
41871 Signed-off-by: Markus Klotzbuecher <mk@denx.de>
41873 commit 16c0cc1c82081a493ab87c51980b28336ce1bce8
41874 Author: Stefan Roese <sr@denx.de>
41875 Date: Wed Mar 21 13:39:57 2007 +0100
41877 [PATCH] Add AMCC Acadia (405EZ) eval board support
41879 This patch adds support for the new AMCC Acadia eval board.
41881 Please note that this Acadia/405EZ support is still in a beta stage.
41882 Still lot's of cleanup needed but we need a preliminary release now.
41884 Signed-off-by: Stefan Roese <sr@denx.de>
41886 commit e01bd218b00af73499331a1a701625a852cd286f
41887 Author: Stefan Roese <sr@denx.de>
41888 Date: Wed Mar 21 13:38:59 2007 +0100
41890 [PATCH] Add AMCC PPC405EZ support
41892 This patch adds support for the new AMCC 405EZ PPC. It is in
41893 preparation for the AMCC Acadia board support.
41895 Please note that this Acadia/405EZ support is still in a beta stage.
41896 Still lot's of cleanup needed but we need a preliminary release now.
41898 Signed-off-by: Stefan Roese <sr@denx.de>
41900 commit 07e82cb2e284a893df6693f2a1337ab2c47bf6a1
41901 Author: Heiko Schocher <hs@pollux.denx.de>
41902 Date: Wed Mar 21 08:45:17 2007 +0100
41904 [PATCH] TQM8272: dont change the bits given from the HRCW
41905 for the SIUMCR and BCR Register.
41906 Fix the calculation for the EEprom Size
41908 Signed-off-by: Heiko Schocher <hs@denx.de>
41910 commit 654589873dbafcf104dff133ce0d03a4506e9cc3
41911 Author: Aubrey Li <aubrey.adi@gmail.com>
41912 Date: Tue Mar 20 18:16:24 2007 +0800
41914 [Blackfin][PATCH] Add BF561 EZKIT board support
41916 commit a6154fd1cfd020f6da8527e0365b1020a11a71d0
41917 Author: Aubrey Li <aubrey.adi@gmail.com>
41918 Date: Mon Mar 19 22:55:58 2007 +0800
41920 [Blackfin][PATCH] minor cleanup
41922 commit 389b6bb50f745bf5038ce030300d8a8512e96f79
41923 Author: Wolfgang Denk <wd@denx.de>
41924 Date: Mon Mar 19 13:10:08 2007 +0100
41926 Remove obsoleted POST files.
41928 Signed-off-by: Wolfgang Denk <wd@denx.de>
41930 commit 8e709bbb2636b5670a8f2b575e138eb1f55773f6
41931 Author: Aubrey Li <aubrey.adi@gmail.com>
41932 Date: Mon Mar 19 01:26:11 2007 +0800
41934 [PATCH] Add flash chip M29W320ET/B support
41936 commit 26bf7deca364a5b33f39e8f14ddd3f4081345015
41937 Author: Aubrey Li <aubrey.adi@gmail.com>
41938 Date: Mon Mar 19 01:24:52 2007 +0800
41940 [Blackfin][PATCH] Add BF537 stamp board support
41942 commit 8423e5e31a7235d05a482627315fb11d49c17bd7
41943 Author: Stefan Roese <sr@denx.de>
41944 Date: Fri Mar 16 21:11:42 2007 +0100
41946 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ebony eval board
41948 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
41949 DDR memory are dynamically programmed matching the total size
41950 of the equipped memory (DIMM modules).
41952 Signed-off-by: Stefan Roese <sr@denx.de>
41954 commit 76d1466f918b881cda2d259254761e73885093c2
41955 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41956 Date: Tue Mar 13 13:38:05 2007 +0100
41958 [PATCH] renamed environment variable 'addcon' to 'addcons' for PCI405
41959 boards in terms of unification.
41961 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
41963 commit a7090b993d3d4d2221ac3f33e6cb1d1b2ccc6bf0
41964 Author: Wolfgang Denk <wd@denx.de>
41965 Date: Tue Mar 13 16:05:55 2007 +0100
41967 Make SC3 board build with 'make O='; use 'addcons' consistently
41968 (SC3 and Jupiter used to use 'addcon' instead).
41970 Signed-off-by: Wolfgang Denk wd@denx.de
41972 commit 8502e30a28e492c756ea2d7df0ace026388fce4b
41973 Author: Heiko Schocher <hs@pollux.denx.de>
41974 Date: Tue Mar 13 09:40:59 2007 +0100
41976 [PATCH] update board config for jupiter Board:
41978 CONFIG_CMDLINE_EDITING,
41979 CFG_ENV_ADDR_REDUND activated
41981 Signed-off-by: Heiko Schocher <hs@denx.de>
41983 commit 0d93de11449390a5984b0236c3612e50f6dbb7e8
41984 Author: Aubrey Li <aubrey.adi@gmail.com>
41985 Date: Mon Mar 12 12:11:55 2007 +0800
41987 [Blackfin][PATCH] minor cleanup
41989 commit bfa5754a58477ac917d21527cd0f079d87cf188e
41990 Author: Aubrey Li <aubrey.adi@gmail.com>
41991 Date: Mon Mar 12 01:42:06 2007 +0800
41993 [Blackfin][PATCH] Fix BUILD_DIR option of MAKEALL building issue
41995 commit 8440bb14581a294375c34b91b42512f9753d1130
41996 Author: Aubrey Li <aubrey.adi@gmail.com>
41997 Date: Mon Mar 12 00:25:14 2007 +0800
41999 [Blackfin][PATCH] code cleanup
42001 commit cfc67116a706fd18b8f6a9c11a16753c5626d689
42002 Author: Michal Simek <monstr@monstr.eu>
42003 Date: Sun Mar 11 13:48:24 2007 +0100
42005 [Microblaze][PATCH] part 2
42007 interrupt controller support
42011 board information support
42013 booting image support
42015 adding support for Xilinx ML401
42017 commit 76316a318de91f6184e7c22a10e02d275ade2441
42018 Author: Michal Simek <monstr@monstr.eu>
42019 Date: Sun Mar 11 13:42:58 2007 +0100
42021 [Microblaze][PATCH]
42023 interrupt controller support
42027 board information support
42029 booting image support
42031 adding support for Xilinx ML401
42033 commit 8db13d63157811c839d15a313d9f2d2f5fd10af3
42034 Author: Aubrey Li <aubrey.adi@gmail.com>
42035 Date: Sat Mar 10 23:49:29 2007 +0800
42037 [Blackfin][PATCH] code cleanup
42039 commit ef26a08fef928b7bc11ae2c109e638dc3a016d91
42040 Author: Aubrey.Li <aubrey.adi@gmail.com>
42041 Date: Fri Mar 9 13:40:56 2007 +0800
42043 [Blackfin][PATCH-2/2] Common files changed to support bf533 platform
42045 commit 3f0606ad0b5639f7f22848fe5b4574e754d0470f
42046 Author: Aubrey.Li <aubrey.adi@gmail.com>
42047 Date: Fri Mar 9 13:38:44 2007 +0800
42049 [Blackfin]PATCH-1/2]: Remove obsolete blackfin port and add bf533 platform support
42051 commit 992423ab43c2bcf6b704853bd00af77450915e20
42052 Author: Stefan Roese <sr@denx.de>
42053 Date: Thu Mar 8 23:00:08 2007 +0100
42055 ppc4xx: Fix file mode of sequoia.c
42057 Signed-off-by: Stefan Roese <sr@denx.de>
42059 commit eb92f613556800f7483666db09d9a237ad911d4a
42060 Author: Wolfgang Denk <wd@pollux.denx.de>
42061 Date: Thu Mar 8 22:52:51 2007 +0100
42065 commit 8ce16f55c7b9752af3d8bed84521aec5337e2de1
42066 Author: John Otken john@softadvances.com <john@softadvances.com>
42067 Date: Thu Mar 8 09:39:48 2007 -0600
42069 ppc4xx: Clear Sequoia/Rainier security engine reset bits
42071 Signed-off-by: John Otken john@softadvances.com <john@softadvances.com>
42073 commit 650a330dd2539130c8c324791e2f9f75aed79d4e
42074 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42075 Date: Thu Mar 8 16:26:52 2007 +0100
42077 [PATCH] I2C: add some more SPD eeprom decoding for DDR2 modules
42079 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42081 commit d9fc703246840c4b268debf48c334ba55c597dc0
42082 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42083 Date: Thu Mar 8 16:25:47 2007 +0100
42085 [PATCH] I2C: disable flat i2c commands when CONFIG_I2C_CMD_TREE is defined
42087 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42089 commit ced5b9029043397348cdc88e0cfcd6b1f629250b
42090 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42091 Date: Thu Mar 8 16:23:11 2007 +0100
42093 [PATCH] 4xx: allow CONFIG_I2C_CMD_TREE without CONFIG_I2C_MULTI_BUS
42095 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42097 commit d8a8ea5c476d37006fc7f85b7f903142795c8b14
42098 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42099 Date: Thu Mar 8 16:20:32 2007 +0100
42101 [PATCH] I2C: Add missing default CFG_SPD_BUS_NUM
42103 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42105 commit f9fc6a5852a6335840882fa2111925010eea1abe
42106 Author: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42107 Date: Wed Mar 7 15:32:01 2007 +0100
42109 fixed ethernet phy configuration for plu405 board
42111 Signed-off-by: Matthias Fuchs <matthias.fuchs@esd-electronics.com>
42113 commit 769104c9356594deb2092e204a39c05b33202d6c
42114 Author: Wolfgang Denk <wd@pollux.denx.de>
42115 Date: Thu Mar 8 21:49:27 2007 +0100
42119 commit 00cdb4ce5e1b42248e7e6522ad0da3421b988afa
42120 Author: Stefan Roese <sr@denx.de>
42121 Date: Thu Mar 8 10:13:16 2007 +0100
42123 [PATCH] Update AMCC Luan 440SP eval board support
42125 The AMCC Luan now uses the common 440SP(e) DDR SPD code for DDR
42126 inititializition. This includes DDR auto calibration and support
42127 for different DIMM modules, instead of the fixed setup used in
42128 the earlier version.
42130 This patch also enables the cache in FLASH for the startup
42131 phase of U-Boot (while running from FLASH). After relocating to
42132 SDRAM the cache is disabled again. This will speed up the boot
42133 process, especially the SDRAM setup, since there are some loops
42134 for memory testing (auto calibration).
42136 Signed-off-by: Stefan Roese <sr@denx.de>
42138 commit 2f5df47351910a2936c7741cf111855829200943
42139 Author: Stefan Roese <sr@denx.de>
42140 Date: Thu Mar 8 10:10:18 2007 +0100
42142 [PATCH] Update AMCC Yucca 440SPe eval board support
42144 The AMCC Yucca now uses the common 440SP(e) DDR SPD code for DDR
42145 inititializition. This includes DDR auto calibration and support
42146 for different DIMM modules, instead of the fixed setup used in
42147 the earlier version.
42149 Signed-off-by: Stefan Roese <sr@denx.de>
42151 commit 2721a68a9ea91f1e494649ce68b2577261f578e2
42152 Author: Stefan Roese <sr@denx.de>
42153 Date: Thu Mar 8 10:07:18 2007 +0100
42155 ppc4xx: Small AMCC Katmai 440SPe update
42157 Signed-off-by: Stefan Roese <sr@denx.de>
42159 commit df294497479b1dca6dd86318b2a912f72fede0df
42160 Author: Stefan Roese <sr@denx.de>
42161 Date: Thu Mar 8 10:06:09 2007 +0100
42163 ppc4xx: Update 440SP/440SPe DDR SPD setup code to support 440SP
42165 Signed-off-by: Stefan Roese <sr@denx.de>
42167 commit 83853178bd36bca6f0f8f1331476620c84a587fc
42168 Author: Ed Swarthout <Ed.Swarthout@freescale.com>
42169 Date: Wed Mar 7 12:14:50 2007 -0600
42171 net - Support ping reply when processing net-loop
42173 Add ICMP_ECHO_REQUEST packet support by responding with a ICMP_ECHO_REPLY.
42175 This permits the ping command to test the phy interface when the phy
42176 is put in loopback mode (typically by setting register 0 bit 14).
42178 It also allows the port to respond to an external ping when u-boot is
42179 processing some other net command (such as tftp). This is useful when
42180 tftp appears to hang.
42182 Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com>
42183 Signed-off-by: Ben Warren <bwarren@qstreams.com>
42185 commit fa1aef15bcd47736687be1af544506e90fba545d
42186 Author: Stefan Roese <sr@denx.de>
42187 Date: Wed Mar 7 16:43:00 2007 +0100
42189 [PATCH] Use dynamic SDRAM TLB setup on AMCC Ocotea eval board
42191 Define CONFIG_PROG_SDRAM_TLB so that the TLB entries for the
42192 DDR memory are dynamically programmed matching the total size
42193 of the equipped memory (DIMM modules).
42195 Signed-off-by: Stefan Roese <sr@denx.de>
42197 commit e2ebe696818939e2b974628be9c921ea3fe9de13
42198 Author: Stefan Roese <sr@denx.de>
42199 Date: Wed Mar 7 16:39:36 2007 +0100
42201 [PATCH] Fix AMCC 44x SPD SDRAM init code to support 2 DIMM's
42203 This patch fixes a problem that occurs when 2 DIMM's are
42204 used. This problem was first spotted and fixed by Gerald Jackson
42205 <gerald.jackson@reaonixsecurity.com> but this patch fixes the
42206 problem in a little more clever way.
42208 This patch also adds the nice functionality to dynamically
42209 create the TLB entries for the SDRAM (tlb.c). So we should
42210 never run into such problems with wrong (too short) TLB
42211 initialization again on these platforms.
42213 As this feature is new to the "old" 44x SPD DDR driver, it
42214 has to be enabled via the CONFIG_PROG_SDRAM_TLB define.
42216 Signed-off-by: Stefan Roese <sr@denx.de>
42218 commit 39218433983417b9df087976a79e3f80dd5e83d6
42219 Author: Wolfgang Denk <wd@denx.de>
42220 Date: Wed Mar 7 16:33:44 2007 +0100
42222 UC101: fix compiler warnings
42224 commit 8d7e2732221bc2d64df14f700c64c23e0a4c3dce
42225 Author: Wolfgang Denk <wd@pollux.denx.de>
42226 Date: Wed Mar 7 16:19:46 2007 +0100
42228 HMI1001: fix build error, cleanup compiler warnings.
42230 commit ad5bb451ade552c44bef9119d907929ebc2c126f
42231 Author: Wolfgang Denk <wd@pollux.denx.de>
42232 Date: Tue Mar 6 18:08:43 2007 +0100
42234 Restructure POST directory to support of other CPUs, boards, etc.
42236 commit a5284efd125967675b2e9c6ef7b95832268ad360
42237 Author: Wolfgang Denk <wd@pollux.denx.de>
42238 Date: Tue Mar 6 18:01:47 2007 +0100
42240 Fix HOSTARCH handling.
42241 Patch by Mike Frysinger, Mar 05 2007
42243 commit 07b7b0037aac5102939917d7cbe561b5c0d5aa44
42244 Author: Stefan Roese <sr@denx.de>
42245 Date: Tue Mar 6 07:47:04 2007 +0100
42247 [PATCH] Speed optimization of AMCC Sequoia/Rainier DDR2 setup
42249 As provided by the AMCC applications team, this patch optimizes the
42250 DDR2 setup for 166MHz bus speed. The values provided are also save
42251 to use on a "normal" 133MHz PLB bus system. Only the refresh counter
42252 setup has to be adjusted as done in this patch.
42254 For this the NAND booting version had to include the "speed.c" file
42255 from the cpu/ppc4xx directory. With this addition the NAND SPL image
42256 will just fit into the 4kbytes of program space. gcc version 4.x as
42257 provided with ELDK 4.x is needed to generate this optimized code.
42259 Signed-off-by: Stefan Roese <sr@denx.de>
42261 commit 647d3c3eed0da1d1505eecabe0b0fab96f956e68
42262 Author: Wolfgang Denk <wd@pollux.denx.de>
42263 Date: Sun Mar 4 01:36:05 2007 +0100
42267 commit 781e026c8aa6f7e9eb5f0e72cc4d20971219b148
42268 Author: Kim Phillips <kim.phillips@freescale.com>
42269 Date: Wed Feb 28 00:02:04 2007 -0600
42271 mpc83xx: fix implicit declaration of function 'ft_get_prop' warnings
42273 (cherry picked from c5bf13b02284c3204a723566a9bab700e5059659 commit)
42275 commit 4feab4de7bfc2cb2fed36ad76f93c3a69659bbaf
42276 Author: Kumar Gala <galak@kernel.crashing.org>
42277 Date: Tue Feb 27 23:51:42 2007 -0600
42279 mpc83xx: Fix config of Arbiter, System Priority, and Clock Mode
42281 The config value for:
42289 Were not being used when setting the appropriate register
42292 * CFG_SCCR_USBMPHCM
42297 To allow full config of the SCCR.
42299 Also removed random CFG_SCCR settings in MPC8349EMDS, TQM834x, and sbc8349
42300 that were just bogus.
42302 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42304 commit d51b3cf371cd441030460ef19d36b2924c361b1a
42305 Author: Kim Phillips <kim.phillips@freescale.com>
42306 Date: Thu Feb 22 20:06:57 2007 -0600
42308 mpc83xx: update [local-]mac-address properties on UEC based devices
42310 8360 and 832x weren't updating their [local-]mac-address
42311 properties. This patch fixes that.
42313 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42315 commit 61f4f912acbe60776c5e00df1ec94094ce672957
42316 Author: Timur Tabi <timur@freescale.com>
42317 Date: Tue Feb 13 10:41:42 2007 -0600
42319 mpc83xx: write MAC address to mac-address and local-mac-address
42321 Some device trees have a mac-address property, some have local-mac-address,
42322 and some have both. To support all of these device trees, this patch
42323 updates ftp_cpu_setup() to write the MAC address to mac-address if it exists.
42324 This function already updates local-mac-address.
42326 Signed-off-by: Timur Tabi <timur@freescale.com>
42328 commit 22d71a71f57fd5d38b27ac3848e50d790360a598
42329 Author: Kim Phillips <kim.phillips@freescale.com>
42330 Date: Tue Feb 27 18:41:08 2007 -0600
42332 mpc83xx: add command line editing by default
42334 commit 3fc0bd159103b536e1c54c6f4457a09b3aba66ca
42335 Author: Kim Phillips <kim.phillips@freescale.com>
42336 Date: Wed Feb 14 19:50:53 2007 -0600
42338 mpc83xx: Disable G1TXCLK, G2TXCLK h/w buffers
42340 Disable G1TXCLK, G2TXCLK h/w buffers. This patch
42341 fixes a networking timeout issue with MPC8360EA (Rev.2) PBs.
42343 Verified on Rev. 1.1, Rev. 1.2, and Rev. 2.0 boards.
42345 Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
42346 Signed-off-by: Emilian Medve <Emilian.Medve@freescale.com>
42348 commit d61853cf2472e0b8bcbd131461a93d1c49ff0c1f
42349 Author: Xie Xiaobo <r63061@freescale.com>
42350 Date: Wed Feb 14 18:27:17 2007 +0800
42352 mpc83xx: Add DDR2 controller fixed/SPD Init for MPC83xx
42354 The code supply fixed and SPD initialization for MPC83xx DDR2 Controller.
42355 it pass DDR/DDR2 compliance tests.
42357 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
42359 commit b110f40bd180c6b560276589beedf753e97c46ce
42360 Author: Xie Xiaobo <r63061@freescale.com>
42361 Date: Wed Feb 14 18:27:06 2007 +0800
42363 mpc83xx: Add the cpu specific code for MPC8360E rev2.0 MDS
42365 MPC8360E rev2.0 have new spridr,and PVR value,
42366 The MDS board for MPC8360E rev2.0 has 32M bytes Flash and 256M DDR2 DIMM.
42368 Signed-off-by: Xie Xiaobo <X.Xie@freescale.com>
42370 commit 8d172c0f0d85998a256a95b7459a5403a30380ed
42371 Author: Xie Xiaobo <r63061@freescale.com>
42372 Date: Wed Feb 14 18:26:44 2007 +0800
42374 mpc83xx: Add the cpu and board specific code for MPC8349E rev3.1 MDS
42376 MPC8349E rev3.1 have new spridr,and PVR value,
42377 The MDS board for MPC8349E rev3.1 has 32M bytes Flash and 256M DDR2 DIMM.
42379 Signed-off-by: Xie Xiaobo<X.Xie@freescale.com>
42381 commit f6f5f709e5c8e4564c4dfeecfdf2279244f9c83b
42382 Author: Joakim Tjernlund <joakim.tjernlund@transmode.se>
42383 Date: Wed Jan 31 11:04:19 2007 +0100
42385 mpc83xx: Fix empty i2c reads/writes in fsl_i2c.c
42387 Fix empty i2c reads/writes, i2c_write(0x50, 0x00, 0, NULL, 0)
42388 which is used to se if an slave will ACK after receiving its address.
42390 Correct i2c probing to use this method as the old method could upset
42391 a slave as it wrote a data byte to it.
42393 Add a small delay in i2c_init() to let the controller
42394 shutdown any ongoing I2C activity.
42396 Signed-off-by: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
42398 commit 7a78f148d6a7298e4fface680dc7eacd877b1aba
42399 Author: Timur Tabi <timur@freescale.com>
42400 Date: Wed Jan 31 15:54:29 2007 -0600
42402 mpc83xx: Add support for the MPC8349E-mITX-GP
42404 Add support for the MPC8349E-mITX-GP, a stripped-down version of the
42405 MPC8349E-mITX. Bonus features include support for low-boot (BMS bit in
42406 HRCW is 0) for the ITX and a README for the ITX and the ITX-GP.
42408 Signed-off-by: Timur Tabi <timur@freescale.com>
42410 commit fab16807adad350f618024350c6950165c247c72
42411 Author: Timur Tabi <timur@freescale.com>
42412 Date: Wed Jan 31 15:54:20 2007 -0600
42414 mpc83xx: Delete sdram_init() for MPC8349E-mITX
42416 There is no SDRAM on any of the 8349 ITX variants, so function sdram_init()
42417 never does anything. This patch deletes it.
42419 Signed-off-by: Timur Tabi <timur@freescale.com>
42421 commit a87c856eb411b9365937d0d4b9c21e46adbe1c14
42422 Author: Dave Liu <daveliu@freescale.com>
42423 Date: Fri Jan 19 10:43:26 2007 +0800
42425 mpc83xx: Fix the LAW1/3 bug
42427 The patch solves the alignment problem of the local bus access windows to
42428 render accessible the memory bank and PHY registers of UPC 1 (starting at
42429 0xf801 0000). What we actually did was to adjust the sizes of the bus
42430 access windows so that the base address alignment requirement would be met.
42432 Signed-off-by: Chereji Marian <marian.chereji@freescale.com>
42433 Signed-off-by: Gridish Shlomi <gridish@freescale.com>
42434 Signed-off-by: Dave Liu <daveliu@freescale.com>
42436 commit 97c4b397dce236a7318b304667bf89e59d08b17c
42437 Author: Kim Phillips <kim.phillips@freescale.com>
42438 Date: Tue Jan 30 16:15:31 2007 -0600
42440 mpc83xx: don't hang if watchdog configured on 8360, 832x
42442 don't hang if watchdog configured on 8360, 832x
42444 The watchdog programming model is the same across all 83xx devices;
42445 make the code reflect that.
42447 commit b70047478570e371ce7223be342ce98afea0f7d6
42448 Author: Kim Phillips <kim.phillips@freescale.com>
42449 Date: Tue Jan 30 16:15:21 2007 -0600
42451 mpc83xx: protect memcpy to bad address if a local-mac-address is missing from dt
42453 protect memcpy to bad address if a local-mac-address is missing from dt
42455 commit 6752ed088c75c26a89b70c46b7326a4cd6015f29
42456 Author: Kim Phillips <kim.phillips@freescale.com>
42457 Date: Tue Jan 30 16:15:04 2007 -0600
42459 mpc83xx: make 8360 default environment fdt be 8360 (not 8349)
42461 make 8360 default environment fdt be 8360 (not 8349)
42463 commit a28899c910024a0226331df07207b1038c300c93
42464 Author: Emilian Medve <Emilian.Medve@freescale.com>
42465 Date: Tue Jan 30 16:14:50 2007 -0600
42467 mpc83xx: Fix alternating tx error / tx buffer not ready bug in QE UEC
42469 The problem is not gcc4 but the code itself. The BD_STATUS() macro can't
42470 be used for busy-waiting since it strips the 'volatile' property from
42471 the bd variable. gcc3 was working by pure luck.
42473 This is a follow on patch to "Fix the UEC driver bug of QE"
42475 commit 3e78a31cfe3d3022f46f67eb88e1281d5cc2eb89
42476 Author: Kumar Gala <galak@kernel.crashing.org>
42477 Date: Tue Jan 30 14:08:30 2007 -0600
42479 mpc83xx: Replace CONFIG_MPC8349 and use CONFIG_MPC834X instead
42481 The code that is ifdef'd with CONFIG_MPC8349 is actually applicable to all
42482 MPC834X class processors. Change the protections from CONFIG_MPC8349 to
42483 CONFIG_MPC834X so they are more generic.
42485 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
42487 commit ae246dc6c1937c291014eadd90b6d48c438c7cb0
42488 Author: Kim Phillips <kim.phillips@freescale.com>
42489 Date: Thu Jan 25 13:40:55 2007 -0600
42491 mpc83xx: add MPC832XEMDS and sbc8349 to MAKEALL
42493 commit 4decd84e8f04279c5cfff7f8e907465ef8d8a3fb
42494 Author: Kim Phillips <kim.phillips@freescale.com>
42495 Date: Wed Jan 24 17:18:37 2007 -0600
42497 mpc83xx: sort Makefile targets
42499 reordered targets alphabetically
42501 commit 91e25769771c1164ed63ffca0add49f934ae3343
42502 Author: Paul Gortmaker <paul.gortmaker@windriver.com>
42503 Date: Tue Jan 16 11:38:14 2007 -0500
42505 mpc83xx: U-Boot support for Wind River SBC8349
42507 I've redone the SBC8349 support to match git-current, which
42508 incorporates all the MPC834x updates from Freescale since the 1.1.6
42509 release, including the DDR changes.
42511 I've kept all the SBC8349 files as parallel as possible to the
42512 MPC8349EMDS ones for ease of maintenance and to allow for easy
42513 inspection of what was changed to support this board. Hence the SBC8349
42514 U-Boot has FDT support and everything else that the MPC8349EMDS has.
42516 Fortunately the Freescale updates added support for boards using CS0,
42517 but I had to change spd_sdram.c to allow for board specific settings for
42518 the sdram_clk_cntl (it is/was hard coded to zero, and that remains the
42519 default if the board doesn't specify a value.)
42521 Hopefully this should be mergeable as-is and require no whitespace
42522 cleanups or similar, but if something doesn't measure up then let me
42523 know and I'll fix it.
42528 commit 05031db456ab227f3e3752f37b9b812b65bb83ad
42529 Author: Sam Song <samsongshu@yahoo.com.cn>
42530 Date: Thu Dec 14 19:03:21 2006 +0800
42532 mpc83xx: Remove a redundant semicolon in mpc8349itx.c
42534 A redundant semicolon existed in mpc8349itx.c
42537 Signed-off-by: Sam Song <samsongshu@yahoo.com.cn>
42539 commit f35f358241c549be3f75cfe2eaa642914275b7ba
42540 Author: Jerry Van Baren <gerald.vanbaren@comcast.net>
42541 Date: Wed Dec 6 21:23:55 2006 -0500
42543 mpc83xx: Put the version (and magic) after the HRCW.
42545 Put the version (and magic) after the HRCW. This puts it in a fixed
42546 location in flash, not at the start of flash but as close as we can get.
42548 Signed-off-by: Jerry Van Baren <vanbaren@cideas.com>
42550 commit 48aecd969171a6e99a55fae04933857787f9a5bd
42551 Author: Dave Liu <r63238@freescale.com>
42552 Date: Thu Dec 7 21:14:51 2006 +0800
42554 mpc83xx: Add the MPC832XEMDS board readme
42556 Add the MPC832XEMDS board readme
42558 Signed-off-by: Dave Liu <daveliu@freescale.com>
42560 commit 24c3aca3f1358b113d3215adb5433b156e99f72b
42561 Author: Dave Liu <r63238@freescale.com>
42562 Date: Thu Dec 7 21:13:15 2006 +0800
42564 mpc83xx: Add support for the MPC832XEMDS board
42566 This patch supports DUART, ETH3/4 and PCI etc.
42568 Signed-off-by: Dave Liu <daveliu@freescale.com>
42570 commit e080313c32322e15ab5a18eb896a252858c57284
42571 Author: Dave Liu <r63238@freescale.com>
42572 Date: Thu Dec 7 21:11:58 2006 +0800
42574 mpc83xx: streamline the 83xx immr head file
42576 For better format and style, I streamlined the 83xx head files,
42577 including immap_83xx.h and mpc83xx.h. In the old head files, 1)
42578 duplicated macro definition appear in the both files; 2) the structure
42579 of QE immr is duplicated in the immap_83xx.h and immap_qe.h; 3) The
42580 macro definition put inside the each structure. So, I cleaned up the
42581 structure of QE immr from immap_83xx.h, deleted the duplicated stuff and
42582 moved the macro definition to mpc83xx.h, Just like MPC8260.
42586 *streamline the 83xx immr head file
42588 Signed-off-by: Dave Liu <daveliu@freescale.com>
42590 commit ddd02492f43db5408f5ab9f823b0ba5796e28ef0
42591 Author: Dave Liu <r63238@freescale.com>
42592 Date: Wed Dec 6 11:38:17 2006 +0800
42594 mpc83xx: Fix the UEC driver bug of QE
42596 The patch prevents the GCC tool chain from striping useful code for
42597 optimization. It will make UEC ethernet driver workable, Otherwise the
42598 UEC will fail in tx when you are using gcc4.x. but the driver can work
42599 when using gcc3.4.3.
42603 *Prevent the GCC from striping code for optimization, Otherwise the UEC
42604 will tx failed when you are using gcc4.x.
42606 Signed-off-by: Dave Liu <daveliu@freescale.com>
42608 commit ba58e4c9a9a917ce795dd16d4ec8d515f9f7aa35
42609 Author: Stefan Roese <sr@denx.de>
42610 Date: Thu Mar 1 21:11:36 2007 +0100
42612 [PATCH] Update AMCC Katmai 440SPe eval board support
42614 This patch updates the recently added Katmai board support. The biggest
42615 change is the support of ECC DIMM modules in the 440SP(e) SPD DDR2
42618 Please note, that still some problems are left with some memory
42619 configurations. See the driver for more details.
42621 Signed-off-by: Stefan Roese <sr@denx.de>
42623 commit 8c12045a3b06c5b6675d3fe02fbc9f545988129a
42624 Author: Stefan Roese <sr@denx.de>
42625 Date: Thu Mar 1 07:03:25 2007 +0100
42627 [PATCH] I2C: Add missing default CFG_RTC_BUS_NUM & CFG_DTT_BUS_NUM
42629 Signed-off-by: Stefan Roese <sr@denx.de>
42631 commit ccbc7036648e465697ca298ba51e0e76dda352a0
42632 Author: Wolfgang Denk <wd@pollux.denx.de>
42633 Date: Wed Feb 28 01:28:53 2007 +0100
42635 SC3: fix typo in default environment
42637 commit e344568b1b46af85ec32d815586f91bc115d6223
42638 Author: Sergei Poselenov <sposelenov@emcraft.com>
42639 Date: Tue Feb 27 20:15:30 2007 +0300
42641 MCC200: Fixes for update procedure
42643 - fix logic error in image type handling
42644 - make sure file system images (cramfs etc.) get stored in flash
42645 with image header stripped so they can be mounted through MTD
42647 commit 743571145b37182757d4e688a77860b36ee77573
42648 Author: Wolfgang Denk <wd@pollux.denx.de>
42649 Date: Tue Feb 27 14:26:04 2007 +0100
42651 Minor code cleanup.
42653 commit 638dd1458bbdc2a55d4b9e25c5c4e1f838a5dc72
42654 Author: Sergei Poselenov <sposelenov@emcraft.com>
42655 Date: Tue Feb 27 12:40:16 2007 +0300
42657 MCC200 update - add LCD Progress Indicator
42659 commit 6c7cac8c4fce0ea2bf8e15ed8658d87974155b44
42660 Author: Stefan Roese <sr@denx.de>
42661 Date: Thu Feb 22 07:43:34 2007 +0100
42663 [PATCH] get_dev() now unconditionally uses manual relocation
42665 Since the relocation fix is not included yet and we're not sure how
42666 it will be added, this patch removes code that required relocation
42667 to be fixed for now.
42669 Signed-off-by: Stefan Roese <sr@denx.de>
42671 commit 8274ec0bd01d2feb2c7f095eba78d42ea009798b
42672 Author: Stefan Roese <sr@denx.de>
42673 Date: Thu Feb 22 07:40:23 2007 +0100
42675 [PATCH] Change systemace driver to select 8 & 16bit mode
42677 As suggested by Grant Likely this patch enables the Xilinx SystemACE
42678 driver to select 8 or 16bit mode upon startup.
42680 Signed-off-by: Stefan Roese <sr@denx.de>
42682 commit 3a197b2fe49d6fa03978e60af2394efe9c70b527
42683 Author: Haiying Wang <Haiying.Wang@freescale.com>
42684 Date: Wed Feb 21 16:52:31 2007 +0100
42686 [PATCH v3] Add sync to ensure flash_write_cmd is fully finished
42688 Some CPUs like PPC, BLACKFIN need sync() to ensure cfi flash write command
42689 is fully finished. The sync() is defined in each CPU's io.h file. For
42690 those CPUs which do not need sync for now, a dummy sync() is defined in
42691 their io.h as well.
42693 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
42695 commit da04995c7dc6772013a9a0dc5c767f190c402478
42696 Author: Stefan Roese <sr@denx.de>
42697 Date: Wed Feb 21 13:44:34 2007 +0100
42699 [PATCH] Fix problem in systemace driver (ace_writew instead of ace_write)
42701 Signed-off-by: Stefan Roese <sr@denx.de>
42703 commit 751bb57107d78978ae08e697c3deba816f5be091
42704 Author: Stefan Roese <sr@denx.de>
42705 Date: Tue Feb 20 13:21:57 2007 +0100
42707 [PATCH] Fix relocation problem with "new" get_dev() function
42709 This patch enables the "new" get_dev() function for block devices
42710 introduced by Grant Likely to be used on systems that still suffer
42711 from the relocation problems (manual relocation neede because of
42712 problems with linker script).
42714 Hopefully we can resolve this relocation issue soon for all platform
42715 so we don't need this additional code anymore.
42717 Signed-off-by: Stefan Roese <sr@denx.de>
42719 commit d93e2212f962668b3dce091ff5edc33f2347fe37
42720 Author: Stefan Roese <sr@denx.de>
42721 Date: Tue Feb 20 13:17:42 2007 +0100
42723 [PATCH] Update SystemACE driver for 16bit access
42725 This patch removes some problems when the Xilinx SystemACE driver
42726 is used with 16bit access on an big endian platform (like the
42729 Signed-off-by: Stefan Roese <sr@denx.de>
42731 commit 874bb7b88fe9b4648e1288a387af2e31014a72f3
42732 Author: Stefan Roese <sr@denx.de>
42733 Date: Tue Feb 20 13:15:40 2007 +0100
42735 [PATCH] Clean up Katmai (440SPe) linker script
42737 Signed-off-by: Stefan Roese <sr@denx.de>
42739 commit 4745acaa1a603b67f6b9b7970365ebadd7d6586f
42740 Author: Stefan Roese <sr@denx.de>
42741 Date: Tue Feb 20 10:57:08 2007 +0100
42743 [PATCH] Add support for the AMCC Katmai (440SPe) eval board
42745 Signed-off-by: Stefan Roese <sr@denx.de>
42747 commit 0dc018ece13effc689e47479ea9ebf1c98a507f5
42748 Author: Stefan Roese <sr@denx.de>
42749 Date: Tue Feb 20 10:51:26 2007 +0100
42751 [PATCH] I2C: Add support for multiple I2C busses for RTC & DTT
42753 This patch switches to the desired I2C bus when the date/dtt
42754 commands are called. This can be configured using the
42755 CFG_RTC_BUS_NUM and/or CFG_DTT_BUS_NUM defines.
42757 Signed-off-by: Stefan Roese <sr@denx.de>
42759 commit 4037ed3b63923cfcec27f784a89057c3cbabcedb
42760 Author: Stefan Roese <sr@denx.de>
42761 Date: Tue Feb 20 10:43:34 2007 +0100
42763 [PATCH] PPC4xx: Add 440SP(e) DDR2 SPD DIMM support
42765 This patch adds support for the DDR2 controller used on the
42766 440SP and 440SPe. It is tested on the Katmai (440SPe) eval
42767 board and works fine with the following DIMM modules:
42769 - Corsair CM2X512-5400C4 (512MByte per DIMM)
42770 - Kingston ValueRAM KVR667D2N5/512 (512MByte per DIMM)
42771 - Kingston ValueRAM KVR667D2N5K2/2G (1GByte per DIMM)
42773 This patch also adds the nice functionality to dynamically
42774 create the TLB entries for the SDRAM (tlb.c). So we should
42775 never run into such problems with wrong (too short) TLB
42776 initialization again on these platforms.
42778 Signed-off-by: Stefan Roese <sr@denx.de>
42780 commit 36d830c9830379045f5daa9f542ac1c990c70068
42781 Author: Stefan Roese <sr@denx.de>
42782 Date: Tue Feb 20 10:35:42 2007 +0100
42784 [PATCH] PPC4xx: Split 4xx SPD SDRAM init routines into 2 files
42786 Since the existing 4xx SPD SDRAM initialization routines for the
42787 405 SDRAM controller and the 440 DDR controller don't have much in
42788 common this patch splits both drivers into different files.
42790 This is in preparation for the 440 DDR2 controller support (440SP/e).
42792 Signed-off-by: Stefan Roese <sr@denx.de>
42794 commit 79b2d0bb2eae09602448f7a7cb56530d2f31e6c6
42795 Author: Stefan Roese <sr@denx.de>
42796 Date: Tue Feb 20 10:27:08 2007 +0100
42798 [PATCH] PPC4xx: Add support for multiple I2C busses
42800 This patch adds support for multiple I2C busses on the PPC4xx
42801 platforms. Define CONFIG_I2C_MULTI_BUS in the board config file
42802 to make use of this feature.
42804 It also merges the 405 and 440 i2c header files into one common
42807 Also the 4xx i2c reset procedure is reworked since I experienced
42808 some problems with the first access on the 440SPe Katmai board.
42810 Signed-off-by: Stefan Roese <sr@denx.de>
42812 commit eb867a76238fb38e952c37871b16d0d7fd61c95f
42813 Author: Grant Likely <grant.likely@secretlab.ca>
42814 Date: Tue Feb 20 09:05:45 2007 +0100
42816 [PATCH 9_9] Use "void *" not "unsigned long *" for block dev read_write buffer pointers
42818 Block device read/write is anonymous data; there is no need to use a
42819 typed pointer. void * is fine. Also add a hook for block_read functions
42821 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42823 commit 53758fa20e935cc87eeb0519ed365df753a6f289
42824 Author: Grant Likely <grant.likely@secretlab.ca>
42825 Date: Tue Feb 20 09:05:38 2007 +0100
42827 [PATCH 8_9] Add block_write hook to block_dev_desc_t
42829 Preparation for future patches which support block device writing
42831 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42833 commit f4852ebe6ca946a509667eb68be42026f837be76
42834 Author: Grant Likely <grant.likely@secretlab.ca>
42835 Date: Tue Feb 20 09:05:31 2007 +0100
42837 [PATCH 7_9] Replace ace_readw_ace_writeb functions with macros
42839 Register read/write does not need to be wrapped in a full function. The
42840 patch replaces them with macros.
42842 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42844 commit 3a8ce9af6fcb5744a7851b4440c07688acc40844
42845 Author: Grant Likely <grant.likely@secretlab.ca>
42846 Date: Tue Feb 20 09:05:23 2007 +0100
42848 [PATCH 6_9] Move common_cmd_ace.c to drivers_systemace.c
42850 The code in this file is not a command; it is a device driver. Put it in
42851 the correct place. There are zero functional changes in this patch, it
42852 only moves the file.
42854 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42856 commit 984618f3e7794c783ec8d1511e74c6ee2d69bfe4
42857 Author: Grant Likely <grant.likely@secretlab.ca>
42858 Date: Tue Feb 20 09:05:16 2007 +0100
42860 [PATCH 5_9] Whitespace fixup on common_cmd_ace.c (using Lindent)
42862 This patch is in preparation of additional changes to the sysace driver.
42863 May as well take this opportunity to fixup the inconsistent whitespace since
42864 this file is about to undergo major changes anyway.
42866 There are zero functional changes in this patch. It only cleans up the
42869 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42871 commit 80ba981d940471fe7e539e64fa3d2bd80002beda
42872 Author: Grant Likely <grant.likely@secretlab.ca>
42873 Date: Tue Feb 20 09:05:07 2007 +0100
42875 [PATCH 4_4] Remove local implementation of isprint() in ft_build.c
42877 isprint is already defined in ctype.c
42879 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42881 commit c95c4280d751ca078c2ff58228d2f2b44ccf0600
42882 Author: Grant Likely <grant.likely@secretlab.ca>
42883 Date: Tue Feb 20 09:05:00 2007 +0100
42885 [PATCH 3_9] Move buffer print code from md command to common function
42887 Printing a buffer is a darn useful thing. Move the buffer print code
42888 into print_buffer() in lib_generic/
42890 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42892 commit 99b0f0fd3fbf2572ae1a7723dd90cffc8e85130a
42893 Author: Grant Likely <grant.likely@secretlab.ca>
42894 Date: Tue Feb 20 09:04:52 2007 +0100
42896 [PATCH 2_4] Use config.h, not xparameters.h, for xilinx targets
42898 Change the xilinx device drivers and board code to include config.h
42899 instead of xparameters.h directly. config.h always includes the
42900 correct xparameters file. This change reduces the posibility of
42901 including the wrong file when adding a new xilinx board port
42903 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42905 commit 735dd97b1b20e777d059c7b389fe9d70cd3f80c7
42906 Author: Grant Likely <grant.likely@secretlab.ca>
42907 Date: Tue Feb 20 09:04:34 2007 +0100
42909 [PATCH 1_4] Merge common get_dev() routines for block devices
42911 Each of the filesystem drivers duplicate the get_dev routine. This change
42912 merges them into a single function in part.c
42914 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
42916 commit f5fcc3c20b65554e98a165542c36ee0c610a2d81
42917 Author: Wolfgang Denk <wd@pollux.denx.de>
42918 Date: Mon Feb 19 23:09:51 2007 +0100
42920 MCC200: Software Updater: allow both "ramdisk" and "filesystem" types
42921 as root file system images.
42923 commit 489c696ae7211218961d159e43e722d74c36fcbc
42924 Author: Sergei Poselenov <sposelenov@emcraft.com>
42925 Date: Wed Feb 14 14:30:28 2007 +0300
42927 MCC200: Extensions to Software Update Mechanism
42929 Update / extend Software Update Mechanism for MCC200 board:
42931 - Add support for rootfs image added. The environment variables
42932 "rootfs_st" and "rootfs_nd" can be used to override the default
42933 values of the image start and end.
42934 - Remove excessive key check code.
42937 commit 4be23a12f23f1372634edc3215137b09768b7949
42938 Author: Stefan Roese <sr@denx.de>
42939 Date: Mon Feb 19 08:23:15 2007 +0100
42941 [PATCH] Update Sequoia EBC configuration (NOR FLASH)
42943 As spotted by Matthias Fuchs, the READY input should not be
42944 enabled for the NOR FLASH on the Sequoia board.
42946 Signed-off-by: Stefan Roese <sr@denx.de>
42948 commit 2605e90bf676d48123afe5719a846d2b52b24aac
42949 Author: Heiko Schocher <hs@pollux.denx.de>
42950 Date: Fri Feb 16 07:57:42 2007 +0100
42952 [PATCH] Added support for the jupiter board.
42954 Signed-off-by: Heiko Schocher <hs@denx.de>
42956 commit 497d012e5be0194e1084073d0081eb1a844796b2
42957 Author: Gary Jennejohn <garyj@pollux.denx.de>
42958 Date: Mon Feb 12 13:11:50 2007 +0100
42960 LPC2292: patch from Siemens.
42962 commit b0b1a920aebead0d44146e73676ae9d80fffc8e2
42963 Author: Stefan Roese <sr@denx.de>
42964 Date: Sat Feb 10 08:49:31 2007 +0100
42966 [PATCH] Add missing p3mx.h file to repository (ups)
42968 Signed-off-by: Stefan Roese <sr@denx.de>
42970 commit 53d4a4983fb9b3ae5f7b2f10c599aca2b1b4034a
42971 Author: Bartlomiej Sieka <tur@semihalf.com>
42972 Date: Fri Feb 9 10:45:42 2007 +0100
42974 [Motion-PRO] Preliminary support for the Motion-PRO board.
42976 commit 5a753f98c6a01bd1c61a9a3f95e8329a35f62994
42977 Author: Stefan Roese <sr@denx.de>
42978 Date: Wed Feb 7 16:51:08 2007 +0100
42980 [PATCH] Update some AMCC 4xx board config files (set initrd_high)
42982 Some boards that can have more than 768MBytes of SDRAM need to
42983 set "initrd_high", so that the initrd can be accessed by the
42986 Signed-off-by: Stefan Roese <sr@denx.de>
42988 commit 7372ca68227930d03cffa548310524cad5b96733
42989 Author: Stefan Roese <sr@denx.de>
42990 Date: Fri Feb 2 12:44:22 2007 +0100
42992 [PATCH] Correctly display PCI arbiter en-/disabled on some 4xx boards
42994 Previously the strapping DCR/SDR was read to determine if the internal PCI
42995 arbiter is enabled or not. This strapping bit can be overridden, so now
42996 the current status is read from the correct DCR/SDR register.
42998 Signed-off-by: Stefan Roese <sr@denx.de>
43000 commit 2aa54f651a42d198673318f07a20c89a43e4d197
43001 Author: Stefan Roese <sr@denx.de>
43002 Date: Fri Feb 2 12:42:08 2007 +0100
43004 [PATCH] Change configuration output of Sycamore, Yellowstone & Rainier
43006 Signed-off-by: Stefan Roese <sr@denx.de>
43008 commit 23744d6b5bf17592eb6a0ef4f318f6089f55993b
43009 Author: Stefan Roese <sr@denx.de>
43010 Date: Thu Feb 1 13:22:41 2007 +0100
43012 [PATCH] Remove PCI-PNP configuration from Sequoia/Rainier config file
43014 When PCI PNP is enabled the pci pnp configuration routine is called
43015 which sets the PCI_CACHE_SIZE_LINE to 8. This seems to generate some
43016 problems with some PCI cards. For now disable the PCI PNP configuration.
43018 Signed-off-by: Stefan Roese <sr@denx.de>
43020 commit 2902fadade3be7659467e8d074048c6b7068f5c0
43021 Author: Stefan Roese <sr@denx.de>
43022 Date: Wed Jan 31 16:56:10 2007 +0100
43024 [PATCH] Update 440EPx/440GRx cpu detection
43026 Signed-off-by: Stefan Roese <sr@denx.de>
43028 commit d5ea287b02a6945c3977410e364a879dd1a555c8
43029 Author: Stefan Roese <sr@denx.de>
43030 Date: Wed Jan 31 16:38:04 2007 +0100
43032 [PATCH] Update esd cpci5200 files
43034 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
43036 commit 8b7d1f0ab7d7c4fe3160bbf74a7e9690d9f3a3ab
43037 Author: Stefan Roese <sr@denx.de>
43038 Date: Wed Jan 31 16:37:34 2007 +0100
43040 [PATCH] Add support for esd mecp5200 board
43042 Signed-off-by: Reinhard Arlt <reinhard.arlt@esd-electronics.com>
43044 commit 71a4e5fda8b60044ab9f46069fa1cfa26bdd07ff
43045 Author: Stefan Roese <sr@denx.de>
43046 Date: Wed Jan 31 12:38:50 2007 +0100
43048 [PATCH] Remove unneccessary yellowstone board config file
43050 Signed-off-by: Stefan Roese <sr@denx.de>
43052 commit e802594b6fa1b166308820c276b96dc0d7cc731c
43053 Author: Stefan Roese <sr@denx.de>
43054 Date: Tue Jan 30 17:06:10 2007 +0100
43056 [PATCH] Update Sequoia (440EPx) config file
43058 The config file now handles the 2nd target, the Rainier (440GRx)
43059 evaluation board better. Additionally the PPC input clock was
43060 adjusted to match the correct value of 33.0 MHz.
43062 Signed-off-by: Stefan Roese <sr@denx.de>
43064 commit 700200c67e73b83751418abe7815840dca8fd6cb
43065 Author: Stefan Roese <sr@denx.de>
43066 Date: Tue Jan 30 17:04:19 2007 +0100
43068 [PATCH] Merge Yosemite & Yellowstone board ports
43070 Now the AMCC eval boards Yosemite (440EP) and Yellowstone (440GR)
43071 share one config file and all board specific files. This way we
43072 don't have to maintain two different sets of files for nearly
43075 Signed-off-by: Stefan Roese <sr@denx.de>
43077 commit 1bbf5eae322f5f1f6427ecc3ac13a0cb7dba8ad6
43078 Author: Stefan Roese <sr@denx.de>
43079 Date: Tue Jan 30 15:01:49 2007 +0100
43081 [PATCH] Update Prodrive SCPU (PDNB3 variant) board
43083 SCPU doesn't use redundant environment in flash.
43085 Signed-off-by: Stefan Roese <sr@denx.de>
43087 commit 6304430ed642ea8fa15c9e5af965ac2e033eec45
43088 Author: Stefan Roese <sr@denx.de>
43089 Date: Tue Jan 30 12:51:07 2007 +0100
43091 [PATCH] alpr: Update alpr board config file
43093 Signed-off-by: Stefan Roese <sr@denx.de>
43095 commit f8db84f132b1e335f20f96138a1f09ed97b08664
43096 Author: Wolfgang Denk <wd@pollux.denx.de>
43097 Date: Tue Jan 30 00:50:40 2007 +0100
43099 LPC2292 SODIMM port coding style cleanup.
43101 commit 6bd2447ee47ee23c18d2b3c7ccd5a20f7626f5b3
43102 Author: Gary Jennejohn <garyj@pollux.denx.de>
43103 Date: Wed Jan 24 12:16:56 2007 +0100
43105 Add port for the lpc2292sodimm evaluation board from EmbeddedArtists
43107 commit 2daf046ba627f85f44195815778140039636244e
43108 Author: Bartlomiej Sieka <tur@semihalf.com>
43109 Date: Tue Jan 23 17:22:06 2007 +0100
43111 [iDMR] Add MTD and JFFS2 support, also add default partition definition.
43113 commit f7db33101fbc9c8f0a10738ce87034875a17aeb9
43114 Author: Bartlomiej Sieka <tur@semihalf.com>
43115 Date: Tue Jan 23 14:21:14 2007 +0100
43117 [iDMR] Flash driver on initialisation write-protects some sectors,
43118 currently sectors 0-3. Sector 3 does not need to be protected, though
43119 (U-boot occupies sectors 0-1 and the environment sector 2). This commit
43120 fixes this, i.e., only sectors 0-2 are protected.
43122 commit 0ed47bb119cd2c4c16edb2548789148f9e6dc9de
43123 Author: Bartlomiej Sieka <tur@semihalf.com>
43124 Date: Tue Jan 23 14:11:22 2007 +0100
43126 [iDMR] Using MII-related commands on iDRM board doesn't work now (e.g.,
43127 "mii device" results in "Unexpected exception"). Fixing this properly
43128 requires some clean-up in the FEC drivers infrastructure for ColdFire, so
43129 this commit disables MII commads for now.
43131 commit 363d1d8f9c99b63daef81f5985cab3fc00edde5c
43132 Author: Bartlomiej Sieka <tur@semihalf.com>
43133 Date: Tue Jan 23 13:25:22 2007 +0100
43135 [ColdFire MCF5271 family] Add CPU detection based on the value of Chip
43136 Identification Register (CIR).
43138 commit fdef388758506765d4d6a7155c8f1584c63ff581
43139 Author: roy zang <tie-fei.zang@freescale.com>
43140 Date: Mon Jan 22 13:19:21 2007 +0800
43142 use CFG_WRITE_SWAPPED_DATA define instead of define CFG_FLASH_CFI_SWAP
43143 The patch by Heiko Schocher <hs@pollux.denx.de> on Jan, 19, 2007
43144 fixes cfi_driver bug for mpc7448hpc2 board. The default cfi_driver can support
43147 commit a4012396645533aef218354eeba754dff0deace8
43148 Author: Wolfgang Denk <wd@pollux.denx.de>
43149 Date: Fri Jan 19 23:08:39 2007 +0100
43151 Minor code cleanup.
43153 commit f539b7ba7d7ef6dd187c8209609001cb1cd95e39
43154 Author: Heiko Schocher <hs@pollux.denx.de>
43155 Date: Fri Jan 19 19:57:10 2007 +0100
43157 [PATCH] SC3 board: added CFG_CMD_AUTOSCRIPT.
43159 Signed-off-by: Heiko Schocher <hs@denx.de>
43161 commit d0b6e14087ddd8789f224a48e1d33f2a5df4d167
43162 Author: Heiko Schocher <hs@pollux.denx.de>
43163 Date: Fri Jan 19 18:05:26 2007 +0100
43165 [PATCH] CFI: define CFG_WRITE_SWAPPED_DATA for the CFI-Flash driver
43166 if you must swap the bytes between reading/writing.
43167 (Needed for the SC3 board)
43169 Signed-off-by: Heiko Schocher <hs@denx.de>
43171 commit 9d8d5a5bfb64768f29a0cb47fc37cd6f4c40e276
43172 Author: Stefan Roese <sr@denx.de>
43173 Date: Thu Jan 18 16:05:47 2007 +0100
43175 [PATCH] Add support for Prodrive SCPU (PDNB3 variant) board
43177 Signed-off-by: Stefan Roese <sr@denx.de>
43179 commit 0057d758e3e874cbe7f24745d0cce8c1cb6c207e
43180 Author: Stefan Roese <sr@denx.de>
43181 Date: Thu Jan 18 11:54:52 2007 +0100
43183 [PATCH] Update Prodrive P3Mx support
43185 Signed-off-by: Stefan Roese <sr@denx.de>
43187 commit 34167a36c29ee946b727465db5c014746a08e978
43188 Author: Stefan Roese <sr@denx.de>
43189 Date: Thu Jan 18 11:48:10 2007 +0100
43191 [PATCH] Add missing Taishan config file
43193 Signed-off-by: Stefan Roese <sr@denx.de>
43195 commit cb4820725e9fc409c5cbc8e83054a6ed522d2111
43196 Author: Heiko Schocher <hs@pollux.denx.de>
43197 Date: Thu Jan 18 11:28:51 2007 +0100
43199 [PATCH] Fix: Compilerwarnings for SC3 board.
43200 The EBC Configuration Register is now by CFG_EBC_CFG definable
43201 Added JFFS2 support for the SC3 board.
43203 Signed-off-by: Heiko Schocher <hs@denx.de>
43205 commit 5fb692cae57d1710c8f52a427cf7f39a37383fcd
43206 Author: Stefan Roese <sr@denx.de>
43207 Date: Thu Jan 18 10:25:34 2007 +0100
43209 [PATCH] Add support for AMCC Taishan PPC440GX eval board
43211 Signed-off-by: Stefan Roese <sr@denx.de>
43213 commit 6d3e0107235aa0e6a6dcb77f9884497280bf85ad
43214 Author: Wolfgang Denk <wd@pollux.denx.de>
43215 Date: Tue Jan 16 18:30:50 2007 +0100
43217 Raname solidcard3 into sc3; add redundant env for sc3
43219 commit 1bbbbdd20fcec9933697000dcf55ff7972622596
43220 Author: Wolfgang Denk <wd@pollux.denx.de>
43221 Date: Tue Jan 16 12:46:35 2007 +0100
43223 Update default environment for Solidcard3
43225 commit 5a5c56986a9ccf71642c8b6374eb18487b15fecd
43226 Author: Stefan Roese <sr@denx.de>
43227 Date: Mon Jan 15 09:46:29 2007 +0100
43229 [PATCH] Fix 440SPe rev B detection from previous patch
43231 Signed-off-by: Stefan Roese <sr@denx.de>
43233 commit a443d31410c571ee8f970da819a44d698fdd6b1f
43234 Author: Heiko Schocher <hs@pollux.denx.de>
43235 Date: Sun Jan 14 13:35:31 2007 +0100
43237 [FIX] correct I2C Writes for the LM81 Sensor.
43239 Signed-off-by: Heiko Schocher <hs@denx.de>
43241 commit 0bba5452835f19a61204edcda3a58112fd8e2208
43242 Author: Wolfgang Denk <wd@pollux.denx.de>
43243 Date: Sat Jan 13 11:17:10 2007 +0100
43245 Undo commit 3033ebb2: reset command does not take any arguments
43247 Haiying Wang's modification to the reset command was broken, undo it.
43249 Signed-off-by: Wolfgang Denk <wd@denx.de>
43251 commit 95981778cff0038fd9941044d6a3eda810e33258
43252 Author: Stefan Roese <sr@denx.de>
43253 Date: Sat Jan 13 08:01:03 2007 +0100
43255 [PATCH] Update 440SP(e) cpu revisions
43257 Also display enabled/disabled RAID 6 support for 440SP/440SPe PPC's.
43259 Signed-off-by: Stefan Roese <sr@denx.de>
43261 commit 77ddc5b9afb325262fd88752ba430a1dded1f0c7
43262 Author: Stefan Roese <sr@denx.de>
43263 Date: Sat Jan 13 07:59:56 2007 +0100
43265 [PATCH] Update Yellowstone (440GR) to display board rev and PCI bus speed
43267 Now the board revision and the current PCI bus speed are printed after
43270 Also the EBC initialising is now done via defines in the board config
43273 Signed-off-by: Stefan Roese <sr@denx.de>
43275 commit 36adff362c2c0141ff8a810d42a7e478f779130f
43276 Author: Stefan Roese <sr@denx.de>
43277 Date: Sat Jan 13 07:59:19 2007 +0100
43279 [PATCH] Update Yosemite (440EP) to display board rev and PCI bus speed
43281 Now the board revision and the current PCI bus speed are printed after
43284 Also the EBC initialising is now done via defines in the board config
43287 Signed-off-by: Stefan Roese <sr@denx.de>
43289 commit e0b9ea8c8a294de6a5350ae638879d24b5b709d6
43290 Author: Stefan Roese <sr@denx.de>
43291 Date: Sat Jan 13 07:57:51 2007 +0100
43293 [PATCH] Update Sequoia (440EPx) to display board rev and PCI bus speed
43295 Now the board revision and the current PCI bus speed are printed after
43298 Signed-off-by: Stefan Roese <sr@denx.de>
43300 commit ca43ba18e910206ef8063e4b22d282630bff3fd2
43301 Author: Heiko Schocher <hs@pollux.denx.de>
43302 Date: Thu Jan 11 15:44:44 2007 +0100
43304 Added support for the SOLIDCARD III board from Eurodesign
43306 Signed-off-by: Heiko Schocher <hs@denx.de>
43308 commit 6abaee42621c07e81a2cd189ad4368b5e8c50280
43309 Author: Reinhard Thies <Reinhard.Thies@web.de>
43310 Date: Wed Jan 10 14:41:14 2007 +0100
43312 Adjusted default environment for cam5200 board.
43314 commit bab5a90d4ccc1a46a8127b867fa59028cc623ad9
43315 Author: Wolfgang Denk <wd@pollux.denx.de>
43316 Date: Wed Jan 10 15:35:52 2007 +0100
43320 commit 787fa15860a57833e50bd30555079a9cd4e519b8
43321 Author: Wolfgang Denk <wd@pollux.denx.de>
43322 Date: Wed Jan 10 01:28:39 2007 +0100
43324 Fix auto_update for MCC200 board.
43326 The invocation of do_auto_update() is moved to the end of the
43327 misc_init_r() function, after the flash mappings have been
43328 initialized. Please find attached a patch that implements that
43331 Also correct the decoding of the keypad status. With this update, the
43332 key that will trigger the update is Column 2, Row 2.
43334 commit d9384de2f571046e71081bae22b49e3d5ca2e3d5
43335 Author: Marian Balakowicz <m8@semihalf.com>
43336 Date: Wed Jan 10 00:26:15 2007 +0100
43338 CAM5200 flash driver modifications:
43339 - use CFI driver (replaces custom flash driver) for main 'cam5200' target
43340 - add second build target 'cam5200_niosflash' which still uses custom driver
43342 commit 67fea022fa957f59653b5238c7496f80a6b70432
43343 Author: Markus Klotzbuecher <mk@denx.de>
43344 Date: Tue Jan 9 16:02:48 2007 +0100
43346 SPC1920: cleanup memory contoller setup
43348 commit 8fc2102faa23593c80381437c09f7745a14deb40
43349 Author: Markus Klotzbuecher <mk@denx.de>
43350 Date: Tue Jan 9 14:57:14 2007 +0100
43352 Fix the cpu speed setup to work with all boards.
43354 commit 9295acb77481cf099ef9b40e1fa2d145b3c7490c
43355 Author: Markus Klotzbuecher <mk@denx.de>
43356 Date: Tue Jan 9 14:57:13 2007 +0100
43358 SPC1920: add support for the FM18L08 Ramtron FRAM
43360 commit 38ccd2fdf3364a53fe80e9b365303ecdafc9e223
43361 Author: Markus Klotzbuecher <mk@denx.de>
43362 Date: Tue Jan 9 14:57:13 2007 +0100
43364 SPC1920: update the HPI register addresses to work with the second
43365 generation of hardware
43367 commit 5921e5313fc3eadd42770c2b99badd7fae5ecf1e
43368 Author: Markus Klotzbuecher <mk@creamnet.de>
43369 Date: Tue Jan 9 14:57:13 2007 +0100
43371 Miscellanious spc1920 related cleanups
43373 commit e4c2d37adc8bb1bf69dcf600cbc6c75f916a6120
43374 Author: Markus Klotzbuecher <mk@denx.de>
43375 Date: Tue Jan 9 14:57:12 2007 +0100
43377 SPC1920 GO/NOGO led should be set to color red in U-Boot
43379 commit 0be62728aac459ba268d6d752ed49ec0e2bc7348
43380 Author: Markus Klotzbuecher <mk@creamnet.de>
43381 Date: Tue Jan 9 14:57:12 2007 +0100
43383 Add support for the DS3231 RTC
43385 commit 8139567b60d678584b05f0718a681f2047c5e14f
43386 Author: Markus Klotzbuecher <mk@creamnet.de>
43387 Date: Tue Jan 9 14:57:11 2007 +0100
43389 SMC1 uses external CLK4 instead of BRG on spc1920
43391 commit d8d9de1a02fbd880b613d607143d1f57342affc7
43392 Author: Markus Klotzbuecher <mk@creamnet.de>
43393 Date: Tue Jan 9 14:57:10 2007 +0100
43395 Update the SPC1920 CMB PLD driver
43397 commit 3f34f869162750e5e999fd140f884f5de952bcfe
43398 Author: Markus Klotzbuecher <mk@creamnet.de>
43399 Date: Tue Jan 9 14:57:10 2007 +0100
43401 Add / enable I2C support on the spc1920 board
43403 commit d28707dbce1e9ac2017ad051da4133bf22b4204f
43404 Author: Markus Klotzbuecher <mk@creamnet.de>
43405 Date: Tue Jan 9 14:57:10 2007 +0100
43407 Add support for the tms320671x host port interface (HPI)
43409 commit f4eb54529bb3664c3a562e488b460fe075f79d67
43410 Author: Wolfgang Denk <wd@pollux.denx.de>
43411 Date: Sun Jan 7 00:13:11 2007 +0100
43413 Prepare for release 1.2.0
43415 commit f07ae7a9daef27a3d0213a4f3fe39d5342173c02
43416 Author: Stefan Roese <sr@denx.de>
43417 Date: Sat Jan 6 15:58:09 2007 +0100
43419 [PATCH] 44x: Fix problem with DDR controller setup (refresh rate)
43421 This patch fixes a problem with an incorrect setup for the refresh
43422 timer of the 44x DDR controller in the file cpu/ppc4xx/sdram.c
43424 Signed-off-by: Stefan Roese <sr@denx.de>
43426 commit f16c1da9577f06c5fc08651a4065537407de4635
43427 Author: Stefan Roese <sr@denx.de>
43428 Date: Sat Jan 6 15:56:13 2007 +0100
43430 [PATCH] Update ALPR board files
43432 This update brings the ALPR board support to the newest version.
43433 It also fixes a problem with the NAND driver.
43435 Signed-off-by: Stefan Roese <sr@denx.de>
43437 commit cd1d937f90250a32988c37b2b4af8364d25de8ed
43438 Author: Stefan Roese <sr@denx.de>
43439 Date: Fri Jan 5 11:46:05 2007 +0100
43441 [PATCH] nand: Fix problem with oobsize calculation
43443 Here the description from Brian Brelsford <Brian_Brelsford@dell.com>:
43445 The Hynix part returns a 0x1d in the 4th ID byte. The Samsung part
43446 returns a 0x15. In the code fragment below bits [1:0] determine the
43447 page size, it is ANDed via "(extid & 0x3)" then shifted out. The
43448 next field is also ANDed with 0x3. However this is a one bit field
43449 as defined in the Hynix and Samsung parts in the 4th ID byte that
43450 determins the oobsize, not a two bit field. It works on Samsung as
43451 bits[3:2] are 01. However for the Hynix there is a 11 in these two
43452 bits, so the oob size gets messed up.
43454 I checked the correct linux code and the suggested fix from Brian is
43455 also available in the linux nand mtd driver.
43457 Signed-off-by: Stefan Roese <sr@denx.de>
43459 commit a78bc443ae5a4a8ba87590587d5e35bf5a787b2e
43460 Author: Stefan Roese <sr@denx.de>
43461 Date: Fri Jan 5 10:40:36 2007 +0100
43463 [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)
43465 This fix will make the MAL burst disabling patch for the Linux
43466 EMAC driver obsolete.
43468 Signed-off-by: Stefan Roese <sr@denx.de>
43470 commit 023889838282b6237b401664f22dd22dfba2c066
43471 Author: Stefan Roese <sr@denx.de>
43472 Date: Fri Jan 5 10:38:05 2007 +0100
43474 [PATCH] Add DDR2 optimization code for Sequoia (440EPx) board
43476 This code will optimize the DDR2 controller setup on a board specific
43479 Note: This code doesn't work right now on the NAND booting image for the
43480 Sequoia board, since it doesn't fit into the 4kBytes for the SPL image.
43482 Signed-off-by: Stefan Roese <sr@denx.de>
43484 commit cce4acbb68398634b8d011ed7bb0d12269c84230
43485 Author: Bartlomiej Sieka <tur@semihalf.com>
43486 Date: Thu Dec 28 19:08:21 2006 +0100
43489 - fix a typo in V38B config file
43490 - move watchdog initialisation earlier in the boot process
43491 - add "wdt=off" to default kernel command line (disables kernel watchdog)
43493 commit 92eb729bad876725aeea908d2addba0800620840
43494 Author: Wolfgang Denk <wd@pollux.denx.de>
43495 Date: Wed Dec 27 01:26:13 2006 +0100
43497 Fix bug in adaption of Stefano Babic's CFI driver patch.
43499 commit 9c0f42ecfe25f7ffce8ec7a815f03864d723ffe3
43500 Author: Wolfgang Denk <wd@pollux.denx.de>
43501 Date: Sun Dec 24 01:42:57 2006 +0100
43503 Minor code cleanup.
43505 commit d784fdb05900ada3686d5778783e1fb328e9fb66
43506 Author: Stefano Babic <sbabic@denx.de>
43507 Date: Tue Dec 12 00:22:42 2006 +0100
43509 Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different offset to go into CFI mode)
43511 commit 1b3c360c235dc684ec06c2d5f183f0a282ce45e2
43512 Author: Stefan Roese <sr@denx.de>
43513 Date: Fri Dec 22 14:29:40 2006 +0100
43515 [PATCH] Fix sequoia flash autodetection (finally correct)
43517 Now 32MByte and 64MByte FLASH is know to work and other
43518 configurations should work too.
43520 Signed-off-by: Stefan Roese <sr@denx.de>
43522 commit 82e5236a8b719543643fd26d5827938ab2b94818
43523 Author: Wolfgang Denk <wd@pollux.denx.de>
43524 Date: Fri Dec 22 10:30:26 2006 +0100
43526 Minor code cleanup; update CHANGELOG.
43528 commit fa23044564091f05d9695beb7b5b9a931e7f41a4
43529 Author: Heiko Schocher <hs@pollux.denx.de>
43530 Date: Thu Dec 21 17:17:02 2006 +0100
43532 Added support for the TQM8272 board from TQ
43534 Signed-off-by: Heiko Schocher <hs@denx.de>
43536 commit 6dedf3d49dd14c3bf541c8ecee7ffaac5f0e1d6c
43537 Author: Heiko Schocher <hs@pollux.denx.de>
43538 Date: Thu Dec 21 16:14:48 2006 +0100
43540 [PATCH] Add support for the UC101 board from MAN.
43542 Signed-off-by: Heiko Schocher <hs@denx.de>
43544 commit c84bad0ef60e7055ab0bd49b93069509cecc382a
43545 Author: Bartlomiej Sieka <tur@semihalf.com>
43546 Date: Wed Dec 20 00:29:43 2006 +0100
43548 Fix to make the baudrate changes immediate for the MCF52x2 family.
43550 commit daa6e418bcc0c717752e8de939c213c790286096
43551 Author: Bartlomiej Sieka <tur@semihalf.com>
43552 Date: Wed Dec 20 00:27:32 2006 +0100
43554 Preliminary support for the iDMR board (ColdFire).
43556 commit cdb97a6678826f85e7c69eae6a1c113d034c9b10
43557 Author: Andrei Safronov <safronov@pollux.denx.de>
43558 Date: Fri Dec 8 16:23:08 2006 +0100
43560 automatic update mechanism
43562 commit 9d27b3a0685ff99fc477983f315c04d49f657a8a
43563 Author: roy zang <tie-fei.zang@freescale.com>
43564 Date: Mon Dec 4 17:56:59 2006 +0800
43566 Slight code clean up.
43567 Add comments, delete duplicate define and remove spaces.
43568 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43570 commit 4dbcd69e3e2776ea334590d5768e3692c5fae5c1
43571 Author: roy zang <tie-fei.zang@freescale.com>
43572 Date: Mon Dec 4 17:54:21 2006 +0800
43574 Introduce PLL_CFG[0:4] table for processor 7448/7447A/7455/7457. The original
43575 multiplier table can not refect the real PLL clock behavior of these
43576 processors. Please refer to the hardware specification for detailed
43577 information of the corresponding processors.
43578 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43580 commit 4efe20c9579011d9987f62ed7d35ee8cdc1cf0e0
43581 Author: roy zang <tie-fei.zang@freescale.com>
43582 Date: Mon Dec 4 14:46:23 2006 +0800
43584 Remove the static MAC address, ip address, server ip, netmask and
43585 gateway ip for network setting.
43586 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43588 commit 6f12c61cf31ed73d72ddfcfc712a854a3a177aaf
43589 Author: roy zang <tie-fei.zang@freescale.com>
43590 Date: Mon Dec 4 14:33:08 2006 +0800
43592 Remove the duplicate memory test code for mpc744ihpc2 board.
43593 If a memory test is needed, please use the functions in
43594 post/memory.c or memtest command.
43595 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43597 commit c9c1eeed7dd193fa65fb194654132040d49d4d3a
43598 Author: roy zang <tie-fei.zang@freescale.com>
43599 Date: Fri Dec 1 19:01:25 2006 +0800
43601 Fix the exception occuring in RAM table search issue.
43602 The original search_one_table() function code can only processes the search
43603 for the exception occurring in FLASH/ROM, because the exception and fixup
43604 table usually locate in FLASH. If the exception address is also in
43605 FLASH, it will be OK.
43606 If the exception occurs in RAM, after the u-boot relocation, a
43607 relocation offset should be added.
43609 clean up the code in cpu/74xx_7xx/cpu.c
43611 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
43613 commit ee311214e0d216f904feea269599d0934bf71f23
43614 Author: roy zang <tie-fei.zang@freescale.com>
43615 Date: Fri Dec 1 11:47:36 2006 +0800
43617 Clean up the code according to codestyle:
43618 (1) remove some C++ comments.
43619 (2) remove trailing white space.
43620 (3) remove trailing empty line.
43621 (4) Indentation by table.
43622 (5) remove {} in one line condition.
43623 (6) add space before '(' in function call.
43624 Remove some weird printf () output.
43625 Add necessary comments.
43626 Modified Makefile to support building in a separate directory.
43628 commit dd520bf314c7add4183c5191692180f576f96b60
43629 Author: Wolfgang Denk <wd@pollux.denx.de>
43630 Date: Thu Nov 30 18:02:20 2006 +0100
43634 commit 8d9a8610b8256331132227e9e6585c6bd5742787
43635 Author: Wolfgang Denk <wd@pollux.denx.de>
43636 Date: Thu Nov 30 01:54:07 2006 +0100
43638 Code cleanup. Update CHANGELOG.
43640 commit 726e90aacf0b1ecb0e7055be574622fbe3e450ba
43641 Author: Grant Likely <grant.likely@secretlab.ca>
43642 Date: Wed Nov 29 16:23:42 2006 +0100
43644 [PATCH] [MPC52xx] Use IPB bus frequency for SOC peripherals
43646 The soc node of the mpc52xx needs to be loaded with the IPB bus frequency,
43647 not the XLB frequency.
43649 This patch depends on the previous patches for MPC52xx device tree support
43651 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43652 Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
43654 commit 1eac2a71417b6675b11aace72102a2e7fde8f5c6
43655 Author: Stefan Roese <sr@denx.de>
43656 Date: Wed Nov 29 15:42:37 2006 +0100
43658 [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boards
43660 This patch adds support for the Prodrive P3M750 (PPC750 & MV64460)
43661 and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are
43662 quite similar and share the same board directory "prodrive/p3mx"
43663 and the same config file "p3mx.h".
43665 Signed-off-by: Stefan Roese <sr@denx.de>
43667 commit 1bdd46832aeb569f5e04b1f20f64318525b6525a
43668 Author: Stefan Roese <sr@denx.de>
43669 Date: Wed Nov 29 12:53:15 2006 +0100
43671 [PATCH] common/cmd_elf.c: Enable loadaddr as parameter in bootvx command
43673 In the bootvx command the load address was only read from the env
43674 variable "loadaddr" and not optionally passed as paramter as described
43675 in the help. This is fixed with this patch. The behaviour is now the
43676 same as in the bootelf command.
43678 Signed-off-by: Stefan Roese <sr@denx.de>
43680 commit 4e26f1074c3ac1bd8fd094f0dc4a1c4a0b15a592
43681 Author: Stefan Roese <sr@denx.de>
43682 Date: Wed Nov 29 12:03:57 2006 +0100
43684 [PATCH] include/ppc440.h minor error affecting interrupts
43686 Fixed include/ppc440.c for UIC address Bug
43688 Corrects bug affecting the addresses for the universal interrupt
43689 controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips.
43691 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
43692 Signed-off-by: Stefan Roese <sr@denx.de>
43694 commit 1939d969443ccf316cab2bf32ab1027d4db5ba1a
43695 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
43696 Date: Tue Nov 28 16:17:27 2006 -0600
43698 Make fsl-i2c not conflict with SOFT I2C
43700 Signed-off-by: Timur Tabi <timur@freescale.com>
43702 commit 14198bf768fdc958e3c1afd2404e5262208e98d7
43703 Author: Joakim Tjernlund <Joakim.Tjernlund@transmode.se>
43704 Date: Tue Nov 28 16:17:18 2006 -0600
43706 Fix I2C master address initialization.
43708 Signed-off-by: Timur Tabi <timur@freescale.com>
43710 commit cf3d045e51ca8dcc6cf759827140861d6ac25c04
43711 Author: Kim Phillips <kim.phillips@freescale.com>
43712 Date: Tue Nov 28 23:31:19 2006 -0600
43714 Assign maintainers for mpc8349emds and mpc8360emds
43716 Dave for mpc8360emds, and me for mpc8349emds.
43718 commit 1aa934c81b77f2080d3ca4b226eab67b17a33961
43719 Author: Kim Phillips <kim.phillips@freescale.com>
43720 Date: Tue Nov 28 23:28:33 2006 -0600
43722 Eliminate gcc 4 'used uninitialized' warnings in drivers/qe/uccf.c
43724 give initial values for reg_num, shift, p_cmxucr in ucc_set_clk_src
43725 since they are passed by reference to ucc_get_cmxucr_reg and assigned.
43727 commit e857a5bdb3954b896c0920cb9d8d2b1b9c107ce5
43728 Author: Timur Tabi <timur@freescale.com>
43729 Date: Tue Nov 28 12:09:35 2006 -0600
43731 mpc83xx: Miscellaneous code style fixes
43733 Implement various code style fixes and similar changes.
43735 Signed-off-by: Timur Tabi <timur@freescale.com>
43737 commit e59581c56ab5d6e0207ddac3b2c1d55cb36ec706
43738 Author: Stefan Roese <sr@denx.de>
43739 Date: Tue Nov 28 17:55:49 2006 +0100
43741 [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.
43743 This patch adds the code and configuration necessary to boot with an
43744 arch/powerpc Linux kernel.
43746 Signed-off-by: Grant Likely <grant.likely@gmail.com>
43747 Acked-by: Jon Loeliger <jdl@freescale.com>
43749 commit e732faec95a83cb468b4850ae807c8301dde8f6a
43750 Author: Stefan Roese <sr@denx.de>
43751 Date: Tue Nov 28 16:09:24 2006 +0100
43753 [PATCH] PPC4xx: 440SP Rev. C detection added
43755 Signed-off-by: Stefan Roese <sr@denx.de>
43757 commit e7f3e9ff01fbd7fa72eb42a9675fbed6bc4736b0
43758 Author: Stefan Roese <sr@denx.de>
43759 Date: Tue Nov 28 11:04:45 2006 +0100
43761 [PATCH] nand: Fix patch merge problem
43763 Signed-off-by: Stefan Roese <sr@denx.de>
43765 commit 58e3b14c18ed3288ceef8d086946dbf3df64ccf2
43766 Author: Stefan Roese <sr@denx.de>
43767 Date: Tue Nov 28 11:04:45 2006 +0100
43769 [PATCH] nand: Fix patch merge problem
43771 Signed-off-by: Stefan Roese <sr@denx.de>
43773 commit 4f4b602ec7524a032bdf3c6d28c7f525a4a67eaa
43774 Author: Wolfgang Denk <wd@pollux.denx.de>
43775 Date: Mon Nov 27 22:53:53 2006 +0100
43779 commit f6e495f54cdb8fe340b9c03deab40ad746d52fae
43780 Author: Stefan Roese <sr@denx.de>
43781 Date: Mon Nov 27 17:43:25 2006 +0100
43783 [PATCH] 4xx_enet.c: Correct the setting of zmiifer register
43785 Patch below corrects the setting of the zmiifer register, it was
43786 overwritting the register rather than ORing the settings.
43788 Signed-off-by: Neil Wilson <NWilson@airspan.com>
43789 Signed-off-by: Stefan Roese <sr@denx.de>
43791 commit d1a72545296800b7e219f93104ad5836f0003d66
43792 Author: Stefan Roese <sr@denx.de>
43793 Date: Mon Nov 27 17:34:10 2006 +0100
43795 [PATCH] Select NAND embedded environment from board configuration
43797 The current NAND Bootloader setup forces the environment
43798 variables to be in line with the bootloader. This change
43799 enables the configuration to be made in the board include
43800 file instead so that it can be individually enabled.
43802 Signed-off-by: Nick Spence <nick.spence@freescale.com>
43803 Signed-off-by: Stefan Roese <sr@denx.de>
43805 commit 15784862857c3c2214498defcfed84ff137fb81e
43806 Author: Stefan Roese <sr@denx.de>
43807 Date: Mon Nov 27 17:22:19 2006 +0100
43809 [PATCH] nand_wait() timeout fixes
43811 Two fixes for the nand_wait() function in
43812 drivers/nand/nand_base.c:
43814 1. Use correct timeouts. The original timeouts in Linux
43815 source are 400ms and 20ms not 40s and 20s
43817 2. Return correct error value in case of timeout. 0 is
43820 Signed-off-by: Rui Sousa <rui.sousa@laposte.net>
43821 Signed-off-by: Stefan Roese <sr@denx.de>
43823 commit da5553b095bf04f4f109ad7e565dae3aba47b230
43824 Author: Stefan Roese <sr@denx.de>
43825 Date: Mon Nov 27 17:04:06 2006 +0100
43827 [PATCH] Allow CONFIG_OF_FLAT_TREE to boot a non-arch/powerpc kernel
43829 This patch allows an arch/ppc kernel to be booted by just passing 1 or 2
43830 arguments to bootm. It removes the getenv("disable_of") test that used
43831 to be used for this purpose.
43833 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
43834 Acked-by: Jon Loeliger <jdl@freescale.com>
43836 commit a9398e018593782c5fa7d0741955fc1256b34c1e
43837 Author: Wolfgang Denk <wd@pollux.denx.de>
43838 Date: Mon Nov 27 15:32:42 2006 +0100
43840 Minor code cleanup. Update CHANGELOG.
43842 commit 1729b92cde575476684bffe819d0b7791b57bff2
43843 Author: Stefan Roese <sr@denx.de>
43844 Date: Mon Nov 27 14:52:04 2006 +0100
43846 [PATCH] 4xx: Fix problem with board specific reset code (now for real)
43848 Signed-off-by: Stefan Roese <sr@denx.de>
43850 commit cc5ee8a92a0e3ca6f727af71b8fd206460c7afd7
43851 Author: Stefan Roese <sr@denx.de>
43852 Date: Mon Nov 27 14:49:51 2006 +0100
43854 [PATCH] alpr: remove unused board specific flash driver
43856 Signed-off-by: Stefan Roese <sr@denx.de>
43858 commit 1f94d162e2b5f0edc28d9fb11482502c44d218e1
43859 Author: Stefan Roese <sr@denx.de>
43860 Date: Mon Nov 27 14:48:41 2006 +0100
43862 [PATCH] 4xx: Fix problem with board specific reset code
43864 Signed-off-by: Stefan Roese <sr@denx.de>
43866 commit ec0c2ec725aec9524a177a77ce75559e644a931a
43867 Author: Stefan Roese <sr@denx.de>
43868 Date: Mon Nov 27 14:46:06 2006 +0100
43870 [PATCH] Remove testing 4xx enet PHY setup
43872 Signed-off-by: Stefan Roese <sr@denx.de>
43874 commit 1c2ce2262069510f31c7d3fd7efd3d58b8c0c148
43875 Author: Stefan Roese <sr@denx.de>
43876 Date: Mon Nov 27 14:12:17 2006 +0100
43878 [PATCH] Update Prodrive ALPR board support (440GX)
43880 Signed-off-by: Stefan Roese <sr@denx.de>
43882 commit 58b485776698c3d71ec5a215e392123b4c15afa3
43883 Author: Markus Klotzbuecher <mk@denx.de>
43884 Date: Mon Nov 27 11:51:21 2006 +0100
43886 Add a small README with information on the generic ohci driver.
43888 commit ae3b770e4eae8e98b6e9e29662e18c47fdf0171f
43889 Author: Markus Klotzbuecher <mk@denx.de>
43890 Date: Mon Nov 27 11:46:46 2006 +0100
43892 Fix some endianness issues related to the generic ohci driver
43894 commit 7b59b3c7a8ce2e4b567abf99c1cd667bf35b9418
43895 Author: Markus Klotzbuecher <mk@denx.de>
43896 Date: Mon Nov 27 11:44:58 2006 +0100
43898 Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be able
43899 to choose between the old and the generic OHCI drivers.
43901 commit 53e336e9ffc51035bdc4e5867631b3378761b4df
43902 Author: Markus Klotzbuecher <mk@denx.de>
43903 Date: Mon Nov 27 11:43:09 2006 +0100
43905 Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driver
43906 and adapted board configs TQM5200 and yosemite accordingly. This commit
43907 also makes the maximum number of root hub ports configurable
43908 (CFG_USB_OHCI_MAX_ROOT_PORTS).
43910 commit 78d620ebb5871d252270dedfad60c6568993b780
43911 Author: Wolfgang Denk <wd@atlas.denx.de>
43912 Date: Thu Nov 23 22:58:58 2006 +0100
43914 Updates for TQM5200 modules:
43915 - fix off-by-one error in board/tqm5200/cam5200_flash.c error message
43916 - simplify "udate" definitions
43918 commit 2053283304eeddf250d109e6791eb6fa4cad14f7
43919 Author: Stefan Roese <sr@denx.de>
43920 Date: Wed Nov 22 13:20:50 2006 +0100
43922 [PATCH] PPC4xx start.S: Fix for processor errata
43924 Fixed cpu/ppc4xx/start.S for 440EPx Errata: further corrects PPC440EPx
43925 errata 1.12: 440_33 by moving patch up in code.
43927 Signed-off-by: Jeff Mann <mannj@embeddedplanet.com>
43928 Signed-off-by: Stefan Roese <sr@denx.de>
43930 commit 4ef6251403f637841000e0fef9e832aa01339822
43931 Author: Stefan Roese <sr@denx.de>
43932 Date: Mon Nov 20 20:39:52 2006 +0100
43934 [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASH
43936 Signed-off-by: Stefan Roese <sr@denx.de>
43938 commit e4bbd8da164b976d38616bd9c69c5e86e193cdf0
43939 Author: Wolfgang Denk <wd@pollux.denx.de>
43940 Date: Mon Nov 20 10:28:30 2006 +0100
43944 commit 260421a21e934a68d31fb6125b0fbd2631a8ca20
43945 Author: Stefan Roese <sr@denx.de>
43946 Date: Mon Nov 13 13:55:24 2006 +0100
43948 [PATCH] CFI driver AMD Command Set Top boot geometry reversal, etc. [Updated]
43950 * Adds support for AMD command set Top Boot flash geometry reversal
43951 * Adds support for reading JEDEC Manufacturer ID and Device ID
43952 * Adds support for displaying command set, manufacturer id and
43953 device ids (flinfo)
43954 * Makes flinfo output to be consistent when CFG_FLASH_EMPTY_INFO defined
43955 * Removes outdated change history (refer to git log instead)
43957 Signed-off-by: Tolunay Orkun <listmember@orkun.us>
43958 Signed-off-by: Stefan Roese <sr@denx.de>
43960 commit b21b511d4c50408f4853f46f06b601272196223f
43961 Author: Wolfgang Denk <wd@pollux.denx.de>
43962 Date: Sun Nov 12 21:13:23 2006 +0100
43966 commit ce3f1a40c507afbab06c5eb58ccdc6713eda3245
43967 Author: Bartlomiej Sieka <tur@semihalf.com>
43968 Date: Sat Nov 11 22:48:22 2006 +0100
43970 Disable the watchdog in the default config for the V38B board.
43972 commit 44a47e6db2694841211f1c8fdbafd36992e9cd1a
43973 Author: Bartlomiej Sieka <tur@semihalf.com>
43974 Date: Sat Nov 11 22:43:00 2006 +0100
43976 Change the GPIO pin multiplexing configuration for V38B. The USB GPIO pin
43977 group is enabled for USB earlier (in cpu_init_f() instead of
43978 usb_lowlevel_init()).
43980 commit 91650b3e4de688038d4f71279c44858e3e2c6870
43981 Author: Wolfgang Denk <wd@pollux.denx.de>
43982 Date: Mon Nov 6 17:06:36 2006 +0100
43984 Sequential accesses to non-existent memory must be synchronized,
43985 at least on G2 cores.
43987 This fixes get_ram_size() problems on MPC5200 Rev. B boards.
43989 commit be5e61815d5a1fac290ce9c0ef09cb6a8e4288fa
43990 Author: Timur Tabi <timur@freescale.com>
43991 Date: Fri Nov 3 19:15:00 2006 -0600
43993 mpc83xx: Update 83xx to use fsl_i2c.c
43995 Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete
43996 cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files.
43997 Added multiple I2C bus support to fsl_i2c.c.
43999 Signed-off-by: Timur Tabi <timur@freescale.com>
44001 commit d239d74b1c937984bc519083a8e7de373a390f06
44002 Author: Timur Tabi <timur@freescale.com>
44003 Date: Fri Nov 3 12:00:28 2006 -0600
44005 mpc83xx: Replace CFG_IMMRBAR with CFG_IMMR
44007 Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx
44008 tree matches the other 8xxx trees.
44010 Signed-off-by: Timur Tabi <timur@freescale.com>
44012 commit f7fb2e703ec9688541416962724adff70a7322cb
44013 Author: Kim Phillips <kim.phillips@freescale.com>
44014 Date: Thu Nov 2 19:47:11 2006 -0600
44016 mpc83xx: Lindent and clean up cpu/mpc83xx/speed.c
44018 commit 90f30a710a3c619b5405860a686c4ddfc495d4b6
44019 Author: Dave Liu <daveliu@freescale.com>
44020 Date: Thu Nov 2 18:05:50 2006 -0600
44022 mpc83xx: Fix the incorrect dcbz operation
44024 The 834x rev1.x silicon has one CPU5 errata.
44026 The issue is when the data cache locked with
44027 HID0[DLOCK], the dcbz instruction looks like no-op inst.
44029 The right behavior of the data cache is when the data cache
44030 Locked with HID0[DLOCK], the dcbz instruction allocates
44033 The 834x rev3.0 and later and 8360 have not this bug inside.
44035 So, when 834x rev3.0/8360 are working with ECC, the dcbz
44036 instruction will corrupt the stack in cache, the processor will
44039 However, the 834x rev1.x can work with ECC with these code,
44040 because the sillicon has this cache bug. The dcbz will not
44041 corrupt the stack in cache.
44042 Really, it is the fault code running on fault sillicon.
44044 This patch fix the incorrect dcbz operation. Instead of
44045 CPU FP writing to initialise the ECC.
44048 * Fix the incorrect dcbz operation instead of CPU FP
44049 writing to initialise the ECC memory. Otherwise, it
44050 will corrupt the stack in cache, The processor will checkstop
44053 Signed-off-by: Dave Liu <daveliu@freescale.com>
44055 commit bf0b542d6773a5a1cbce77691f009b06d9aeb57d
44056 Author: Kim Phillips <kim.phillips@freescale.com>
44057 Date: Wed Nov 1 00:10:40 2006 -0600
44059 mpc83xx: add OF_FLAT_TREE bits to 83xx boards
44061 add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and
44062 STDOUT_PATH configuration bits to mpc8349emds,
44063 mpc8349itx, and mpc8360emds board code.
44065 redo environment to use bootm with the fdtaddr
44066 for booting ARCH=powerpc kernels by default,
44067 and provide default fdtaddr values.
44069 commit 48041365b3420589ad464ebc7752e0053538b729
44070 Author: Kim Phillips <kim.phillips@freescale.com>
44071 Date: Wed Nov 1 00:07:25 2006 -0600
44073 mpc83xx: change ft code to modify local-mac-address property
44075 Update 83xx OF code to update local-mac-address properties
44076 for ethernet instead of the obsolete 'address' property.
44078 commit 9ca880a250870a7d55754291b5591d2b5fe89b54
44079 Author: Timur Tabi <timur@freescale.com>
44080 Date: Tue Oct 31 21:23:16 2006 -0600
44082 mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and MPC8360EMDS
44084 This patch also adds an improved I2C set_speed(), which handles all clock
44087 Signed-off-by: Timur Tabi <timur@freescale.com>
44089 commit ac4b5622ce050b5ee1e154b98df630d778661632
44090 Author: Dave Liu <daveliu@freescale.com>
44091 Date: Tue Oct 31 19:54:59 2006 -0600
44093 mpc83xx: add the README.mpc8360emds
44095 add doc/README.mpc8360emds to accompany the new board support
44097 commit 7737d5c658c606f999dfbe3e86b0fed49e5c50ef
44098 Author: Dave Liu <daveliu@freescale.com>
44099 Date: Fri Nov 3 12:11:15 2006 -0600
44101 mpc83xx: add QE ethernet support
44103 this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
44105 commit 5f8204394e39bbe8cd9f08b8f8d145b6c01f7c73
44106 Author: Dave Liu <daveliu@freescale.com>
44107 Date: Fri Nov 3 19:33:44 2006 -0600
44109 mpc83xx: Add MPC8360EMDS basic board support
44111 Add support for the Freescale MPC8360EMDS board.
44112 Includes DDR, DUART, Local Bus, PCI.
44114 commit 23892e49352de74f7fac36ff90bb1be143d195e3
44115 Author: Dave Liu <daveliu@freescale.com>
44116 Date: Tue Oct 31 19:30:40 2006 -0600
44118 mpc83xx: add the QUICC Engine (QE) immap file
44120 common QE immap file. Also required for 8360.
44122 commit b701652a4992bdcc62fb1a6038a85beef9e55da4
44123 Author: Dave Liu <daveliu@freescale.com>
44124 Date: Tue Oct 31 19:25:38 2006 -0600
44126 mpc83xx: Add 8360 specifics to 83xx immap
44128 Mainly add QE device dependencies, with appropriate 8360 protection.
44131 commit 988833324a7fda482c8ac3ca23eb539f8232e404
44132 Author: Timur Tabi <timur@freescale.com>
44133 Date: Tue Oct 31 19:14:41 2006 -0600
44135 mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITX
44137 PREREQUISITE PATCHES:
44139 * This patch can only be applied after the following patches have been applied:
44141 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2"
44142 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2"
44146 * For the 8349E-mITX, fix some size values in pci_init_board(), enable
44147 the clock for the 2nd USB board (Linux kernel will hang otherwise),
44148 and fix the CONFIG_BOOTARGS macro.
44150 Signed-off-by: Timur Tabi <timur@freescale.com>
44152 commit 2ad6b513b31070bd0c003792ed1c3e7f5d740357
44153 Author: Timur Tabi <timur@freescale.com>
44154 Date: Tue Oct 31 18:44:42 2006 -0600
44156 mpc83xx: Add support for the MPC8349E-mITX
44158 PREREQUISITE PATCHES:
44160 * This patch can only be applied after the following patches have been applied:
44162 1) DNX#2006090742000024 "Add support for multiple I2C buses"
44163 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x"
44164 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c"
44165 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems"
44166 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems"
44170 * Add support for the Freescale MPC8349E-mITX reference design platform.
44171 The second TSEC (Vitesse 7385 switch) is not supported at this time.
44173 Signed-off-by: Timur Tabi <timur@freescale.com>
44175 commit 183da6d9b446cc12123455844ad1187e2375626f
44176 Author: Ben Warren <bwarren@qstreams.com>
44177 Date: Tue Sep 12 10:15:53 2006 -0400
44179 Additional MPC8349 support for multibus i2c
44183 Here is a patch for a file that was accidentally left out of a previous
44186 It accompanies the patch with ticket DNX#2006090742000024
44189 Change PCI initialization to use new multi-bus I2C API.
44194 commit b24f119d672b709d153ff2ac091d4aa63ec6877d
44195 Author: Ben Warren <bwarren@qstreams.com>
44196 Date: Thu Sep 7 16:51:04 2006 -0400
44198 Multi-bus I2C implementation of MPC834x
44202 Attached is a patch implementing multiple I2C buses on the MPC834x CPU
44203 family and the MPC8349EMDS board in particular.
44204 This patch requires Patch 1 (Add support for multiple I2C buses).
44205 Testing was performed on a 533MHz board.
44207 /*** Note: This patch replaces ticket DNX#2006083042000027 ***/
44209 Signed-off-by: Ben Warren <bwarren@qstreams.com>
44212 Implemented driver-level code to support two I2C buses on the
44213 MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds
44214 are 50kHz, 100kHz and 400kHz on each bus.
44219 commit bb99ad6d8257bf828f150d40f507b30d80a4a7ae
44220 Author: Ben Warren <bwarren@qstreams.com>
44221 Date: Thu Sep 7 16:50:54 2006 -0400
44223 Add support for multiple I2C buses
44227 Attached is a patch providing support for multiple I2C buses at the
44228 command level. The second part of the patch includes an implementation
44229 for the MPC834x CPU and MPC8349EMDS board.
44231 /*** Note: This patch replaces ticket DNX#2006083042000018 ***/
44233 Signed-off-by: Ben Warren <bwarren@qstreams.com>
44237 1. Include new 'i2c' command (based on USB implementation) using
44238 CONFIG_I2C_CMD_TREE.
44240 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that
44241 the commands to change bus number and speed are only available under the
44242 new 'i2c' command mentioned in the first bullet.
44244 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus
44245 systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form
44246 of an array of bus-device pairs. Otherwise, it is an array of uchar.
44249 Added new 'i2c' master command for all I2C interaction. This is
44250 conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for
44251 setting I2C bus speed as well as changing the active bus if the board
44252 has more than one (conditionally compiled with
44253 CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses.
44259 commit bed85caf872714ebf53013967a695c9d63acfc68
44260 Author: Timur Tabi <timur@freescale.com>
44261 Date: Tue Oct 31 18:13:36 2006 -0600
44263 mpc83xx: Add support for Errata DDR6 on MPC 834x systems
44267 * Errata DDR6, which affects all current MPC 834x processors, lists changes
44268 required to maintain compatibility with various types of DDR memory. This
44269 patch implements those changes.
44271 Signed-off-by: Timur Tabi <timur@freescale.com>
44273 commit afd6e470f639883002c7c59d562690a5cb0f4865
44274 Author: Timur Tabi <timur@freescale.com>
44275 Date: Wed Oct 25 18:45:23 2006 -0500
44277 mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for it
44279 commit 31068b7c4abeefcb2c8fd4fbeccc8ec6c6d0475a
44280 Author: Timur Tabi <timur@freescale.com>
44281 Date: Tue Aug 22 17:07:00 2006 -0500
44283 mpc83xx: Add support for variable flash memory sizes on 83xx systems
44287 * On 83xx systems, use the CFG_FLASH_SIZE macro to program the LBC local access
44288 window registers, instead of using a hard-coded value of 8MB.
44290 Signed-off-by: Timur Tabi <timur@freescale.com>
44292 commit 2fc34ae66e73fa7841d1a006dc1b5dcbc1f78965
44293 Author: Tanya Jiang <tanya.jiang@freescale.com>
44294 Date: Thu Aug 3 18:38:13 2006 +0800
44296 mpc83xx: Unified TQM834x variable names with 83xx and consolidated macros
44298 Unified TQM834x variable names with 83xx and consolidated macro
44299 in preparation for the 8360 and other upcoming 83xx devices.
44301 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
44303 commit f6eda7f80ccc13d658020268c507d7173cf2e8aa
44304 Author: Dave Liu <daveliu@freescale.com>
44305 Date: Wed Oct 25 14:41:21 2006 -0500
44307 mpc83xx: Changed to unified mpx83xx names and added common 83xx changes
44309 Incorporated the common unified variable names and the changes in preparation
44310 for releasing mpc8360 patches.
44312 Signed-off-by: Dave Liu <daveliu@freescale.com>
44314 commit 3894c46c27c64891f93ac04edde86a9fa9758d92
44315 Author: Tanya Jiang <tanya.jiang@freescale.com>
44316 Date: Thu Aug 3 18:36:02 2006 +0800
44318 mpc83xx: Fix missing build for mpc8349emds pci.c
44320 Make pci build for mpc8349emds
44322 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
44324 commit 09a81ff740b29deea1e2ab08a3c2ac136c2e6219
44325 Author: Tanya Jiang <tanya.jiang@freescale.com>
44326 Date: Thu Aug 3 18:39:49 2006 +0800
44328 mpc83xx: Removed unused file resetvec.S for mpc83xx cpu
44330 Removed unused file resetvec.S for mpc83xx cpu
44332 Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
44334 commit 04f899fc465c3e44f2b55ecc70618f5696fc0ddf
44335 Author: Nick Spence <Nick.Spence@freescale.com>
44336 Date: Sat Sep 30 00:32:59 2006 -0700
44338 NAND Flash verify across block boundaries
44340 This patch addresses a problem when CONFIG_MTD_NAND_VERIFY_WRITE is
44342 and the write crosses a block boundary. The pointer to the verification
44343 buffer (bufstart) is not being updated to reflect the starting of the
44345 block so the verification of the second block fails.
44349 * Fix NAND FLASH page verification across block boundaries
44351 commit f484dc791a3932537213c43c654cc1295c64b84c
44352 Author: Nick Spence <nick.spence@freescale.com>
44353 Date: Thu Sep 7 07:39:46 2006 -0700
44355 Added RGMII support to the TSECs and Marvell 881111 Phy
44357 Added a phy initialization to adjust the RGMII RX and TX timing
44358 Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode
44360 Signed-off-by: Nick Spence <nick.spence@freescale.com>
44362 commit 4831c8b8a97799da77923d6bbb4c260c0d45521c
44363 Author: roy zang <tie-fei.zang@freescale.com>
44364 Date: Fri Nov 3 13:10:00 2006 +0800
44366 Remove some unused CFG define.
44367 undef CFG_DRAM_TEST
44369 commit 99c09c4dec34f77c243bf51bea532e3f339410ad
44370 Author: roy zang <tie-fei.zang@freescale.com>
44371 Date: Fri Nov 3 13:07:36 2006 +0800
44373 Change the TEXT_BASE from 0xFFF00000 to 0xFF000000.
44374 Both work. 0xFF000000 seems more reasonable.
44376 commit c59200443072353044aa4bf737a5a60f9a9af231
44377 Author: Wolfgang Denk <wd@pollux.denx.de>
44378 Date: Thu Nov 2 15:15:01 2006 +0100
44380 Release U-Boot 1.1.6
44382 commit c1fbe4103a0d6c8957f912af902d705ba67836f2
44383 Author: roy zang <tie-fei.zang@freescale.com>
44384 Date: Thu Nov 2 19:14:48 2006 +0800
44386 This patch comes from Yuli's posted patch on 8/8/2006
44387 titled "CFI Driver Little-Endian write Issue".
44389 http://sourceforge.net/mailarchive/message.php?msg_id=36311999
44391 If that patch applied, please discard this one.
44392 Until now , I do not see his patch is applied. So please apply this one.
44394 Signed-off-by: Yuli Barcohen <yuli@arabellasw.com>
44395 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44397 commit b825f158e449e1e9cf74c08e572955e122394c96
44398 Author: roy zang <tie-fei.zang@freescale.com>
44399 Date: Thu Nov 2 19:12:31 2006 +0800
44401 Tsi108 on chip i2c support.
44403 The i2c Interface provides a master-only, serial interface that can be
44404 used for initializing Tsi108/Tsi109 registers from an EEPROM after a
44407 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44408 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44410 commit 9226e7d6f09b9a1ac074cd918c81225a4689bba8
44411 Author: roy zang <tie-fei.zang@freescale.com>
44412 Date: Thu Nov 2 19:11:06 2006 +0800
44414 Tsi108 on chip pci controller support.
44416 If there is no pci card, the tsi108/109 pci configure read will
44417 cause a machine check exception to the processor. PCI error should
44418 also be cleared after the read.
44420 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44421 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44423 commit d1927cee977126e547ceeba23e4f978f377cfb8f
44424 Author: roy zang <tie-fei.zang@freescale.com>
44425 Date: Thu Nov 2 19:08:55 2006 +0800
44427 Tundra tsi108 on chip Ethernet controller support.
44429 The following is a brief description of the Ethernet controller:
44430 The Tsi108/9 Ethernet Controller connects Switch Fabric to two independent
44431 Gigabit Ethernet ports,E0 and E1. It uses a single Management interface
44432 to manage the two physical connection devices (PHYs). Each Ethernet port
44433 has its own statistics monitor that tracks and reports key interface
44434 statistics. Each port supports a 256-entry hash table for address
44435 filtering. In addition, each port is bridged to the Switch Fabric
44436 through a 2-Kbyte transmit FIFO and a 4-Kbyte Receive FIFO.
44438 Each Ethernet port also has a pair of internal Ethernet DMA channels to
44439 support the transmit and receive data flows. The Ethernet DMA channels
44440 use descriptors set up in memory, the memory map of the device, and
44441 access via the Switch Fabric. The Ethernet Controller?s DMA arbiter
44442 handles arbitration for the Switch Fabric. The Controller also
44443 has a register businterface for register accesses and status monitor
44446 The PMD (Physical Media Device) interface operates in MII, GMII, or TBI
44447 modes. The MII mode is used for connecting with 10 or 100 Mbit/s PMDs.
44448 The GMII and TBI modes are used to connect with Gigabit PMDs. Internal
44449 data flows to and from the Ethernet Controller through the Switch Fabric.
44451 Each Ethernet port uses its transmit and receive DMA channels to manage
44452 data flows through buffer descriptors that are predefined by the
44453 system (the descriptors can exist anywhere in the system memory map).
44454 These descriptors are data structures that point to buffers filled
44455 with data ready to transmit over Ethernet, or they point to empty
44456 buffers ready to receive data from Ethernet.
44458 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44459 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44461 commit 78aa0c3427f3ecdeb34aabfbbe2dd23b6ad8f40e
44462 Author: roy zang <tie-fei.zang@freescale.com>
44463 Date: Thu Nov 2 19:01:33 2006 +0800
44465 Tundra tsi108 header file.
44467 The Tundra Semiconductor Corporation (Tundra) Tsi108 is a host bridge for
44468 PowerPC processors that offers numerous system interconnect options for
44469 embedded application designers. The Tsi108 can interconnect 60x or
44470 MPX processors to PCI/X peripherals, DDR2-400 memory, Gigabit Ethernet,
44471 and Flash. Provided the macro define for tsi108 chip.
44473 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44474 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44476 commit 87c4db09699c6b89176b31004afcb83eb1585d47
44477 Author: roy zang <tie-fei.zang@freescale.com>
44478 Date: Thu Nov 2 18:59:15 2006 +0800
44480 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
44481 mpc7448hpc2 board support high level code:tsi108 init + mpc7448hpc2.
44483 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44484 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44486 commit 27801b8ab11c61b577e45742a515bb3b23b80241
44487 Author: roy zang <tie-fei.zang@freescale.com>
44488 Date: Thu Nov 2 18:57:21 2006 +0800
44490 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
44491 Make ,config.mk and link file for the mpc7448hpc2 board.
44493 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44494 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44496 commit c6411c0c3bbc79f9ba8aef58296a42d8f9d8a0a6
44497 Author: roy zang <tie-fei.zang@freescale.com>
44498 Date: Thu Nov 2 18:55:04 2006 +0800
44500 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
44501 The mpc7448hpc2 board support header file.
44503 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44504 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44506 commit 625bb5ddb50b243f931262ca8c46956409471917
44507 Author: roy zang <tie-fei.zang@freescale.com>
44508 Date: Thu Nov 2 18:52:21 2006 +0800
44510 Add mpc7448hpc2 (mpc7448 + tsi108) board associated code support.
44511 The mpc7448hpc2 board support low level assemble language init code.
44513 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44514 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44516 commit 4c52783b3d024e153c4972b97332e314bc3bdc46
44517 Author: roy zang <tie-fei.zang@freescale.com>
44518 Date: Thu Nov 2 18:49:51 2006 +0800
44520 General code modification for mpc7448hpc2 board support.
44521 1. Add 7447A and 7448 processor support.
44522 2. Add the following flags.
44524 CFG_CONFIG_BUS_CLK : If the 74xx bus frequency can be configured dynamically
44525 (such as by switch on board), this flag should be set.
44527 CFG_EXCEPTION_AFTER_RELOCATE: If an exception occurs after the u-boot
44528 relocates to RAM, this flag should be set.
44530 CFG_SERIAL_HANG_IN_EXCEPTION: If the print out function will cause the
44531 system hang in exception, this flag should be set.
44533 There is a design issue for tsi108/109 pci configure read. When pci scan
44534 the slots, if there is no pci card, the tsi108/9 will cause a machine
44535 check exception for mpc7448 processor.
44537 Signed-off-by: Alexandre Bounine <alexandreb@tundra.com>
44538 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44540 commit 69366bf42f22d67efce8da3f8c40a43d4a3c2695
44541 Author: roy zang <tie-fei.zang@freescale.com>
44542 Date: Thu Nov 2 18:34:47 2006 +0800
44544 Add README file for mpc7448hpc2 board.
44545 Signed-off-by: Roy Zang <tie-fei.zang@freescale.com>
44547 commit 25721b5cec2be4bce79cfade17ec8f6aa1e67526
44548 Author: Bartlomiej Sieka <tur@semihalf.com>
44549 Date: Wed Nov 1 02:04:38 2006 +0100
44551 Finish up support for MarelV38B board
44552 - add watchdog support
44553 - enable GPIO_WKUP_7 pin for input
44556 commit ffa150bc90c943ca265170bd1be3f293674dd5c7
44557 Author: Bartlomiej Sieka <tur@semihalf.com>
44558 Date: Wed Nov 1 01:45:46 2006 +0100
44560 - Fix issues related to the use of ELDK 4 when compiling for MarelV38B:
44561 * remove warnings when compiling ethaddr.c
44562 * adjust linker script (fixes a crash resulting from incorrect
44563 definition of __u_boot_cmd_start)
44564 - Some MarelV38B code cleanup.
44566 commit dae80f3caf9754a6dd3ddf3cf903d0c46cbd4385
44567 Author: Bartlomiej Sieka <tur@semihalf.com>
44568 Date: Wed Nov 1 01:38:16 2006 +0100
44570 - Add MPC5XXX register definition MPC5XXX_WU_GPIO_DATA_I and change the
44571 MPC5XXX_WU_GPIO_DATA macro to MPC5XXX_WU_GPIO_DATA_O (per MPC5200 User's
44572 Manual). Replace the uses of MPC5XXX_WU_GPIO_DATA with
44573 MPC5XXX_WU_GPIO_DATA_O for affected boards.
44575 - Add defintions for some MPC5XXX GPIO pins.
44577 commit 82d9c9ec29a1bec1b03ba616425ebaed231072c8
44578 Author: Bartlomiej Sieka <tur@semihalf.com>
44579 Date: Wed Nov 1 01:34:29 2006 +0100
44581 Changed MarelV38B board make target to lowercase. Config file cleanup.
44583 commit 1954be6e9c9421b45d0a9d05b10356acc7563150
44584 Author: Wolfgang Denk <wd@pollux.denx.de>
44585 Date: Sun Oct 29 01:03:51 2006 +0200
44587 Automatically adjust ARFLAGS so "make -s" is really silent.
44589 commit fae684e89844856383bdf101440889557df3e6b1
44590 Author: Stefan Roese <sr@denx.de>
44591 Date: Sat Oct 28 16:45:00 2006 +0200
44593 [PATCH] omap925.c: Remove unused functions
44595 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
44596 Signed-off-by: Stefan Roese <sr@denx.de>
44598 commit 1265581502ab8ea8c08e8edbe9bf64fbd62fd776
44599 Author: Stefan Roese <sr@denx.de>
44600 Date: Sat Oct 28 17:12:58 2006 +0200
44602 [PATCH] Add some missing machtypes for netstar & voiceblue boards
44604 Use MACH_TYPE_NETSTAR and MACH_TYPE_VOICEBLUE defines instead of
44607 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
44608 Signed-off-by: Stefan Roese <sr@denx.de>
44610 commit 856f054410cef52d868feb330168b2a4c4091328
44611 Author: Stefan Roese <sr@denx.de>
44612 Date: Sat Oct 28 15:55:52 2006 +0200
44614 [PATCH] NAND: Partition name support added to NAND subsystem
44616 chpart, nboot and NAND subsystem related commands now accept also partition
44617 name to specify offset.
44619 Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
44620 Signed-off-by: Stefan Roese <sr@denx.de>
44622 commit 07a69a18c2ecfda904231fdf23e2523ea7792eb6
44623 Author: Wolfgang Denk <wd@pollux.denx.de>
44624 Date: Sat Oct 28 02:29:44 2006 +0200
44628 commit 2751a95abd1b96911081c357e96a12fa97b40dee
44629 Author: Wolfgang Denk <wd@pollux.denx.de>
44630 Date: Sat Oct 28 02:29:14 2006 +0200
44632 Enable commandline editing and hush shell on all TQM boards.
44634 commit 8078f1a5f63a739b8533478f6c2b62fb1e2f79d7
44635 Author: Wolfgang Denk <wd@pollux.denx.de>
44636 Date: Sat Oct 28 02:28:02 2006 +0200
44638 README says CFG_AUTO_COMPLETE, but ocde uses CONFIG_AUTO_COMPLETE
44640 commit 471a7be7a042e95e440f5de969c9765214ae8d6e
44641 Author: Wolfgang Denk <wd@denx.de>
44642 Date: Sat Oct 28 01:14:32 2006 +0200
44644 Check for illegal character '=' in environment variable names.
44646 Make sure the string passed as variable name does not contain a '='
44647 character. This not only prevents the common error or typing
44648 "setenv foo=bar" instead of "setenv foo bar", but (more importantly)
44649 also closes a backdoor which allowed to delete write-protected
44650 environment variables, for example by using "setenv ethaddr=".
44652 commit 19973b6ad9863a56f5c5fbcfd90e20ab2490a2c2
44653 Author: Wolfgang Denk <wd@pollux.denx.de>
44654 Date: Sat Oct 28 00:38:39 2006 +0200
44656 Minor code cleanup.
44658 commit e11887a77d81077416a2d1c5e0354916fee8c034
44659 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44660 Date: Thu Oct 26 17:55:31 2006 +0200
44662 Don't pass any debug options directly to the assembler
44664 When passing the -g option to gcc, gcc automatically selects a
44665 suitable --g<format> option to pass on to the assembler.
44666 Thus, there's no point in forcing a specific debug option on the
44667 assembler using the -Wa mechanism.
44669 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44671 commit ea08ff6e14f9ebb8c07cfa79c51ef540eb087393
44672 Author: Jon Loeliger <jdl@freescale.com>
44673 Date: Fri Oct 27 07:47:22 2006 -0500
44675 MPC86xx: Cleaned up unused and conditionally used local variables.
44677 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44679 commit d38936cdae46bfd2623ff83f6ce9b616d36ab0f9
44680 Author: Wolfgang Denk <wd@pollux.denx.de>
44681 Date: Fri Oct 27 11:55:21 2006 +0200
44683 Fix "ar" flags in some Makefiles to allow for silent "make -s"
44685 commit 4653f91c13ed51c21cc4c3855745d69a3fb1817f
44686 Author: Ben Warren <bwarren@qstreams.com>
44687 Date: Thu Oct 26 14:38:25 2006 -0400
44689 Fix TSEC driver (now for real): avoid crashes if PHY is not attached
44690 to a TSEC (e.g. a switch is connected via RMII) or
44691 if the PHY is defective/incorrectly configured.
44693 Signed-off-by: Ben Warren <bwarren@qstreams.com>
44695 commit b985b5d6e4fb88f508f7aa0f126c2e27ada2b999
44696 Author: Ben Warren <bwarren@qstreams.com>
44697 Date: Thu Oct 26 14:38:25 2006 -0400
44699 Fix TSEC driver: avoid crashes if PHY is not attached
44700 to a TSEC (e.g. a switch is connected via RMII) or
44701 if the PHY is defective/incorrectly configured.
44703 Signed-off-by: Ben Warren <bwarren@qstreams.com>
44705 commit 2b2a40bebbf1822506e80e631d7253e60f0e0fe6
44706 Author: Wolfgang Denk <wd@pollux.denx.de>
44707 Date: Thu Oct 26 16:24:31 2006 +0200
44711 commit 5e3b0bc19f07ed277d85324ad0427642c8981baf
44712 Author: Haavard Skinnemoen <hskinnemoen@atmel.com>
44713 Date: Wed Oct 25 15:48:59 2006 +0200
44715 Finish up support for the ATSTK1000/ATSTK1002 boards
44717 Add atstk1002_config target to Makefile and move the AVR32 section
44718 down below Blackfin so that it doesn't end up in the middle of
44721 Drop the autogenerated linker script thing for now. Will have to
44722 revisit how to handle chips with different flash and RAM layout
44725 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44727 commit c76f951a747cfb87ba826ef45b5aea82d5b5dbb4
44728 Author: Kumar Gala <galak@kernel.crashing.org>
44729 Date: Tue Oct 24 23:47:37 2006 -0500
44731 Added support for Multi-Image files that contain a device tree
44733 If a Multi-Image file contains a third image we try to use it as a
44734 device tree. The device tree image is assumed to be uncompressed in the
44735 image file. We automatically allocate space for the device tree in memory
44736 and provide an 8k pad to allow more than a reasonable amount of growth.
44738 Additionally, a device tree that was contained in flash will now automatically
44739 get copied to system memory as part of boot. Previously an error was
44740 reported if one tried to boot a device tree that was in flash.
44742 Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
44744 commit 7c52c4b943ff52bbe8796a7e2d3e476ceaf3f512
44745 Author: Wolfgang Denk <wd@denx.de>
44746 Date: Tue Oct 24 21:35:55 2006 +0200
44748 Switch to automatically generated CHANGELOG file.
44749 (use "make CHANGELOG" to update it from time to time)
44751 commit 7ade0c634a979c32fa91a74e8f5775f24651fbe6
44752 Author: Stefan Roese <sr@denx.de>
44753 Date: Tue Oct 24 18:06:48 2006 +0200
44755 Fix bug in PPC440 NAND driver cpu/ppc4xx/ndfc.c
44756 Patch by Stefan Roese, 24 Oct 2006
44758 commit 8ae3b713b2286e0c3213b7802062e4c1599010de
44759 Author: Wolfgang Denk <wd@pollux.denx.de>
44760 Date: Tue Oct 24 17:24:55 2006 +0200
44762 Merge with /home/wd/git/u-boot/master
44764 commit 47a6989c10685d2ab3efcf95228ce50d2a496d3e
44765 Author: Wolfgang Denk <wd@pollux.denx.de>
44766 Date: Tue Oct 24 15:32:57 2006 +0200
44770 commit 3a78e3e75b633ecb6413114ffd11e2f000c4f11e
44771 Author: Wolfgang Denk <wd@pollux.denx.de>
44772 Date: Tue Oct 24 14:51:36 2006 +0200
44774 Move atstk1000 files into vendor specific directory.
44775 Patch by Haavard Skinnemoen, 12 Sep 2006
44777 commit 6ccec4492e77428fd6eafd3dfe94fbdf08e91d37
44778 Author: Wolfgang Denk <wd@pollux.denx.de>
44779 Date: Tue Oct 24 14:42:37 2006 +0200
44781 Add ATSTK1000 and ATSTK1002 board support
44782 Patch by Haavard Skinnemoen, 06 Sep 2006
44784 This patch adds support for the ATSTK1000 with the ATSTK1002 CPU
44787 ATSTK1000 is a full-featured development board for AT32AP CPUs. It
44788 has two ethernet ports, a high quality QVGA LCD panel, a loudspeaker,
44789 and connectors for USART, PS/2, VGA, USB, MMC/SD cards and
44790 CompactFlash cards. For more information, please see this page:
44792 http://www.atmel.com/dyn/products/tools.asp?family_id=682
44794 The ATSTK1002 is a daughterboard for the ATSTK1000 supporting the
44797 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44799 commit f93ae788c3640fcde5db383471d45548ff4060d0
44800 Author: Wolfgang Denk <wd@pollux.denx.de>
44801 Date: Tue Oct 24 14:31:24 2006 +0200
44803 Add common serial driver for Atmel AT32 and AT91 chips
44804 Patch by Haavard Skinnemoen, 06 Sep 2006
44806 This is a first attempt at creating a common serial driver for Atmel
44807 chips. For now, it supports the AT32AP7000 AVR32 chip, but it should
44808 be possible to support AT91RM9200 and other ARM-based chips with some
44809 minor modifications.
44811 There's nothing fundamentally AVR32-specific in this driver, but it
44812 does use some features which are currently only defined for the
44814 * pm_get_clock_freq: Obtain the clock frequency of a given domain
44815 * gd->console_uart: A "struct device" containing information about
44816 register mappings, gpio resources and clocks associated with the
44819 For more information about these features, please see the "AT32AP
44822 commit 72a087e04705c26cad982879ebd06b5281bf825a
44823 Author: Wolfgang Denk <wd@pollux.denx.de>
44824 Date: Tue Oct 24 14:27:35 2006 +0200
44826 Add AT32AP CPU and AT32AP7000 SoC support
44827 Patch by Haavard Skinnemoen, 06 Sep 2006
44829 This patch adds support for the AT32AP CPU family and the AT32AP7000
44830 chip, which is the first chip implementing the AVR32 architecture.
44832 The AT32AP CPU core is a high-performance implementation featuring a
44833 7-stage pipeline, separate instruction- and data caches, and a MMU.
44834 For more information, please see the "AVR32 AP Technical Reference":
44836 http://www.atmel.com/dyn/resources/prod_documents/doc32001.pdf
44838 In addition to this, the AT32AP7000 chip comes with a large set of
44839 integrated peripherals, many of which are shared with the AT91 series
44840 of ARM-based microcontrollers from Atmel. Full data sheet is
44843 http://www.atmel.com/dyn/resources/prod_documents/doc32003.pdf
44845 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44847 commit 7b64fef33c66be648826c0ff9758298ef13d0604
44848 Author: Wolfgang Denk <wd@pollux.denx.de>
44849 Date: Tue Oct 24 14:21:16 2006 +0200
44851 Add AVR32 architecture support
44852 Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
44854 This patch adds common infrastructure code for the Atmel AVR32
44855 architecture. See doc/README.AVR32 for details.
44857 Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
44859 commit 2da2d9a4766063b9848f3a35ad6025499cf87265
44860 Author: Wolfgang Denk <wd@pollux.denx.de>
44861 Date: Tue Oct 24 13:57:33 2006 +0200
44863 Use -g instead of -gstabs in AFLAGS_DEBUG
44864 Patch by Haavard Skinnemoen, 30 Aug 2006
44866 In config.mk, -Wa,-gstabs is unconditionally appended to AFLAGS no
44867 matter what the target's preferred debugging format is. This patch
44868 simply replaces -gstabs with -g, so that the default debugging format
44869 for the architecture is used.
44871 commit 965829872169c2996023840d98e1d85ad148d629
44872 Author: Wolfgang Denk <wd@pollux.denx.de>
44873 Date: Tue Oct 24 13:55:18 2006 +0200
44875 Fix/workaround broken dependency handling with make 3.81
44876 Based on patch by Haavard Skinnemoen, 29 Aug 2006 11:20:39 +0200
44878 commit 8318fbf8cc30418b621ea9f39b84b4c1a08f003a
44879 Author: Marian Balakowicz <m8@semihalf.com>
44880 Date: Mon Oct 23 22:17:05 2006 +0200
44882 Fix sequoia separate object direcory building problems.
44884 commit 3dfa9cfdcee78b30da3432318b32821ffabe974b
44885 Author: Jon Loeliger <jdl@freescale.com>
44886 Date: Fri Oct 20 17:16:35 2006 -0500
44888 Use generic I2C register block on 85xx and 86xx.
44890 Replace private IMMAP I2C structures with generic reg block
44891 and allow 86xx to have multiple I2C device busses.
44893 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44895 commit f5012827df11ca0c9be1df5f8b153e188dc2fa7c
44896 Author: Jon Loeliger <jdl@freescale.com>
44897 Date: Fri Oct 20 15:54:34 2006 -0500
44899 Fix compilation warnings on a few 85xx boards.
44901 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44903 commit 2047672684cf85cb6f96a1fbc993180aaaf19a99
44904 Author: Jon Loeliger <jdl@freescale.com>
44905 Date: Fri Oct 20 15:50:15 2006 -0500
44907 Converted all 85xx boards to use a common FSL I2C driver.
44908 Introduced COFIG_FSL_I2C to select the common FSL I2C driver.
44909 And removed hard i2c path from a few u-boot.lds scipts too.
44910 Minor whitespace cleanups along the way.
44912 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44914 commit 4d45f69e362b05892c9e92a7907e5820995612aa
44915 Author: Jon Loeliger <jdl@freescale.com>
44916 Date: Thu Oct 19 12:02:24 2006 -0500
44918 Rewrite a series of goto statements as a sequences of
44919 conditional expressions instead.
44921 Use consistent return code 0/-1 for good/bad indicators.
44923 Include one fewer file if the driver isn't used at all.
44925 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44927 commit 7237c033b02fe295880435f1eb80819a0c987532
44928 Author: Jon Loeliger <jdl@freescale.com>
44929 Date: Thu Oct 19 11:02:16 2006 -0500
44931 Moved i2c driver out of cpu/mpc86xx/i2c.c into drivers/fsl_i2c.c
44933 in an effort to begin to unify the umpteen FSL I2C drivers that
44934 are all otherwise very similar.
44936 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44938 commit 13a7fcdf37f6ea9429ae04c9df67f893364cfe4b
44939 Author: Jon Loeliger <jdl@freescale.com>
44940 Date: Thu Oct 19 11:33:52 2006 -0500
44942 * Fix a bunch of compiler warnings for gcc 4.0
44944 Signed-off-by: Matthew McClintock <msm@freescale.com>
44946 commit af9e1f5b9e6f9ce810f5e8bf2961c9542a5865c2
44947 Author: Stefan Roese <sr@denx.de>
44948 Date: Tue Oct 17 06:14:31 2006 +0200
44950 Add monitor functions for indirect access to PPC440 DCR's
44951 Patch by Leonid Baryudin, 12 Oct 2006
44953 commit 5f3249a0a168e446a4cc9669b2bce0bc456f0a09
44954 Author: Jon Loeliger <jdl@freescale.com>
44955 Date: Fri Oct 13 16:47:53 2006 -0500
44957 Fixed leading whitespace issues.
44958 Removed spurious LAWAR thing.
44960 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44962 commit 0ee90cb77e01d6e8ccd37e1bd96678597875c391
44963 Author: Jon Loeliger <jdl@freescale.com>
44964 Date: Thu Oct 12 10:42:36 2006 -0500
44966 Remove unneeded include files and local variable.
44968 Signed-off-by: Jon Loeliger <jdl@freescale.com>
44970 commit 1eaf3a5ff4960a46f3a9063568ba2af7883f07c5
44971 Author: Grant Likely <grant.likely@secretlab.ca>
44972 Date: Tue Oct 10 00:23:32 2006 -0600
44974 Fix possible uninitialized variable compiler warning.
44976 When CONFIG_OF_FLAG_TREE is set, the compiler complains that 'len' in
44977 do_bootm_linux() may be uninitialized. There is no possibility in the
44978 current code that len will get used uninitialized, but this fix follows
44979 the existing convention of setting both len and data to zero at the same
44982 Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
44984 commit 7376eb87aaa601f728f9b8e5e9cd2711a67f529e
44985 Author: Matthew McClintock <msm@freescale.com>
44986 Date: Wed Oct 11 15:13:01 2006 -0500
44988 * Fix a bunch of compiler warnings for gcc 4.0
44990 Signed-off-by: Matthew McClintock <msm@freescale.com>
44992 commit bf651baa365e5447246aad6a633ccd667cf24a39
44993 Author: Jon Loeliger <jdl@freescale.com>
44994 Date: Wed Oct 11 10:10:43 2006 -0500
44996 Move "ar" flags to config.mk to allow for silent "make -s"
44998 commit 1fd5699a4a24f5c1dab1b32f480bace1ebb9fc3e
44999 Author: Jon Loeliger <jdl@freescale.com>
45000 Date: Tue Oct 10 17:19:03 2006 -0500
45002 Coding style changes to remove local varible blocks
45003 and reformat a bit nicer.
45005 commit 8b283dbb3a08d1b8d406bc15f119e081b3e2606a
45006 Author: Jon Loeliger <jdl@freescale.com>
45007 Date: Tue Oct 10 17:16:04 2006 -0500
45009 Fix whitespace issues.
45011 commit 7b382b7125f2397cce63253df62f183e3dfa2770
45012 Author: Jon Loeliger <jdl@freescale.com>
45013 Date: Tue Oct 10 17:14:45 2006 -0500
45015 Fix whitespace issues.
45017 commit e10390ddd736b0dad1528eec4b0fe35c0827139a
45018 Author: Jon Loeliger <jdl@freescale.com>
45019 Date: Tue Oct 10 17:06:53 2006 -0500
45021 Fix whitespace issues.
45023 commit 89875e96ba3f023157bf50d5f8e33bf254964a76
45024 Author: Jon Loeliger <jdl@freescale.com>
45025 Date: Tue Oct 10 17:03:43 2006 -0500
45027 Ran lindent and cleaned up whitespace issues.
45028 Format for 80-columns too.
45030 commit 333961ae7095fc66d8a041fce1ac9ee873b09d86
45031 Author: Jon Loeliger <jdl@freescale.com>
45032 Date: Tue Oct 10 17:02:22 2006 -0500
45034 Fix whitespace and 80-col issues.
45036 commit 5c912cb1c31266c66ca59b36f9b6f87296421d75
45037 Author: Stefan Roese <sr@denx.de>
45038 Date: Sat Oct 7 11:36:51 2006 +0200
45040 CFG_NAND_QUIET_TEST added to not warn upon missing NAND device
45041 Patch by Stefan Roese, 07 Oct 2006
45043 commit 5bc528fa4da751d472397b308137238a6465afd2
45044 Author: Stefan Roese <sr@denx.de>
45045 Date: Sat Oct 7 11:35:25 2006 +0200
45047 Update ALPR code (NAND support working now)
45048 Patch by Stefan Roese, 07 Oct 2006
45050 commit 77d5034847d328753b80c46b83f960a14a26f40e
45051 Author: Stefan Roese <sr@denx.de>
45052 Date: Sat Oct 7 11:33:03 2006 +0200
45054 Remove compile warnings in fpga code
45055 Patch by Stefan Roese, 07 Oct 2006
45057 commit f3443867e90d2979a7dd1c65b0d537777e1f9850
45058 Author: Stefan Roese <sr@denx.de>
45059 Date: Sat Oct 7 11:30:52 2006 +0200
45061 Add CONFIG_BOARD_RESET to configure board specific reset function
45062 Patch by Stefan Roese, 07 Oct 2006
45064 commit f55df18187e7a45cb73fec4370d12135e6691ae1
45065 Author: John Traill <john.traill@freescale.com>
45066 Date: Fri Sep 29 08:23:12 2006 +0100
45068 Fix missing tCycle/modfreq calculation.
45070 Signed-off-by: John Traill <john.traill@freescale.com>
45072 commit 8272dc2f58f2473d8995fcc9b916440cfba080f0
45073 Author: Andy Fleming <afleming@freescale.com>
45074 Date: Wed Sep 13 10:33:35 2006 -0500
45076 Updated config headers to add default FDT-based booting
45078 commit 09f3e09e9ebcfa7919ca8931a4b5504fadd1f1d3
45079 Author: Andy Fleming <afleming@freescale.com>
45080 Date: Wed Sep 13 10:34:18 2006 -0500
45082 Add support for eTSEC 3 & 4 on 8548 CDS
45084 * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS.
45085 This will only work on rev 1.3 boards (but doesn't break older boards)
45086 * Cleaned up some comments to reflect the expanded role of tsec
45089 commit 084d648b109c8984f83674043c1a7fa3885ef801
45090 Author: Andy Fleming <afleming@freescale.com>
45091 Date: Wed Sep 13 10:33:56 2006 -0500
45093 Added code to support 2.6.18 PCI changes in u-boot
45095 * Added code to swizzle the IRQ map for the PCI
45097 commit afbdc649f8751e4f4f1a6f527edfe139773f2c15
45098 Author: Jon Loeliger <jdl@freescale.com>
45099 Date: Tue Sep 19 09:34:10 2006 -0500
45101 Modified makefile for new build mechanism.
45103 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45105 commit d14ba6a798beb753e7a864500414fcc2d198b8bc
45106 Author: Jon Loeliger <jdl@freescale.com>
45107 Date: Thu Sep 14 08:40:36 2006 -0500
45109 Handle 86xx SVR values according to the new Reference Manual.
45110 Both 8641 and 8641D have SVR == 0x8090, and are distinguished
45111 by the byte in bits 16-23 instead.
45112 Thanks to Jason Jin for noticing.
45114 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45116 commit 88c8f4921fc47fb0eb2384b16586f1bd7f275be7
45117 Author: Zhang Wei <wei.zhang@freescale.com>
45118 Date: Mon Aug 28 14:25:31 2006 +0800
45120 Fixed an OF-tree off-by-one bug when adding a new property name.
45121 This bug will cause the kernel booting to pause a long time.
45123 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45124 (cherry picked from 2f15776ccc6dc32377d8ba9652b8f58059c27c6d commit)
45126 commit 9bff7a69a885adebbd2bd45990494ec4cf998a30
45127 Author: Jon Loeliger <jdl@freescale.com>
45128 Date: Tue Aug 29 11:05:09 2006 -0500
45130 Remove trailing empty lines.
45132 commit cd6d73d5b895a5935ac4fde0a356288142a584e0
45133 Author: Jon Loeliger <jdl@freescale.com>
45134 Date: Tue Aug 29 09:48:49 2006 -0500
45136 Remove bogus msync and use volatile asm.
45138 commit 778d45049ce5927b65b3ff1d8e6692b654bdd49e
45139 Author: Jon Loeliger <jdl@freescale.com>
45140 Date: Tue Aug 29 08:17:14 2006 -0500
45142 Add myself as maintainer for MPC8641HPCN.
45144 commit 2f15776ccc6dc32377d8ba9652b8f58059c27c6d
45145 Author: Zhang Wei <wei.zhang@freescale.com>
45146 Date: Mon Aug 28 14:25:31 2006 +0800
45148 Fixed an OF-tree off-by-one bug when adding a new property name.
45149 This bug will cause the kernel booting to pause a long time.
45151 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45153 commit 5567806b67d0ae83493aa8823ad3b6c914f581d7
45154 Author: Haiying Wang <haiying.wang@freescale.com>
45155 Date: Fri Aug 25 14:38:34 2006 -0400
45157 Change ramdiskaddr and dtbaddr
45158 Remove PEX fluff commands.
45160 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
45161 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45163 commit b2b78421d9db49c21a821af8a19c21c1f7dfb29e
45164 Author: Matthew McClintock <msm@freescale.com>
45165 Date: Wed Aug 23 13:32:45 2006 -0500
45167 * Another small fix for booting with disable_of
45169 Signed-off-by: Matthew McClintock <msm@freescale.com>
45171 commit 4a7cc0f21918e6ecf07ed57075d67df2c4a1299c
45172 Author: Jon Loeliger <jdl@freescale.com>
45173 Date: Wed Aug 23 11:04:43 2006 -0500
45175 Cleanup and lindent new AHCI driver.
45177 commit dabf9ef8c10b4dead5ef2106ef742b1c06b542de
45178 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
45179 Date: Wed Aug 23 19:15:12 2006 +0800
45181 Add AHCI define and sata support for MPC8641HPCN board.
45183 Signed-off-by:Jason Jin<jason.jin@freescale.com>
45185 commit 4782ac80b02f0d01afd309e2200dd3c7037f2ba4
45186 Author: Jin Zhengxiong <jason@bus.ap.freescale.net>
45187 Date: Wed Aug 23 19:10:44 2006 +0800
45189 Add AHCI support to u-boot
45191 Add AHCI support in u-boot, enable the sata disk controllers which
45192 following the AHCI protocol.
45194 Signed-off-by:Jason Jin<jason.jin@freescale.com>
45196 commit d8ea2acf5f137cae99417df4f573d036ee384668
45197 Author: Zhang Wei <wei.zhang@freescale.com>
45198 Date: Wed Aug 23 17:54:32 2006 +0800
45200 Add dtb boot-up parameter to default boot commands.
45202 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45204 commit b93775c2036b99baa390ea425c4771895bbc63c4
45205 Author: Jon Loeliger <jdl@freescale.com>
45206 Date: Tue Aug 22 18:26:08 2006 -0500
45208 Cleanup even more poorly introduced whitespace.
45210 commit ae6241685cbcf0c79a3636530d2ceab1fb291a94
45211 Author: Jon Loeliger <jdl@freescale.com>
45212 Date: Tue Aug 22 18:07:00 2006 -0500
45214 Cleanup more poorly introduced whitespace.
45216 commit 2c33e8a1c535b3ae91cf0b284480600bf3f57c57
45217 Author: Jon Loeliger <jdl@freescale.com>
45218 Date: Tue Aug 22 17:54:05 2006 -0500
45220 Cleanup poorly introduced whitespace.
45222 commit 80e955c7dd98f4b4fd23c2113caf75ed2b77b5b3
45223 Author: Jon Loeliger <jdl@freescale.com>
45224 Date: Tue Aug 22 12:25:27 2006 -0500
45226 General indent and whitespace cleanups.
45228 commit ffff3ae56f5842ca3679e4ce7922b819a87aad9f
45229 Author: Jon Loeliger <jdl@freescale.com>
45230 Date: Tue Aug 22 12:06:18 2006 -0500
45232 General indent and whitespace cleanups.
45234 commit 41a0e8b304d3ff55fe27a230507aac79684016ac
45235 Author: Jon Loeliger <jdl@freescale.com>
45236 Date: Tue Aug 22 10:42:21 2006 -0500
45238 Cleanup compiler warnings.
45240 commit 5de62c47a8628b3da4d73f7c07027f32a3342d40
45241 Author: Matthew McClintock <msm@freescale.com>
45242 Date: Tue Aug 22 09:31:59 2006 -0500
45244 Fix disable_of booting
45246 Signed-off-by: Matthew McClintock <msm@freescale.com>
45248 commit 87a449c8ac396420cb24260f717ea9e6faa82047
45249 Author: Matthew McClintock <msm@freescale.com>
45250 Date: Tue Aug 22 09:23:55 2006 -0500
45252 Support for FDT in uImage format, error when using FDT from flash
45254 Signed-off-by: Matthew McClintock <msm@freescale.com>
45256 commit 75c299c38369d01addd5e054b8a16217b70f4a86
45257 Author: Haiying Wang <haiying.wang@freescale.com>
45258 Date: Tue Aug 15 15:12:55 2006 -0400
45260 Unlock cache before kernel starts up for MPC86xx
45262 commit 67256678f00c09b0a7f19e862e5c1847553d31bc
45263 Author: Haiying Wang <haiying.wang@freescale.com>
45264 Date: Tue Aug 15 15:13:15 2006 -0400
45266 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
45268 commit 1c8f6d8fb028f156094d05f2d14298e6479364ac
45269 Author: Haiying Wang <haiying.wang@freescale.com>
45270 Date: Tue Aug 15 15:12:55 2006 -0400
45272 Unlock cache before kernel starts up for MPC86xx
45274 commit 0d9ccc55edf9a7f3c5b2b6263580a6ea8d702a04
45275 Author: Haiying Wang <haiying.wang@freescale.com>
45276 Date: Tue Aug 15 15:13:15 2006 -0400
45278 Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
45280 commit 86c8e17f25e972a7e272950a0735fad84e082b88
45281 Author: Matthew McClintock <msm@freescale.com>
45282 Date: Wed Aug 16 13:59:47 2006 -0500
45284 * Fix disable_of booting
45286 Signed-off-by: Matthew McClintock <msm@freescale.com>
45288 commit 25c751e9adc86e22fe3b5b47cf2806379b575db7
45289 Author: Matthew McClintock <msm@freescale.com>
45290 Date: Wed Aug 16 10:54:09 2006 -0500
45292 * Support for FDT in uImage format, error when using FDT from flash
45294 Signed-off-by: Matthew McClintock <msm@freescale.com>
45296 commit 899620c2d66d4eef3b2a0034d062e71d45d886c9
45297 Author: Stefan Roese <sr@denx.de>
45298 Date: Tue Aug 15 14:22:35 2006 +0200
45300 Add initial support for the ALPR board from Prodrive
45301 NAND needs some additional testing
45302 Patch by Heiko Schocher, 15 Aug 2006
45304 commit f0ff4692ff3372dec55074a8eb444943ab095abb
45305 Author: Stefan Roese <sr@denx.de>
45306 Date: Tue Aug 15 14:15:51 2006 +0200
45308 Add FPGA Altera Cyclone 2 support
45309 Patch by Heiko Schocher, 15 Aug 2006
45311 commit fecf1c7e4de1b2779edc18742b91c22bdc32b68b
45312 Author: Jon Loeliger <jdl@freescale.com>
45313 Date: Mon Aug 14 15:33:38 2006 -0500
45315 Fix BAT0 to actually be cacheable, non-guarded as documented.
45317 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45319 commit 40bc83559db5745681909fd7382ae509567e116d
45320 Author: Jon Loeliger <jdl@freescale.com>
45321 Date: Wed Aug 9 15:32:16 2006 -0500
45323 Removed MPC8641HPCN DTS source file from build.
45324 It is no longer linked into U-Boot; its sources are
45325 now located in the kernel tree.
45327 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45329 commit 34c3c0e01dbf1f8cc2bd08de92f2b89ba84921eb
45330 Author: Matthew McClintock <msm@freescale.com>
45331 Date: Wed Jun 28 10:47:03 2006 -0500
45333 * Switched default PCI speed for 8540 ADS back to 33MHz
45335 * Added comments and a printf to warn that PCI-X won't
45337 Patch by Andy Fleming 17-Mar-2006
45339 Signed-off-by: Andy Fleming <afleming@freescale.com>
45341 commit b6c5e1373b6ea0bb37a18e4aeecec00613d1cd39
45342 Author: Matthew McClintock <msm@freescale.com>
45343 Date: Wed Jun 28 10:46:35 2006 -0500
45345 * Fixed a bug where 8555 PCI code used the old variable and function names Patch by Andy Fleming 17-Mar-2006
45347 Signed-off-by: Andy Fleming <afleming@freescale.com>
45349 commit bf1dfffd8c26f8ecdd630a0ae4c834e751e4e452
45350 Author: Matthew McClintock <msm@freescale.com>
45351 Date: Wed Jun 28 10:46:13 2006 -0500
45353 * Added VIA configuration table
45355 * Added support for PCI2 on CDS
45356 Patch by Andy Fleming 17-Mar-2006
45358 Signed-off-by: Andy Fleming <afleming@freescale.com>
45360 commit c88f9fe66b64247e5b6a38410ba315ca25596d16
45361 Author: Matthew McClintock <msm@freescale.com>
45362 Date: Wed Jun 28 10:45:41 2006 -0500
45364 * Fixed PCI memory definitions Patch by Andy Fleming 17-Mar-2006
45366 Signed-off-by: Andy Fleming <afleming@freescale.com>
45368 commit 97074ed9655309b64231bc2cee69fe85399f8055
45369 Author: Matthew McClintock <msm@freescale.com>
45370 Date: Wed Jun 28 10:45:17 2006 -0500
45372 * Added support for initializing second PCI bus on 85xx Patch by Andy Fleming 17-Mar-2006
45374 Signed-off-by: Andy Fleming <afleming@freescale.com>
45376 commit f0e6f57f71b3c4fdd13028eb03c3f3e91926dda2
45377 Author: Matthew McClintock <msm@freescale.com>
45378 Date: Wed Jun 28 10:44:49 2006 -0500
45380 * Added PCI-X #defines for PCI-X initialization Patch by Andy Fleming on 17-Mar-2006
45382 Signed-off-by: Andy Fleming <afleming@freescale.com>
45384 commit a4e11558b810ef2cddffdf7b9d86bc1130441960
45385 Author: Matthew McClintock <msm@freescale.com>
45386 Date: Wed Jun 28 10:44:23 2006 -0500
45388 * Made sure the code which disables prefetch for PCI devices sets the size of the prefetch region to 0 Patch by Andy Fleming on 17-Mar-2006
45390 Signed-off-by: Andy Fleming <afleming@freescale.com>
45392 commit 0e16387db1d4aacd5bf35cb6d7c1942765c0347b
45393 Author: Matthew McClintock <msm@freescale.com>
45394 Date: Wed Jun 28 10:43:36 2006 -0500
45396 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards Patch by Jon Loeliger 17-Jan-2006
45398 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45400 commit 855e6fb073f9d04fe4a7f06c107ecbac6344ddd4
45401 Author: Matthew McClintock <msm@freescale.com>
45402 Date: Wed Jun 28 10:43:00 2006 -0500
45404 * Removed the oftree.dts for stxxtx in light of the changes to the flat device tree handling code Patch by Matthew McClintock 26-June-2006
45406 commit 5498d90312aad9f6bdbf047986027c35b03cd163
45407 Author: Matthew McClintock <msm@freescale.com>
45408 Date: Wed Jun 28 10:42:24 2006 -0500
45410 * Patch to modify ft_build.c to update flat device trees in place Patch by Matthew McClintock 26-June-2006
45412 commit 0267768eddc5ca7bc1865bc40c866829ac5efbfe
45413 Author: Matthew McClintock <msm@freescale.com>
45414 Date: Wed Jun 28 10:41:37 2006 -0500
45416 * Modify bootm command to support booting with flat device trees Patch by Matthew McClintock 26-June-2006
45418 commit 8fc8bd2cc479b6cd188fdede4010e0e052970b8a
45419 Author: John Traill <john.traill@freescale.com>
45420 Date: Wed Aug 9 14:33:50 2006 +0100
45422 Add Rapidio support for the MPC8641HPCN
45424 Signed-off-by: John Traill <john.traill@freescale.com>
45426 commit 91a414c7d1fb0eac912592cd995b30c9f23045c9
45427 Author: John Traill <john.traill@freescale.com>
45428 Date: Tue Aug 8 11:32:43 2006 +0100
45430 Fix caslat calculation
45432 Signed-off-by: John Traill <john.traill@freescale.com>
45434 commit 709d3073e74153278e7904a70819bbef7df50e1a
45435 Author: Jon Loeliger <jdl@freescale.com>
45436 Date: Thu Aug 3 16:17:56 2006 -0500
45438 Convert to mac-address in ethernet nodes.
45440 commit 71748af833ca1017edf1415be376366ff2937d17
45441 Author: Haiying Wang <haiying.wang@freescale.com>
45442 Date: Fri Jul 28 12:41:35 2006 -0400
45444 Correct the irq value of DUART2
45446 commit 9cb3e8816ae4d854e7dc22128c3eea3d70bb982c
45447 Author: Haiying Wang <haiying.wang@freescale.com>
45448 Date: Fri Jul 28 12:41:41 2006 -0400
45450 Change the space size of PEX IO in README
45452 commit 239db37c94f7a92941c4465feceb867c609241c5
45453 Author: Haiying Wang <haiying.wang@freescale.com>
45454 Date: Fri Jul 28 12:41:18 2006 -0400
45456 Move get_board_sys_clk to board directory
45458 commit 492900b985439fbce1a118afde1e35def870db03
45459 Author: John Traill <john.traill@freescale.com>
45460 Date: Fri Jul 28 09:03:54 2006 +0100
45462 Fix 8641HPCN pollution
45464 commit 515ab8a62e8574e2babc6e8dcc43544ad221c5b2
45465 Author: John Traill <john.traill@freescale.com>
45466 Date: Fri Jul 28 08:16:06 2006 +0100
45468 Fix 8641HPCN timebase
45470 commit c86360b830f1eecd7a72208575dde4f57879faea
45471 Author: Zhang Wei <wei.zhang@freescale.com>
45472 Date: Fri Jul 28 00:01:34 2006 +0800
45474 Fixed OF device tree of mpc86xxhpcn board.
45476 The changes works in with kernel irq mapping rework.
45478 Signed-off-by: Zhang Wei <wei.zhang@freescale.com>
45480 commit bea3f28d285942bf3f7ab339ce85178ded544225
45481 Author: Haiying Wang <haiying.wang@freescale.com>
45482 Date: Wed Jul 12 10:48:05 2006 -0400
45484 Add support for reading and writing mac addresses to or from ID EEPROM.
45486 Added code for reading and writing Mac addresses to/from ID EEPROM(0x57).
45487 With attached patch, we can use command "mac/mac read/mac save/"
45488 to read and write EEPROM under u-boot prompt.
45490 U-boot will calculate the checksum of EEPROM while bootup,
45491 if it is right, then u-boot will check whether the mac address
45492 of eTSEC0/1/2/3 is availalbe (non-zero).
45494 If there is mac address availabe in EEPROM, u-boot will use it,
45495 otherewise, u-boot will use the mac address defined in
45496 MPC8641HPCN.h. This matches the requirement to set unique mac address
45497 for each TSEC port.
45499 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
45500 Signed-off-by: York Sun <yorksun@freescale.com>
45502 commit fcb28e763415e0e4e66b0f45842d1557ae198e5e
45503 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
45504 Date: Thu Jul 13 10:35:10 2006 -0500
45506 Fixed initrd issue by define big RAM
45508 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
45510 commit e6cd2a1785d74ec3d30a86f1cb360be8de478151
45511 Author: Jason Jin <Jason.jin@freescale.com>
45512 Date: Fri Jul 7 10:01:45 2006 -0500
45514 We made a u-boot patch to fix the hang up issue
45515 when booting filesystem from ramdisk.
45517 Signed-off-by:Jason Jin <Jason.jin@freescale.com>
45519 commit 38433ccc5850ee70549af0b2bc5b920355ef5388
45520 Author: Matthew McClintock <msm@freescale.com>
45521 Date: Wed Jun 28 10:47:03 2006 -0500
45523 * Switched default PCI speed for 8540 ADS back to 33MHz
45524 * Added comments and a printf to warn that PCI-X won't
45526 Patch by Andy Fleming 17-Mar-2006
45528 Signed-off-by: Andy Fleming <afleming@freescale.com>
45530 commit e4c2a0eb0c3e3ffbf824800184ee42bdc99d5b19
45531 Author: Matthew McClintock <msm@freescale.com>
45532 Date: Wed Jun 28 10:46:35 2006 -0500
45534 * Fixed a bug where 8555 PCI code used the old variable and
45536 Patch by Andy Fleming 17-Mar-2006
45538 Signed-off-by: Andy Fleming <afleming@freescale.com>
45540 commit cbfc7ce756b88eb26e5537bc7b625c445c6dcfac
45541 Author: Matthew McClintock <msm@freescale.com>
45542 Date: Wed Jun 28 10:46:13 2006 -0500
45544 * Added VIA configuration table
45545 * Added support for PCI2 on CDS
45546 Patch by Andy Fleming 17-Mar-2006
45548 Signed-off-by: Andy Fleming <afleming@freescale.com>
45550 commit 52c7a68b8d587ebcf5a6b051b58b3d3ffa377ddc
45551 Author: Matthew McClintock <msm@freescale.com>
45552 Date: Wed Jun 28 10:45:41 2006 -0500
45554 * Fixed PCI memory definitions
45555 Patch by Andy Fleming 17-Mar-2006
45557 Signed-off-by: Andy Fleming <afleming@freescale.com>
45559 commit 087454609e47295443af793a282cddcd91a5f49c
45560 Author: Matthew McClintock <msm@freescale.com>
45561 Date: Wed Jun 28 10:45:17 2006 -0500
45563 * Added support for initializing second PCI bus on 85xx
45564 Patch by Andy Fleming 17-Mar-2006
45566 Signed-off-by: Andy Fleming <afleming@freescale.com>
45568 commit b636aaeb6fd516a442fb611bbeeddf3077a687fb
45569 Author: Matthew McClintock <msm@freescale.com>
45570 Date: Wed Jun 28 10:44:49 2006 -0500
45572 * Added PCI-X #defines for PCI-X initialization
45573 Patch by Andy Fleming on 17-Mar-2006
45575 Signed-off-by: Andy Fleming <afleming@freescale.com>
45577 commit 20abbc6fffa115690107cc942c7abf84bdc03a1b
45578 Author: Matthew McClintock <msm@freescale.com>
45579 Date: Wed Jun 28 10:44:23 2006 -0500
45581 * Made sure the code which disables prefetch for PCI devices
45582 sets the size of the prefetch region to 0
45583 Patch by Andy Fleming on 17-Mar-2006
45585 Signed-off-by: Andy Fleming <afleming@freescale.com>
45587 commit 40d5fa35d02df22580593bf0039ab173367e8ef0
45588 Author: Matthew McClintock <msm@freescale.com>
45589 Date: Wed Jun 28 10:43:36 2006 -0500
45591 * Add Flat Dev Tree construction for MPC85xx ADS and CDS boards
45592 Patch by Jon Loeliger 17-Jan-2006
45594 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45596 commit be7e8b0cb5a0c49dc180075b96df296a893bf146
45597 Author: Matthew McClintock <msm@freescale.com>
45598 Date: Wed Jun 28 10:43:00 2006 -0500
45600 * Removed the oftree.dts for stxxtx in light of the changes
45601 to the flat device tree handling code
45602 Patch by Matthew McClintock 26-June-2006
45604 commit 1b380ec225665e73959677f3893dc658c5925e05
45605 Author: Matthew McClintock <msm@freescale.com>
45606 Date: Wed Jun 28 10:42:24 2006 -0500
45608 * Patch to modify ft_build.c to update flat device trees in place
45609 Patch by Matthew McClintock 26-June-2006
45611 commit 98a9c4d468a942a09ebe8979bec508017f3e4462
45612 Author: Matthew McClintock <msm@freescale.com>
45613 Date: Wed Jun 28 10:41:37 2006 -0500
45615 * Modify bootm command to support booting with flat device trees
45616 Patch by Matthew McClintock 26-June-2006
45618 commit da012ab661fd4ab169dd7b9b32201a4df62cf34a
45619 Author: Jin Zhengxiong <Jason.Jin@freescale.com>
45620 Date: Wed Jun 28 08:43:56 2006 -0500
45622 Change Id to symbolic name for RTL8139
45624 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45626 commit bc09cf3c2bfb8d54c659cbb332f79d0950982fd0
45627 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
45628 Date: Tue Jun 27 18:12:10 2006 +0800
45630 Fix RTL8139 in big endian
45632 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
45633 signed-off-by: Wei Zhang <wei.zhang@freescale.com>
45635 commit fcfb9a57947fc203b99fe81ab0578f7286261f9f
45636 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
45637 Date: Tue Jun 27 18:12:23 2006 +0800
45639 Fix Tsec bug when no link
45641 When tftp a non-exist file from the tftp server, u-boot will check
45642 the link of all eth port. The original file will return wrong link
45643 state on the no link ports.
45645 signed-off-by: Jason Jin <Jason.Jin@freescale.com>
45647 commit bd22c2b97514fbfb0e03bd9c72b3445e4dbd57e2
45648 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
45649 Date: Tue Jun 27 18:12:02 2006 +0800
45651 Fix bug for io_bar size during pci scan
45653 During the pci scan process, Some devices return bar_reponse with the
45654 highest bytes 0, such as the pci bridge in uli1575 return bar_response
45655 with 0xffffff, So the bar_size should be manually set under 64K.
45657 Signed-off-by: Jason Jin <jason.jin@freescale.com>
45659 commit fa7db9c377bc2353a17bf1d381d65a6c418728f0
45660 Author: Jin Zhengxiong-R64188 <Jason.Jin@freescale.com>
45661 Date: Tue Jun 27 18:11:54 2006 +0800
45663 Enable PCIE1 for MPC8641HPCN board
45665 Signed-off-by: Jason Jin <Jason.jin@freescale.com>
45667 commit 99d70e3a47affb9bae041a2caece7cd516e213b3
45668 Author: Wolfgang Denk <wd@pollux.denx.de>
45669 Date: Mon Jun 26 11:06:00 2006 +0200
45673 commit 684623ce92c5fd32e7db2d6e016945a67c5ffaba
45674 Author: Jon Loeliger <jdl@freescale.com>
45675 Date: Thu Jun 22 08:51:46 2006 -0500
45677 Fix bug in 8641hpcn reset command with no args.
45679 Signed-off-by: Haiying Wang <haiying.wang@freescale.com>
45680 Acked-by: Jon Loeliger <jdl@freescale.com>
45682 commit 8be429a5ddbf0ebe2d94174ba58fcfc7a24285dc
45683 Author: Zhang Wei <wei.zhang@freescale.com>
45684 Date: Tue Jun 20 17:47:15 2006 +0800
45686 Reworked IRQ mapping in OF-tree.
45688 commit 0e4c2a17ca34001ed36d259f13cb88ada4611a8c
45689 Author: Jon Loeliger <jdl@freescale.com>
45690 Date: Thu Jun 15 21:33:37 2006 -0500
45692 Do not enable address translation on secondary CPUs.
45693 Do not set up BATs on secondary CPUs. Let Linux do the nasty.
45695 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45697 commit 386eda022473394ad8f36b86f2bdc9b4cb816291
45698 Author: Wolfgang Denk <wd@pollux.denx.de>
45699 Date: Wed Jun 14 18:14:56 2006 +0200
45703 commit 16c8d5e76ae0f78f39a60608574adfe0feb9cc70
45704 Author: Wolfgang Denk <wd@pollux.denx.de>
45705 Date: Wed Jun 14 17:45:53 2006 +0200
45707 Various USB related patches
45708 - Add support for mpc8xx USB device.
45709 - Add support for Common Device Class - Abstract Control Model USB console.
45710 - Add support for flow control in USB slave devices.
45711 - Add support for switching between gserial and cdc_acm using environment.
45712 - Minor changes to usbdcore_omap1510.c usbdcore_omap1510.h
45713 - Update usbcore slightly to ease host enumeration.
45714 - Fix non-portable endian problems in usbdcore and usbdcore_ep0.
45715 - Add AdderUSB_config as a defconfig to enable usage of the USB console
45716 by default with the Adder87x U-Boot port.
45717 Patches by Bryan O'Donoghue <bodonoghue@codehermit.ie>, 29 May 2006
45719 commit 8ecc971618f56029ad99d3516f8b297a6ed58971
45720 Author: Jon Loeliger <jdl@jdl.com>
45721 Date: Wed Jun 7 10:53:55 2006 -0500
45723 Fix a get_board_sys_clk() use-before-def warning.
45725 Signed-off-by: Jon Loeliger <jdl@jdl.com>
45727 commit d9bf4858fca5aa4d651b283270f77da72ebadfd5
45728 Author: Jon Loeliger <jdl@jdl.com>
45729 Date: Wed Jun 7 10:52:49 2006 -0500
45731 Allow DTC path to be passed in.
45733 Signed-off-by: Jon Loeliger <jdl@jdl.com>
45735 commit c83ae9ea6d93abbe751bf8a3396236a084e56f87
45736 Author: Haiying Wang <haiying.wang@freescale.com>
45737 Date: Tue Jun 6 16:54:29 2006 -0400
45739 Modify the IRQ of DUART2
45741 commit c934f655f9aeca70a5c5f88b465d9e9d57a8d22e
45742 Author: Jon Loeliger <jdl@jdl.com>
45743 Date: Wed May 31 13:55:35 2006 -0500
45747 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45749 commit cb5965fb95b77a49f4e6af95248e0c849f4af03e
45750 Author: Jon Loeliger <jdl@jdl.com>
45751 Date: Wed May 31 12:44:44 2006 -0500
45753 White space cleanup.
45754 Some 80-column cleanups.
45755 Convert printf() to puts() where possible.
45756 Use #include "spd_sdram.h" as needed.
45757 Enhanced reset command usage message a bit.
45759 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45761 commit 3d5c5be547445dd3bd2eb7368d80df03ea437970
45762 Author: Jon Loeliger <jdl@jdl.com>
45763 Date: Wed May 31 11:39:34 2006 -0500
45765 Removed unneeded local_bus_init() from 8641HPCN board.
45767 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45769 commit 4d3d729c16c392d2982d3266b659d333c927697d
45770 Author: Jon Loeliger <jdl@jdl.com>
45771 Date: Wed May 31 11:24:28 2006 -0500
45773 Moved mpc8641hpcn_board_reset() out of cpu/ into board/.
45775 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45777 commit b2a941de060350ad15878d8219825f4950e9bb8e
45778 Author: Jon Loeliger <jdl@jdl.com>
45779 Date: Wed May 31 10:07:28 2006 -0500
45781 Remove dead debug code.
45783 Signed-off-by: Jon Loeliger <jdl@jdl.com>
45785 commit 126aa70f10ba3d20e0a6f4d32328250513b77770
45786 Author: Jon Loeliger <jdl@freescale.com>
45787 Date: Tue May 30 17:47:00 2006 -0500
45789 Move mpc86xx PIXIS code to board directory
45791 First cut at moving the PIXIS platform code out of
45792 the 86xx cpu directory and into board/mpc8641hpcn
45795 Signed-off-by: Jon Loeliger <jdl@freescale.com>
45797 commit ddf83a2fcef1a670c45fc585119dcc1fe062c4a9
45798 Author: Markus Klotzbuecher <mk@denx.de>
45799 Date: Tue May 30 16:56:14 2006 +0200
45801 Support generic OHCI support for the s3c24x0 cpu.
45803 commit 38cee12dcfcc257371c901c7e13e58ecab0a35d8
45804 Author: Haiying Wang <Haiying.Wang@freescale.com>
45805 Date: Tue May 30 09:10:32 2006 -0500
45807 Improve "reset" command's interaction with watchdog.
45809 "reset altbank" will reset another bank WITHOUT watch dog timer enabled
45810 "reset altbank wd" will reset another bank WITH watch dog enabled
45811 "diswd" will disable watch dog after u-boot boots up successfully
45813 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
45815 commit 70205e5a6ddc8528b11db9eb4d3fa0209d9fce2a
45816 Author: Haiying Wang <Haiying.Wang@freescale.com>
45817 Date: Tue May 30 08:51:19 2006 -0500
45819 Fix two SDRAM setup bugs.
45822 Enable 1T/2T based on number of DIMMs present.
45824 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
45826 commit d11fec5015334deb2010e36ce00bb118cc5429a5
45827 Author: Haiying Wang <Haiying.Wang@freescale.com>
45828 Date: Fri May 26 10:24:48 2006 -0500
45830 Add first draft of the MPC8641HPCN doc/README.
45832 Signed-off-by: Jon Loeliger <jdl@jdl.com>
45834 commit ed45d6c930b5939718a87ee12e25cf9a05978d4a
45835 Author: Haiying Wang <Haiying.Wang@freescale.com>
45836 Date: Fri May 26 10:13:04 2006 -0500
45838 Added pci@8000 block.
45839 Updated ethernet interrupt mappings (moved up 48).
45840 Cleaned up a few comments.
45842 Signed-off-by: Jon Loeliger <jdl@jdl.com>
45844 commit 3033ebb20fd7c372c7bca3c9955a4692bb2240b7
45845 Author: Haiying Wang <Haiying.Wang@freescale.com>
45846 Date: Fri May 26 10:01:16 2006 -0500
45848 Allow args on reset command.
45850 Signed-off-by: Jon Loeliger <jdl@jdl.com>
45852 commit 301f1aa384d0edcae6a22fd9adb933ad71695ecc
45853 Author: Markus Klotzbuecher <mk@denx.de>
45854 Date: Tue May 23 13:38:35 2006 +0200
45856 Changed the mp2usb (at91rm9200) board to use the generic OHCI driver. Some
45857 fixes to the latter.
45859 commit 24e37645e7378b20fa8f20e2996c8fb8e90c70c9
45860 Author: Markus Klotzbuecher <mk@denx.de>
45861 Date: Tue May 23 10:33:11 2006 +0200
45863 More cleanup for the delta board and the generic usb_ohci driver. Added
45864 CFG_USB_BOARD_INIT and CFG_USB_CPU_INIT for enabling board and cpu specific
45865 initialization and cleanup hooks respectively.
45867 commit 3e326ece9eba8184f5d48aa4fb87760a8f6f0f10
45868 Author: Markus Klotzbuecher <mk@denx.de>
45869 Date: Mon May 22 16:33:54 2006 +0200
45871 This patch adds USB storage support for the delta board. This is the first
45872 board to make use of a generic OHCI driver, that calls hooks for board
45873 dependant initialization.
45875 commit 14e37081ff3cac7ebe6e93836523429853b6b292
45876 Author: Jon Loeliger <jdl@jdl.com>
45877 Date: Fri May 19 13:28:39 2006 -0500
45879 Change arbitration to round-robin for SMP linux.
45881 commit 9a655876e5995be80f49054e2509500e871e4d3a
45882 Author: Jon Loeliger <jdl@jdl.com>
45883 Date: Fri May 19 13:26:34 2006 -0500
45885 Enable dual DDR controllers and interleaving.
45887 commit 586d1d5abd3e525f1e1d9b81e5a61a4da6b2fa3c
45888 Author: Jon Loeliger <jdl@jdl.com>
45889 Date: Fri May 19 13:22:44 2006 -0500
45891 Update 86xx address map and LAWBARs.
45893 commit cccce5d0581bb0ba4602799a4b5112e58d1579cb
45894 Author: Jon Loeliger <jdl@jdl.com>
45895 Date: Fri May 19 13:14:15 2006 -0500
45897 Remove L2 Cache invalidate polling.
45899 commit f35ec68fb066cec0e36294bfe07dec2d4e8ad3a8
45900 Author: Jon Loeliger <jdl@jdl.com>
45901 Date: Fri May 19 12:33:09 2006 -0500
45903 Enable 2nd CPU and I2C.
45905 commit bf690dcb512d34c4fceec0eb1e5c0e88a9db5d54
45906 Author: Jon Loeliger <jdl@freescale.com>
45907 Date: Mon May 15 07:26:56 2006 -0500
45909 Update interrupt mapping.
45911 commit 6cfea33477b04b63ed47386ed1629529484c33ba
45912 Author: Haiying Wang <Haiying.Wang@freescale.com>
45913 Date: Wed May 10 09:38:06 2006 -0500
45915 Remove unneeded INIT_RAM_LOCK cache twiddling.
45916 Correctly tracks r29 as global data pointer now.
45918 Signed-off-by: Haiying Wang <Haiying.Wang@freescale.com>
45920 commit d4dd317b58c126a2a7e73f4764ecc1a7c97f876c
45921 Author: Jon Loeliger <jdl@freescale.com>
45922 Date: Wed May 10 09:33:07 2006 -0500
45924 Remove unnecessary flash.c file.
45926 commit 18b6c8cd8af6cc7f35180cedc4adb3236cc1a1b8
45927 Author: Jon Loeliger <jdl@freescale.com>
45928 Date: Tue May 9 08:23:49 2006 -0500
45930 Get MPC8641HPCN flash images working.
45932 Enable the CFI driver.
45933 Remove bogus LAWBAR7 cruft.
45934 Use correct TEXT_BASE, Fixup load script.
45935 Enable SPD EEPROM during DDR setup.
45936 Use generic RFC 1918 IP addresses by default.
45938 commit 5c9efb36a6b5431423f52888a0e3b4b515fe7eca
45939 Author: Jon Loeliger <jdl@freescale.com>
45940 Date: Thu Apr 27 10:15:16 2006 -0500
45942 Cleanup whitespaces and style issues.
45943 Removed //-style comments.
45944 Use 80-column lines.
45945 Remove trailing whitespace.
45946 Remove dead code and debug cruft.
45948 commit a2320a6bf8113a09544c42d160d10ac69d049a03
45949 Author: Jon Loeliger <jdl@freescale.com>
45950 Date: Thu Apr 27 08:22:39 2006 -0500
45952 Revert bad PCI prefetch limit change.
45954 commit debb7354d1ea4f694154818df5e5b523f5c1cc1d
45955 Author: Jon Loeliger <jdl@freescale.com>
45956 Date: Wed Apr 26 17:58:56 2006 -0500
45958 Initial support for MPC8641 HPCN board.